@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
/* Prevent horizontal scroll */
body, html {
    overflow-x: hidden;
}

/* ------------------------------
   GLOBAL VARIABLES
------------------------------ */
:root {
    --primary-color: #007BFF;
    --secondary-color: #0D173F;
    --white: #ffffff;
    --black: #000000;

    --font-family: 'Inter', sans-serif;
}

/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    line-height: 1.5;
    color: var(--black);
}

/* ===========================
   ABOUT SECTION BG WITH CURVE
   =========================== */
   /* Remove blue color from Visit Our Office link */
/* Force Visit Our Office card text to black */

.breadcrumb-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: #ffffff;
    border-radius: 999px; /* pill shape */
    font-size: 15px;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.breadcrumb-pill a {
    color: #0d6efd; /* blue Home */
    text-decoration: none;
}

.breadcrumb-pill a:hover {
    text-decoration: underline;
}

.breadcrumb-pill span {
    color: #666;
}

.breadcrumb-pill .current {
    color: #0d6efd; /* FAQs blue */
}


.contact-card,
.contact-card h5,
.contact-card p,
.contact-card a {
    color: #000 !important;
    text-decoration: none !important;
}

/* Also handle hover state */
.contact-card:hover,
.contact-card:hover h5,
.contact-card:hover p {
    color: #000 !important;
}


/* Optional hover effect (professional look) */
.contact-link:hover {
    color: #000;
    text-decoration: none;
}

.about-section {
    width: 100%;
    padding: 90px 8%;
    background-image: url("../img/background.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 70px;

    border-radius: 0 0 60px 60px;
    position: relative;
}
.menu-link {
    color: #000;
    font-weight: 500;
    transition: color 0.3s ease;
}

.menu-link.active {
    color: #4db7fe !important;
    font-weight: 600;
}



/* =====================
   LEFT SIDE CONTENT
===================== */
.about-left {
    width: 50%;
    color: var(--white);
}

.tag {
    font-size: 16px;
    font-weight: 600;
    opacity: 0.9;
    margin-bottom: 15px;
    color: var(--white);
}

.about-left h1 {
    font-size: 37px;
    line-height: 54px;
    margin: 0;
    font-weight: 700;
    color: var(--white);
}

.about-left h1 span {
    font-style: italic;
    font-weight: 700;
}

.desc {
    margin: 20px 0 30px;
    opacity: 0.95;
    max-width: 550px;
    line-height: 1.6;
    font-size: 17px;
    color: var(--white);
}

/* Stats */
.stats {
    display: flex;
    gap: 40px;
    margin: 35px 0;
}

.stat-box {
    background: rgba(255, 255, 255, 0.20);
    padding: 25px 35px;
    border-radius: 20px;
    text-align: center;
    min-width: 180px;
}

.stat-box h2 {
    margin: 0;
    font-size: 35px;
    font-weight: 700;
    color: var(--white);
}

.stat-box p {
    margin: 5px 0 0;
    font-size: 16px;
    opacity: 0.9;
    color: var(--white);
}

.discover-btn {
    background: var(--white);
    color: var(--primary-color);
    padding: 14px 32px;
    display: inline-block;
    border-radius: 50px;
    font-weight: 600;
    font-size: 17px;
    text-decoration: none;
    transition: .2s;
    border: none !important;
}

.discover-btn:hover {
    background: #1d1919;
    color: var(--white);
}

/* =====================
   RIGHT SIDE — CIRCLE
===================== */
.about-right {
    width: 50%;
    display: flex;
    justify-content: center;
}

.circle-wrapper {
    position: relative;
    width: 420px;
    height: 420px;
    max-width: 100%;
    max-height: 100%;
}

/* Circle image inside */
.circle-img {
    width: 120%;
    height: 120%;
    border-radius: 50%;
    background-image: url("https://www.aomwebdesigner.com/images/it-company-in-ahmedabad-aom-web-designer.webp");
    background-size: cover;
    background-position: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    overflow: hidden;
}

/* Cross Lines */
.v-line, .h-line {
    position: absolute;
    background: var(--primary-color);
    z-index: 10;
    border-radius: 10px;
}

/* vertical line */
.v-line {
    width: 4%;
    height: 140%;
    left: 50%;
    transform: translateX(-50%);
    top: -12%;
}

/* horizontal line */
.h-line {
    height: 4%;
       width: 132%;
    top: 50%;
    left: -20%;
    transform: translateY(-50%);
}

/* Rotating Circle */
.rotate-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 28%;
    height: 28%;
    transform: translate(-50%, -50%);
    animation: rotateText 7s linear infinite;
    z-index: 20;
}

.rotate-circle img {
    width: 100%;
    height: 100%;
}

