/* ================= GLOBAL RESET ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html, body {
  max-width: 100%;
  overflow-x: hidden;
}


/* ===== FORM HIGHLIGHT ONLY ===== */
@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 0 rgba(13,110,253,0);
    }
    50% {
        box-shadow: 0 0 26px rgba(13,110,253,0.45);
    }
    100% {
        box-shadow: 0 0 0 rgba(13,110,253,0);
    }
}

@keyframes shakeForm {
    0% { transform: translateX(0); }
    20% { transform: translateX(-6px); }
    40% { transform: translateX(6px); }
    60% { transform: translateX(-4px); }
    80% { transform: translateX(4px); }
    100% { transform: translateX(0); }
}

/* ONLY THIS CLASS IS USED */
.form-highlight {
    animation: pulseGlow 1.2s ease-in-out 2, shakeForm 0.45s ease;
    border: 1px solid rgba(13,110,253,0.6);
}











/* ===== alert ===== */
#formSuccessAlert {
    font-size: 16px;
    font-weight: 500;
    padding: 14px 20px;
    margin: 20px auto;
    width: fit-content;
    max-width: 500px;
    border-radius: 10px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}


.open-btn {
    border-radius: 8px;
    color: white;
    background: #213C72;
    padding: 11px 100px;
}




/* ===== pointer ====== */
* {
    cursor: none !important;
}

/* Cursor wrapper */
.custom-cursor {
    position: fixed;
    left: 0;
    top: 0;
    pointer-events: none;
    z-index: 9999;
}

/* Center dot */
.cursor-dot {
    width: 8px;
    height: 8px;
    background: #616161;
    border-radius: 70%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

/* Outer ring */
.cursor-ring {
    width: 18px;
    height: 18px;
    border: 2px solid #616161;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.15s ease, opacity 0.15s ease;
}

/* Hide on mobile & tablet */
@media (max-width: 1024px) {
    .custom-cursor {
        display: none !important;
    }
}







/* ================= BUTTONS ================= */


.nav-btn {
    position: relative;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.45);
    color: #fff;
    padding: 16px 22px;
    border-radius: 10px;
    font-weight: 500;
    text-decoration: none;
    overflow: hidden;
    transition:
        transform 0.45s cubic-bezier(.22, .61, .36, 1),
        background 0.35s ease,
        box-shadow 0.35s ease;
}

/* ✨ Rolling Shine Layer */
.nav-btn::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -120%;
    width: 60%;
    height: 200%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.6),
        transparent
    );
    transform: rotate(25deg);

    /* 🔥 CONTINUOUS ANIMATION */
    animation: glassRoll 1.5s ease-in-out infinite;
}

/* 🔥 Hover Effect */
.nav-btn:hover {
    border: 1px solid transparent;
    /* 🔥 FIX */
    background: rgba(255, 255, 255, 0.45);
    box-shadow:
        0 10px 30px rgba(255, 255, 255, 0.25),
        inset 0 0 25px rgba(255, 255, 255, 0.35);
    color: #142547;
}


/* ▶️ Roll Shine Animation */
.nav-btn:hover::after {
    animation: glassRoll 0.9s ease forwards;
}

/* 🎞️ Keyframes */
@keyframes glassRoll {
    0% {
        left: -120%;
    }

    100% {
        left: 140%;
    }
}




.hero-btn {
    border-radius: 8px;
    font-size: 20px;
    padding: 16px 30px;
    text-decoration: none;
    background: #213C72;
    color: white;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}



.hero-btn:hover {
    background: #142547;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(33, 60, 114, 0.25);
}

.hero-btn-out {
    font-size: 20px;
    color: white;
    border: 1px solid white;
    border-radius: 8px;
    text-decoration: none;
    padding: 16px 30px;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-btn-out:hover {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.196);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(33, 60, 114, 0.25);
}

/* ================= NAVBAR ================= */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100px;
    z-index: 999;
    display: flex;
    align-items: center;
    background: transparent;
    backdrop-filter: blur(10px);
}

.navbar-brand img {
    height: 56px;
}

.nav-container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 160px;
}

/* NAV LINKS */
.navbar-nav {
    align-items: center;
}

.nav-item {
    margin: 0 8px;
}

.nav-link {
    font-weight: 200;
    font-size: 16px;
    color: white;
    text-decoration: underline;
    text-decoration-color: transparent;
    text-underline-offset: 6px;
    transition: text-decoration-color 0.3s ease;
}

