/* Base Styles */
body {
  font-family: 'Marcellus', serif;
  top: 0px !important;
}

/* Header Styles */
.top-header {
  background-color: #2E406F;
  color: white;
  padding: 5px 0;
}

.top-header .btn {
  margin-right: 10px;
}

.middle-header {
  padding: 10px 0;
  border-bottom: 1px solid #ddd;
}

.middle-header img {
  height: 80px;
}

/* Navigation */
.nav-bar {
  background-color: #2E406F;
}

.nav-bar .nav-link {
  color: white;
  padding: 10px 15px;
}

.nav-bar .nav-link:hover {
  background-color: #1a237e;
  color: #fff;
}

/* Call Section */
.call-icon {
  background-color: #2400FF;
  color: white;
  padding: 8px 14px;
  border-radius: 50%;
  margin-right: 8px;
}

.call-text {
  font-weight: bold;
  color: #000;
}

/* Carousel */
.carousel-inner img {
  object-fit: contain;
}

.carousel-indicators {
  bottom: -50px;
}

.carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #d4af37;
  border: none;
  opacity: 0.5;
}

.carousel-indicators button.active {
  opacity: 1;
}

/* Google Translate Hide */
.goog-te-banner-frame.skiptranslate,
.goog-te-gadget span,
.goog-logo-link {
  display: none !important;
}

#google_translate_element {
  display: none;
}

/* Common Utility Classes */
.golden-bg {
  background: linear-gradient(135deg, #d4af37, #b8941f);
}

.section-padding {
  padding: 80px 0;
}

.golden-name {
  color: #d4af37;
}

/* Social Links */
.social-links {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f8f9fa;
  border: 2px solid #e9ecef;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6c757d;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: #d4af37;
  border-color: #d4af37;
  color: white;
}

/* Stats Section */
.stats-section {
  background: linear-gradient(135deg, #34495e, #2c3e50);
  color: white;
}

.stat-item {
  text-align: center;
  padding: 40px 20px;
}

.stat-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #d4af37;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 30px;
  color: white;
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 18px;
  opacity: 0.9;
}

/* Services Section */
.services-section {
  background: #f8f9fa;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-subtitle {
  color: #d4af37;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 10px;
}

.section-main-title {
  font-size: 42px;
  font-weight: 700;
  color: #2c3e50;
}

.service-card {
  background: white;
  border-radius: 15px;
  padding: 40px 30px;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
  border: 1px solid #e9ecef;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.service-card.highlighted {
  color: black;
  transform: translateY(-10px);
}

.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 30px;
  font-size: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
}

.service-description {
  font-size: 16px;
  line-height: 1.6;
  opacity: 0.9;
}

/* Services Carousel */
.services-carousel {
  overflow: hidden;
}

.services-slider {
  display: flex;
  transition: transform 0.3s ease;
}

.service-slide {
  min-width: 100%;
  padding: 0 15px;
}

@media (min-width: 768px) {
  .service-slide {
    min-width: 50%;
  }
}

@media (min-width: 992px) {
  .service-slide {
    min-width: 33.333%;
  }
}

@media (min-width: 1200px) {
  .service-slide {
    min-width: 25%;
  }
}

.carousel-nav {
  text-align: center;
  margin-top: 30px;
}

.nav-btn {
  background: #d4af37;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: white;
  font-size: 18px;
  margin: 0 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.nav-btn:hover {
  background: #b8941f;
  transform: scale(1.1);
}

.nav-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
  transform: none;
}

/* Emergency Contact Section */
.emergency-contact-section {
  background-color: #344b75;
  padding: 80px 0;
  color: white;
  font-family: 'Segoe UI', sans-serif;
}

.top-text {
  font-size: 18px;
  font-weight: 500;
  color: #ffffffcc;
}

.emergency-contact-section h2 {
  font-size: 38px;
  margin-top: 10px;
  margin-bottom: 20px;
  color: #fff;
}

.emergency-contact-section .desc {
  font-size: 20px;
  line-height: 1.7;
  color: #f1f1f1;
}

.emergency-box {
  background-color: #e8d56f;
  padding: 20px 30px;
  border-radius: 18px;
  margin-top: 30px;
  display: flex;
  align-items: center;
  max-width: 520px;
}

.icon-circle {
  background-color: #000099;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
}

.icon-circle i {
  color: white;
  font-size: 32px;
}

.text-area h4 {
  color: white;
  font-size: 22px;
  margin-bottom: 6px;
}

.text-area p {
  font-size: 16px;
  margin: 0;
  color: #333;
}

.traffic-img {
  max-width: 350px;
  margin: 0 auto;
}

