:root {
    --primary-red: #2e7d32;      /* Primary Green */
    --dark-red: #1b5e20;         /* Dark Green */
    --light-red: #c8e6c9;        /* Light Green */

    --gold: #fbc02d;             /* Yellow */
    --dark-gold: #f9a825;        /* Dark Yellow */

    --dark-blue: #1f3d2b;        /* Deep Green (replacing blue) */
    --light-blue: #e8f5e9;       /* Very Light Green */

    --dark-bg: #121815;
    --light-bg: #f8fdf9;

    --text-dark: #1e2f23;
    --text-light: #6b8f71;

    --shadow: 0 10px 30px rgba(46, 125, 50, 0.15);
    --shadow-lg: 0 20px 50px rgba(46, 125, 50, 0.25);

    --radius: 16px;
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
}
      /*:root {*/
      /*    --primary-red: #e53935;*/
      /*    --dark-red: #b71c1c;*/
      /*    --light-red: #ffcdd2;*/
      /*    --gold: #d4af37;*/
      /*    --dark-gold: #b8941f;*/
      /*    --dark-blue: #0a2c5d;*/
      /*    --light-blue: #e8f0fe;*/
      /*    --dark-bg: #1a1d23;*/
      /*    --light-bg: #f8f9fa;*/
      /*    --text-dark: #2c3e50;*/
      /*    --text-light: #6c757d;*/
      /*    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);*/
      /*    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.15);*/
      /*    --radius: 16px;*/
      /*    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);*/
      /*}*/

      * {
          margin: 0;
          padding: 0;
          box-sizing: border-box;
      }
      a{
          text-decoration: none;
      }

      body {
          font-family: 'Poppins', sans-serif;
          color: var(--text-dark);
          overflow-x: hidden;
          background: var(--light-bg);
          scroll-behavior: smooth;
      }

      h1,
      h2,
      h3,
      h4,
      h5,
      h6 {
          font-family: 'Montserrat', sans-serif;
          font-weight: 700;
      }

      /* Custom Scrollbar */
      ::-webkit-scrollbar {
          width: 12px;
      }

      ::-webkit-scrollbar-track {
          background: #f1f1f1;
      }

      ::-webkit-scrollbar-thumb {
          background: linear-gradient(to bottom, var(--primary-red), var(--dark-red));
          border-radius: 6px;
      }

      ::-webkit-scrollbar-thumb:hover {
          background: linear-gradient(to bottom, var(--dark-red), var(--primary-red));
      }

      /* Header */
      .main-header {
          position: fixed;
          top: 0;
          left: 0;
          right: 0;
          z-index: 9999;
          background: rgba(255, 255, 255, 0.95);
          backdrop-filter: blur(10px);
          border-bottom: 1px solid rgba(0, 0, 0, 0.05);
          transition: var(--transition);
          /* padding: 0.8rem 0; */
      }

      .main-header.scrolled {
          background: rgba(255, 255, 255, 0.98);
          box-shadow: var(--shadow);
          padding: 0.5rem 0;
      }

      .navbar-nav .nav-link {
          color: var(--text-dark) !important;
          font-weight: 500;
          padding: 0.5rem 1.25rem;
          margin: 0 0.25rem;
          border-radius: 2rem;
          transition: var(--transition);
          position: relative;
      }

      .navbar-nav .nav-link:hover {
          color: var(--primary-red) !important;
          background: rgba(229, 57, 53, 0.05);
      }

      .navbar-nav .nav-link.active {
          color: var(--primary-red) !important;
          background: rgba(229, 57, 53, 0.1);
      }

      .navbar-nav .nav-link::after {
          content: '';
          position: absolute;
          bottom: 0;
          left: 50%;
          transform: translateX(-50%);
          width: 0;
          height: 2px;
          background: var(--primary-red);
          transition: width 0.3s ease;
      }

      .navbar-nav .nav-link:hover::after {
          width: 70%;
      }

      /* Buttons */
      .btn-red {
          background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
          color: white;
          border: none;
          padding: 0.85rem 2.25rem;
          border-radius: 2rem;
          font-weight: 600;
          transition: var(--transition);
          box-shadow: 0 4px 15px rgba(229, 57, 53, 0.3);
          position: relative;
          overflow: hidden;
          z-index: 1;
      }

      .btn-red::before {
          content: '';
          position: absolute;
          top: 0;
          left: -100%;
          width: 100%;
          height: 100%;
          background: linear-gradient(135deg, var(--dark-red), var(--primary-red));
          transition: left 0.5s ease;
          z-index: -1;
      }

      .btn-red:hover::before {
          left: 0;
      }

      .btn-red:hover {
          transform: translateY(-3px);
          box-shadow: 0 8px 25px rgba(229, 57, 53, 0.4);
          color: white;
      }

      .btn-gold {
          background: linear-gradient(135deg, var(--gold), var(--dark-gold));
          color: var(--dark-blue);
          border: none;
          padding: 0.85rem 2.25rem;
          border-radius: 2rem;
          font-weight: 600;
          transition: var(--transition);
          box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
          position: relative;
          overflow: hidden;
          z-index: 1;
      }

      .btn-gold::before {
          content: '';
          position: absolute;
          top: 0;
          left: -100%;
          width: 100%;
          height: 100%;
          background: linear-gradient(135deg, var(--dark-gold), var(--gold));
          transition: left 0.5s ease;
          z-index: -1;
      }

      .btn-gold:hover::before {
          left: 0;
      }

      .btn-gold:hover {
          transform: translateY(-3px);
          box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
          color: var(--dark-blue);
      }

      /* Hero Section */
      .hero-section {
          position: relative;
          min-height: 100vh;
          background: linear-gradient(rgba(10, 44, 93, 0.85), rgba(10, 44, 93, 0.9)),
              url('https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?ixlib=rb-4.0.3&amp;auto=format&amp;fit=crop&amp;w=1920&amp;q=80');
          background-size: cover;
          background-position: center;
          background-attachment: fixed;
          display: flex;
          align-items: center;
          padding-top: 100px;
          color: white;
          overflow: hidden;
          padding-bottom:30px;
      }

      .hero-tag {
          background: rgba(212, 175, 55, 0.9);
          color: var(--dark-blue);
          display: inline-block;
          padding: 8px 20px;
          border-radius: 2rem;
          font-weight: 700;
          font-size: 0.9rem;
          letter-spacing: 1px;
          margin-bottom: 20px;
          animation: pulse 2s infinite;
      }

      @keyframes pulse {
          0% {
              transform: scale(1);
          }

          50% {
              transform: scale(1.05);
          }

          100% {
              transform: scale(1);
          }
      }

      .hero-content h1 {
          font-size: 3.5rem;
          line-height: 1.2;
          margin-bottom: 1.5rem;
          text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
      }

      .hero-content p {
          font-size: 1.2rem;
          line-height: 1.6;
          margin-bottom: 2rem;
          opacity: 0.9;
      }

      .search-form {
          background: rgba(255, 255, 255, 0.95);
          backdrop-filter: blur(10px);
          border-radius: var(--radius);
          padding: 2rem;
          box-shadow: var(--shadow-lg);
          animation: fadeInUp 0.8s ease;
          border: 1px solid rgba(255, 255, 255, 0.2);
      }

      .search-form h3 {
          color: var(--dark-blue) !important;
          font-size: 22px;
      }


      .form-control,
      .form-select {
          border-radius: 0.75rem;
          padding: 0.75rem 1.25rem;
          border: 2px solid #e9ecef;
          transition: var(--transition);
      }

      .form-control:focus,
      .form-select:focus {
          border-color: var(--primary-red);
          box-shadow: 0 0 0 0.25rem rgba(229, 57, 53, 0.25);
      }

      /* Features Section */
      .features-section {
          padding: 5rem 0;
          background: white;
          position: relative;
      }

      .feature-card {
          text-align: center;
          padding: 2.5rem 2rem;
          border-radius: var(--radius);
          transition: var(--transition);
          background: white;
          border: 1px solid rgba(0, 0, 0, 0.05);
          height: 100%;
          position: relative;
          overflow: hidden;
      }

      .feature-card::before {
          content: '';
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 5px;
          background: linear-gradient(to right, var(--primary-red), var(--gold));
          transform: scaleX(0);
          transition: transform 0.5s ease;
      }

      .feature-card:hover::before {
          transform: scaleX(1);
      }

      .feature-card:hover {
          transform: translateY(-10px);
          box-shadow: var(--shadow-lg);
      }

      .feature-icon {
          width: 80px;
          height: 80px;
          background: linear-gradient(135deg, var(--light-red), white);
          border-radius: 50%;
          display: flex;
          align-items: center;
          justify-content: center;
          margin: 0 auto 1.5rem;
          font-size: 2rem;
          color: var(--primary-red);
          transition: var(--transition);
      }

      .feature-card:hover .feature-icon {
          transform: scale(1.1) rotate(5deg);
          background: linear-gradient(135deg, var(--primary-red), var(--light-red));
          color: white;
      }

      /* Project Cards */
      .project-card {
          border-radius: var(--radius);
          overflow: hidden;
          border: none;
          box-shadow: var(--shadow);
          transition: var(--transition);
          height: 100%;
          background: white;
      }

      .project-card:hover {
          transform: translateY(-10px);
          box-shadow: var(--shadow-lg);
      }

      .project-img {
          height: 250px;
          object-fit: cover;
          transition: transform 0.8s ease;
      }

      .project-card:hover .project-img {
          transform: scale(1.1);
      }

      .project-badge {
          position: absolute;
          top: 15px;
          left: 15px;
          background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
          color: white;
          padding: 0.5rem 1.25rem;
          border-radius: 2rem;
          font-size: 0.85rem;
          font-weight: 600;
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      }

      .project-price {
          color: var(--primary-red);
          font-size: 1.5rem;
          font-weight: 700;
      }

      /* Testimonials */
      .testimonial-card {
          background: white;
          padding: 2rem;
          border-radius: var(--radius);
          box-shadow: var(--shadow);
          border-left: 4px solid var(--primary-red);
          transition: var(--transition);
      }

      .testimonial-card:hover {
          transform: translateY(-5px);
          box-shadow: var(--shadow-lg);
      }

      .testimonial-img {
          width: 70px;
          height: 70px;
          border-radius: 50%;
          object-fit: cover;
          border: 3px solid var(--primary-red);
      }

      /* Stats Counter */
      .stats-counter {
          background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
          color: white;
          padding: 5rem 0;
          position: relative;
          overflow: hidden;
      }

      .stats-counter::before {
          content: '';
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          background: url('https://images.unsplash.com/photo-1512917774080-9991f1c4c750?ixlib=rb-4.0.3&amp;auto=format&amp;fit=crop&amp;w=1920&amp;q=80');
          background-size: cover;
          opacity: 0.1;
      }

      .stat-number {
          font-size: 3.5rem;
          font-weight: 800;
          margin-bottom: 0.5rem;
          text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
      }

      /* Village List */
      .village-grid {
          display: grid;
          grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
          gap: 12px;
          margin-top: 20px;
      }

      .village-item {
          background: var(--light-blue);
          padding: 12px 15px;
          border-radius: 8px;
          font-size: 0.9rem;
          text-align: center;
          transition: var(--transition);
          border: 1px solid transparent;
      }