.nav-link:hover {
    color: white;
    text-decoration-color: white;
}

/* ================= DROPDOWN ================= */
.dropdown-menu {
    min-width: 240px;
    padding: 14px 10px;
    border-radius: 14px;
    border: none;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(14px);
    transition: all 0.25s ease;
}

.dropdown-item {
    padding: 12px 16px;
    border-radius: 10px;
    font-weight: 500;
    color: #222;
    transition: all 0.25s ease;
}

.dropdown-item:hover {
    background: rgba(31, 60, 136, 0.08);
    color: #1f3c88;
}

/* Desktop hover dropdown */
@media (min-width: 992px) {
    .dropdown:hover>.dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        display: block;
    }
}

/* ================= BURGER MENU ================= */
.navbar-toggler {
    border: none;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(255,255,255,1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* ================= CLOSE BUTTON ================= */
.nav-close-btn {
    display: none;
}



/* ====== NAV Scroll ======= */

/* DEFAULT NAVBAR (TOP) */
.navbar {
    transition: all 0.35s ease;
}

.navbar .nav-link,
.navbar .navbar-brand,
.navbar .nav-btn {
    transition: color 0.35s ease;
}

/* SCROLLED STATE */
.navbar.scrolled {
    background: #ffffff !important;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

/* Text color after scroll */
.navbar.scrolled .nav-link,
.navbar.scrolled .navbar-brand,
.navbar.scrolled .dropdown-toggle {
    color: #213C72 !important;
}

/* Button after scroll */
.navbar.scrolled .nav-btn {
    background: #213C72;
    color: #fff !important;
}

/* Dropdown menu */
.navbar.scrolled .dropdown-menu {
    background: #ffffff;
}

.navbar.scrolled .dropdown-item {
    color: #213C72;
}

.navbar.scrolled .dropdown-item:hover {
    background: rgba(33, 60, 114, 0.08);
}

/* Toggler icon color fix */
.navbar.scrolled .navbar-toggler {
    border-color: rgba(33, 60, 114, 0.4);
}

.navbar.scrolled .navbar-toggler-icon {
    filter: invert(20%) sepia(40%) saturate(500%) hue-rotate(190deg);
}

.nav-logo {
    transition: all 0.3s ease;
}



/* ================= HERO ================= */
.hero {
    height: 100vh;
    background: url("../assets/hero.jpg") center/cover no-repeat;
    position: relative;
}


.service-hero {
    height: 100vh;
    background: url("../assets/service-hero.jpg") center/cover no-repeat;
    position: relative;
}

.training-hero {
    height: 100vh;
    background: url("../assets/training-hero.jpg") center/cover no-repeat;
    position: relative;
}

.blog-hero {
    height: 100vh;
    background: url("../assets/bloghero.jpg") center/cover no-repeat;
    position: relative;
}

.about-hero {
    height: 100vh;
    background: url("../assets/abouthero.jpg") center/cover no-repeat;
    position: relative;
}

.contact-hero {
    height: 100vh;
    background: url("../assets/contacthero.jpg") center/cover no-repeat;
    position: relative;
}


.uitraining-hero {
    height: 100vh;
    background: url("../assets/uitraining.jpg") center/cover no-repeat;
    position: relative;
}


.uxtraining-hero {
    height: 100vh;
    background: url("../assets/uxdesignhero.jpg") center/cover no-repeat;
    position: relative;
}

.uiuxdesigntraining-hero {
    height: 100vh;
    background: url("../assets/uiuxdesignhero.jpg") center/cover no-repeat;
    position: relative;
}

.uiuxdevelopmenttraining-hero {
    height: 100vh;
    background: url("../assets/uiuxdesign&developmenthero.jpg") center/cover no-repeat;
    position: relative;
}


.graphictraining-hero {
    height: 100vh;
    background: url("../assets/graphictraininghero.jpg") center/cover no-repeat;
    position: relative;
}

.fontendtraining-hero {
    height: 100vh;
    background: url("../assets/frontenddevelopmenthero-1.jpg") center/cover no-repeat;
    position: relative;
}


.webdevelopment-hero {
    height: 100vh;
    background: url("../assets/webdevelopmenthero.jpg") center/cover no-repeat;
    position: relative;
}

.uiuxdesignservice-hero{
    height: 100vh;
    background: url("../assets/uiuxdesignservice.jpg") center/cover no-repeat;
    position: relative;
}


.graphicservice-hero{
    height: 100vh;
    background: url("../assets/graphicservicehero.jpg") center/cover no-repeat;
    position: relative;
}

.appdevelopment-hero{
    height: 100vh;
    background: url("../assets//appdevehero.jpg") center/cover no-repeat;
    position: relative;
}

.softwaredevelopment-hero{
    height: 100vh;
    background: url("../assets/softwaredevehero.jpg") center/cover no-repeat;
    position: relative;
}


.enterpricedevelopment-hero{
    height: 100vh;
    background: url("../assets/enterpriseshero.jpg") center/cover no-repeat;
    position: relative;
}

.overlay {
    backdrop-filter: blur(2px);
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
}

.hero-content {
    justify-content: center;
    position: relative;
    z-index: 2;
    padding-top: 180px;
}

.hero-title {
    text-align: center;
    color: white;
    font-size: 64px;
    font-weight: 700;
}

.hero-subtitle {
    text-align: center;
    color: white;
    font-size: 20px;
    font-weight: 200;
    margin-bottom: 20px;
}

.stats-row {
    /* backdrop-filter: blur(10px);
    border-radius: 8px; 
    border: 1px solid white;*/
    color: white;
    text-align: center;
    width: 740px;
    /* background: #ffffff40; */
}

.hero-stats h3 {
    font-size: 42px;
    font-weight: 700;
    height: 50px;
    overflow: hidden;
    position: relative;
}



.service-link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.service-card {
    cursor: pointer;
}








/* ======= About Us Section ======== */
/* button */
.about-btn-out {
    font-size: 20px;
    color: #213C72;
    /* border: 1px solid #213C72; */
    border-radius: 8px;
    text-decoration: none;
    padding: 16px 30px;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}


.about-btn-out:hover {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.196);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(33, 60, 114, 0.25);
}

.about-btn {
    border-radius: 8px;
    font-size: 20px;
    padding: 16px 30px;
    text-decoration: none;
    background: #213C72;
    color: white;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}


.about-btn:hover {
    background: #142547;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(33, 60, 114, 0.25);
}

/* Section */
.about-section {
    margin-top: 70px;
    background: #fff;
}

/* Headings */
.about-label {
    font-size: 16px;
    font-weight: 600;
    color: #1f3c88;
    margin-bottom: 6px;
}

.about-title {
    font-size: 42px;
    font-weight: 700;
    color: #1f3c88;
}

/* Image */
.about-image {
    border-radius: 18px;
    width: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

/* Hover Effect */
.about-image:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
}


/* Text */
.about-text {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

/* Buttons */
.custom-btn {
    padding: 12px 26px;
    font-size: 16px;
    border-radius: 10px;
}

.custom-outline-btn {
    padding: 12px 26px;
    font-size: 16px;
    border-radius: 10px;
}

/* Cards */
.info-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.35s ease;
    border: 1px solid transparent;
}

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
    border-color: rgba(31, 60, 136, 0.15);
    /* matches your blue theme */
}

.info-card h5 {
    transition: color 0.3s ease;
}

.info-card:hover h5 {
    color: #1f3c88;
}


.info-card h5 {
    font-size: 20px;
    font-weight: 600;
    color: #1f3c88;
    margin-bottom: 10px;
}

.info-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .about-title {
        font-size: 32px;
    }
}