/* Testimonial Section */
.testimonial-section {
  background: #fff;
  padding: 60px 0;
}

.testimonial-carousel .testimonial-card {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 0 60px rgba(0, 0, 0, 0.05);
  border: 1px solid #ddd;
  position: relative;
  text-align: left;
}

.testimonial-stars {
  color: #f5a623;
  font-size: 18px;
  margin-bottom: 10px;
}

.testimonial-text {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #333;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.testimonial-name {
  font-size: 16px;
  color: #000;
}

.testimonial-title {
  font-size: 14px;
  color: #555;
}

.testimonial-quote {
  font-size: 32px;
  color: #f5f5f5;
  position: absolute;
  bottom: 20px;
  right: 20px;
}

/* News Section */
.news-section {
  padding: 60px 0;
  background-color: #f8f9fa;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.news-section .section-subtitle {
  color: #d4af37;
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.news-section .section-title {
  color: black;
  font-size: 2.5rem;
  font-weight: 500;
  margin-bottom: 0;
}

.news-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 30px;
  position: relative;
  height: 100%;
}

.news-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.card-image {
  position: relative;
  height: 250px;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  clip-path: polygon(0 0, 100% 0, 100% 85%, 50% 100%, 0 85%);
}

.news-card:hover .card-image img {
  transform: scale(1.05);
}

.date-badge {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 80px;
  background: #d8b750;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  box-shadow: 0 5px 15px rgba(230, 179, 102, 0.4);
  z-index: 2;
}

.date-number {
  font-size: 28px;
  line-height: 1;
  margin-bottom: 2px;
}

