 body {
      margin: 0;
      padding: 0;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      overflow-x: hidden;
    }
    .top-right span{
      color: white;
    }

    .top-scroll {
      background-color: #ffca03;
      color: #1a1060;
      font-weight: bold;
      white-space: nowrap;
      overflow: hidden;
    }

    .top-scroll span {
      display: inline-block;
      padding-left: 100%;
      padding-top:2vh;
      animation: scroll-left 15s linear infinite;
    }

    @keyframes scroll-left {
      0% { transform: translateX(0); }
      100% { transform: translateX(-100%); }
    }


    .top-bar {
      display: flex;
      width: 100%;
      height: auto;
    }

    .top-right {
      background-color: #1a1060;
      flex: 1;
      display: flex;
      justify-content: center;
      align-items: center;
     padding: 6px 15px;
    }

    .top-right .enquiry-btn {
      background-color: #ffca03;
      color: black;
      font-weight: 10px;
      border-radius: 20px;
      padding: 6px 16px;
      font-size: 14px;
      margin-left: 20vw;
    }

    .navbar {
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    }

    .navbar-nav .nav-link {
      color: #000 !important;
      font-weight: 600;
      margin-right: 12px;
    }

    .navbar-nav .nav-link:hover {
      color: #1a1060 !important;
    }

    .dropdown:hover .dropdown-menu {
      display: block;
    }

    .dropdown-menu {
      border-radius: 0;
      box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    }

    @media (max-width: 991.98px) {
      .dropdown:hover .dropdown-menu {
        display: none;
      }
    }

    @media (max-width: 768px) {
      .top-bar {
        flex-direction: column;
        text-align: center;
      }

      .top-left, .top-right {
        width: 100%;
      }
    }


    /* gif start  */


    .arch-hero {
      position: relative;
      height: 100vh;
      width: 100%;
      display: flex;
      align-items: center;
      text-align: left;
      overflow: hidden;
      color : white;
    }

    /* Background Video */
    .arch-hero video {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: -2;
    }

    /* Overlay */
    .arch-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.55);
      z-index: -1;
    }

    .arch-content {
      position: relative;
      max-width: 900px;
      padding: 20px;
    }

    .arch-subtitle {
      color: #ffca03;
      font-size: 22px;
      margin-bottom: 12px;
    }

    .arch-title {
      font-size: 40px;
      font-weight: 700;
      margin-bottom: 15px;
    }

    .arch-desc {
      font-size: 16px;
      line-height: 1.6;
      margin-bottom: 25px;
    }

    .arch-buttons {
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
    }

    .arch-btn {
      padding: 12px 28px;
      font-size: 15px;
      text-decoration: none;
      border-radius: 4px;
      font-weight: 600;
      transition: 0.3s;
    }

    .arch-btn-yellow {
      background: #ffca03;
      color: #000;
    }

    .arch-btn-yellow:hover {
      background: #ffca03;
    }

    .arch-btn-outline {
      border: 2px solid #fff;
      color: #fff;
    }

    .arch-btn-outline:hover {
      background: #fff;
      color: #000;
    }

    /* Floating Icons */
    .arch-floating-icons {
      position: fixed;
      right: 20px;
      bottom: 20px;
      display: flex;
      flex-direction: column;
      gap: 15px;
      z-index: 999;
    }

    .arch-icon {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 24px;
      color: white;
      text-decoration: none;
      transition: transform 0.3s ease;
    }

    .arch-icon:hover {
      transform: scale(1.1);
    }

    .arch-whatsapp {
      background: #25d366;
    }

    .arch-call {
      background: #1a73e8;
    }

    /* Stats Card Section */
     .arch-stats-section {
      margin: 60px auto;
      max-width: 1200px;
      margin-top : -100px;
    }

    .arch-highlight-card {
      background: #ffca03; /* yellow background */
      color: #111;
      padding: 40px;
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      box-shadow: 0 8px 18px rgba(0,0,0,0.1);
    }

    .arch-highlight-card h2 {
      font-size: 38px;
      font-weight: 700;
      margin-bottom: 15px;
    }

    .arch-highlight-card p {
      font-size: 15px;
      line-height: 1.7;
      margin-bottom: 25px;
      color: #222;
    }

    .arch-highlight-card .btn {
      font-weight: 500;
      padding: 12px 28px;
    }

    .arch-stats-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1px; /* white border like effect */
      background: #ddd;
      height: 100%;
    }

    .arch-stats-item {
      background: #fff;
      padding: 40px 20px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      transition: transform 0.3s ease;
    }

    .arch-stats-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    }

    .arch-stats-item h3 {
      font-size: 32px;
      font-weight: 600;
      color: #1a1a1a;
    }

    .arch-stats-item p {
      margin: 0;
      font-size: 15px;
      color: #555;
    }

    /* Responsive */
    @media (max-width: 991px) {
      .arch-highlight-card {
        margin-bottom: 20px;
      }
      .arch-stats-grid {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 575px) {
      .arch-stats-grid {
        grid-template-columns: 1fr;
      }
    }

    /* Responsive */
    @media (max-width: 768px) {
      .arch-title {
        font-size: 28px;
      }
      .arch-desc {
        font-size: 14px;
      }
      .arch-buttons {
        flex-direction: column;
        gap: 12px;
      }
      .arch-content {
        margin-left: 0;
      }
    }

    @media (min-width: 992px) {
      .arch-content {
        margin-left: 8vw;
      }
    }




/* services start */


 .services-advanced {
  text-align: center;
}

.services-advanced .service-card-adv {
  background: #fff;
  border-radius: 15px;
  padding: 20px;
  margin-bottom: 40px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
}

.services-advanced .service-card-adv .service-img {
  overflow: hidden;
  border-radius: 12px;
}

.services-advanced .service-card-adv img {
  width: 100%;
  border-radius: 12px;
  transition: transform 0.5s ease;
}

/* Hover effects */
.services-advanced .service-card-adv:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.services-advanced .service-card-adv:hover img {
  transform: scale(1.1);
}

/* Staggered effect */
.services-advanced .offset-down-1 {
  margin-top: 50px;
}

.services-advanced .offset-down-2 {
  margin-top: 100px;
}

/* Headings and text */
.services-advanced h4 {
  margin-top: 15px;
  font-weight: 700;
  color: #1a1030;
}

    .services-advanced p {
      font-size: 16px;
      color: #444;
    }


/* sustainablity and reliablity  start */

   :root {
            --primary: #ffca03;
            --secondary: #ffca03;
            --accent: #1a1030;
            --light: #f8f9fa;
            --dark: #212529;
            --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }
        
      
        
       
        
        h1, h2, h3, h4, h5 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
           
        }
        
        .aga-section {
            padding: 80px 0;
            position: relative;
        }
        
        .aga-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Hero Section */
        .aga-hero {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.9) 0%, rgba(255, 159, 64, 0.85) 100%),
                url('../images/construction.jpg') 
                center/cover no-repeat;
    color: white;
    padding: 120px 0 100px;
    position: relative;
    overflow: hidden;
}

        .aga-hero-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }
        
        .aga-hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            text-shadow: 0 2px 10px rgba(0,0,0,0.2);
            animation: fadeInDown 1s ease;
        }
        
        .aga-hero h2 {
            font-size: 1.8rem;
            font-weight: 500;
            margin-bottom: 2rem;
            color: #1a1030;
            animation: fadeInUp 1s ease 0.2s forwards;
            opacity: 0;
        }
        
        .aga-hero p {
            font-size: 1.2rem;
            margin-bottom: 2.5rem;
            opacity: 0.9;
            animation: fadeInUp 1s ease 0.4s forwards;
            opacity: 0;
              color: var(--dark);
        }
        
        .aga-btn-primary {
             background: #1a1030;
           
            color: white;
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            border: none;
            transition: var(--transition);
            animation: fadeInUp 1s ease 0.6s forwards;
            opacity: 0;
            display: inline-block;
            text-decoration: none;
            box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
        }
        
        .aga-btn-primary:hover {
             color: #1a1030;
            background: white;
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(255, 107, 53, 0.6);
        }


         .aga-btn-secondary {
             background: #ffca03;
            color: #1a1030;
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            border: none;
            transition: var(--transition);
            animation: fadeInUp 1s ease 0.6s forwards;
            opacity: 0;
            display: inline-block;
            text-decoration: none;
            box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
        }

          .aga-btn-secondary:hover {
             color: #1a1030;
            background: white;
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(255, 107, 53, 0.6);
        }
        
        /* About Section */
        .aga-about {
            position: relative;
            overflow: hidden;
        }
        
        .aga-about::before {
            content: "";
            position: absolute;
            top: -100px;
            right: -100px;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: var(--primary);
            opacity: 0.1;
        }
        
        .aga-about-content {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            align-items: center;
        }
        
        .aga-about-text {
            flex: 1;
            min-width: 300px;
        }
        
        .aga-about-image {
            flex: 1;
            min-width: 300px;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            transform: perspective(1000px) rotateY(-10deg);
            transition: var(--transition);
            height: 400px;
            background: url('../images/exterior_firm.webp') center/cover no-repeat;
        }
        
        .aga-about-image:hover {
            transform: perspective(1000px) rotateY(0deg);
        }
        
        .aga-section-title {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            color: #1a1030;
            position: relative;
            display: inline-block;
        }
        
       
        
        .aga-about-text p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
             color: var(--dark);
        }
        
        .aga-highlight {
           background:linear-gradient(120deg, #ffbb00 0%, #FFF176 100%);
            font-style: italic;
            padding: 20px;
            border-radius: 10px;
            border-left: 4px solid #1a1030;
            margin: 30px 0;
        }
        
        /* Features Section */
        .aga-features {
            background: linear-gradient(to bottom, #ffffff 0%, #f0f7f4 100%);
            position: relative;
            overflow: hidden;
        }
        
        .aga-features::before {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 200px;
            background: url('../images/building.avif') center/cover no-repeat;
            opacity: 0.05;
        }
        
        .aga-section-header {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 50px;
        }
        
        .aga-section-header h2 {
            font-size: 2.5rem;
            color: #1a1030;
            margin-bottom: 20px;
        }

      
        .aga-features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }
        
        .aga-feature-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transition: var(--transition);
            position: relative;
            z-index: 1;
        }
        
        .aga-feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }
        
        .aga-feature-icon {
            height: 200px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            color: white;
            font-size: 4rem;
        }
        
        .aga-feature-content {
            padding: 25px;
        }
        
        .aga-feature-content h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--primary);
        }
        
        /* Technology Section */
        .aga-technology {
            background: linear-gradient(135deg, rgba(26, 107, 60, 0.05) 0%, rgba(44, 140, 90, 0.05) 100%);
            position: relative;
        }
        
        .aga-tech-content {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            align-items: center;
        }
        
        .aga-tech-text {
            flex: 1;
            min-width: 300px;
        }
        
        .aga-tech-features {
            flex: 1;
            min-width: 300px;
        }
        
        .aga-tech-item {
            display: flex;
            align-items: center;
            padding: 20px;
            background: white;
            border-radius: 10px;
            margin-bottom: 20px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: var(--transition);
        }
        
        .aga-tech-item:hover {
            transform: translateX(10px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
        }
        
        .aga-tech-icon {
            width: 60px;
            height: 60px;
            background: #ffca03;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin-right: 20px;
            flex-shrink: 0;
        }
        
        .aga-tech-text-content h4 {
            font-size: 1.2rem;
            margin-bottom: 5px;
            color: var(--dark);
        }
        
        /* CTA Section */
        .aga-cta {
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            color: white;
            text-align: center;
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }
        
        .aga-cta::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url("../images/building.avif");
            opacity: 0.3;
        }
        
        .aga-cta-content {
            position: relative;
            z-index: 2;
            max-width: 700px;
            margin: 0 auto;
        }
        
        .aga-cta h2 {
            font-size: 2.2rem;
            margin-bottom: 1.5rem;
        }
        
        .aga-cta p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            opacity: 0.9;
              color: var(--dark);
        }
        
     
        /* Animations */
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .aga-animate {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }
        
        .aga-animate.animated {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Responsive */
        @media (max-width: 992px) {
            .aga-hero h1 {
                font-size: 2.2rem;
            }
            
            .aga-section {
                padding: 60px 0;
            }
        }
        
        @media (max-width: 768px) {
            .aga-hero {
                padding: 80px 0;
            }
            
            .aga-hero h1 {
                font-size: 2.2rem;
            }
            
            .aga-hero h2 {
                font-size: 1.4rem;
            }
            
            .aga-section-title {
                font-size: 2rem;
            }
            
            .aga-cta h2 {
                font-size: 2.2rem;
            }
        }
        
        @media (max-width: 576px) {
            .aga-hero {
                padding: 60px 0;
            }
            
            .aga-hero h1 {
                font-size: 1.2rem;
            }
            
            .aga-btn-primary {
                padding: 10px 25px;
            }
        }


/* branch php start  */



  .aga-about {
            position: relative;
            overflow: hidden;
        }
        
       
        .aga-about-content {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            align-items: center;
        }
        
        .aga-about-text {
            flex: 1;
            min-width: 300px;
        }
        
        .aga-section-title {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            color: var(--primary);
            position: relative;
            display: inline-block;
        }
        
      
        
        .aga-about-text p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }
        
        /* Offices Section */
        .aga-offices {
            background: linear-gradient(to bottom, #ffffff 0%, #f0f7f4 100%);
            position: relative;
            overflow: hidden;
        }
        
        .aga-offices::before {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 200px;
            background: url('../images/building.avif') center/cover no-repeat;
            opacity: 0.05;
        }
        
        .aga-section-header {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 50px;
        }
        
        .aga-section-header h2 {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 20px;
        }
        
        .aga-offices-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
        }
        
        .aga-office-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transition: var(--transition);
            position: relative;
            z-index: 1;
        }
        
        .aga-office-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }
        
        .aga-office-image {
            height: 200px;
            overflow: hidden;
            position: relative;
        }
        
        .aga-office-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }
        
        .aga-office-card:hover .aga-office-image img {
            transform: scale(1.05);
        }
        
        .aga-office-badge {
            position: absolute;
            top: 20px;
            left: 20px;
            background: var(--accent);
            color: white;
            padding: 8px 15px;
            border-radius: 30px;
            font-size: 0.8rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .aga-office-content {
            padding: 25px;
        }
        
        .aga-office-content h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--primary);
        }
        
        .aga-office-address {
            margin-bottom: 20px;
            line-height: 1.6;
        }
        
        .aga-office-address p {
            margin-bottom: 5px;
            display: flex;
            align-items: flex-start;
        }
        
        .aga-office-address i {
            margin-right: 10px;
            color: var(--accent);
            font-size: 1.1rem;
            margin-top: 3px;
        }
        
        .aga-direction-btn {
            display: inline-flex;
            align-items: center;
            background: var(--primary);
            color: white;
            padding: 10px 20px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 500;
            transition: var(--transition);
        }
        
        .aga-direction-btn:hover {
            background: var(--secondary);
            transform: translateX(5px);
        }
        
        .aga-direction-btn i {
            margin-left: 8px;
            transition: var(--transition);
        }
        
        .aga-direction-btn:hover i {
            transform: translateX(3px);
        }
        
        /* Animations */
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .aga-animate {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }
        
        .aga-animate.animated {
            opacity: 1;
            transform: translateY(0);
        }
        
      
        
        @media (max-width: 768px) {
          
            
            .aga-section-title {
                font-size: 2rem;
            }
            
          
            .aga-offices-grid {
                grid-template-columns: 1fr;
            }
        }