/* ======= services section ======= */
/* ===============================
   SERVICES SECTION
================================ */
.services-section {
    background: #ffffff;
}

.section-subtitle {
    color: #1f3b75;
    font-weight: 600;
    margin-bottom: 6px;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: #1f3b75;
}


.service-link {
    text-decoration: none;
    color: inherit;
    display: block;
}


/* ===============================
   SERVICE CARD
================================ */
.service-card {
    background: #fff;
    border-radius: 18px;
    padding: 20px;
    border: 1px solid #e8e8e8;
    height: 100%;
    transition: 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

/* Header */
.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-header h5 {
    font-size: 20px;
    font-weight: 600;
    color: #1f3b75;
}

.arrow-btn {
    width: 40px;
    height: 40px;
    background: #1f3b75;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

/* Text */
.service-card p {
    font-size: 13px;
    color: #666;
    margin: 12px 0 16px;
}

/* Image */
.service-card img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    border-radius: 14px;
}



/* ======= our work section ======== */

/* ===============================
   WORK SECTION
================================ */
.work-section {
    background: #ffffff;
}

/* Titles */
.work-subtitle {
    font-weight: 600;
    color: #1f3b75;
    margin-bottom: 6px;
}

.work-title {
    font-size: 42px;
    font-weight: 700;
    color: #1f3b75;
}

/* ===============================
   WORK CARD
================================ */



.work-card {
    background: #fff;
    border-radius: 20px;
    border: 1px solid #e6e6e6;
    overflow: hidden;
    height: 100%;
    transition: 0.3s ease;
    position: relative;
}

.work-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}