@keyframes rotateText {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* =====================
   RESPONSIVE
===================== */
@media (max-width: 992px) {
    .about-section {
        flex-direction: column;
        text-align: center;
        padding-bottom: 120px;
        gap: 40px;
    }

    .about-left, .about-right {
        width: 100%;
    }

    .stats {
        justify-content: center;
    }

    .about-left h1 {
        font-size: 32px;
        line-height: 42px;
    }
}

/* Tablet */
@media (max-width: 768px) {
    .circle-wrapper {
        width: 320px;
        height: 320px;
    }
}

/* Mobile Large (425px–375px) */
@media (max-width: 440px) {
    .circle-wrapper {
        width: 260px;
        height: 260px;
    }

    .about-left h1 {
        font-size: 28px;
        line-height: 38px;
    }
    .v-line{
      top: -13%
    }
}

/* Mobile Standard */
@media (max-width: 375px) {
    .circle-wrapper {
        width: 230px;
        height: 230px;
    }

    .desc {
        font-size: 15px;
    }
    .v-line{
      top: -25px;
          height: 159%;
    }

}

/* Mobile Small — 320px */
@media (max-width: 320px) {
    .circle-wrapper {
        width: 200px;
        height: 200px;
    }

    .about-left h1 {
        font-size: 24px;
        line-height: 32px;
    }
}
/* about section ended */

/* how we work page started */
/* =======================================
   WORK PROCESS SECTION
======================================= */
/* SECTION WRAPPER */
/* ================= WORK PROCESS ================= */

/* WORK PROCESS SECTION */
/* ---------------------------
   SWIPER FIXES FOR YOUR CARDS
---------------------------- */

/* Make swiper take full width */
/* SECTION */
/* MAIN GRID */
/* TIMELINE LINE */
/* TIMELINE */
.wp-timeline {
    width: 100%;
    height: 2px;
    background:#afc5eb7a;
    position: absolute;
    top: 266px;
    left: 0;
    z-index: 1;
}

/* DOT */
.wp-dot {
    width: 26px;
    height: 26px;
    background: #dfe5ff;
    border-radius: 50%;
    position: absolute;
    top: 64px;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid var(--white);
    box-shadow: 0 0 0 2px #dfe5ff;
    z-index: 3;
}

.wp-dot::after {
    content: "";
    width: 2px;
    height: 75px;
    background:#afc5eb7a;
    position: absolute;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
}

/* CARD */
.wp-card {
    width: 280px;
    height: 250px;
    background: #f7f9ff;
    padding: 50px 30px 30px;
    border-radius: 32px;
    border: 1px solid transparent;
    margin-top: 150px;
    transition: 0.3s ease;
    position: relative;
    text-align: left;
    z-index: 5;
}

.wp-card:hover {
    background: var(--white);
    transform: translateY(-10px);
}

.wp-card:hover ~ .wp-dot,
.swiper-slide:has(.wp-card:hover) .wp-dot {
    background: var(--primary-color) !important;
    box-shadow: 0 0 0 3px var(--white), 0 0 0 6px #d7e4ff !important;
}

.swiper-slide:has(.wp-card:hover) .wp-card h3 {
    color: var(--primary-color) !important;
}

/* NUMBER */
.wp-num {
    position: absolute;
    top: 13px;
    left: 207px;
    font-size: 45px;
    font-weight: 700;
    font-family: "Poppins", system-ui, sans-serif;
    color: transparent;
    -webkit-text-stroke: 2px rgba(205, 207, 255, 0.6);
    letter-spacing: 2px;
}

/* ICON */
.wp-icon {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
    position: relative;
    z-index: 5;
}

/* HEADING */
.wp-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--black);
    position: relative;
    z-index: 5;
}

/* TEXT */
.wp-card p {
    color: var(--black);
    font-size: 17px;
    line-height: 1.6;
}

/* SECTION */
.work-process-section {
    padding: 60px 0 10px;
    position: relative;
    overflow: visible;
    text-align: center;
   
}

.work-process-section .wp-subtitle {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.work-process-section .wp-title {
    font-size: 37px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--black);
    max-width: 700px;
    margin: 0 auto;
}

.work-process-section .wp-title span {
    color: var(--primary-color);
}

/* SLIDER */
.myWorkProcessSlider .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 20px;
    height: 500px !important;
}

/* BACKGROUND IMAGE */
.wp-card::before {
    content: "";
    position: absolute;
    top: 0px;
    right: -8px;
    width: 137px;
    height: 108px;
    background-image: url('../img/corner-curve-top-right.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    filter: brightness(0) invert(1);
    z-index: -1;
}

/* ----------------------------- */
/*   FULL RESPONSIVE — UP TO 480px */
/* ----------------------------- */
@media (max-width: 768px) {
    .work-process-section .wp-title {
        font-size: 30px;
        margin-bottom: 50px;
    }
    .wp-timeline {
        top: 290px !important;
    }
    .wp-card {
        margin-top: 130px !important;
    }
}

@media (max-width: 480px) {
    .wp-card {
        width: 90%;
        height: auto;
        padding: 40px 20px;
        margin-top: 120px !important;
    }

    .wp-icon {
        font-size: 32px;
    }

    .wp-num {
        font-size: 35px;
        left: auto;
        right: 10px;
    }

    .wp-timeline {
        top: 260px !important;
    }

    .wp-dot {
        top: 50px !important;
    }

    .work-process-section .wp-title {
        font-size: 26px;
    }
}
/* how we work completed */
.what-we-do-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 5%;
    gap: 50px;
   
}

.wwd-content {
    width: 50%;
    margin-top: -120px;
}
.wwd-content h1 {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
    line-height: 1.3;
    margin: 15px 0 20px;
}

.wwd-small-title {
    font-size: 16px;
    font-weight: 600;
    color: #007BFF;
    padding-top: 30px; /* use var(--primary-color) if you want */
}

.wwd-big-title {
    font-size: 37px;
    font-weight: 700;
    color: #0D173F;
    line-height: 1.3;
    margin: 15px 0 20px;
}

.wwd-desc {
    font-size: 17px;
    line-height: 1.6;
    color: #444;
    max-width: 520px;
}

.wwd-link {
    margin-top: 16px;
    display: inline-block;
    font-weight: 600;
    color: #007BFF; /* use var(--primary-color) if needed */
    text-decoration: none;
    font-size: 16px;
}

/* RIGHT SIDE IMAGE */
.wwd-image {
    width: 60%;
    height: 520px;
    background-image: url('https://img.freepik.com/premium-photo/concept-investment-growth-savings-coins-interest_150418-995.jpg?semt=ais_hybrid&w=740&q=80');
    background-size: cover;
    background-position: center;
    border-radius: 16px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .what-we-do-section {
        flex-direction: column;
        text-align: center;
    }

    .wwd-content {
        width: 100%;
    }

    .wwd-image {
        width: 100%;
        height: 340px;
    }
}