.date-month {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.card-content {
  padding: 50px 30px 30px;
}

.card-title {
  color: #344b75;
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 15px;
  line-height: 1.3;
  text-align: center;
}

.card-description {
  color: #6c757d;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 25px;
}

.read-more-btn {
  color: #344b75;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: color 0.3s ease;
  display: flex;
  justify-content: center;
}

.read-more-btn:hover {
  color: #0056b3;
}

.read-more-btn::after {
  content: '→';
  margin-left: 8px;
  transition: margin-left 0.3s ease;
}

.read-more-btn:hover::after {
  margin-left: 12px;
}

/* Media Queries */
@media (max-width: 768px) {
  .news-section .section-title {
    font-size: 2rem;
  }
  
  .card-content {
    padding: 30px 20px 20px;
  }
  
  .date-badge {
    width: 70px;
    height: 70px;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
  }
  
  .date-number {
    font-size: 24px;
  }
}
    /* testimonial */

.testimonial-section {
  background: #fff;
  padding: 60px 0;
}

.section-subtitle {
  color: #d4af37;
  font-weight: 600;
  margin-bottom: 8px;
}

.section-title {
  font-size: 36px;
  font-weight: 500;
  color: #222;
}

.testimonial-carousel .testimonial-card {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 0 60px rgba(0, 0, 0, 0.05);
  border: 1px solid #ddd;
  position: relative;
  text-align: left;
}

.testimonial-stars {
  color: #f5a623;
  font-size: 18px;
  margin-bottom: 10px;
}

.testimonial-text {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #333;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.testimonial-name {
  font-size: 16px;
  color: #000;
}

.testimonial-title {
  font-size: 14px;
  color: #555;
}

.testimonial-quote {
  font-size: 32px;
  color: #f5f5f5;
  position: absolute;
  bottom: 20px;
  right: 20px;
}

/* counter */
 .golden-bg {
            background: linear-gradient(135deg, #d4af37, #b8941f);
        }
        
        .section-padding {
            padding: 80px 0;
        }
        
      
        
        .golden-name {
            color: #d4af37;
        }
        
        .social-links {
            display: flex;
            justify-content: center;
            gap: 15px;
        }
        
        .social-links a {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: #f8f9fa;
            border: 2px solid #e9ecef;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #6c757d;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .social-links a:hover {
            background: #d4af37;
            border-color: #d4af37;
            color: white;
        }
        
        .stats-section {
            background: linear-gradient(135deg, #34495e, #2c3e50);
            color: white;
        }
        
        .stat-item {
            text-align: center;
            padding: 40px 20px;
        }
        
        .stat-icon {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: #d4af37;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 30px;
            color: white;
        }
        
        .stat-number {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 10px;
        }
        
        .stat-label {
            font-size: 18px;
            opacity: 0.9;
        }
        
        .services-section {
            background: #f8f9fa;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-subtitle {
            color: #d4af37;
            font-size: 18px;
            font-weight: 500;
            margin-bottom: 10px;
        }
        
        .section-main-title {
            font-size: 42px;
            font-weight: 700;
            color: #2c3e50;
        }
        
        .service-card {
            background: white;
            border-radius: 15px;
            padding: 40px 30px;
            text-align: center;
            height: 100%;
            transition: all 0.3s ease;
            border: 1px solid #e9ecef;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }
        
        .service-card.highlighted {
            /* background: linear-gradient(135deg, #d4af37, #b8941f); */
            color: black;
            transform: translateY(-10px);
        }
        
        .service-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 30px;
            font-size: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .service-title {
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 20px;
        }
        
        .service-description {
            font-size: 16px;
            line-height: 1.6;
            opacity: 0.9;
        }
        
        .services-carousel {
            overflow: hidden;
        }
        
        .services-slider {
            display: flex;
            transition: transform 0.3s ease;
        }
        
        .service-slide {
            min-width: 100%;
            padding: 0 15px;
        }
        
        @media (min-width: 768px) {
            .service-slide {
                min-width: 50%;
            }
        }
        
        @media (min-width: 992px) {
            .service-slide {
                min-width: 33.333%;
            }
        }
        
        @media (min-width: 1200px) {
            .service-slide {
                min-width: 25%;
            }
        }
    .section {
      padding: 80px 20px;
      text-align: center;
    }

    .section-title-small {
      color: #d4a853;
      font-size: 22px;
      font-weight: bold;
      margin-bottom: 10px;
    }

    .section-title {
      color: black;
      font-size: 42px;
      font-weight: bold;
      margin-bottom: 60px;
      font-family: 'Georgia', serif;
    }

    .owl-carousel {
      max-width: 1200px;
      margin: 0 auto;
    }

    .owl-carousel .owl-item {
      padding: 0; /* Remove extra padding */
    }

    .trustee-card {
      background: white;
      padding: 40px 30px;
      border-radius: 15px;
      box-shadow: 0 5px 20px rgba(0,0,0,0.08);
      width: 100%;
      text-align: center;
    }
    .trustee-card:hover .trustee-name{
      color: #d4a853;
    }

    .trustee-image {
      width: 160px;
      height: 160px;
      border-radius: 50%;
      margin: 0 auto 25px;
      overflow: hidden;
      border: 4px solid #f0f0f0;
    }

    .trustee-image img {
      width: 100%;
      height: 100%;
      object-fit: contain;
    }

    .trustee-name {
      font-size: 20px;
      font-weight: 500;
      color: black;
      margin-bottom: 5px;
    }

    .trustee-description {
      font-size: 14px;
      color: #888;
      line-height: 1.5;
      margin-bottom: 25px;
    }

    .social-links {
      display: flex;
      justify-content: start;
      gap: 15px;
    }

    .social-link {
      width: 40px;
      height: 40px;
      border: 2px solid #ddd;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      color: #666;
      font-size: 16px;
      transition: all 0.3s ease;
    }

    .social-link:hover {
      border-color: #d4a853;
      color: #d4a853;
    }
 
    /* testimonial*/

    
    .testimonials-section {
      padding: 80px 0;
      text-align: center;
    }

    .testimonials-section h2 {
      font-size: 38px;
      font-weight: 400;
      margin-bottom: 10px;
    }

    .testimonials-section .subtitle {
     color: #d4af37;;
      font-weight: 600;
      margin-bottom: 20px;
      font-size: 22px;
    }

    .testimonial-slide {
      background: #fff;
      padding: 30px;
      border-radius: 15px;
      position: relative;
      min-height: 280px;
      box-shadow: 0 10px 30px rgba(255, 255, 255, 0.6); /* Soft white glow */
      border-top: 4px solid #c3a748;
      transition: all 0.3s ease;
    }

    .testimonial-slide:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 45px rgba(0, 0, 0, 0.1);
    }

    .testimonial-slide .stars {
      color: #f8b600;
      margin-bottom: 15px;
      font-size: 20px;
      text-align: start;
    }

    .testimonial-slide .text {
      font-size: 18px;
      color: #333;
      margin-bottom: 25px;
      text-align: start;
    }

    .testimonial-slide .author {
      display: flex;
      align-items: center;
      gap: 15px;
    }

    .testimonial-slide .author img {
      width: 50px;
      height: 50px;
      border-radius: 50%;
    }

    .testimonial-slide .author-name {
      font-weight: bold;
      margin: 0;
    }

    .testimonial-slide .author-title {
      font-size: 14px;
      color: #555;
    }

    .owl-dots {
      margin-top: 30px;
    }

    .owl-dot span {
      width: 12px;
      height: 12px;
      background: #d4c8bb !important;
      display: block;
      border-radius: 50%;
      margin: 5px;
    }

    .owl-dot.active span {
      background: #c3a748 !important;
    }