/* latest project start */

  .gallery-section {
      position: relative;
      padding: 80px 20px;
      background-color: #f8f9fa;
    }

    .section-heading {
      font-size: 36px;
      font-weight: 700;
      color: #1a1030;
      text-align: center;
      margin-bottom: 50px;
      position: relative;
      z-index: 2;
    }


    .gallery-container {
      position: relative;
      overflow: hidden;
      border-radius: 20px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      z-index: 2;
    
    }

    #gallery-track {
      display: flex;
      transition: transform 0.5s ease-in-out;
      touch-action: pan-y;
    }

    .gallery-item {
      flex: 0 0 100%;
      padding: 10px;
      position: relative;
      transition: transform 0.3s ease;
    }

    .gallery-img {
      width: 100%;
      height: 340px; 
      object-fit: cover;
      border-radius: 15px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }

    .dot-container {
      text-align: center;
      margin-top: 20px;
    }

    .dot {
      height: 12px;
      width: 12px;
      margin: 0 6px;
      background-color: #bbb;
      border-radius: 50%;
      display: inline-block;
      transition: background-color 0.3s ease;
      cursor: pointer;
    }

    .dot.active {
      background-color: #1a1060;
    }

    @media (min-width: 768px) {
      .gallery-item {
        flex: 0 0 33.3333%;
      }
      .gallery-img {
        height: 400px; 
      }
    }

    @media (max-width: 768px) {
      .gallery-img {
        height: 260px; /* mobile ke liye */
      }
    }