@media (max-width: 480px) {
    .wwd-big-title {
        font-size: 28px;
    }

    .wwd-desc {
        font-size: 15px;
    }

    .wwd-image {
        height: 280px;
    }
}
/* call to action and why us */
.why-cta {
              display: flex;
    max-width: 1500px;
    width: 100%;
    background-color: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    min-height: 500px;
        }
        
        .why-cta-left {
            flex: 1;
            padding: 60px 50px;
            background-color: #f7f9ff;
        }
        .why-cta-left h1{
            font-size: 37px;
            font-weight: 700;
        }
        
        .why-cta-left h2 {
            color: var(--primary-color);
            font-size: 16px;
    font-weight: 600;
            margin-bottom: 10px;
           
            position: relative;
            padding-bottom: 15px;
        }
        
        .why-cta-left h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 4px;
            background-color: #f9fafc;
            border-radius: 2px;
        }
        
        .why-points {
            list-style-type: none;
        }
        
        .why-points li {
            color: #475569;
            font-size: 17px;
            line-height: 1.6;
            padding: 15px 0;
            padding-left: 40px;
            position: relative;
            border-bottom: 1px solid #f1f5f9;
            font-weight: 400; /* Normal weight, not bold */
        }
        
        .why-points li:last-child {
            border-bottom: none;
        }
        
        .why-points li::before {
            content: '✓';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 26px;
            height: 26px;
            background-color: #e0f2fe;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #0284c7;
            font-size: 0.9rem;
            font-weight: 600;
        }
        
        .why-cta-right {
          flex: 1;
    padding: 140px 50px;
    /* Remove solid background and add image */
    background-image: url("../img/Gemini_Generated_Image_1fja5o1fja5o1fja.png");
    background-size: cover;          /* image fills the area */
    background-position: right !important;     /* center the image */
    background-repeat: no-repeat;
    margin-right: 0px;

    color: #0f172a;
        }
        
   
        
        .why-cta-right h3 {
                color: var(--white);
    font-size: 37px;
    margin-bottom: 40px;
    font-weight: 700;
    position: relative;
    display: flex;
    text-align: center;
    z-index: 2;
    padding-left: 9%;
    width: 108%;
    margin-top: 20px;
         
        }
        
        .why-cta-right p {
            color:var(--white);
            font-size: 17px;
            line-height: 1.6;
            margin-bottom: 40px;
            position: relative;
            z-index: 2;
            text-align: center;
        }
        
        .cta-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            position: relative;
            z-index: 2;
            justify-content: center;

        }
        
        .btn {
            display: inline-block;
            padding: 14px 30px;
            text-decoration: none;
            border-radius: 8px;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s ease;
            text-align: center;
        }
        
        .btn.primary {
            background-color: var(--white);
            color: var(--black);
            border: 2px solid #3b82f6;
        }
        
        .btn.primary:hover {
            background-color: var(--primary-color);
            border-color: var(--white)  !important;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(37, 99, 235, 0.2);
        }
        
        .btn.outline {
            background-color: var();
            color: #eef5ff;
            border: 2px solid #3b82f6;
        }
        
        .btn.outline:hover {
            background-color: white;
            color: #3b82f6;
        
            transform: translateY(-2px);
        }
        
        .btn.ghost {
            background-color: var(--primary-color);
            color: var(--secondary-color);
            
        }
        
        .btn.ghost:hover {
            background-color: #f8fafc;
            border-color: #94a3b8;
            transform: translateY(-2px);
        }
        
        /* Responsive adjustments */
        @media (max-width: 992px) {
            .why-cta {
                flex-direction: column;
            }
            
            .why-cta-right::before {
                display: none;
            }
            
            .why-cta-left, .why-cta-right {
                padding: 40px 30px;
            }
        }
        
        @media (max-width: 576px) {
            .why-cta-left h2 {
                font-size: 2rem;
            }
            
            .why-cta-right h3 {
                font-size: 1.7rem;
            }
            
            .cta-buttons {
                flex-direction: column;
            }
            
            .btn {
                width: 100%;
            }
        }

 /* top bar started  */
 .topbar {
     background: var(--white);
     color: var(--black);
     padding: 20px 0;
     line-height: 1.5;
     font-size: var(--font-size-heading);
 }

 .topbar a {
     color: var(--black);
     text-decoration: none;
 }

 .topbar a:hover {
     color: #4dabf7;
 }

 .topbar .icon-wrapper {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     width: 36px;
     height: 36px;
     background: rgba(255, 255, 255, 0.15);
     border-radius: 50%;
     margin-right: -4px;
     color: var(--primary-color);
 }

 .topbar .bi {
     font-size: 1.25rem !important;
 }

 .topbar .right-links a {
     margin-left: 30px;
 }

 .topbar-text {
     font-weight: 600;
     font-size: 14px;
 }

 .topbar-email,
 .topbar-phone {
     color: var(--black);
     text-decoration: none;
     font-size: 14px;
     transition: color 0.3s ease;
 }

 .topbar-email:hover,
 .topbar-phone:hover {
     color: var(--primary-color);
 }

 @media (max-width: 991px) {
     .topbar .right-links {
         margin-top: 8px;
         font-size: 12px;
     }

     .justify-content-md-start {
         justify-content: flex-start !important;
         font-size: 12px;
     }
       .justify-content-md-end {
         justify-content: flex-start !important;
         font-size: 12px;
     }

     .topbar .right-links a {
         margin-left: 0;
         margin-right: 25px;
     }
 }

 /* top bar ended  */

 /* navbar started  */
 .topbar-width {
     width: 100% !important;
     max-width: 1600px;
 }

 nav.navbar {
     background-color: var(--white);
     border-radius: 10px;
     padding: 5px 10px !important;
     max-width: 1250px;
     margin: 20px auto 0 auto;
     color: var(--black) !important;
 }

 nav.navbar .nav-link {
     position: relative;
     transition: all 0.3s ease;
     color: var(--black) !important;
 }

 nav.navbar .nav-link:hover {
     color: #4dabf7 !important;
 }

 nav.navbar .nav-link::after {
     content: '';
     position: absolute;
     bottom: -6px;
     left: 50%;
     width: 0;
     height: 2px;
     background: #4dabf7;
     transition: all 0.3s ease;
     transform: translateX(-50%);
 }

 nav.navbar .nav-link:hover::after {
     width: 70%;
 }

 .menu-link {
     font-size: 16px !important;
 }

 /* Mobile menu adjustments */
 @media (max-width: 992px) {
     nav.navbar {
         border-radius: 30px;
         max-width: 100%;
     
     }
         nav.navbar .nav-link {
             color: var(--white) !important ;
         }

     #heroNavbar {
         background: rgb(69 69 69 / 95%);
         border-radius: 20px;
         margin-top: 15px;
         padding: 15px;
     }
 }

 .position-relative {
     position: relative !important;
     /* max-width: 1300px; */
 }

 /* navbar ended  */

 /* hero slider started  */
 .hero-slider-section {
     position: relative;
     /* padding: 0 20px; */
 }

 .hero-slider-container {
     background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
     overflow: hidden;
     /* Keep as hidden for border effects */
     height: 680px;
     position: relative;
     border-radius: 50px;
     border: 10px solid transparent;
     background-clip: padding-box;
     box-shadow:
         0 20px 60px rgba(0, 0, 0, 0.3),
         inset 0 0 0 1px rgba(255, 255, 255, 0.1);
 }

 /* Complex curved border effect */
 .hero-slider-container::before {
     content: '';
     position: absolute;
     top: -15px;
     left: -15px;
     right: -15px;
     bottom: -15px;
     background: linear-gradient(135deg,
             rgba(77, 171, 247, 0.2) 0%,
             rgba(59, 130, 246, 0.1) 30%,
             rgba(30, 41, 59, 0.1) 70%,
             rgba(15, 23, 42, 0.2) 100%);
     border-radius: 65px;
     z-index: -1;
 }

 /* Inner glow effect */
 .hero-slider-container::after {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     border-radius: 35px;
     box-shadow:
         inset 0 0 50px rgba(77, 171, 247, 0.1),
         inset 0 0 100px rgba(59, 130, 246, 0.05);
     pointer-events: none;
     z-index: 1;
 }

 .swiper-slide {
     height: 680px;
     border-radius: 35px;
     overflow: hidden;
 }

 .slide-content {
     height: 100%;
     position: relative;
     border-radius: 35px;
     overflow: hidden;
 }

 .slide-background {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background-size: cover;
     background-position: center;
     opacity: 0.7;
 }

 .slide-background::after {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: linear-gradient(rgba(0, 0, 0, 0.0));
 }

 .slide-inner {
     position: relative;
     z-index: 2;
     height: 100%;
     display: flex;
     align-items: center;
     padding: 0 80px;
 }

 .content-part {
     max-width: 800px;
 }

 .hero-title {
     font-size: 3.1rem;
     font-weight: 700;
     line-height: 1.1;
     color: var(--white);
     margin-bottom: 25px;
     opacity: 0;
     transform: translateY(30px);
 }

 .hero-title span {
     color: var(--primary-color);
     position: relative;
 }

 .hero-title span::after {
     content: '';
     position: absolute;
     bottom: -5px;
     left: 0;
     width: 100%;
     height: 4px;
     background: #4dabf7;
     border-radius: 2px;
 }

 .hero-description {
     font-size: 1.25rem;
     line-height: 1.6;
     color: rgba(255, 255, 255, 0.9);
     margin-bottom: 40px;
     max-width: 600px;
     opacity: 0;
     transform: translateY(30px);
 }

 .btn-wrapper {
     opacity: 0;
     transform: translateY(30px);
 }

 .hero-btn {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     background: var(--primary-color);
     color: var(--white);
     text-decoration: none;
     padding: 10px;
     border-radius: 50px;
     /* font-weight: 600; */
     font-size: 16px;
     transition: all 0.3s ease;
     border: 2px solid #4dabf7;
     position: relative;
     overflow: hidden;
 }

 .hero-btn:hover {
     background: transparent;
     color: var(--secondary-color);
     border-color: var(--secondary-color);
     transform: translateY(-2px);
     box-shadow: 0 10px 20px rgba(77, 171, 247, 0.2);
 }

 .hero-btn::before {
     content: '';
     position: absolute;
     top: 0;
     left: -100%;
     width: 100%;
     height: 100%;
     background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
     transition: left 0.5s ease;
 }

 .hero-btn:hover::before {
     left: 100%;
 }

 .hero-btn-slider {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     background: var(--primary-color);
     color: var(--white);
     text-decoration: none;
     padding: 10px 32px;
     border-radius: 50px;
     font-weight: 600;
     font-size: 1.1rem;
     transition: all 0.3s ease;
     border: 2px solid var(--primary-color);
     position: relative;
     overflow: hidden;
 }

 .hero-btn-slider:hover {
     background: transparent;
     color: var(--white);
     border-color: var(--white);
     transform: translateY(-2px);
     box-shadow: 0 10px 20px rgba(77, 171, 247, 0.2);
 }

 .hero-btn-slider::before {
     content: '';
     position: absolute;
     top: 0;
     left: -100%;
     width: 100%;
     height: 100%;
     background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
     transition: left 0.5s ease;
 }

 .hero-btn-slider:hover::before {
     left: 100%;
 }

 /* Swiper Navigation Buttons  */
 .swiper-btn-wrapper {
     background-color: #FFFFFF00 !important;
     background-image: url("https://techto.rstheme.com/business-consulting/wp-content/uploads/2025/04/control-mask-bg.png") !important;
     flex-direction: column;
     position: absolute;
     right: 0px !important;
     top: 50%;
     transform: translateY(-50%);
     padding: 40px 0px 40px 19px !important;
     border-radius: 0px !important;
     background-position: center right;
     background-repeat: no-repeat;
     background-size: contain !important;
     display: flex !important;
     gap: 10px;
     z-index: 200;
     width: 120px;
     height: 220px;
     border: none !important;
     box-shadow: none !important;
     /* Change from center to flex-end to align buttons to right */
     align-items: flex-end !important;
     /* Changed from center to flex-end */
     justify-content: center;
 }

 /* Remove overlay */
 .swiper-btn-wrapper::after {
     display: none !important;
 }

 /* Button styles */
 .swiper-button-prev,
 .swiper-button-next {
     all: unset;
     width: 46px;
     height: 46px;
     border-radius: 14px;
     border: 1px solid var(--primary-color);
     background: var(--white);
     display: flex !important;
     align-items: center;
     justify-content: center;
     cursor: pointer;
     transition: all 0.3s ease;
     z-index: 210;
     position: relative;
     margin: 0 !important;
     /* Add right margin to position them correctly */
     margin-right: 10px !important;
     /* Adjust this value */
 }

 /* Add spacing between buttons */
 .swiper-button-prev {
     margin-bottom: 10px !important;
 }

 .swiper-button-next {
     margin-top: 10px !important;
 }

 .swiper-button-prev:hover,
 .swiper-button-next:hover {
     background: var(--primary-color);
     transform: translateY(-2px);
 }

 .swiper-button-prev:hover::after,
 .swiper-button-next:hover::after {
     color: white;
 }

 .swiper-button-prev::after {
     font-size: 18px;
     content: "←";
     color: #1E73FF;
     font-weight: bold;
     transition: all 0.3s ease;
 }

 .swiper-button-next::after {
     font-size: 18px;
     content: "→";
     color: #1E73FF;
     font-weight: bold;
     transition: all 0.3s ease;
 }

 /* Remove default Swiper styles */
 .swiper-button-prev,
 .swiper-button-next {
     background-image: none !important;
 }

 /* Animations */
 @keyframes kenBurns {
     0% {
         transform: scale(1);
     }

     100% {
         transform: scale(1.1);
     }
 }

 .ken-burns {
     animation: kenBurns 15s ease-in-out infinite alternate;
 }

 /* Responsive */
 @media (max-width: 1200px) {
     .hero-title {
         font-size: 3.8rem;
     }

     .slide-inner {
         padding: 0 60px;
     }

     .hero-slider-container {
         border-radius: 45px;
     }

     .hero-slider-container::before {
         border-radius: 60px;
     }

     .swiper-btn-wrapper {
         right: -60px !important;
         width: 100px;
         height: 200px;
     }
 }

 @media (max-width: 992px) {

     .hero-slider-container,
     .swiper-slide {
         height: 600px;
     }

     .hero-title {
         font-size: 3rem;
     }

     .hero-description {
         font-size: 1.1rem;
     }

     .slide-inner {
         padding: 0 40px;
     }

     .video-btn-container {
         right: 30px;
         bottom: 30px;
     }

     .video-btn {
         width: 80px;
         height: 80px;
     }

     .video-btn i {
         font-size: 2rem;
     }

     .swiper-btn-wrapper {
         right: -50px !important;
         padding: 30px 0px 30px 15px !important;
         width: 90px;
         height: 180px;
     }

     .hero-slider-container {
         border-radius: 35px;
         border-width: 10px;
     }

     .hero-slider-container::before {
         border-radius: 50px;
         top: -10px;
         left: -10px;
         right: -10px;
         bottom: -10px;
     }

     .swiper-button-prev,
     .swiper-button-next {
         width: 40px;
         height: 40px;
     }

     .swiper-button-prev::after,
     .swiper-button-next::after {
         font-size: 16px;
     }
 }

 @media (max-width: 768px) {

     .hero-slider-container,
     .swiper-slide {
         height: 500px;
     }

     .hero-title {
         font-size: 2.4rem;
     }

     .hero-description {
         font-size: 1rem;
         margin-bottom: 30px;
     }

     .hero-btn {
         padding: 14px 35px;
         font-size: 1rem;
     }

     .hero-btn-slider {
         padding: 14px 35px;
         font-size: 1rem;
     }

     .slide-inner {
         padding: 0 30px;
     }

     .video-btn-container {
         right: 20px;
         bottom: 20px;
     }

     .video-btn {
         width: 60px;
         height: 60px;
     }

     .video-btn i {
         font-size: 1.5rem;
     }

     .swiper-btn-wrapper {
         display: none !important;
     }

     .hero-slider-container {
         border-radius: 25px;
         border-width: 8px;
     }

     .hero-slider-container::before {
         border-radius: 35px;
         top: -8px;
         left: -8px;
         right: -8px;
         bottom: -8px;
     }
 }

 @media (max-width: 576px) {

     .hero-slider-container,
     .swiper-slide {
         height: 450px;
         border-radius: 25px;
     }

     .hero-title {
         font-size: 2rem;
     }

     .slide-inner {
         padding: 0 20px;
     }

     .hero-slider-section {
         padding: 0 10px;
     }

     .hero-slider-container {
         border-radius: 20px;
     }
 }

 /* Hide topbar on mobile */
 @media (max-width: 767.98px) {
     .topbar {
         display: none !important;
     }

     /* Move navbar completely outside the hero slider */
     .hero-slider-section .navbar {
         position: fixed !important;
         top: 0 !important;
         left: 0 !important;
         right: 0;
         background: rgba(255, 255, 255, 0.95);
         backdrop-filter: blur(10px);
         box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
         z-index: 1050;
         padding: 10px 15px !important;
         transform: none !important;
     }

     /* Add top padding to hero so content isn't hidden under fixed navbar */
     .hero-slider-section {
         padding-top: 90px;
         /* adjust if your navbar is taller/shorter */
     }

     /* Hide swiper arrows only on mobile */
     .swiper-btn-wrapper {
         display: none !important;
     }

     /* Optional: make logo smaller on mobile */
     
 }

 /* Make sure the container has enough space for buttons */
 .container.position-relative {
     overflow: visible !important;
 }

 /* Fix 1: Top bar at 768px */
 @media (min-width: 769px) and (max-width: 991px) {
     .topbar .d-flex.flex-wrap {
         justify-content: center !important;
     }

     .topbar .right-links {
         text-align: center;
         margin-top: 10px;
     }

     .topbar .right-links a {
         display: inline-block;
         margin: 0 15px !important;
     }
 }

 /* Fix 2: Swiper buttons at 1024px */
 @media (max-width: 1024px) {
     .swiper-btn-wrapper {
         right: -20px !important;
         width: 80px;
     }

     .swiper-button-prev,
     .swiper-button-next {
         width: 38px;
         height: 38px;
     }
 }

 /* Fix 3: Container margins */
 .fixed-container {
     width: 100%;
     max-width: 1400px;
     margin: 0 auto;
     padding: 0 40px;
 }

 @media (max-width: 768px) {
     .fixed-container {
         padding: 0 20px;
     }
 }

 .hero-slider-section .container {
     padding-left: 10px !important;
     padding-right: 10px !important;
     margin-left: 10px !important;
     margin-right: 10px !important;
     max-width: 100% !important;
 }

 /* Fix 4: Decrease height */
 .hero-slider-container {
     height: 600px !important;
 }

 .swiper-slide {
     height: 600px !important;
 }

 /* Responsive height adjustments */
 @media (max-width: 992px) {

     .hero-slider-container,
     .swiper-slide {
         height: 550px !important;
     }
 }

 @media (max-width: 768px) {

     .hero-slider-container,
     .swiper-slide {
         height: 500px !important;
     }
 }

 /* hero slider ended  */

 /* footer section started  */
 footer {
     background: var(--secondary-color);
     color: var(--white);
     padding: 80px 0 0;
     font-size: 15px;
 }

 .footer-container {
     max-width: 1300px;
     margin: 0 auto;
     padding: 0 20px;
 }

 .footer-top {
     display: grid;
     grid-template-columns: 1.3fr 1fr 1fr 1.3fr;
     gap: 50px;
     margin-bottom: 60px;
 }

 @media (max-width: 1025px) {
     .footer-top {
         grid-template-columns: 1fr 1fr;
     }
     .footer-logo img {
     height: 110px !important;
     width: 300px !important;
 }
 }

 @media (max-width: 767px) {
     .footer-top {
         grid-template-columns: 1fr;
     }
 }

 /* Logo */
 .footer-logo img {
     height: 100% ;
     width: 100% ;
 }

 /* Social Icons */
 .social-icons {
     display: flex;
     gap: 12px;
     margin-top: 40px;
 }

 .social-icons a {
     width: 46px;
     height: 46px;
     background: rgba(255, 255, 255, 0.1);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     color: var(--white);
     font-size: 18px;
     transition: 0.3s;
     text-decoration: none;
 }

 .social-icons a:hover {
     background: var(--primary-color);
     transform: translateY(-4px);
 }

 /* Column Titles */
 .footer-col h4 {
     color: var(--white);
     font-size: 20px;
     margin-bottom: 28px;
     position: relative;
     padding-bottom: 12px;
 }

 .footer-col h4::after {
     content: '';
     position: absolute;
     left: 0;
     bottom: 0;
     width: 50px;
     height: 3px;
     background: var(--primary-color);
 }

 /* Quick Links - No Arrows */
 .footer-links ul {
     list-style: none;
     padding: 0px !important;
 }

 .footer-links li {
     margin-bottom: 14px;
 }

 .footer-links a {
     color: #ddd;
     text-decoration: none;
     transition: 0.3s;
     display: inline-block;
     font-size: 17px;
 }

 .footer-links ul li a i {
     margin-right: 15px;
 }

 .footer-links a:hover {
     color: var(--white);
     padding-left: 6px;
 }

 /* Contact Info */
 .contact-info .info-item {
     display: flex;
     gap: 15px;
     margin-bottom: 22px;
     color: #ddd;
     align-items: flex-start;
 }

 .contact-info i {
     color: var(--accent);
     font-size: 18px;
     margin-top: 3px;
 }

 .contact-info a {
     color: #ddd;
     text-decoration: none;
 }

 .contact-info a:hover {
     color: var(--white);
 }

 /* Newsletter */
 .newsletter p {
     margin: 20px 0 25px;
     color: #ccc;
     line-height: 1.6;
 }

 .newsletter-form {
     display: flex;
     flex-direction: column;
     gap: 15px;
 }

 .newsletter-form input[type="email"] {
     padding: 16px;
     border: none;
     border-radius: 6px;
     background: rgba(255, 255, 255, 0.1);
     color: var(--white);
     outline: none;
     font-size: 15px;
 }

 .newsletter-form ::placeholder {
     color: #999;
 }

 .newsletter-btn {
     padding: 16px;
     background: var(--primary-color);
     color: var(--white);
     border: none;
     border-radius: 6px;
     cursor: pointer;
     font-weight: 600;
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 10px;
     transition: 0.3s;
 }

 .newsletter-btn:hover {
     background: var(--primary-color);
 }

 .consent {
     font-size: 13px;
     color: #bbb;
 }

 .consent a {
     color: var(--primary-color);
     text-decoration: underline;
 }

 /* Single Line Bottom Bar */
 .footer-bottom {
     border-top: 1px solid rgba(255, 255, 255, 0.1);
     padding: 25px 0;
     text-align: center;
     font-size: 14px;
     color: #ccc;
 }

 .footer-bottom-content {
     display: flex;
     justify-content: space-between;
     /* Left + Right */
     align-items: center;
     width: 100%;
 }

 .footer-bottom a {
     color: var(--white);
     text-decoration: none;
     transition: 0.3s;
 }

 .footer-bottom a:hover {
     color: var(--primary-color);
 }

 .footer-bottom-content span {
     font-size: 14px;
     color: var(--white);
 }

 .separator {
     color: #666;
 }

 @media (max-width: 769px) {
     .footer-bottom-content {
         flex-direction: column;
         gap: 12px;
     }
   .footer-logo img{
     width: 300px !important;
     height: 110px !important;
   }
 nav.navbar .nav-link {
    color: var(--white) !important;
   }
   .wwd-desc{
    max-width: 632px ;
    text-align: center;
   }
   
 }

 /* footer section end here  */
 #name{
    width: 200px;
    height:90px;
 }
 #logo{
    width: 90px;
    height:90px;
 }
 @media (max-width: 430px) {
    #name{
        width: 100px;
        height:50px;
     }
     #logo{
        width: 60px;
        height:60px;
     }

 }


 /* about page css start here */