/* Image */
.work-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

/* Content */
.work-content {
    padding: 22px;
}

.work-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.work-header h5 {
    font-size: 20px;
    font-weight: 600;
    color: #1f3b75;
}

.work-header span {
    font-weight: 400;
    font-size: 14px;
}

/* Arrow */
.arrow {
    width: 42px;
    height: 42px;
    background: #1f3b75;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

/* Text */
.work-content p {
    font-size: 14px;
    color: #6b6b6b;
    margin-top: 12px;
    line-height: 1.6;
}

/* Coming Soon Overlay */
.coming-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.649);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    backdrop-filter: blur(2px);
    z-index: 2;
}

/* Optional: Dim Image */
.coming-soon img {
    filter: brightness(60%);
}



/* ================== ADD-ON FOR COMING SOON ================== */




/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 768px) {
    .work-title {
        font-size: 32px;
    }

    .work-img {
        height: 240px;
    }
}


/* ===== why choose us ===== */

/* ===============================
   WHY CHOOSE US SECTION
================================ */
.why-section {
    background: #ffffff;
}

/* Titles */
.why-subtitle {
    font-weight: 600;
    color: #1f3b75;
    margin-bottom: 6px;
}

.why-title {
    font-size: 42px;
    font-weight: 700;
    color: #1f3b75;
}

/* ===============================
   FEATURE CARDS
================================ */
.why-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 28px;
    height: 100%;
    border: 1px solid #e6e6e6;
    transition: all 0.3s ease;
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.08);
}

/* Icon Circle */
.icon-circle {
    width: 72px;
    height: 72px;
    background: #d6e4ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.icon-circle img {
    width: 34px;
    height: 34px;
    object-fit: contain;
}

/* Card Text */
.why-card h5 {
    font-size: 22px;
    font-weight: 600;
    color: #1f3b75;
    margin-bottom: 12px;
}

.why-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}



/* ===============================
   CTA BOX
================================ */
.cta-box {
    border: 1px solid #e6e6e6;
    border-radius: 20px;
    padding: 32px;
}

.cta-box h4 {
    font-size: 26px;
    font-weight: 600;
    color: #1f3b75;
    margin-bottom: 12px;
}

.cta-box p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

/* CTA Buttons */
.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #e9f0ff;
    color: #1f3b75;
    padding: 10px 18px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cta-btn img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.cta-btn:hover {
    background: #1f3b75;
    color: #ffffff;
}

.cta-btn:hover img {
    filter: brightness(0) invert(1);
}


/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 768px) {
    .why-title {
        font-size: 32px;
    }

    .cta-box h4 {
        font-size: 22px;
    }
}




/* ===== contact form ====== */

/* ===============================
   CONTACT SECTION
================================ */
.contact-info {
    text-decoration: none;
    margin-top: 20px;
}

.whatsapp-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    text-decoration: none;
    color: #213C72;
}

.whatsapp-row img {
    width: 40px;
    height: 40px;
}

.whatsapp-row:hover {
    text-decoration: none;
    color: #15274a;
}


.contact-info p {
    font-size: 16px;
    color: #1f3b75;
}

.contact-info a {
    color: #1f3b75;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: none;
}



.contact-section {
    background: #ffffff;
}

/* Left Content */
.contact-title {
    font-size: 44px;
    font-weight: 700;
    color: #1f3b75;
    line-height: 1.2;
}

.contact-highlight {
    font-size: 20px;
    font-weight: 500;
    color: #1f3b75;
    margin-top: 18px;
}

.contact-desc {
    font-size: 15px;
    color: #555;
    margin-top: 14px;
    max-width: 520px;
}

.contact-info p {
    margin: 6px 0;
    font-size: 15px;
    color: #1f3b75;
}