/* testimonial start */

 :root {
            --primary-color: #1a1030;
            --secondary-color: #1a1030;
            --accent-color: #ffca03;
            --dark-color: #1a1030;
            --light-color: #f7f9fc;
        }
       
        
        .testimonial-section {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 0;
            position: relative;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
        }
        
        .small-title {
            font-size: 1rem;
            font-weight: 600;
            color: var(--accent-color);
            text-transform: uppercase;
            letter-spacing: 3px;
            margin-bottom: 15px;
            animation: fadeInDown 1s ease;
        }
        
       .main-title{
             font-weight: 600;
             color : #1a1030;
         }

      
        
        .testimonial-card {
            background: rgba(255, 255, 255, 0.95);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            margin-bottom: 30px;
            border: none;
            animation: float 6s ease-in-out infinite;
        }
        
        .testimonial-card:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2);
        }
        
        .testimonial-img {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            object-fit: cover;
            border: 5px solid white;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            margin: 1px auto 1px;
            position: relative;
            z-index: 2;
            background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
            padding: 3px;
            transition: all 0.3s ease;
        }
        
        .testimonial-card:hover .testimonial-img {
            transform: scale(1.1);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
        }
        
        .testimonial-content {
            padding: 30px;
            text-align: center;
        }
        
        .client-role {
            font-size: 0.9rem;
            color: var(--accent-color);
            font-weight: 600;
            letter-spacing: 1px;
            margin-bottom: 5px;
            text-transform: uppercase;
        }
        
        .client-name {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--dark-color);
            margin-bottom: 20px;
        }
        
        .testimonial-text {
            font-size: 1.1rem;
            color: #555;
            line-height: 1.7;
            font-style: italic;
            position: relative;
            padding: 0 20px;
        }
        
        .testimonial-text::before,
        .testimonial-text::after {
            content: "";
            font-family: Georgia, serif;
            font-size: 4rem;
            position: absolute;
            color: rgba(106, 17, 203, 0.1);
            line-height: 1;
        }
        
        .testimonial-text::before {
            top: -20px;
            left: 0;
        }
        
        .testimonial-text::after {
            content: "";
            bottom: -50px;
            right: 0;
        }
        
        .quote-icon {
            color: var(--accent-color);
            font-size: 2.5rem;
            opacity: 0.2;
            position: absolute;
            top: 20px;
            right: 30px;
        }
        
        .pattern {
            position: absolute;
            width: 100px;
            height: 100px;
            z-index: -1;
            opacity: 0.1;
        }
        
        .pattern-1 {
            top: 2%;
            left: 5%;
            background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%236a11cb' d='M12,2A10,10 0 0,0 2,12A10,10 0 0,0 12,22A10,10 0 0,0 22,12A10,10 0 0,0 12,2Z' /%3E%3C/svg%3E");
        }
        
        .pattern-2 {
           top: 92%;
            right: 5%;
            background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23ff3e78' d='M12,2L2,7L12,12L22,7L12,2Z' /%3E%3C/svg%3E");
        }
        
        /* Animations */
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes float {
            0% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-15px);
            }
            100% {
                transform: translateY(0px);
            }
        }
        
        .testimonial-card:nth-child(1) {
            animation-delay: 0.2s;
        }
        
        .testimonial-card:nth-child(2) {
            animation-delay: 0.4s;
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .main-title {
                font-size: 2rem;
            }
        }
        
        @media (max-width: 768px) {
            .main-title {
                font-size: 1.5rem;
            }
            
            .testimonial-card {
                max-width: 500px;
                margin: 0 auto 30px;
            }
        }
        
        @media (max-width: 576px) {
            
            .main-title {
                font-size: 1.5rem;
            }
            
            .small-title {
                font-size: 1rem;
            }
            
            .testimonial-content {
                padding: 20px;
            }
        }


