


    /* Navbar */
.navbar {
  background: transparent;
  padding: 20px 40px;
  position: sticky;
  top: 0;
  z-index: 999;


}

.navbar .logo{
  height:10vh;
  border-radius: 20px;
}
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1300px;
  margin: auto;
}

.logo {
  font-size: 20px;
  font-weight: bold;
  color: #f0c040;
}

.nav-links {
  display: flex;
  gap: 20px;
  align-items: center;
}

.nav-links a {
  color: #fff;
  font-weight: 500;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #f0c040;
}

.nav-cta {
  background: #f0c040;
  color: #1c1c1c !important;
  padding: 8px 16px;
  border-radius: 6px;
  font-weight: 600;
}

.burger {
  display: none;
  font-size: 24px;
  color: #fff;
  cursor: pointer;
}

@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 70px;
    right: 40px;
    background: #1c1c1c;
    flex-direction: column;
    padding: 20px;
    display: none;
    gap: 15px;
    border-radius: 10px;
  }

  .nav-links.show {
    display: flex;
  }

  .burger {
    display: block;
  }
}

    h2::after {
      content: '';
      display: block;
      width: 60px;
      height: 4px;
      background: #f0c040;
      margin: 8px auto 30px;
      border-radius: 2px;
    }

    a {
      text-decoration: none;
    }

   /* Hero Section */
.hero {
  background: url('../img/court.jpeg') no-repeat center center/cover;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding: 0 20px; /* Add padding for small screens */
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.hero .content {
  position: relative;
  z-index: 2;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 40px;
  max-width: 700px;
  color: #fff;
  animation: fadeInUp 1s ease-out;
  width: 100%;
  box-sizing: border-box;
}


.hero p {
  font-size: 18px;
  margin-bottom: 30px;
}

.hero .cta-button {
  background: #f0c040;
  color: #1c1c1c;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: bold;
  display: inline-block;
  transition: background 0.3s ease;
}

.hero .cta-button:hover {
  background: #e5b835;
}

/* Keyframes */
@keyframes typing {
  from { width: 0; }
  to { width: 100%; }
}

@keyframes blink {
  50% { border-color: transparent; }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Wave Divider */
.wave {
  margin-top: -5px;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .hero {
    height: auto;
    padding: 60px 20px;
  }

  .hero h1 {
    font-size: 28px;
    white-space: normal;
    animation: none;
    border-right: none;
  }

  .hero p {
    font-size: 16px;
  }

  .hero .content {
    padding: 24px;
  }

  .hero .cta-button {
    padding: 12px 24px;
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 24px;
  }

  .hero p {
    font-size: 14px;
  }

  .hero .cta-button {
    font-size: 14px;
    padding: 10px 20px;
  }
}


    /* About Section */
    .about-section {
      padding: 80px 40px;
      text-align: center;
    }

    .about-section .container {
      max-width: 1000px;
      margin: auto;
    }

    .about-section h2 {
      font-size: 36px;
    }

    .about-section p {
      margin-bottom: 20px;
      font-size: 16px;
      color: #555;
    }

    /* Stats Section */
    .stats-section {
      background: #fff;
      padding: 80px 40px;
      text-align: center;
    }
    .stats-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 40px;
      max-width: 1200px;
      margin: 0 auto;
    }
    .stat-card {
      background: #1c1c1c;
      color: #fff;
      padding: 40px 30px;
      border-radius: 12px;
      width: 230px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
      transition: transform 0.3s ease;
    }
    .stat-card:hover {
      transform: translateY(-10px);
      background: #f0c040;
      color: #1c1c1c;
    }
    .stat-card i {
      font-size: 36px;
      margin-bottom: 15px;
    }

    /* Practice Areas */
    .practice-areas {
      background: linear-gradient(to right, #f4f4f4, #fafafa);
      padding: 100px 40px;
      text-align: center;
    }
    .cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 40px;
    }
    .practice-card {
      background: #fff;
      border-radius: 15px;
      padding: 30px 25px;
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
      transition: all 0.3s ease;
      cursor: pointer;
    }
    .practice-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    }
    .icon-box {
      width: 70px;
      height: 70px;
      background: #f0c040;
      color: #1c1c1c;
      font-size: 30px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      margin: 0 auto 25px;
    }

    /* Why Choose Us */
    .why-choose-us {
      background: #fff;
      padding: 100px 40px;
      text-align: center;
    }
    .features {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 40px;
    }
    .feature-box {
      padding: 40px 30px;
      background: #f9f9f9;
      border-radius: 12px;
      transition: all 0.3s ease;
    }
    .feature-box:hover {
      background: #1c1c1c;
      color: #fff;
    }
    .feature-box i {
      font-size: 36px;
      color: #f0c040;
      margin-bottom: 20px;
    }
    .feature-box:hover i {
      color: #fff;
    }

    /* Lawyers Section */
    .our-lawyers {
      background: linear-gradient(to bottom, #fff, #f7f7f7);
      padding: 100px 40px;
      text-align: center;
    }
    .lawyer-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 30px;
      justify-content: center;
    }
    .lawyer-card {
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
      overflow: hidden;
      transition: all 0.3s ease;
    }
    .lawyer-card:hover {
      transform: translateY(-8px);
    }
    .lawyer-card img {
      width: 100%;
      height: 280px;
      object-fit: cover;
    }

    /* CTA Button */
    .cta-button {
      margin-top: 50px;
      display: inline-block;
      background-color: #1c1c1c;
      color: #fff;
      padding: 14px 32px;
      border-radius: 8px;
      font-weight: 600;
      transition: 0.3s;
    }
    .cta-button:hover {
      background: #f0c040;
      color: #1c1c1c;
      transform: translateY(-3px);
    }


    /* hero2 */

    .hero-2 {
  position: relative;
  height: 30vh;
  background: url('../img/closeup-gavel-judgement-concept.jpg') center center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.hero-2-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero-2-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
}