.contact-info a {
    color: #1f3b75;
    text-decoration: none;
}

/* Buttons */
/* Uiverse style applied to anchor */
.neu-btn {
    margin-top: 24px;
  display: inline-block;
  color: #213C72;
  padding: 0.7em 1.7em;
  font-size: 18px;
  border-radius: 0.5em;
  background: #ffffff;
  cursor: pointer;
  /* border: 1px solid #e1e1e1; */
  transition: all 0.3s ease;
  
  text-decoration: none;
}

.neu-btn:hover {
    box-shadow: 6px 6px 12px #c5c5c5,
              -6px -6px 12px #ffffff;
  text-decoration: none;
  /* border: 1px solid #ffffff; */
}

.neu-btn:active {
  box-shadow: 4px 4px 12px #c5c5c5,
              -4px -4px 12px #ffffff;
}


/* Brand */
.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-logo {
    width: 190px;
}

.brand span {
    font-size: 20px;
    font-weight: 700;
    color: #1f3b75;
}

/* ===============================
   FORM CARD
================================ */
.form-card {
    border: 1px solid #cfcfcf;
    border-radius: 22px;
    padding: 32px;
}

.form-title {
    font-size: 28px;
    font-weight: 600;
    color: #1f3b75;
    margin-bottom: 22px;
}

.form-label {
    font-weight: 500;
    color: #1f3b75;
}

.form-label span {
    font-weight: 400;
    font-size: 13px;
}

.form-control,
.form-select {
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid #dcdcdc;
}

.form-control:focus,
.form-select:focus {
    border-color: #1f3b75;
    box-shadow: none;
}

/* Submit */
.submit-btn {
    background: #213C72;
    color: #fff;
    padding: 14px;
    border-radius: 12px;
    font-size: 16px;
}

.submit-btn:hover {
    color: white;
    background: #162c59;
}







/* card height sizing.... */

.card {
    height: 454px !important;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 768px) {
    .contact-title {
        font-size: 34px;
    }

    .form-card {
        padding: 24px;
    }
}



/* ==== footer ==== */
/* ===============================
   FOOTER
================================ */
.site-footer {
    background: #213C72;
    color: #ffffff;
    padding: 70px 0 30px;
}

.links{
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.links:hover{
    font-weight: 800;
}




/* Logo & Text */
.footer-logo {
    font-size: 30px;
    font-weight: 700;
}

.footer-desc {
    font-size: 16px;
    margin-top: 12px;
    opacity: 0.9;
    max-width: 420px;
}

/* Titles */
.footer-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 14px;
}

/* Links */
.footer-links {
    list-style: disc;
    padding-left: 18px;
}

.footer-links li {
    margin-bottom: 8px;
    font-size: 15px;
    opacity: 0.9;
    cursor: pointer;
}

/* Middle Section */
.footer-middle {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 30px;
}

.footer-contact p {
    margin: 6px 0;
    font-size: 16px;
}