/* question start */



 :root {
            --primary: #3c6382;
            --secondary: #3c6382;
            --accent: #ffca03;
            --dark: #1e272e;
            --light: #f5f6fa;
        }
        
     
        
        .construction-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }
        
       
        .section-subtitle {
            font-size: 1.2rem;
            color: var(--secondary);
            max-width: 600px;
            margin: 0 auto;
        }
        
        .content-wrapper {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            margin-bottom: 50px;
        }
        
        .form-section, .faq-section {
            flex: 1;
            min-width: 300px;
            background: white;
            border-radius: 20px;
            overflow: hidden;
            padding: 40px;
            position: relative;
            z-index: 2;
            transition: transform 0.4s ease, box-shadow 0.4s ease;
        }
        
        .form-section:hover, .faq-section:hover {
            transform: translateY(-10px);
           
        }
        
        .form-title {
            font-size: 2rem;
            font-weight: 600;
            color: var(--primary);
            margin-bottom: 10px;
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .form-description {
            color: var(--secondary);
            margin-bottom: 30px;
            font-size: 1.1rem;
        }
        
        .form-group {
            margin-bottom: 25px;
            position: relative;
        }
        
        .form-label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: var(--primary);
        }
        
        .form-control {
            width: 100%;
            padding: 15px 20px;
            border: 2px solid #e1e5eb;
            border-radius: 12px;
            font-size: 1rem;
            transition: all 0.3s ease;
            background: var(--light);
        }
        
        .form-control:focus {
            border-color: var(--accent);
            box-shadow: 0 0 0 4px rgba(246, 185, 59, 0.2);
            outline: none;
        }
        
        .btn-primary {
            background: var(--accent);
            border: none;
            padding: 15px 30px;
            font-size: 1rem;
            font-weight: 600;
            border-radius: 12px;
            color: white;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(10, 61, 98, 0.3);
        }
        
        .faq-title {
            font-size: 2rem;
            font-weight: 600;
            color: var(--primary);
            margin-bottom: 30px;
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .accordion {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .accordion-item {
            background: var(--light);
            border: none;
            border-bottom: 1px solid #e1e5eb;
            overflow: hidden;
        }
        
        .accordion-item:last-child {
            border-bottom: none;
        }
        
        .accordion-header {
            background: white;
        }
        
        .accordion-button {
            background: white;
            color: var(--primary);
            font-weight: 600;
            font-size: 1.1rem;
            padding: 20px 25px;
            border: none;
            box-shadow: none;
            transition: all 0.3s ease;
        }
        
        .accordion-button:not(.collapsed) {
            background: var(--primary);
            color: white;
            box-shadow: none;
        }
        
        .accordion-button:focus {
            box-shadow: none;
        }
        
        .accordion-body {
            padding: 20px 25px;
            background: var(--light);
            color: var(--secondary);
            font-size: 1.05rem;
            line-height: 1.7;
        }
        
        .decoration {
            position: absolute;
            z-index: -1;
        }
        
        .decoration-1 {
            top: -20px;
            right: -20px;
            width: 120px;
            height: 120px;
            background: linear-gradient(135deg, var(--accent), #ffca03);
            border-radius: 0 0 0 100%;
        }
        
        
        
        .contact-info {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
            border-radius: 20px;
            padding: 40px;
            text-align: center;
            margin-top: 50px;
            position: relative;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(10, 61, 98, 0.3);
        }
        
        .contact-title {
            font-size: 2rem;
            font-weight: 600;
            margin-bottom: 20px;
        }
        
        .contact-description {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 30px;
            opacity: 0.9;
        }
        
        .contact-btn {
            display: inline-block;
            background: var(--accent);
            color: var(--dark);
            padding: 15px 40px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.1rem;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
        }
        
        .contact-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
            color: var(--dark);
        }
        
        @media (max-width: 992px) {
          
            
            .content-wrapper {
                flex-direction: column;
            }
        }
        
        @media (max-width: 768px) {
           
            
            .form-section, .faq-section {
                padding: 30px;
            }
            
            .form-title, .faq-title {
                font-size: 1.8rem;
            }
        }
        
        @media (max-width: 576px) {
          
            
            .form-section, .faq-section {
                padding: 25px 20px;
            }
            
            .contact-title {
                font-size: 2rem;
            }
        }
        
        /* Animations */
        .form-section {
            animation: fadeInLeft 0.8s ease-out;
        }
        
        .faq-section {
            animation: fadeInRight 0.8s ease-out;
        }
        
        .contact-info {
            animation: fadeInUp 0.8s ease-out;
        }
        
        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }





        
   /* footer start */


    .footer-wave {
      margin-bottom: -1px;
    }

    footer {
      background-color: #1a1030;
      color: #fff;
      padding: 60px 0 20px;
      position: relative;
    }

    footer h5 {
      border-bottom: 2px solid #ffca03;
      display: inline-block;
      padding-bottom: 5px;
      margin-bottom: 15px;
    }

    footer a {
      color: #ccc;
      text-decoration: none;
      display: block;
      margin-bottom: 8px;
      transition: all 0.3s ease;
    }

    footer a:hover {
      color: #ffca03;
      padding-left: 5px;
    }

    .footer-logo {
      width: 90px;
      margin-bottom: 15px;
    }

    .social-icon a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 35px;
      height: 35px;
      background-color: #ffca03;
      color: #1a1030;
      border-radius: 50%;
      margin-right: 10px;
      transition: 0.3s;
    }

    .social-icon a:hover {
      background-color: #fff;
      color: #1a1030;
    }

    .footer-bottom {
      text-align: center;
      padding-top: 20px;
      border-top: 1px solid #333;
      font-size: 14px;
    }

    @media (max-width: 576px) {
      footer {
        text-align: center;
      }

      .social-icons {
        justify-content: center;
      }
    }