.mission p {
    font-size: 16px;
    margin-bottom: 12px;
    color: #333;
  }

  .mission-list {
    list-style: disc;
    padding: 0;
    margin-left: 20px;
  }

  .mission-list li {
    font-size: 17px;
    color: #444;
    line-height: 1.8;
    padding-left: 8px;
    position: relative;
  }

  .mission-list li::before {
    position: absolute;
    left: 0;
    top: 2px;
    color: #007BFF;
    font-weight: bold;
  }

  .legacy-text h4{
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
    padding-bottom: 20px;
  }

  .legacy-section {
    max-width: 1100px;
    margin: 80px;
    padding: 0 20px;
  
  }

  .legacy-wrapper {
    display: flex;
    gap: 50px;
    align-items: flex-start;
  }

  .legacy-photos {
    width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .legacy-founder img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
  }

  .legacy-founder h3 {
    margin-top: 15px;
    margin-bottom: 4px;
    font-size: 20px;
    text-align: center;
  }

  .legacy-founder p {
    margin: 0 0 30px;
    font-size: 14px;
    color: #777;
    text-align: center;
  }

  .legacy-leaders {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
  }

  .leader img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
  }

  .leader h4 {
   margin-top: 15px;
    margin-bottom: 4px;
    font-size: 20px;
    text-align: center;
  }

  .leader p {
     margin: 0 0 30px;
    font-size: 14px;
    color: #777;
    text-align: center;
  }

  .legacy-text {
    flex: 1;
  }

  .legacy-text h2 {
    font-size: 37px;
    font-weight: 700;
    margin-bottom: 20px;
  }

  .legacy-text p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #333;
  }

  .vision, .mission {
    margin-top: 30px;
  }

  .vision h3, .mission h3 {
    font-size: 22px;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .vision h3 span,
  .mission h3 span {
    display: inline-block;
    transition: transform 0.4s ease;
  }

  .vision h3:hover span,
  .mission h3:hover span {
    transform: scale(1.3) rotate(10deg);
  }

  @media (max-width: 992px) {
    .legacy-wrapper {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

    .legacy-photos {
      width: 100%;
      flex-direction: row;
      justify-content: center;
      gap: 40px;
    }

    .legacy-leaders {
      flex-direction: row;
      gap: 40px;
    }

    .legacy-text {
      margin-top: 30px;
    }
  }

  @media (max-width: 600px) {
    .legacy-photos {
      flex-direction: column;
    }

    .legacy-leaders {
      flex-direction: row;
      gap: 20px;
    }

    .legacy-founder img {
      width: 150px;
      height: 150px;
    }

    .leader img {
      width: 100px;
      height: 100px;
    }

    .legacy-text h2 {
      font-size: 22px;
    }

    .legacy-text p {
      font-size: 14px;
    }
  }

  .legacy-founder img,
  .leader img {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .legacy-founder img:hover,
  .leader img:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  }

  /* --------- EXTRA RESPONSIVE FIXES (ADDED, NOT CHANGING YOUR CODE) --------- */

  @media (max-width: 1200px) {
    .legacy-section {
      margin: 30px auto;
    }
  }

  @media (max-width: 768px) {
    .legacy-section {
      margin: 20px auto;
      padding: 0 15px;
      margin-top: 50px;
    }
  }

  @media (max-width: 480px) {
    .legacy-section {
      margin: 15px auto;
      padding: 0 10px;
       margin-top: 40px;
    }
  }






/* chit fund service start here */


.chit-plans-section {
    padding:  60px 5%;
    background: white;
    text-align: center;
}

.chit-plans-section .container {
    max-width: 900px;
    margin: auto;
}

.chit-plans-section h2 {
    font-size: 38px;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
}

.chit-plans-section p {
    font-size: 17px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 40px;
}

.chit-plans-section .cta-btn {
    display: inline-block;
    padding: 12px 30px;
    font-size: 1rem;
    color: #fff;
    background: #007bff;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.chit-plans-section .cta-btn:hover {
    background: #0056b3;
}
.container h4 {
    font-size: 16px;
    font-weight: 600;
    color:#007bff;
    margin-bottom: 20px;
}
.chit-plans{
  padding:40px 20px;
  background:#f5f7ff;
}

.plans-title{
  text-align:center;
  margin-bottom:30px;
  font-size:22px;
  font-weight:600;
  color:#222;
}

.plans-row{
  display:flex;
  gap:20px;
  justify-content:center;
  flex-wrap:wrap;          /* keeps it responsive */
}

.plan-card{
  background:#ffffff;
  border-radius:18px;
  box-shadow:0 6px 18px rgba(0,0,0,0.08);
  overflow:hidden;
  width:220px;             /* 5 in a row on large screens */
  display:flex;
  flex-direction:column;
  text-align:center;
}

.plan-header{
  background:#D4AF37;
  color:#fff;
  padding:16px 10px;
}

.plan-header h3{
  font-size:16px;
  letter-spacing:1px;
}

.plan-circle{
  background:#D4AF37;
  padding:0px 1px 40px;
  position:relative;
}

.plan-circle::after{
  content:"";
  position:absolute;
  left:50%;
  bottom:10px;
  transform:translateX(-50%);
  width:110px;
  height:110px;
  border-radius:50%;
  background:#fff;
  box-shadow:0 4px 10px rgba(0,0,0,0.12);
  z-index: -1;
}

.plan-circle span{
  position:relative;
  z-index:1;
  display:block;
  color:#fff;
}

.plan-value{
  font-size:20px;
  font-weight:700;
  margin-bottom:3px;
}

.plan-sub{
  font-size:12px;
}

.plan-body{
  padding:60px 8px 18px;
  font-size:18px;
  color:#444;
}

.plan-amount{
  font-weight:600;
  margin-bottom:10px;
}

.plan-line{
  display:flex;
  justify-content:space-between;
  margin-bottom:4px;
}



.plan-line span:last-child{
  font-weight:600;
  font-size:12px;
}

.plan-footer{
  padding:14px 16px 20px;
  display:flex;
  flex-direction:column;
  gap:8px;
}

.btn{
  border-radius:3px;
  padding:8px 0;
  border:0;
  cursor:pointer;
  font-size:12px;
  font-weight:600;
  letter-spacing:0.5px;
}

.btn-outline{
  background:#fff;
  color:#D4AF37;
  border:1px solid #D4AF37;
}

.btn-solid{
  background:#D4AF37;
  color:#fff;
}

/* responsiveness */
@media (max-width:1200px){
  .plan-card{
    width:45%;    /* 2 per row on medium screens */
  }
}

@media (max-width:768px){
  .plan-card{
    width:100%;   /* 1 per row on mobile */
  }
}
.chit-plans h2{
    font-size: 37px;
    font-weight: 700;
}
/* Fix alignment inside cards */
.plan-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.plan-line {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 10px;
  min-height: 22px;   /* equal row height */
}

.plan-line span:first-child {
  text-align: left;
  white-space: nowrap;
  font-size: 11px;
}

.plan-line span:last-child {
  text-align: right;
  font-size: 12px;
  white-space: nowrap;
}

/* Force equal card height */
.plan-card {
  height: 100%;
}



/* faq section start here */


.page-wrap{
      max-width:1100px;
      margin:40px auto;
      padding:0 20px;
    }

    /* two column layout */
    .layout{
      display:flex;
      gap:60px;
    }

    /* left small content */
    .left-menu{
      flex:0 0 220px;
    }

    .left-title{
      font-size:13px;
      font-weight:600;
      margin-bottom:14px;
      color:#999;
      text-transform:uppercase;
    }

    .left-menu ul{
      list-style:none;
    }

    .left-menu li{
      font-size:13px;
      padding:8px 0;
      color:#555;
      cursor:pointer;
    }

    .left-menu li.active{
      color:#007bff;
      font-weight:600;
    }

    /* right big content */
    .right-content{
      flex:1;
    }

    .right-heading{
      font-size:18px;
      font-weight:600;
      margin-bottom:8px;
      color:#007bff;
    }

    .right-sub{
      font-size:13px;
      color:#777;
      line-height:1.6;
      margin-bottom:20px;
    }

    /* faq list (all questions visible) */
    .faq-section {
  display: flex;
  gap: 60px;
  padding: 80px 10%;
  align-items: flex-start;
}

.faq-left {
  flex: 1;
}
.faq-left img {
  width: 100%;
  max-width: 460px;
  border-radius: 12px;
}

.faq-right {
  flex: 1;
}

.faq-item {
  border-bottom: 3px solid #e5eafd;
  padding: 18px 0;
}

.faq-question {
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #000; /* default black */
  transition: color 0.3s;
}

.faq-item.active .faq-question {
  color: #007bff; /* blue when active */
}


.faq-answer {
  display: none;
  margin-top: 12px;
  font-size: 15px;
  line-height: 1.6;
  color: #555;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .icon {
  transform: rotate(180deg);
  transition: 0.3s;
}
.faq-right h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #007bff; /* blue */
}
.faq-right h1 {
  font-size: 37px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #000; /* black */
}
/* =======================
   FAQ FULL RESPONSIVE
   ======================= */

@media (max-width: 1200px){
  .faq-section {
    padding: 60px 6%;
    gap: 40px;
  }
}

@media (max-width: 992px){
  .faq-section{
    flex-direction: column;
    gap: 40px;
    padding: 50px 6%;
  }

  .faq-left, .faq-right{
    width:100%;
  }

  .faq-left img{
    max-width:100%;
    height:auto;
  }

  .faq-right h1{
    font-size: 30px;
  }

  .faq-question{
    font-size: 16px;
  }
}

@media (max-width: 600px){
  .faq-section{
    padding: 40px 20px;
  }

  .faq-right h1{
    font-size: 24px;
  }

  .faq-right h4{
    font-size: 14px;
  }

  .faq-item{
    padding: 12px 0;
  }

  .faq-question{
    font-size: 15px;
  }

  .faq-answer{
    font-size: 14px;
  }

  .faq-left img{
    border-radius: 10px;
  }
}


/* contact page start here */


.contact-section {
    background: #f6f9ff;
    padding-top: 70px;
    padding-bottom: 70px;
}

/* Card Style */
.contact-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid #e5e9f2;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

/* Hover Effect */
.contact-card:hover {
    transform: translateY(-6px);
    border-color: #3b82f6;
    box-shadow: 0 10px 28px rgba(0,0,0,0.08);
}

/* Icon Box */
.icon-box {
    width: 70px;
    height: 70px;
    border-radius: 12px;
    background: #ffffff;
    border: 1px solid #e0e6f0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    color: #3b82f6;
    margin: 0 auto 20px auto;
    transition: all 0.3s ease;
}

/* Icon Hover */
.contact-card:hover .icon-box {
    background: #e7f0ff;
    border-color: #3b82f6;
    color: #1d4ed8;
}

/* Titles */
.card-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

/* Text */
.card-text {
    font-size: 15px;
    color: #475569;
    line-height: 1.6;
}
/* Responsive Grid Wrapper */
.contact-cards-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    padding: 0 20px;
}