/* WhatsApp */
.whatsapp {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.whatsapp img {
    width: 34px;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 18px;
    justify-content: flex-end;
}

.social-icons img {
    width: 32px;
    cursor: pointer;
    transition: 0.3s ease;
}

.social-icons img:hover {
    transform: translateY(-4px);
}

/* Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
}

.footer-bottom p {
    font-size: 14px;
    opacity: 0.9;
    max-width: 1000px;
    margin: auto;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 768px) {
    .social-icons {
        justify-content: flex-start;
    }

    .footer-logo {
        font-size: 26px;
    }
}










/* ================= TABLET HORIZONTAL ================= */
@media (max-width: 1199px) {
    .nav-container {
        padding: 0 20px;
        gap: 90px;
    }

    .hero h1 {
        text-align: center;
        font-size: 44px;
        font-weight: 700;
    }
}

/* ================= TABLET VERTICAL + MOBILE ================= */
@media (max-width: 991px) {


    .hero-btn {
        font-size: 16px;
        padding: 16px 64px;
    }


    .hero-btn-out {
        font-size: 16px;
        padding: 16px 58px;
    }

    .about-btn-out {
        font-size: 16px;
        padding: 16px 40px;
    }

    .about-btn {
        font-size: 16px;
        padding: 16px 40px;
    }

    .hero h1 {
        text-align: center;
        font-size: 38px;
        font-weight: 700;
    }

    .hero-title {
        text-align: center;
        font-size: 38px;
        font-weight: 700;
    }

    .hero-subtitle {
        text-align: center;

        font-size: 16px;
        font-weight: 200;
        margin-bottom: 20px;
    }

    .navbar {
        width: auto;
        height: auto;
        padding: 16px 0;
    }

    .nav-container {
        padding: 0 60px;
        gap: 0;
    }

    .navbar-collapse {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 75%;
        max-width: 320px;
        background: rgba(0, 0, 0, 0.9);
        backdrop-filter: blur(12px);
        padding: 100px 24px 24px;
        border-radius: 20px 0 0 20px;
        transform: translateX(100%);
        transition: transform 0.35s ease;
    }

    .navbar-collapse.show {
        transform: translateX(0);
    }

    .navbar-nav {
        align-items: flex-start;
    }

    .nav-item {
        margin: 12px 0;
    }

    .nav-link {
        font-size: 18px;
    }

    .dropdown-menu {
        position: static;
        background: transparent;
        box-shadow: none;
        padding-left: 12px;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
    }

    .dropdown.show .dropdown-menu {
        display: block;
    }

    .dropdown-item {
        color: white;
    }

    .dropdown-item:hover {
        background: rgba(255, 255, 255, 0.1);
        color: white;
    }

    .nav-close-btn {
        display: block;
        position: absolute;
        top: 24px;
        right: 20px;
        background: transparent;
        border: none;
        color: white;
        font-size: 28px;
        font-weight: 300;
        cursor: pointer;
        z-index: 1001;
    }
}

/* ================= MOBILE ================= */
@media (max-width: 767px) {
    .h3-text {
    padding-top: 0px;
    font-size: 16px !important;
}

.section-subtitle {
    margin-left: 16px;
}

    .about-buttons {
        justify-content: center;
    }

    .contact-buttons {
        justify-content: center;
    }

    .hero-title {
        font-size: 24px;
    }

    .footer-btn-out {
    text-align: center;
    width: 100%;
    font-size: 16px;
    padding: 16px 96px;
}

    .footer-btn {
        font-size: 16px;
        padding: 16px 96px;
    }

    .about-btn {
        font-size: 16px;
        padding: 14px 84px;
    }


    


    .hero-content {
        padding-top: 120px !important;
    }

    .hero h1 {
        font-size: 27px;
    }

    .hero-subtitle {
        margin: 8px 0;
        font-size: 14px;
    }

    .hero-buttons {
        margin: 16px 0px;
    }

    .hero-stats {
        margin: 0 !important;
    }

    .hero-stats h3 {
        font-size: 24px;
        font-weight: 700;
        height: 30px;
    }

    .hero-btn {
    width: 100%;
    font-size: 16px;
    padding: 14px 84px;
}


    .hero-btn-out {
    width: 100%;
    font-size: 14px;
    padding: 14px 78px;
}

    .about-btn-out {
        font-size: 16px;
        padding: 14px 78px;
    }

    

    .nav-container {
        padding: 0 16px;
    }

    .navbar-brand img {
        height: 48px;
    }

    .nav-btn {
        width: 100%;
        text-align: center;
        margin-top: 12px;
    }


    .stats-row {
        font-size: 11px;

    }
}



@media (max-width: 360px) {
    .about-btn-out {
        font-size: 16px;
        padding: 16px 90px;
    }


    .about-btn {
        font-size: 16px;
        padding: 16px 96px;
    }
}

/* ===== FAQ ====  */
.faq-slider {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.faq-track {
    display: flex;
    width: max-content;
    animation: scrollInfinite 40s linear infinite;
}

.faq-card {
    flex: 0 0 auto;
    max-width: 320px;
    margin: 0 10px;
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    white-space: normal;
}

.faq-card h6 {
    font-weight: bold;
}

/* Keyframes */
@keyframes scrollInfinite {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-50%);
    }
}

.faq-title {
    padding-left: 30px;
    font-size: 42px;
    font-weight: 700;
    color: #1f3b75;
}

/* ===== MOBILE FIX ===== */
@media (max-width: 768px) {

    /* sirf ek row rahe */
    .faq-slider .faq-track:nth-of-type(2) {
        display: none;
    }

    .faq-track {
        flex-wrap: nowrap;
    }

    .faq-card {
        width: 320px;        /* FIXED width */
        min-width: 320px;
        max-width: 320px;
        height: auto;        /* content ke according */
        margin: 0 10px;
    }
}