.btn-outline-light{
    display: flex;
    justify-content: center;
    align-items: center;
}
      .village-item:hover {
          background: var(--primary-red);
          color: white;
          transform: translateY(-3px);
          box-shadow: 0 5px 15px rgba(229, 57, 53, 0.2);
      }

      /* Comparison Table */
      .comparison-table {
          background: white;
          border-radius: var(--radius);
          overflow: hidden;
          box-shadow: var(--shadow-lg);
          transition: var(--transition);
      }

      .comparison-table:hover {
          transform: translateY(-5px);
      }

      .table-header {
          background: linear-gradient(135deg, var(--dark-blue), #1a365d);
          color: white;
          padding: 25px;
          text-align: center;
      }

      .table-row {
          display: grid;
          grid-template-columns: 1fr 1fr;
          border-bottom: 1px solid #eee;
          transition: var(--transition);
      }

      .table-row:hover {
          background: rgba(0, 0, 0, 0.02);
      }

      .table-cell {
          padding: 20px;
          display: flex;
          align-items: center;
      }

      .traditional {
          background: rgba(255, 0, 0, 0.03);
          border-right: 1px solid #eee;
      }

      .advantage {
          background: rgba(46, 139, 87, 0.03);
      }

      /* Map Section */
      .map-section {
          background: linear-gradient(rgba(10, 44, 93, 0.9), rgba(10, 44, 93, 0.9)),
              url('https://images.unsplash.com/photo-1542314831-068cd1dbfeeb?ixlib=rb-4.0.3&amp;auto=format&amp;fit=crop&amp;w=1920&amp;q=80');
          background-size: cover;
          background-position: center;
          color: white;
          padding: 100px 0;
          position: relative;
          overflow: hidden;
      }

      /* Gallery Section */
      .gallery-img {
          border-radius: var(--radius);
          overflow: hidden;
          /*height: 250px;*/
          height: 100%;
          position: relative;
          cursor: pointer;
      }

      .gallery-img img {
          width: 100%;
          height: 100%;
          object-fit: cover;
          transition: transform 0.6s ease;
      }

      .gallery-img:hover img {
          transform: scale(1.1);
      }
      
      .gallery-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.gallery-modal.show {
    display: flex;
}

.gallery-modal img,
.gallery-modal video {
    max-width: 90%;
    max-height: 90%;
    border-radius: 12px;
}

.gallery-modal .close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
}

      /*.gallery-img::after {*/
      /*    content: '';*/
      /*    position: absolute;*/
      /*    top: 0;*/
      /*    left: 0;*/
      /*    width: 100%;*/
      /*    height: 100%;*/
      /*    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);*/
      /*    opacity: 0;*/
      /*    transition: opacity 0.4s ease;*/
      /*}*/

      /*.gallery-img:hover::after {*/
      /*    opacity: 1;*/
      /*}*/

      /* Back to Top Button */
      .back-to-top {
          position: fixed;
          bottom: 30px;
          right: 30px;
          width: 50px;
          height: 50px;
          background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
          color: white;
          border-radius: 50%;
          display: flex;
          align-items: center;
          justify-content: center;
          font-size: 1.2rem;
          z-index: 1000;
          opacity: 0;
          visibility: hidden;
          transform: translateY(20px);
          transition: var(--transition);
          box-shadow: 0 5px 20px rgba(229, 57, 53, 0.3);
      }

      .back-to-top.show {
          opacity: 1;
          visibility: visible;
          transform: translateY(0);
      }

      .back-to-top:hover {
          transform: translateY(-5px);
          box-shadow: 0 8px 25px rgba(229, 57, 53, 0.4);
      }

      /* Animations */
      @keyframes fadeInUp {
          from {
              opacity: 0;
              transform: translateY(30px);
          }

          to {
              opacity: 1;
              transform: translateY(0);
          }
      }

      .animate-fade-in {
          animation: fadeInUp 0.6s ease forwards;
      }

      /* Section Titles */
      .section-title {
          position: relative;
          margin-bottom: 1.5rem;
      }

      .section-title::after {
          content: '';
          position: absolute;
          bottom: -10px;
          left: 50%;
          transform: translateX(-50%);
          width: 80px;
          height: 4px;
          background: linear-gradient(to right, var(--primary-red), var(--gold));
          border-radius: 2px;
      }

      /* Floating Elements */
      .floating {
          animation: floating 3s ease-in-out infinite;
      }

      @keyframes floating {
          0% {
              transform: translateY(0px);
          }

          50% {
              transform: translateY(-15px);
          }

          100% {
              transform: translateY(0px);
          }
      }

      /* Progress Bar */
      .scroll-progress {
          position: fixed;
          top: 0;
          left: 0;
          width: 0%;
          height: 4px;
          background: linear-gradient(to right, var(--primary-red), var(--gold));
          z-index: 10000;
          transition: width 0.2s ease;
      }

      /* Responsive */
      @media (max-width: 768px) {
          .hero-content h1 {
              font-size: 2.5rem;
          }

          .hero-content p {
              font-size: 1rem;
          }

          .stat-number {
              font-size: 2.5rem;
          }

          .village-grid {
              grid-template-columns: repeat(2, 1fr);
          }

          .table-row {
              grid-template-columns: 1fr;
          }

          .table-cell {
              padding: 15px;
          }
      }

      /* Contact Section */
      .contact-section {
          background: linear-gradient(135deg, var(--dark-bg), #2c3e50);
          color: white;
          position: relative;
      }

      .contact-info {
          background: rgba(255, 255, 255, 0.1);
          padding: 2rem;
          border-radius: var(--radius);
          backdrop-filter: blur(10px);
          border: 1px solid rgba(255, 255, 255, 0.1);
          transition: var(--transition);
      }

      .contact-info:hover {
          transform: translateY(-5px);
          background: rgba(255, 255, 255, 0.15);
      }

      /* Loading Animation */
      .loading-spinner {
          display: none;
          width: 40px;
          height: 40px;
          border: 4px solid rgba(229, 57, 53, 0.2);
          border-radius: 50%;
          border-top-color: var(--primary-red);
          animation: spin 1s linear infinite;
          margin: 20px auto;
      }

      @keyframes spin {
          100% {
              transform: rotate(360deg);
          }
      }

      /* Investment Section */
      .investment-highlight {
          background: linear-gradient(135deg, rgba(229, 57, 53, 0.05), rgba(212, 175, 55, 0.05));
          border-radius: var(--radius);
          padding: 2rem;
          border-left: 5px solid var(--gold);
      }

      /* internal page css start */

      /* css for about us  */
      /* Hero Section for About Us */
      .about-hero-section {
          position: relative;
          min-height: 70vh;
          background: linear-gradient(rgba(10, 44, 93, 0.85), rgba(10, 44, 93, 0.9)),
              url('https://images.unsplash.com/photo-1497366216548-37526070297c?ixlib=rb-4.0.3&amp;auto=format&amp;fit=crop&amp;w=1920&amp;q=80');
          background-size: cover;
          background-position: center;
          background-attachment: fixed;
          display: flex;
          align-items: center;
          padding-top: 100px;
          color: white;
          overflow: hidden;
          padding-bottom: 60px;
      }

      .about-hero-content h1 {
          font-size: 3.5rem;
          line-height: 1.2;
          margin-bottom: 1.5rem;
          text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
      }

      .breadcrumb {
          background: transparent;
          padding: 0;
          margin-bottom: 1rem;
      }

      .breadcrumb-item a {
          color: var(--gold);
          text-decoration: none;
      }

      .breadcrumb-item.active {
          color: white;
      }

      /* About Company Section */
      .about-company {
          padding: 5rem 0;
          background: white;
      }

      .mission-vision-card {
          background: white;
          padding: 3rem 2.5rem;
          border-radius: var(--radius);
          box-shadow: var(--shadow);
          height: 100%;
          transition: var(--transition);
          border-top: 5px solid var(--primary-red);
          position: relative;
          overflow: hidden;
      }

      .mission-vision-card:hover {
          transform: translateY(-10px);
          box-shadow: var(--shadow-lg);
      }

      .mission-vision-card.gold-border {
          border-top-color: var(--gold);
      }

      .card-icon {
          width: 70px;
          height: 70px;
          background: linear-gradient(135deg, var(--light-red), white);
          border-radius: 50%;
          display: flex;
          align-items: center;
          justify-content: center;
          margin-bottom: 1.5rem;
          font-size: 1.8rem;
          color: var(--primary-red);
      }

      .mission-vision-card.gold-border .card-icon {
          background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), white);
          color: var(--gold);
      }

      /* Timeline Section */
      .timeline-section {
          padding: 5rem 0;
          background: linear-gradient(135deg, rgba(10, 44, 93, 0.03), rgba(229, 57, 53, 0.03));
          position: relative;
      }

      .timeline {
          position: relative;
          max-width: 1200px;
          margin: 0 auto;
      }

      .timeline::after {
          content: '';
          position: absolute;
          width: 6px;
          background: linear-gradient(to bottom, var(--primary-red), var(--gold));
          top: 0;
          bottom: 0;
          left: 50%;
          margin-left: -3px;
          border-radius: 3px;
      }

      .timeline-item {
          padding: 10px 40px;
          position: relative;
          width: 50%;
          box-sizing: border-box;
          margin-bottom: 3rem;
      }

      .timeline-item:nth-child(odd) {
          left: 0;
      }

      .timeline-item:nth-child(even) {
          left: 50%;
      }

      .timeline-content {
          padding: 2rem;
          background: white;
          position: relative;
          border-radius: var(--radius);
          box-shadow: var(--shadow);
          transition: var(--transition);
      }

      .timeline-content:hover {
          transform: translateY(-5px);
          box-shadow: var(--shadow-lg);
      }

      .timeline-item:nth-child(odd) .timeline-content {
          border-left: 4px solid var(--primary-red);
      }

      .timeline-item:nth-child(even) .timeline-content {
          border-left: 4px solid var(--gold);
      }

      .timeline-year {
          display: inline-block;
          padding: 0.5rem 1.5rem;
          background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
          color: white;
          border-radius: 2rem;
          font-weight: 600;
          margin-bottom: 1rem;
      }

      .timeline-item:nth-child(even) .timeline-year {
          background: linear-gradient(135deg, var(--gold), var(--dark-gold));
          color: var(--dark-blue);
      }

      /* Team Section */
      .team-section {
          padding: 5rem 0;
          background: white;
      }

      .team-card {
          background: white;
          border-radius: var(--radius);
          overflow: hidden;
          box-shadow: var(--shadow);
          transition: var(--transition);
          height: 100%;
      }

      .team-card:hover {
          transform: translateY(-10px);
          box-shadow: var(--shadow-lg);
      }

      .team-img {
          height: 250px;
          width: 100%;
          object-fit: cover;
      }

      .team-info {
          padding: 2rem;
      }

      .team-social {
          display: flex;
          gap: 10px;
          margin-top: 1rem;
      }

      .team-social a {
          width: 36px;
          height: 36px;
          border-radius: 50%;
          background: var(--light-bg);
          display: flex;
          align-items: center;
          justify-content: center;
          color: var(--text-dark);
          transition: var(--transition);
      }

      .team-social a:hover {
          background: var(--primary-red);
          color: white;
          transform: translateY(-3px);
      }

      /* Values Section */
      .values-section {
          padding: 5rem 0;
          background: linear-gradient(135deg, var(--dark-blue), #1a365d);
          color: white;
          position: relative;
          overflow: hidden;
      }

      .value-item {
          text-align: center;
          padding: 2rem;
          background: rgba(255, 255, 255, 0.1);
          border-radius: var(--radius);
          backdrop-filter: blur(10px);
          border: 1px solid rgba(255, 255, 255, 0.1);
          transition: var(--transition);
          height: 100%;
      }

      .value-item:hover {
          transform: translateY(-10px);
          background: rgba(255, 255, 255, 0.15);
      }

      .value-icon {
          width: 80px;
          height: 80px;
          background: rgba(255, 255, 255, 0.1);
          border-radius: 50%;
          display: flex;
          align-items: center;
          justify-content: center;
          margin: 0 auto 1.5rem;
          font-size: 2rem;
          color: var(--gold);
      }

      /* Testimonials */
      .testimonial-card {
          background: white;
          padding: 2rem;
          border-radius: var(--radius);
          box-shadow: var(--shadow);
          border-left: 4px solid var(--primary-red);
          transition: var(--transition);
          height: 100%;
      }

      .testimonial-card:hover {
          transform: translateY(-5px);
          box-shadow: var(--shadow-lg);
      }

      .testimonial-img {
          width: 70px;
          height: 70px;
          border-radius: 50%;
          object-fit: cover;
          border: 3px solid var(--primary-red);
      }

      /* CTA Section */
      .cta-section {
          padding: 5rem 0;
          background: linear-gradient(rgba(10, 44, 93, 0.9), rgba(10, 44, 93, 0.9)),
              url('https://images.unsplash.com/photo-1487958449943-2429e8be8625?ixlib=rb-4.0.3&amp;auto=format&amp;fit=crop&amp;w=1920&amp;q=80');
          background-size: cover;
          background-position: center;
          color: white;
          text-align: center;
      }

      /* Back to Top Button */
      .back-to-top {
          position: fixed;
          bottom: 30px;
          right: 30px;
          width: 50px;
          height: 50px;
          background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
          color: white;
          border-radius: 50%;
          display: flex;
          align-items: center;
          justify-content: center;
          font-size: 1.2rem;
          z-index: 1000;
          opacity: 0;
          visibility: hidden;
          transform: translateY(20px);
          transition: var(--transition);
          box-shadow: 0 5px 20px rgba(229, 57, 53, 0.3);
      }

      .back-to-top.show {
          opacity: 1;
          visibility: visible;
          transform: translateY(0);
      }

      .back-to-top:hover {
          transform: translateY(-5px);
          box-shadow: 0 8px 25px rgba(229, 57, 53, 0.4);
      }
    

      /* Responsive */
      @media (max-width: 768px) {
          .about-hero-content h1 {
              font-size: 2.5rem;
          }

          .timeline::after {
              left: 31px;
          }

          .timeline-item {
              width: 100%;
              padding-left: 70px;
              padding-right: 25px;
          }

          .timeline-item:nth-child(even) {
              left: 0;
          }

         

          .mission-vision-card {
              padding: 2rem 1.5rem;
          }
      }

      /* NEW CSS FOR ABOUT US PAGE */
      .company-story {
          position: relative;
          padding: 4rem 0;
      }

      .story-image {
          border-radius: var(--radius);
          overflow: hidden;
          box-shadow: var(--shadow-lg);
          transition: var(--transition);
      }

      .story-image:hover {
          transform: scale(1.02);
      }

      .achievement-badge {
          display: inline-flex;
          align-items: center;
          background: rgba(229, 57, 53, 0.1);
          color: var(--primary-red);
          padding: 0.5rem 1.25rem;
          border-radius: 2rem;
          margin-bottom: 1rem;
          font-weight: 600;
      }

      .achievement-badge i {
          margin-right: 8px;
      }

      .leadership-card {
          text-align: center;
          padding: 2rem;
          background: white;
          border-radius: var(--radius);
          box-shadow: var(--shadow);
          transition: var(--transition);
          height: 100%;
      }

      .leadership-card:hover {
          transform: translateY(-10px);
          box-shadow: var(--shadow-lg);
      }

      .leadership-img {
          width: 150px;
          height: 150px;
          border-radius: 50%;
          object-fit: cover;
          margin: 0 auto 1.5rem;
          border: 5px solid var(--light-red);
      }

      .quote-card {
          background: linear-gradient(135deg, var(--light-blue), white);
          padding: 2.5rem;
          border-radius: var(--radius);
          border-left: 5px solid var(--gold);
          position: relative;
          margin: 2rem 0;
      }

      .quote-card::before {
          content: '"';
          position: absolute;
          top: -20px;
          left: 20px;
          font-size: 5rem;
          color: rgba(212, 175, 55, 0.2);
          font-family: serif;
      }

      .partner-logo {
          background: white;
          padding: 1.5rem;
          border-radius: var(--radius);
          display: flex;
          align-items: center;
          justify-content: center;
          height: 120px;
          transition: var(--transition);
          box-shadow: var(--shadow);
      }

      .partner-logo:hover {
          transform: translateY(-5px);
          box-shadow: var(--shadow-lg);
      }

      .partner-logo img {
          max-width: 100%;
          max-height: 60px;
          filter: grayscale(100%);
          transition: var(--transition);
      }

      .partner-logo:hover img {
          filter: grayscale(0);
      }

      .floating {
          animation: floating 3s ease-in-out infinite;
      }

      @keyframes floating {
          0% {
              transform: translateY(0px);
          }

          50% {
              transform: translateY(-15px);
          }

          100% {
              transform: translateY(0px);
          }
      }

      .timeline-circle {
          position: absolute;
          width: 20px;
          height: 20px;
          background: var(--primary-red);
          border-radius: 50%;
          z-index: 1;
          top: 30px;
          right: -10px;
      }

      .timeline-item:nth-child(even) .timeline-circle {
          background: var(--gold);
          left: -10px;
          right: auto;
      }

      /* location page css */


      /* Hero Section for Location Page */
      .location-hero-section {
          position: relative;
          min-height: 70vh;
          background: linear-gradient(rgba(10, 44, 93, 0.85), rgba(10, 44, 93, 0.9)),
              url('https://images.unsplash.com/photo-1519501025264-65ba15a82390?ixlib=rb-4.0.3&amp;auto=format&amp;fit=crop&amp;w=1920&amp;q=80');
          background-size: cover;
          background-position: center;
          background-attachment: fixed;
          display: flex;
          align-items: center;
          padding-top: 100px;
          padding-bottom: 60px;
          color: white;
          overflow: hidden;
      }

      .location-hero-content h1 {
          font-size: 3.5rem;
          line-height: 1.2;
          margin-bottom: 1.5rem;
          text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
      }

      .breadcrumb {
          background: transparent;
          padding: 0;
          margin-bottom: 1rem;
      }

      .breadcrumb-item a {
          color: var(--gold);
          text-decoration: none;
      }

      .breadcrumb-item.active {
          color: white;
      }

      /* Location Highlights */
      .location-highlights {
          padding: 5rem 0;
          background: white;
      }

      .highlight-card {
          background: white;
          padding: 2.5rem 2rem;
          border-radius: var(--radius);
          box-shadow: var(--shadow);
          height: 100%;
          transition: var(--transition);
          border-top: 5px solid var(--primary-red);
          position: relative;
          overflow: hidden;
      }

      .highlight-card:hover {
          transform: translateY(-10px);
          box-shadow: var(--shadow-lg);
      }

      .highlight-icon {
          width: 70px;
          height: 70px;
          background: linear-gradient(135deg, var(--light-red), white);
          border-radius: 50%;
          display: flex;
          align-items: center;
          justify-content: center;
          margin-bottom: 1.5rem;
          font-size: 1.8rem;
          color: var(--primary-red);
          transition: var(--transition);
      }

      .highlight-card:hover .highlight-icon {
          transform: scale(1.1) rotate(5deg);
          background: linear-gradient(135deg, var(--primary-red), var(--light-red));
          color: white;
      }

      /* Map Section */
      .map-section {
          padding: 5rem 0;
          background: linear-gradient(135deg, rgba(10, 44, 93, 0.03), rgba(229, 57, 53, 0.03));
          position: relative;
      }

      #locationMap {
          height: 500px;
          width: 100%;
          border-radius: var(--radius);
          box-shadow: var(--shadow-lg);
          z-index: 1;
      }

      .map-container {
          position: relative;
          border-radius: var(--radius);
          overflow: hidden;
      }

      /* Connectivity Section */
      .connectivity-section {
          padding: 5rem 0;
          background: white;
      }

      .connectivity-card {
          background: white;
          border-radius: var(--radius);
          overflow: hidden;
          box-shadow: var(--shadow);
          transition: var(--transition);
          height: 100%;
      }

      .connectivity-card:hover {
          transform: translateY(-10px);
          box-shadow: var(--shadow-lg);
      }

      .connectivity-img {
          height: 200px;
          width: 100%;
          object-fit: cover;
      }

      .connectivity-info {
          padding: 2rem;
      }

      /* Distance Table */
      .distance-section {
          padding: 5rem 0;
          background: linear-gradient(135deg, var(--dark-blue), #1a365d);
          color: white;
          position: relative;
          overflow: hidden;
      }

      .distance-table {
          background: rgba(255, 255, 255, 0.1);
          border-radius: var(--radius);
          overflow: hidden;
          backdrop-filter: blur(10px);
          border: 1px solid rgba(255, 255, 255, 0.1);
      }

      .distance-row {
          display: grid;
          grid-template-columns: 2fr 1fr 1fr;
          border-bottom: 1px solid rgba(255, 255, 255, 0.1);
          transition: var(--transition);
      }

      .distance-row:hover {
          background: rgba(255, 255, 255, 0.05);
      }

      .distance-cell {
          padding: 1.5rem;
          display: flex;
          align-items: center;
      }

      /* Infrastructure Section */
      .infrastructure-section {
          padding: 5rem 0;
          background: var(--light-bg);
      }

      .infrastructure-card {
          background: white;
          padding: 2rem;
          border-radius: var(--radius);
          box-shadow: var(--shadow);
          transition: var(--transition);
          height: 100%;
          border-left: 4px solid var(--gold);
      }

      .infrastructure-card:hover {
          transform: translateY(-5px);
          box-shadow: var(--shadow-lg);
      }

      /* Accessibility Section */
      .accessibility-section {
          padding: 5rem 0;
          background: white;
      }

      .accessibility-item {
          text-align: center;
          padding: 2rem;
          background: var(--light-bg);
          border-radius: var(--radius);
          transition: var(--transition);
          height: 100%;
      }

      .accessibility-item:hover {
          transform: translateY(-10px);
          background: white;
          box-shadow: var(--shadow);
      }

      .accessibility-icon {
          width: 80px;
          height: 80px;
          background: linear-gradient(135deg, var(--light-blue), white);
          border-radius: 50%;
          display: flex;
          align-items: center;
          justify-content: center;
          margin: 0 auto 1.5rem;
          font-size: 2rem;
          color: var(--dark-blue);
      }

      /* Back to Top Button */
      .back-to-top {
          position: fixed;
          bottom: 30px;
          right: 30px;
          width: 50px;
          height: 50px;
          background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
          color: white;
          border-radius: 50%;
          display: flex;
          align-items: center;
          justify-content: center;
          font-size: 1.2rem;
          z-index: 1000;
          opacity: 0;
          visibility: hidden;
          transform: translateY(20px);
          transition: var(--transition);
          box-shadow: 0 5px 20px rgba(229, 57, 53, 0.3);
      }

      .back-to-top.show {
          opacity: 1;
          visibility: visible;
          transform: translateY(0);
      }

      .back-to-top:hover {
          transform: translateY(-5px);
          box-shadow: 0 8px 25px rgba(229, 57, 53, 0.4);
      }

     
    
      /* Responsive */
      @media (max-width: 768px) {
          .location-hero-content h1 {
              font-size: 2.5rem;
          }

          .distance-row {
              grid-template-columns: 1fr;
              gap: 0.5rem;
              padding: 1rem 0;
          }

          .distance-cell {
              padding: 0.5rem 1.5rem;
          }

          #locationMap {
              height: 300px;
          }
      }

      /* NEW CSS FOR LOCATION PAGE */
      .location-badge {
          display: inline-flex;
          align-items: center;
          background: rgba(212, 175, 55, 0.2);
          color: var(--gold);
          padding: 0.5rem 1.25rem;
          border-radius: 2rem;
          margin-bottom: 1rem;
          font-weight: 600;
      }

      .location-badge i {
          margin-right: 8px;
      }

      .map-overlay {
          position: absolute;
          top: 20px;
          left: 20px;
          background: white;
          padding: 1.5rem;
          border-radius: var(--radius);
          box-shadow: var(--shadow-lg);
          z-index: 1000;
          max-width: 300px;
      }

      .map-marker {
          background: var(--primary-red);
          color: white;
          padding: 0.5rem 1rem;
          border-radius: 2rem;
          font-weight: 600;
          box-shadow: 0 5px 15px rgba(229, 57, 53, 0.3);
      }

      .transport-card {
          display: flex;
          align-items: center;
          padding: 1.5rem;
          background: white;
          border-radius: var(--radius);
          box-shadow: var(--shadow);
          margin-bottom: 1rem;
          transition: var(--transition);
      }

      .transport-card:hover {
          transform: translateX(10px);
          box-shadow: var(--shadow-lg);
      }

      .transport-icon {
          width: 60px;
          height: 60px;
          background: linear-gradient(135deg, var(--light-red), white);
          border-radius: 50%;
          display: flex;
          align-items: center;
          justify-content: center;
          font-size: 1.5rem;
          color: var(--primary-red);
          margin-right: 1.5rem;
          flex-shrink: 0;
      }

      .timeline-connector {
          position: relative;
          padding-left: 40px;
          margin-bottom: 2rem;
      }

      .timeline-connector::before {
          content: '';
          position: absolute;
          left: 0;
          top: 0;
          bottom: 0;
          width: 3px;
          background: linear-gradient(to bottom, var(--primary-red), var(--gold));
          border-radius: 1.5px;
      }

      .timeline-connector::after {
          content: '';
          position: absolute;
          left: -3px;
          top: 0;
          width: 9px;
          height: 9px;
          background: var(--primary-red);
          border-radius: 50%;
      }

      .region-card {
          border-radius: var(--radius);
          overflow: hidden;
          box-shadow: var(--shadow);
          transition: var(--transition);
          background: white;
      }

      .region-card:hover {
          transform: translateY(-5px);
          box-shadow: var(--shadow-lg);
      }

      .region-header {
          background: linear-gradient(135deg, var(--dark-blue), #1a365d);
          color: white;
          padding: 1.5rem;
      }

      .region-content {
          padding: 1.5rem;
      }

      .floating {
          animation: floating 3s ease-in-out infinite;
      }

      @keyframes floating {
          0% {
              transform: translateY(0px);
          }

          50% {
              transform: translateY(-15px);
          }

          100% {
              transform: translateY(0px);
          }
      }

      .leaflet-popup-content-wrapper {
          border-radius: var(--radius) !important;
          box-shadow: var(--shadow-lg) !important;
      }

      .leaflet-popup-content {
          font-family: 'Poppins', sans-serif !important;
      }

      .leaflet-container a.leaflet-popup-close-button {
          color: var(--primary-red) !important;
      }

      /* project spec csss */



      /* Hero Section for Project Specs */
      .specs-hero-section {
          position: relative;
          min-height: 70vh;
          background: linear-gradient(rgba(10, 44, 93, 0.85), rgba(10, 44, 93, 0.9)),
              url('https://images.unsplash.com/photo-1560448204-e02f11c3d0e2?ixlib=rb-4.0.3&amp;auto=format&amp;fit=crop&amp;w=1920&amp;q=80');
          background-size: cover;
          background-position: center;
          background-attachment: fixed;
          display: flex;
          align-items: center;
          padding-top: 100px;
          padding-bottom: 60px;
          color: white;
          overflow: hidden;
      }

      .specs-hero-content h1 {
          font-size: 3.5rem;
          line-height: 1.2;
          margin-bottom: 1.5rem;
          text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
      }

      .breadcrumb {
          background: transparent;
          padding: 0;
          margin-bottom: 1rem;
      }

      .breadcrumb-item a {
          color: var(--gold);
          text-decoration: none;
      }

      .breadcrumb-item.active {
          color: white;
      }

      /* Specifications Overview */
      .specs-overview {
          padding: 5rem 0;
          background: white;
      }

      .spec-card {
          background: white;
          padding: 2.5rem 2rem;
          border-radius: var(--radius);
          box-shadow: var(--shadow);
          height: 100%;
          transition: var(--transition);
          border-top: 5px solid var(--primary-red);
          position: relative;
          overflow: hidden;
      }

      .spec-card:hover {
          transform: translateY(-10px);
          box-shadow: var(--shadow-lg);
      }

      .spec-icon {
          width: 70px;
          height: 70px;
          background: linear-gradient(135deg, var(--light-red), white);
          border-radius: 50%;
          display: flex;
          align-items: center;
          justify-content: center;
          margin-bottom: 1.5rem;
          font-size: 1.8rem;
          color: var(--primary-red);
          transition: var(--transition);
      }

      .spec-card:hover .spec-icon {
          transform: scale(1.1) rotate(5deg);
          background: linear-gradient(135deg, var(--primary-red), var(--light-red));
          color: white;
      }

      /* Detailed Specifications */
      .detailed-specs {
          padding: 5rem 0;
          background: linear-gradient(135deg, rgba(10, 44, 93, 0.03), rgba(229, 57, 53, 0.03));
          position: relative;
      }

      .spec-table {
          background: white;
          border-radius: var(--radius);
          overflow: hidden;
          box-shadow: var(--shadow-lg);
          transition: var(--transition);
      }

      .spec-table:hover {
          transform: translateY(-5px);
      }

      .spec-row {
          display: grid;
          grid-template-columns: 1fr 1fr;
          border-bottom: 1px solid #eee;
          transition: var(--transition);
      }

      .spec-row:hover {
          background: rgba(0, 0, 0, 0.02);
      }

      .spec-cell {
          padding: 1.5rem;
          display: flex;
          align-items: center;
      }

      /* Master Plan Section */
      .masterplan-section {
          padding: 5rem 0;
          background: white;
      }

      .masterplan-card {
          background: white;
          border-radius: var(--radius);
          overflow: hidden;
          box-shadow: var(--shadow);
          transition: var(--transition);
          height: 100%;
      }

      .masterplan-card:hover {
          transform: translateY(-10px);
          box-shadow: var(--shadow-lg);
      }

      .masterplan-img {
          height: 300px;
          width: 100%;
          object-fit: cover;
      }

      .masterplan-info {
          padding: 2rem;
      }


      /* Technical Specifications */
      .technical-specs {
          padding: 5rem 0;
          background: var(--light-bg);
      }

      .tech-card {
          background: white;
          padding: 2rem;
          border-radius: var(--radius);
          box-shadow: var(--shadow);
          transition: var(--transition);
          height: 100%;
          border-left: 4px solid var(--gold);
      }

      .tech-card:hover {
          transform: translateY(-5px);
          box-shadow: var(--shadow-lg);
      }

      /* Project Timeline */
      .timeline-section {
          padding: 5rem 0;
          background: white;
      }

      .timeline-item {
          position: relative;
          padding-left: 30px;
          margin-bottom: 2.5rem;
      }

      .timeline-item::before {
          content: '';
          position: absolute;
          left: 0;
          top: 10px;
          width: 12px;
          height: 12px;
          background: var(--primary-red);
          border-radius: 50%;
      }

      .timeline-item::after {
          content: '';
          position: absolute;
          left: 5px;
          top: 22px;
          width: 2px;
          height: calc(100% + 20px);
          background: linear-gradient(to bottom, var(--primary-red), var(--gold));
      }

      .timeline-item:last-child::after {
          display: none;
      }

      /* Documents Section */
      .documents-section {
          padding: 5rem 0;
          background: linear-gradient(135deg, rgba(10, 44, 93, 0.03), rgba(229, 57, 53, 0.03));
      }

      .document-card {
          background: white;
          padding: 2rem;
          border-radius: var(--radius);
          box-shadow: var(--shadow);
          transition: var(--transition);
          height: 100%;
          text-align: center;
      }

      .document-card:hover {
          transform: translateY(-10px);
          box-shadow: var(--shadow-lg);
      }

      .document-icon {
          width: 80px;
          height: 80px;
          background: linear-gradient(135deg, var(--light-blue), white);
          border-radius: 50%;
          display: flex;
          align-items: center;
          justify-content: center;
          margin: 0 auto 1.5rem;
          font-size: 2rem;
          color: var(--dark-blue);
      }

      /* Back to Top Button */
      .back-to-top {
          position: fixed;
          bottom: 30px;
          right: 30px;
          width: 50px;
          height: 50px;
          background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
          color: white;
          border-radius: 50%;
          display: flex;
          align-items: center;
          justify-content: center;
          font-size: 1.2rem;
          z-index: 1000;
          opacity: 0;
          visibility: hidden;
          transform: translateY(20px);
          transition: var(--transition);
          box-shadow: 0 5px 20px rgba(229, 57, 53, 0.3);
      }

      .back-to-top.show {
          opacity: 1;
          visibility: visible;
          transform: translateY(0);
      }

      .back-to-top:hover {
          transform: translateY(-5px);
          box-shadow: 0 8px 25px rgba(229, 57, 53, 0.4);
      }

     

      /* Responsive */
      @media (max-width: 768px) {
          .specs-hero-content h1 {
              font-size: 2.5rem;
          }

          .spec-row {
              grid-template-columns: 1fr;
          }

          .spec-cell {
              padding: 1rem;
          }
      }

      /* NEW CSS FOR PROJECT SPECS PAGE */
      .spec-badge {
          display: inline-flex;
          align-items: center;
          background: rgba(212, 175, 55, 0.2);
          color: var(--gold);
          padding: 0.5rem 1.25rem;
          border-radius: 2rem;
          margin-bottom: 1rem;
          font-weight: 600;
      }

      .spec-badge i {
          margin-right: 8px;
      }

      .spec-highlight {
          background: linear-gradient(135deg, rgba(229, 57, 53, 0.05), rgba(212, 175, 55, 0.05));
          border-radius: var(--radius);
          padding: 2rem;
          border-left: 5px solid var(--gold);
          margin: 2rem 0;
      }

      .plan-detail {
          display: flex;
          align-items: center;
          margin-bottom: 1rem;
          padding: 1rem;
          background: var(--light-bg);
          border-radius: var(--radius);
          transition: var(--transition);
      }

      .plan-detail:hover {
          background: white;
          box-shadow: var(--shadow);
      }

      .plan-icon {
          width: 50px;
          height: 50px;
          background: linear-gradient(135deg, var(--light-red), white);
          border-radius: 50%;
          display: flex;
          align-items: center;
          justify-content: center;
          font-size: 1.5rem;
          color: var(--primary-red);
          margin-right: 1rem;
          flex-shrink: 0;
      }

      .spec-list {
          list-style: none;
          padding-left: 0;
      }

      .spec-list li {
          padding: 0.75rem 0;
          border-bottom: 1px solid rgba(0, 0, 0, 0.05);
          display: flex;
          align-items: center;
      }

      .spec-list li:last-child {
          border-bottom: none;
      }

      .spec-list i {
          color: var(--primary-red);
          margin-right: 10px;
      }

      .comparison-box {
          background: white;
          padding: 2rem;
          border-radius: var(--radius);
          box-shadow: var(--shadow);
          height: 100%;
      }

      .comparison-header {
          text-align: center;
          padding: 1.5rem;
          background: linear-gradient(135deg, var(--dark-blue), #1a365d);
          color: white;
          border-radius: var(--radius) var(--radius) 0 0;
      }

      .comparison-item {
          display: flex;
          justify-content: space-between;
          padding: 1rem 0;
          border-bottom: 1px solid #eee;
      }

      .floating {
          animation: floating 3s ease-in-out infinite;
      }

      @keyframes floating {
          0% {
              transform: translateY(0px);
          }

          50% {
              transform: translateY(-15px);
          }

          100% {
              transform: translateY(0px);
          }
      }

      .download-btn {
          display: inline-flex;
          align-items: center;
          justify-content: center;
          gap: 8px;
          background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
          color: white;
          border: none;
          padding: 0.75rem 1.5rem;
          border-radius: 2rem;
          font-weight: 600;
          transition: var(--transition);
      }

      .download-btn:hover {
          transform: translateY(-3px);
          box-shadow: 0 8px 25px rgba(229, 57, 53, 0.4);
          color: white;
      }

      .status-badge {
          display: inline-block;
          padding: 0.5rem 1rem;
          border-radius: 2rem;
          font-weight: 600;
          font-size: 0.9rem;
      }

      .status-completed {
          background: rgba(46, 204, 113, 0.1);
          color: #27ae60;
      }

      .status-ongoing {
          background: rgba(241, 196, 15, 0.1);
          color: #f39c12;
      }

      .status-planned {
          background: rgba(52, 152, 219, 0.1);
          color: #3498db;
      }

      .spec-number {
          font-size: 2.5rem;
          font-weight: 800;
          color: var(--primary-red);
          margin-bottom: 0.5rem;
      }

      .spec-grid {
          display: grid;
          grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
          gap: 1.5rem;
      }

      /* css for Investment page  */

      /* Hero Section for Investment Page */
      .investment-hero-section {
          position: relative;
          min-height: 70vh;
          background: linear-gradient(rgba(10, 44, 93, 0.85), rgba(10, 44, 93, 0.9)),
              url('https://images.unsplash.com/photo-1551288049-bebda4e38f71?ixlib=rb-4.0.3&amp;auto=format&amp;fit=crop&amp;w=1920&amp;q=80');
          background-size: cover;
          background-position: center;
          background-attachment: fixed;
          display: flex;
          align-items: center;
          padding-top: 100px;
          padding-bottom: 60px;
          color: white;
          overflow: hidden;
      }

      .investment-hero-content h1 {
          font-size: 3.5rem;
          line-height: 1.2;
          margin-bottom: 1.5rem;
          text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
      }

      .breadcrumb {
          background: transparent;
          padding: 0;
          margin-bottom: 1rem;
      }

      .breadcrumb-item a {
          color: var(--gold);
          text-decoration: none;
      }

      .breadcrumb-item.active {
          color: white;
      }

      /* Investment Highlights */
      .investment-highlights {
          padding: 5rem 0;
          background: white;
      }

      .highlight-card {
          background: white;
          padding: 2.5rem 2rem;
          border-radius: var(--radius);
          box-shadow: var(--shadow);
          height: 100%;
          transition: var(--transition);
          border-top: 5px solid var(--primary-red);
          position: relative;
          overflow: hidden;
      }

      .highlight-card:hover {
          transform: translateY(-10px);
          box-shadow: var(--shadow-lg);
      }

      .highlight-icon {
          width: 70px;
          height: 70px;
          background: linear-gradient(135deg, var(--light-red), white);
          border-radius: 50%;
          display: flex;
          align-items: center;
          justify-content: center;
          margin-bottom: 1.5rem;
          font-size: 1.8rem;
          color: var(--primary-red);
          transition: var(--transition);
      }

      .highlight-card:hover .highlight-icon {
          transform: scale(1.1) rotate(5deg);
          background: linear-gradient(135deg, var(--primary-red), var(--light-red));
          color: white;
      }

      /* Growth Projection Section */
      .growth-section {
          padding: 5rem 0;
          background: linear-gradient(135deg, rgba(10, 44, 93, 0.03), rgba(229, 57, 53, 0.03));
          position: relative;
      }

      .chart-container {
          background: white;
          padding: 2rem;
          border-radius: var(--radius);
          box-shadow: var(--shadow);
          height: 100%;
      }


      /* Payment Plans */
      .payment-section {
          padding: 5rem 0;
          background: linear-gradient(135deg, var(--dark-blue), #1a365d);
          color: white;
          position: relative;
          overflow: hidden;
      }

      .plan-card {
          background: rgba(255, 255, 255, 0.1);
          padding: 2.5rem 2rem;
          border-radius: var(--radius);
          backdrop-filter: blur(10px);
          border: 1px solid rgba(255, 255, 255, 0.1);
          transition: var(--transition);
          height: 100%;
          text-align: center;
      }

      .plan-card:hover {
          transform: translateY(-10px);
          background: rgba(255, 255, 255, 0.15);
      }

      .plan-card.featured {
          background: linear-gradient(135deg, var(--gold), var(--dark-gold));
          color: var(--dark-blue);
          border: none;
      }

      .plan-card.featured:hover {
          background: linear-gradient(135deg, var(--dark-gold), var(--gold));
      }

      /* ROI Calculator */
      .calculator-section {
          padding: 5rem 0;
          background: white;
      }

      .calculator-box {
          background: white;
          padding: 3rem;
          border-radius: var(--radius);
          box-shadow: var(--shadow-lg);
          height: 100%;
      }

      /* Testimonials */
      .testimonials-section {
          padding: 5rem 0;
          background: var(--light-bg);
      }

      .testimonial-card {
          background: white;
          padding: 2rem;
          border-radius: var(--radius);
          box-shadow: var(--shadow);
          border-left: 4px solid var(--primary-red);
          transition: var(--transition);
          height: 100%;
      }

      .testimonial-card:hover {
          transform: translateY(-5px);
          box-shadow: var(--shadow-lg);
      }

      .testimonial-img {
          width: 70px;
          height: 70px;
          border-radius: 50%;
          object-fit: cover;
          border: 3px solid var(--primary-red);
      }

      /* FAQ Section */
      .faq-section {
          padding: 5rem 0;
          background: white;
      }

      .faq-card {
          background: white;
          border-radius: var(--radius);
          overflow: hidden;
          box-shadow: var(--shadow);
          margin-bottom: 1rem;
          transition: var(--transition);
      }

      .faq-card:hover {
          box-shadow: var(--shadow-lg);
      }

      .faq-header {
          padding: 1.5rem;
          background: var(--light-bg);
          cursor: pointer;
          display: flex;
          justify-content: space-between;
          align-items: center;
          transition: var(--transition);
      }

      .faq-header:hover {
          background: rgba(229, 57, 53, 0.05);
      }

      .faq-content {
          padding: 0 1.5rem;
          max-height: 0;
          overflow: hidden;
          transition: max-height 0.3s ease;
      }

      .faq-content.show {
          padding: 1.5rem;
          max-height: 500px;
      }

      /* Back to Top Button */
      .back-to-top {
          position: fixed;
          bottom: 30px;
          right: 30px;
          width: 50px;
          height: 50px;
          background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
          color: white;
          border-radius: 50%;
          display: flex;
          align-items: center;
          justify-content: center;
          font-size: 1.2rem;
          z-index: 1000;
          opacity: 0;
          visibility: hidden;
          transform: translateY(20px);
          transition: var(--transition);
          box-shadow: 0 5px 20px rgba(229, 57, 53, 0.3);
      }

      .back-to-top.show {
          opacity: 1;
          visibility: visible;
          transform: translateY(0);
      }

      .back-to-top:hover {
          transform: translateY(-5px);
          box-shadow: 0 8px 25px rgba(229, 57, 53, 0.4);
      }

   

      /* Responsive */
      @media (max-width: 768px) {
          .investment-hero-content h1 {
              font-size: 2.5rem;
          }

          .table-row {
              grid-template-columns: 1fr;
          }

          .table-cell {
              padding: 15px;
          }

          .calculator-box {
              padding: 2rem;
          }
      }

      /* NEW CSS FOR INVESTMENT PAGE */
      .investment-badge {
          display: inline-flex;
          align-items: center;
          background: rgba(212, 175, 55, 0.2);
          color: var(--gold);
          padding: 0.5rem 1.25rem;
          border-radius: 2rem;
          margin-bottom: 1rem;
          font-weight: 600;
      }

      .investment-badge i {
          margin-right: 8px;
      }

      .roi-badge {
          display: inline-block;
          background: linear-gradient(135deg, #27ae60, #2ecc71);
          color: white;
          padding: 0.5rem 1rem;
          border-radius: 2rem;
          font-weight: 600;
          font-size: 0.9rem;
      }

      .roi-badge.high {
          background: linear-gradient(135deg, #e74c3c, #c0392b);
      }

      .roi-badge.medium {
          background: linear-gradient(135deg, #f39c12, #e67e22);
      }

      .projection-card {
          background: white;
          padding: 2rem;
          border-radius: var(--radius);
          box-shadow: var(--shadow);
          transition: var(--transition);
          height: 100%;
          text-align: center;
      }

      .projection-card:hover {
          transform: translateY(-10px);
          box-shadow: var(--shadow-lg);
      }

      .projection-number {
          font-size: 2.5rem;
          font-weight: 800;
          color: var(--primary-red);
          margin-bottom: 0.5rem;
      }

      .investment-timeline {
          position: relative;
          padding-left: 40px;
          margin-bottom: 2rem;
      }

      .investment-timeline::before {
          content: '';
          position: absolute;
          left: 0;
          top: 0;
          bottom: 0;
          width: 3px;
          background: linear-gradient(to bottom, var(--primary-red), var(--gold));
          border-radius: 1.5px;
      }

      .investment-timeline::after {
          content: '';
          position: absolute;
          left: -3px;
          top: 0;
          width: 9px;
          height: 9px;
          background: var(--primary-red);
          border-radius: 50%;
      }

      .calculator-input {
          margin-bottom: 1.5rem;
      }

      .calculator-input label {
          display: block;
          margin-bottom: 0.5rem;
          font-weight: 500;
      }

      .calculator-input input {
          width: 100%;
          padding: 0.75rem;
          border: 2px solid #e9ecef;
          border-radius: var(--radius);
          transition: var(--transition);
      }

      .calculator-input input:focus {
          border-color: var(--primary-red);
          outline: none;
          box-shadow: 0 0 0 0.25rem rgba(229, 57, 53, 0.25);
      }

      .calculator-result {
          background: linear-gradient(135deg, var(--light-blue), white);
          padding: 2rem;
          border-radius: var(--radius);
          margin-top: 2rem;
          text-align: center;
      }

      .result-number {
          font-size: 2.5rem;
          font-weight: 800;
          color: var(--primary-red);
          margin-bottom: 0.5rem;
      }

      .floating {
          animation: floating 3s ease-in-out infinite;
      }

      @keyframes floating {
          0% {
              transform: translateY(0px);
          }

          50% {
              transform: translateY(-15px);
          }

          100% {
              transform: translateY(0px);
          }
      }

      .plan-feature {
          margin-bottom: 1rem;
          display: flex;
          align-items: center;
      }

      .plan-feature i {
          color: var(--gold);
          margin-right: 10px;
      }

      .featured-badge {
          position: absolute;
          top: -15px;
          left: 50%;
          transform: translateX(-50%);
          background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
          color: white;
          padding: 0.5rem 2rem;
          border-radius: 2rem;
          font-weight: 600;
          font-size: 0.9rem;
      }

   
      /* css for contact us page  */

      .logo-img {
          height: 75px;
      }

      /* Hero Section for Contact Page */
      .contact-hero-section {
          position: relative;
          min-height: 70vh;
          background: linear-gradient(rgba(10, 44, 93, 0.85), rgba(10, 44, 93, 0.9)),
              url('https://images.unsplash.com/photo-1552664730-d307ca884978?ixlib=rb-4.0.3&amp;auto=format&amp;fit=crop&amp;w=1920&amp;q=80');
          background-size: cover;
          background-position: center;
          background-attachment: fixed;
          display: flex;
          align-items: center;
          padding-top: 100px;
          padding-bottom: 60px;
          color: white;
          overflow: hidden;
      }

      .contact-hero-content h1 {
          font-size: 3.5rem;
          line-height: 1.2;
          margin-bottom: 1.5rem;
          text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
      }

      .breadcrumb {
          background: transparent;
          padding: 0;
          margin-bottom: 1rem;
      }

      .breadcrumb-item a {
          color: var(--gold);
          text-decoration: none;
      }

      .breadcrumb-item.active {
          color: white;
      }

      /* Contact Details Section */
      .contact-details {
          padding: 5rem 0;
          background: white;
      }

      .contact-card {
          background: white;
          padding: 2.5rem 2rem;
          border-radius: var(--radius);
          box-shadow: var(--shadow);
          height: 100%;
          transition: var(--transition);
          border-top: 5px solid var(--primary-red);
          position: relative;
          overflow: hidden;
      }

      .contact-card:hover {
          transform: translateY(-10px);
          box-shadow: var(--shadow-lg);
      }

      .contact-icon {
          width: 70px;
          height: 70px;
          background: linear-gradient(135deg, var(--light-red), white);
          border-radius: 50%;
          display: flex;
          align-items: center;
          justify-content: center;
          margin-bottom: 1.5rem;
          font-size: 1.8rem;
          color: var(--primary-red);
          transition: var(--transition);
      }

      .contact-card:hover .contact-icon {
          transform: scale(1.1) rotate(5deg);
          background: linear-gradient(135deg, var(--primary-red), var(--light-red));
          color: white;
      }

      /* Contact Form Section */
      .contact-form-section {
          padding: 5rem 0;
          background: linear-gradient(135deg, rgba(10, 44, 93, 0.03), rgba(229, 57, 53, 0.03));
          position: relative;
      }

      .form-box {
          background: white;
          padding: 3rem;
          border-radius: var(--radius);
          box-shadow: var(--shadow-lg);
          height: 100%;
      }

      /* Team Section */
      .team-section {
          padding: 5rem 0;
          background: white;
      }

      .team-card {
          background: white;
          border-radius: var(--radius);
          overflow: hidden;
          box-shadow: var(--shadow);
          transition: var(--transition);
          height: 100%;
      }

      .team-card:hover {
          transform: translateY(-10px);
          box-shadow: var(--shadow-lg);
      }

      .team-img {
          height: 250px;
          width: 100%;
          object-fit: cover;
      }

      .team-info {
          padding: 2rem;
      }

      .team-social {
          display: flex;
          gap: 10px;
          margin-top: 1rem;
      }

      .team-social a {
          width: 36px;
          height: 36px;
          border-radius: 50%;
          background: var(--light-bg);
          display: flex;
          align-items: center;
          justify-content: center;
          color: var(--text-dark);
          transition: var(--transition);
      }

      .team-social a:hover {
          background: var(--primary-red);
          color: white;
          transform: translateY(-3px);
      }

      /* Map Section */
      .map-section {
          padding: 5rem 0;
          background: var(--light-bg);
      }

      #contactMap {
          height: 500px;
          width: 100%;
          border-radius: var(--radius);
          box-shadow: var(--shadow-lg);
          z-index: 1;
      }

      .map-container {
          position: relative;
          border-radius: var(--radius);
          overflow: hidden;
      }

      /* FAQ Section */
      .faq-section {
          padding: 5rem 0;
          background: linear-gradient(135deg, var(--dark-blue), #1a365d);
          color: white;
          position: relative;
          overflow: hidden;
      }

      .faq-card {
          background: rgba(255, 255, 255, 0.1);
          border-radius: var(--radius);
          overflow: hidden;
          backdrop-filter: blur(10px);
          border: 1px solid rgba(255, 255, 255, 0.1);
          margin-bottom: 1rem;
          transition: var(--transition);
      }

      .faq-card:hover {
          background: rgba(255, 255, 255, 0.15);
      }

      .faq-header {
          padding: 1.5rem;
          cursor: pointer;
          display: flex;
          justify-content: space-between;
          align-items: center;
          transition: var(--transition);
          background: transparent;
      }

      .faq-header:hover {
          background: rgba(255, 255, 255, 0.05);
      }

      .faq-content {
          padding: 0 1.5rem;
          max-height: 0;
          overflow: hidden;
          transition: max-height 0.3s ease;
      }

      .faq-content.show {
          padding: 1.5rem;
          max-height: 500px;
      }

      /* Back to Top Button */
      .back-to-top {
          position: fixed;
          bottom: 30px;
          right: 30px;
          width: 50px;
          height: 50px;
          background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
          color: white;
          border-radius: 50%;
          display: flex;
          align-items: center;
          justify-content: center;
          font-size: 1.2rem;
          z-index: 1000;
          opacity: 0;
          visibility: hidden;
          transform: translateY(20px);
          transition: var(--transition);
          box-shadow: 0 5px 20px rgba(229, 57, 53, 0.3);
      }

      .back-to-top.show {
          opacity: 1;
          visibility: visible;
          transform: translateY(0);
      }

      .back-to-top:hover {
          transform: translateY(-5px);
          box-shadow: 0 8px 25px rgba(229, 57, 53, 0.4);
      }

      /* Animations */
      @keyframes fadeInUp {
          from {
              opacity: 0;
              transform: translateY(30px);
          }

          to {
              opacity: 1;
              transform: translateY(0);
          }
      }

      .animate-fade-in {
          animation: fadeInUp 0.6s ease forwards;
      }

   
      /* Responsive */
      @media (max-width: 768px) {
          .contact-hero-content h1 {
              font-size: 2.5rem;
          }

          .form-box {
              padding: 2rem;
          }

          #contactMap {
              height: 300px;
          }
      }

      /* NEW CSS FOR CONTACT PAGE */
      .contact-badge {
          display: inline-flex;
          align-items: center;
          background: rgba(212, 175, 55, 0.2);
          color: var(--gold);
          padding: 0.5rem 1.25rem;
          border-radius: 2rem;
          margin-bottom: 1rem;
          font-weight: 600;
      }

      .contact-badge i {
          margin-right: 8px;
      }

      .contact-info-item {
          display: flex;
          align-items: flex-start;
          margin-bottom: 1.5rem;
          padding: 1rem;
          background: var(--light-bg);
          border-radius: var(--radius);
          transition: var(--transition);
      }

      .contact-info-item:hover {
          background: white;
          box-shadow: var(--shadow);
      }

      .info-icon {
          width: 50px;
          height: 50px;
          background: linear-gradient(135deg, var(--light-red), white);
          border-radius: 50%;
          display: flex;
          align-items: center;
          justify-content: center;
          font-size: 1.5rem;
          color: var(--primary-red);
          margin-right: 1rem;
          flex-shrink: 0;
      }

      .office-hours {
          background: linear-gradient(135deg, rgba(229, 57, 53, 0.05), rgba(212, 175, 55, 0.05));
          border-radius: var(--radius);
          padding: 2rem;
          margin-top: 2rem;
      }

      .hours-table {
          width: 100%;
      }

      .hours-table tr {
          border-bottom: 1px solid rgba(0, 0, 0, 0.05);
      }

      .hours-table tr:last-child {
          border-bottom: none;
      }

      .hours-table td {
          padding: 0.75rem 0;
      }

      .hours-table td:first-child {
          font-weight: 600;
      }

      .map-overlay {
          position: absolute;
          top: 20px;
          left: 20px;
          background: white;
          padding: 1.5rem;
          border-radius: var(--radius);
          box-shadow: var(--shadow-lg);
          z-index: 1000;
          max-width: 300px;
      }

      .floating {
          animation: floating 3s ease-in-out infinite;
      }

      @keyframes floating {
          0% {
              transform: translateY(0px);
          }

          50% {
              transform: translateY(-15px);
          }

          100% {
              transform: translateY(0px);
          }
      }

      .whatsapp-btn {
          background: linear-gradient(135deg, #25D366, #128C7E);
          color: white;
          border: none;
          padding: 0.85rem 2.25rem;
          border-radius: 2rem;
          font-weight: 600;
          transition: var(--transition);
          box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
          display: inline-flex;
          align-items: center;
          justify-content: center;
          gap: 8px;
      }

      .whatsapp-btn:hover {
          transform: translateY(-3px);
          box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
          color: white;
      }

      .contact-cta {
          background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
          color: white;
          padding: 3rem;
          border-radius: var(--radius);
          text-align: center;
          margin-top: 3rem;
      }

      .form-group {
          margin-bottom: 1.5rem;
      }

      .form-group label {
          display: block;
          margin-bottom: 0.5rem;
          font-weight: 500;
      }

      .form-control {
          width: 100%;
          padding: 0.75rem 1.25rem;
          border: 2px solid #e9ecef;
          border-radius: 0.75rem;
          transition: var(--transition);
      }

      .form-control:focus {
          border-color: var(--primary-red);
          box-shadow: 0 0 0 0.25rem rgba(229, 57, 53, 0.25);
          outline: none;
      }

      .leaflet-popup-content-wrapper {
          border-radius: var(--radius) !important;
          box-shadow: var(--shadow-lg) !important;
      }

      .leaflet-popup-content {
          font-family: 'Poppins', sans-serif !important;
      }

      .leaflet-container a.leaflet-popup-close-button {
          color: var(--primary-red) !important;
      }

      .contact-success {
          display: none;
          background: linear-gradient(135deg, #27ae60, #2ecc71);
          color: white;
          padding: 2rem;
          border-radius: var(--radius);
          text-align: center;
          margin-top: 2rem;
      }

      .social-links {
          display: flex;
          gap: 15px;
          margin-top: 2rem;
          justify-content: center;
      }

      .social-link {
          width: 50px;
          height: 50px;
          border-radius: 50%;
          background: var(--light-bg);
          display: flex;
          align-items: center;
          justify-content: center;
          font-size: 1.2rem;
          color: var(--text-dark);
          transition: var(--transition);
      }

      .social-link:hover {
          transform: translateY(-5px);
      }

      .social-link.facebook:hover {
          background: #1877F2;
          color: white;
      }

      .social-link.twitter:hover {
          background: #1DA1F2;
          color: white;
      }

      .social-link.instagram:hover {
          background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
          color: white;
      }

      .social-link.linkedin:hover {
          background: #0077B5;
          color: white;
      }

      .social-link.youtube:hover {
          background: #FF0000;
          color: white;
      }
      
      @media(max-width:600px){
          .search-form{
              margin-top:30px;
            /*margin-bottom: 30px;*/
          }
          
          .gallery_video video
             {
                /* max-height: 417px; */
                height: 100%;
                width: 100%;
            }
      }