.hero-2 h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 10px;
}

.hero-2 p {
  font-size: 18px;
  color: #f0f0f0;
}

/*  */
.testimonials {
    background: #f9f9f9;
    padding: 100px 40px;
    text-align: center;
  }

  .testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 40px;
  }

  .testimonial-card {
    background: #fff;
    padding: 30px 25px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
  }

  .testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  }

  .testimonial-card .quote {
    font-style: italic;
    color: #555;
    margin-bottom: 20px;
    position: relative;
    padding-left: 30px;
  }

  .testimonial-card .quote::before {
    content: '201C';
    font-size: 40px;
    position: absolute;
    left: 0;
    top: -5px;
    color: #f0c040;
  }

  .client-info {
    display: flex;
    align-items: center;
    gap: 15px;
  }

  .client-info img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #f0c040;
  }

  .testimonials h2 {
    font-size: 36px;
    margin-bottom: 10px;
    position: relative;
  }

  .testimonials h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: #f0c040;
    margin: 10px auto 0;
    border-radius: 2px;
  }

  .section-sub {
    font-size: 16px;
    color: #666;
    margin-top: 10px;
  }


  /*  about*/
 .dark-glass-section {
      background: rgba(255, 255, 255, 0.6);
      backdrop-filter: blur(6px);
      padding: 80px 0;
    }

    .container h2 {
      font-size: 2.5rem;
      margin-bottom: 10px;
      font-weight: bold;
    }

    .section-sub {
      font-size: 1.1rem;
      margin-bottom: 40px;
      color: #555;
    }

    .card-glass-dark {
      background: rgba(255, 255, 255, 0.85);
      border: 1px solid rgba(0, 0, 0, 0.05);
      border-radius: 12px;
      padding: 25px;
      backdrop-filter: blur(10px);
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
      color: #333;
    }

    .about-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 30px;
      align-items: center;
    }

    .about-text {
      flex: 1 1 50%;
    }

    .about-image {
      flex: 1 1 40%;
    }

    .about-image img {
      width: 100%;
      border-radius: 12px;
    }

    .choose-grid, .testimonial-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .choose-card i, .testimonial-card img {
      margin-bottom: 12px;
    }

    .testimonial-card img {
      border-radius: 50%;
      width: 60px;
      height: 60px;
      object-fit: cover;
    }

    .stars {
      color: gold;
      font-size: 18px;
      margin-top: 10px;
    }
  

    /* Responsive typography tweaks */
@media (max-width: 768px) {
  .hero-2 {
    height: 250px;
  }

  .hero-2-content h1 {
    font-size: 1.8rem;
  }

  .hero-2-content p {
    font-size: 0.95rem;
  }

  .container h2 {
    font-size: 1.75rem;
  }
}


/* footer */