/* Tablet View */
@media (max-width: 992px) {
    .contact-cards-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile View */
@media (max-width: 576px) {
    .contact-cards-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-card {
        padding: 30px 20px;
    }

    .icon-box {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
}

/* 3rd section started */


.contact-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;   /* horizontal center */
    align-items: center;       /* vertical center (optional) */
    padding: 60px 20px;
}

.contact-container {
    max-width: 1200px;
    width: 100%;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 6px 25px rgba(0,0,0,0.08);
    display: flex;
    gap: 30px;
}


.contact-left {
    flex: 1.5;
} 

 .contact-right {
    flex: 1;
}

.contact-left h2 {
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 600;
    color: #007BFF;
} 
.contact-left p {
    margin-bottom: 20px;
    font-size: 35px;
    font-weight: 700;
    color: #0f0f0f;
    line-height: 1.6;
}

/* FORM GRID */
 .row {
    display: flex;
    
} 

.field {
    flex: 1;
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
} 

.field.full {
    width: 100%;
}

label {
    margin-bottom: 6px;
    font-weight: 500;
}

input, select, textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #dcdcdc;
    border-radius: 6px;
    background: #f9fafc;
    outline: none;
}

textarea {
    height: 120px;
    resize: none;
} 

/* BUTTON */
.btn {
    background: #187bff;
    color: #fff;
    padding: 12px 22px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    font-size: 15px;
}

/* MAP */
.contact-right iframe {
    width: 100%;
    height: 100%;
    min-height: 350px;
    border-radius: 10px;
    border: none;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .contact-container {
        flex-direction: column;
    }
}
.container h4{
    color: #187bff;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 12px;
}
.conrtainer h1{
    font-size: 37px !important;
    font-weight: 700 !important;
   
}
.btn-outline{
  background:#fff;
  color:#D4AF37;
  border:1px solid #D4AF37;
}

.btn-solid{
  background:#D4AF37;
  color:#fff;
}
.btn-outline:hover{
  background:#D4AF37;
  color:#fff;
  
}
.btn-solid:hover{
  background:#fff;
  color:#D4AF37;
  border: #D4AF37 1px solid;
}




/* all common header css */