.footer-section {
  background: linear-gradient(to right, #111 0%, #1a1a1a 100%);
  color: #ccc;
  position: relative;
  z-index: 1;
}

.footer-section .footer-overlay {
  background: rgba(20, 20, 20, 0.8);
  backdrop-filter: blur(6px);
  padding: 50px 0 20px;
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #f7d14c;
}

.footer-section a {
  color: #f7d14c;
  text-decoration: none;
}

.footer-section a:hover {
  text-decoration: underline;
}

.footer-section ul {
  padding-left: 0;
  list-style: none;
}

.footer-section i {
  margin-right: 8px;
}

.social-icons a {
  color: #f7d14c;
  font-size: 18px;
  margin-right: 12px;
  transition: 0.3s ease;
}

.social-icons a:hover {
  color: #fff;
}

.footer-section a,
.footer-section a:hover {
  text-decoration: none;
}
.footer-logo-img {
  width: 140px;
  height: auto;
  filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.1));
}


/* contact */

  .contact-section {
      padding: 80px 0;
      background: rgba(255, 255, 255, 0.8);
      backdrop-filter: blur(6px);
    }

    .form-container {
      background: rgba(255, 255, 255, 0.95);
      padding: 40px;
      border-radius: 15px;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    }

    .form-control {
      border-radius: 8px;
    }

    .btn-custom {
      background-color: #f7d14c;
      color: #000;
      border-radius: 8px;
      transition: all 0.3s ease;
    }

    .btn-custom:hover {
      background-color: #000;
      color: #f7d14c;
    }

    .contact-info {
      margin-top: 40px;
    }

    .contact-info h5 i {
      color: #f7d14c;
      margin-right: 10px;
    }

    .section-title {
      font-size: 2.5rem;
      font-weight: bold;
      margin-bottom: 20px;
    }


    /* practice area */

    .custom-section {
      padding: 80px 0;
    }

    .glass {
      background: rgba(255, 255, 255, 0.8);
      backdrop-filter: blur(8px);
      border-radius: 15px;
      padding: 40px;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }

    .section-title {
      font-size: 2.5rem;
      font-weight: bold;
    }

    .section-sub {
      font-size: 1.1rem;
      color: #555;
      margin-top: 10px;
    }

    .grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .card-glass {
      text-align: center;
      padding: 30px;
      border-radius: 15px;
      background: rgba(255,255,255,0.9);
      box-shadow: 0 5px 20px rgba(0,0,0,0.1);
      transition: all 0.3s ease;
    }

    .card-glass:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    }

    .card-glass i {
      font-size: 2.5rem;
      color: #f7d14c;
      margin-bottom: 15px;
    }

    .btn-yellow {
      background-color: #f7d14c;
      color: #000;
      border-radius: 10px;
      font-weight: 500;
      padding: 10px 20px;
    }

    .btn-yellow:hover {
      background-color: #000;
      color: #f7d14c;
    }

    .form-control {
      border-radius: 10px;
    }

    .faq-item {
      margin-bottom: 20px;
    }

    .faq-question {
      font-weight: 600;
    }

    .faq-answer {
      margin-top: 5px;
      color: #444;
    }




    .pacifico-regular {
  font-family: "Pacifico", cursive;

  font-style: normal;
}

    /* splash */
.splash-screen {
  position: fixed;
  inset: 0;
  background-color: #36454F;  
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.splash-screen img {
  width: 300px;
  height: auto;
  animation: zoomFade 1.2s ease;
}

.splash-screen h1 {
  font-family: "Pacifico", cursive;
  margin-top: 20px;
  font-size: 2rem;
  color: #fff;
  animation: fadeInUp 1.5s ease;
}

.splash-screen.hide {
  opacity: 0;
  visibility: hidden;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes zoomFade {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}



/* consent model */

 .modal-content {
      border-radius: 15px;
      background: rgba(255, 255, 255, 0.95);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
      backdrop-filter: blur(10px);
    }

    .btn-consent {
      padding: 10px 25px;
      font-weight: 500;
      border-radius: 8px;
    }

    .btn-agree {
      background-color: #28a745;
      color: white;
    }

    .btn-deny {
      background-color: #dc3545;
      color: white;
    }

    .main-content {
      padding: 100px 20px;
      text-align: center;
    }


    /* corousal */

     .my-carousel-section {
    padding: 8px;
  }

  .swiper {
    width: 100%;
  }

  .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 180px;
    overflow: hidden;
    transition: transform 0.5s ease-in-out;
    background: transparent;
    border-radius: 12px;
  }

  .swiper-slide:hover {
    transform: scale(1.05);
  }

  .swiper-slide img {
    height: 80%;
    width: auto;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
  }

  /* Mobile-specific adjustments */
  @media (max-width: 768px) {
    .swiper-slide {
      height: 150px;
    }
  }

  @media (max-width: 480px) {
    .swiper-slide {
      height: 120px;
    }
  }