/* Wide container like Figma (1350–1440px) */
.wide-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Smooth font rendering */
body {
    -webkit-font-smoothing: antialiased;
    font-family: "Inter", sans-serif;
}

/* Soft shadows used in Figma */
.shadow-card {
    box-shadow: 0px 25px 80px rgba(15, 23, 42, 0.12);
}


/* Custom round corners used in UI */
.rounded-xl {
    border-radius: 25px;
}

/* Dotted hero background */
.bg-dot-pattern {
    background-image: radial-gradient(circle, rgba(148,163,184,0.3) 1px, transparent 1px);
    background-size: 22px 22px;
}

/* Gradient card in final CTA */
.gradient-box {
    background: radial-gradient(circle at top left,
        #a855f7 0%,
        rgba(37, 99, 235, 0.8) 40%,
        #0f172a 100%
    );
}

/* Green pricing bar */
.pricing-gradient {
    background: linear-gradient(90deg, #22c55e, #16a34a);
}
/* GLOBAL WIDE CONTAINER */
.wide-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 25px;
}

/* ===== NAVBAR BASE (desktop behaviour as before) ===== */
.main-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  padding-top: 20px;
}


/* Sticky when scrolling (desktop & mobile) */
.main-nav.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(14px);
    box-shadow: 0 4px 18px rgba(0,0,0,0.08);
    padding: 10px 0;
}

/* Logo text */
.logo-text {
    font-weight: 600;
    font-size: 20px;
    color: #111827;
}

/* Desktop center menu */
.nav-menu .nav-link {
    font-size: 15px;
    font-weight: 500;
    color: #111827 !important;
    padding: 8px 16px !important;
}
.nav-link-pill {
    border-radius: 999px;
    border: 1px solid #d1d5db;
    background-color: #ffffff;
}
.nav-link-simple { border-radius: 999px; }
.nav-menu .nav-link:hover { color: #000000 !important; }

/* Desktop CTA */
.btn-talk {
    background: linear-gradient(135deg, #3444ff, #2835d9);
    color: #ffffff;
    border-radius: 999px;
    padding: 10px 26px;
    font-weight: 600;
    font-size: 15px;
    box-shadow: 0 12px 25px rgba(37, 99, 235, 0.35);
    border: none;
}
.btn-talk:hover { 
    opacity: 0.9; 
    color: #fff;

}

/* ===== MOBILE TOGGLE BUTTON (top-right hamburger) ===== */
.nav-toggle {
    border: none;
    background: transparent;
    font-size: 22px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
}
.nav-toggle .icon-close { display: none; }



/* Show mobile hamburger on tablet too */
@media (max-width: 1024px) {
    .nav-toggle {
        display: inline-flex !important;
    }
    .illus {
    display: none !important;
}
.hero-subtext {
    max-width: 650px;
    font-size: 2rem;
    color: #121212CC;
    line-height: 1.6;
}
.mm{
    margin-top: 200px;
}
}

/* ===== MOBILE SLIDE-OUT MENU ===== */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: #fff;
  z-index: 2000;
  transition: right 0.4s ease;
  padding: 24px;
}

.mobile-menu.open {
  right: 0;
}




.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 28px;            /* KEY: vertical spacing */
  margin-top: 48px;
}

.mobile-nav-links a {
  font-size: 20px;
  font-weight: 500;
  color: #1c1c1c;
  text-decoration: none;
}

.mobile-nav-links a.mobile-link-active {
  color: #0b5cff;
  font-weight: 600;
}



/* Links in mobile menu */



/* Mobile nav close button inside panel */
.nav-toggle-close {
    border: none;
    background: transparent;
    font-size: 26px;
    line-height: 1;
}

/* Big CTA inside panel */
.mobile-cta {
    background: #2b3cf1;
    color: #fff;
    border-radius: 999px;
    padding: 14px 18px;
    font-weight: 600;
    font-size: 16px;
    width: 100%;
}

/* Only show mobile elements on small screens */
/* Hide desktop nav on mobile + tablet */
@media (max-width: 1024px) {
    .nav-menu,
    .btn-talk {
        display: none !important;
    }
}
@media (max-width: 767.98px) {
    .wide-container {
        padding: 0 18px;
    }

    .hero-section {
        padding-top: 130px;  /* space for nav */
        padding-bottom: 120px;
        border-radius: 32px 32px 0 0;
        margin: 0; /* full-width mobile */
    }

    .hero-title {
        font-size: 2.4rem;
        text-align: center;
        margin-top: -100px;
    }

    .hero-subtext {
        font-size: 1rem;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .talk-primary {
        width: 100%;
        display: inline-flex;
        justify-content: center;
       
        
    }

    .hero-flow {
        margin-top: 40px;
        max-width: 100%;
    }
}

/* ============================
   MOBILE HERO BEFORE ANYTHING
   ============================ */
@media (max-width: 767.98px) {

    /* Hero container */
    .hero-section {
        margin-top: 0;
        padding-top: 130px; /* space beneath mobile nav */
        padding-bottom: 80px;
        border-radius: 32px 32px 0 0;
        background: rgba(45, 60, 205, 0.078);
        background-image: radial-gradient(circle, rgba(0,0,0,0.14) 2px, transparent 2px);
        background-size: 34px 34px;
    }

    .hero-container {
        padding: 0 20px;
        text-align: center;
    }
    .illus {
        display: none;
    }
    

    /* Big headline */
    .hero-title {
        font-size: 32px !important;
        font-weight: 700;
        line-height: 1.2 !important;
        text-align: center;
        margin-bottom: 16px;
        margin-top: -100px;
        letter-spacing: 0px !important;
        
    }

    /* Paragraph text */
    .hero-subtext {
        font-size: 1rem;
        line-height: 1.55;
        color: #444;
        margin-bottom: 26px;
        text-align: center;
    }

    /* Big CTA button */
    .talk-primary {
        width: 100%;
        display: inline-flex;
        justify-content: center;
        align-items: center;
        font-size: 1rem;
        font-weight: 600;
        padding: 18px 16px;
        border-radius: 50px;
        margin-bottom: 40px;
    }

    /* Workflow illustration */
    .hero-flow-wrap {
        padding-right: 10px;
        display: flex;
        justify-content: center;
    }

    .hero-flow {
        width: 100%;
        max-width: 620px;
        height: auto;
        margin-top: 140px;
    }
    .pt-5 {
    padding-top: 0rem !important;
}
}



/* Right CTA button */
.btn-talk {
    background: linear-gradient(135deg, #3444ff, #2835d9);
    color: #ffffff;
    border-radius: 999px;
    padding: 10px 26px;
    font-weight: 600;
    font-size: 15px;
    box-shadow: 0 12px 25px rgba(37, 99, 235, 0.35);
    border: none;
    transition: opacity 0.2s ease;
}

.btn-talk:hover {
    opacity: 0.9;
}

/* Icon inside CTA */
.nav-icon {
    font-size: 16px;
    line-height: 1;
}


/* TALK BUTTON RIGHT */
.talk-btn {
    background: #2D3CCD;
    color: #fff;
    padding: 10px 22px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0px 2px 5px rgba(0,0,0,0.15);
}

.talk-btn:hover {
    background: #2D3CCD;
    color: #fff;
}

/* HERO SECTION */
.hero-section {
    background: #2D3CCD14;
    padding-bottom: 5px;
    border-radius: 0 0 20px 20px;
    position: relative;
    overflow: hidden;
    
}

/* Dotted background */
.hero-section {
    background-image:
        radial-gradient(circle, rgba(18, 18, 20, 0.08) 3px, transparent 3px);
    background-size: 55px 55px;
    max-width: 1310px;
    margin: 0 auto;
    border-radius: 10px;
    margin-top: 80px;
}

.hero-title {
    font-size: 50px;
     font-family: 'Lato';
     font-style: normal;
     font-weight: 700;
     line-height: 55px;
     /* or 117% */
     text-align: center;
     letter-spacing: 2px;
     color: #121212;
   
}

.hero-subtext {
    max-width: 650px;
    font-size: 1.05rem;
    color: #121212CC;
    line-height: 1.6;
}

/* PRIMARY TALK BTN */
.talk-primary {
    background: #2D3CCD;
    padding: 12px 28px;
    border-radius: 40px;
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    position: relative;
}

.talk-primary:hover {
    background: #2D3CCD;
    padding: 13px 29px;
    border-radius: 40px;
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
}

.solution-btn {
    background: #fff;
    color: #000;
    padding: 12px 28px;
    border-radius: 40px;
    font-weight: 600;
    border: 1px solid #dcdcdc;
    position: relative;
}
.solution-btn:hover {
    background: #2D3CCD;
    color: #fff;
    padding: 12px 28px;
    border-radius: 40px;
    font-weight: 600;
    border: 1px solid #dcdcdc;
}

/* HERO FLOW CARDS AREA */
.hero-cards-area {
    width: 100%;
    margin-top: -180px;
}
.wide-container1 {
    max-width: 1330px;
    margin: 0 auto;
    padding: 0 25px;
}

/* ========== RESULTS SECTION ========== */
.results-section {
    background: #fff;
    padding-top: 70px;
    padding-bottom: 70px;
}

/* Green left bar */
.results-line {
    width: 18px;
    height: 18px;
    border-left: 4px solid #2ecc71;
    border-radius: 2px;
    
}

/* Title text */
.results-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #222;
}

/* Wrapper with vertical separators */
.results-wrapper {
    border-top: none;
    border-bottom: 1px solid #e5e5e5;
}

/* Each column */
.results-item {
    padding: 35px 20px;
    border-right: 1px solid #e5e5e5;
}
.results-item1 {
    padding: 35px 20px;
    border-right: 1px solid #e5e5e5;
    border-left: 1px solid #e5e5e5;
}

/* Remove right border on last column */
.results-item:last-child {
    border-right: none;
}

/* Placeholder icon style */
.results-icon {
    height: 48px;
    opacity: 0.8;
}

/* Value text */
.results-value {
    font-size: 2rem;
    font-weight: 700;
    color: #000;
    margin: 10px 0 4px 0;
    text-align: left;
}

.results-unit {
    color: #00a55a;
    font-weight: 700;
}

/* Description under values */
.results-desc {
    font-size: 0.9rem;
    color: #555;
    margin-top: 8px;
    text-align: left;
}

/* Responsive */
@media (max-width: 768px) {
    .results-item {
        border-right: none;
        border-bottom: 1px solid #e5e5e5;
    }
    .results-item:last-child {
        border-bottom: none;
    }
}


/* Desktop + Tablet: 4 columns */
.results-wrapper {
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
}


.results-item,
.results-item1 {
    padding: 40px 20px;
    border-right: 1px solid #e5e5e5;
    text-align: left;
}

.results-item:last-child {
    border-right: none;
}
@media (max-width: 767px) {

    .results-title {
        text-align: center !important;
        font-size: 1.9rem !important;
        line-height: 1.25;
    }

    /* Convert 4 columns → 2 columns ONLY on mobile */
    .results-wrapper {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .results-item,
    .results-item1 {
        text-align: center !important;
        padding: 28px 10px !important;
        border-right: none !important;
        border-bottom: 1px solid #e5e5e5 !important;
    }

    /* Add vertical dividing line between col 1 and col 2 */
    .results-item:nth-child(odd),
    .results-item1:nth-child(odd) {
        border-right: 1px solid #e5e5e5 !important;
    }

    /* Last row — remove bottom border */
    .results-item:nth-child(3),
    .results-item:nth-child(4) {
        border-bottom: none !important;
    }

    /* Icon size */
    .results-icon {
        height: 52px !important;
        margin-bottom: 10px;
    }

    /* Numbers */
    .results-value {
        font-size: 1.8rem !important;
        text-align: center;
        margin-bottom: 4px;
    }

    .results-unit {
        font-size: 1.2rem !important;
        padding-left: 2px;
    }

    /* Description text */
    .results-desc {
        font-size: 0.95rem !important;
        line-height: 1.3;
        text-align: center !important;
    }
}

.wide-container2 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px;
}
/* SECTION BACKGROUND */
.problem-section {
    background: linear-gradient(0deg, rgba(0, 255, 169, 0.08), rgba(0, 255, 169, 0.08)), #121212;
    padding: 140px 0;
    position: relative;
}

/* CENTER CIRCLE BEHIND CARDS */
.problem-circle {
    position: absolute;
    width: 900px;
    height: 900px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.349);
    left: 50%;
    top: 48%;
    transform: translate(-50%, -50%);
    z-index: 1;
    pointer-events: none;
}

.problem-circle2 {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.349);
    left: 50%;
    top: 48%;
    transform: translate(-50%, -50%);
    z-index: 1;
    pointer-events: none;
}

/* MAIN CARD */
.ui-card {
    width: 750px;
    max-width: 750px;
    height: 386px;
    background: 
        linear-gradient(0deg, #FAF9F6, #FAF9F6),
        linear-gradient(201.22deg, rgba(45, 60, 205, 0) 28.82%, #2D3CCD 64.05%);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    align-items: center;
    z-index: 2;
    position: relative;
    box-shadow: 0px 28px 60px rgba(0,0,0,0.20);
}

/* Card positioning & tilt */
.card-left {
    transform: rotate(-2deg);
    margin-bottom: 60px;
    margin-left: 40px;
}

.card-right {
    transform: rotate(2deg);
    margin-left: auto;
    margin-right: 40px;
}

/* INTERNAL LAYOUT */
.card-inner {
    display: flex;
    flex-direction: row;
    gap: 24px;
}

/* Columns inside card */
.left-col {
    flex: 1;
}

.right-col {
    flex: 1;
}

/* Label on card */
.badge-label {
    display: inline-block;
    background: #ffffff;
    border-radius: 14px;
    padding: 10px 16px;
    font-size: 11px;
    font-weight: 600;
    border: 1px solid #DCDCDC;
}



/* Title */
.card-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #121212;
    margin-top: 20px;
    font-family: lato;
}



/* Text below title */
.card-text {
    font-size: 0.92rem;
    color: rgba(18, 18, 18, 0.8);
    font-family: inter;
}

/* CTA button */
.ui-card-btn {
    background: #000;
    color: #fff;
    border-radius: 24px;
    padding: 12px 24px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* List styling */
.card-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.card-list li {
    font-size: 0.9rem;
    margin-bottom: 12px;
    display: flex;
    gap: 8px;
    color: #111;
}

.card-list img {
    width: 35px;
    height: 35px;
    object-fit: contain;
    opacity: 0.8;
    margin-top: 2px;
}
@media screen and (min-width: 1024px) {
    .dk {
        display: none !important;
    }
 
}

.problem-section {
    position: relative;
    padding: 120px 0;
    background: #0c1412;
}

/* Background circles */
.problem-circle {
    position: absolute;
    width: 650px;
    height: 650px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.06);
    top: 120px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.problem-circle2 {
    position: absolute;
    width: 820px;
    height: 820px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.05);
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
}

/* Main cards */
.ui-card {
    background: linear-gradient(0deg, #FAF9F6, #FAF9F6),
                linear-gradient(201deg, rgba(45,60,205,0) 28%, #2D3CCD 64%);
    width: 750px;
    max-width: 750px;
    padding: 24px;
    border-radius: 16px;
    z-index: 10;
    position: relative;
}

/* Rotate cards (desktop only) */
.card-left { transform: rotate(-2deg); margin-bottom: 90px; }
.card-right { transform: rotate(2deg); margin-top: 80px; }

.card-inner {
    display: flex;
    justify-content: space-between;
    gap: 24px;
}

.left-col {
    width: 45%;
}

.right-col {
    width: 50%;
}

.badge-label {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 999px;
    border: 1px solid #d1d5db;
    font-size: 13px;
    font-weight: 600;
    background: #fff;
}

.card-title {
    font-size: 26px;
    font-weight: 700;
    line-height: 1.25;
}

.card-text {
    font-size: 15px;
    line-height: 1.5;
    color: #333;
}

.ui-card-btn {
    background: #000;
    color: #fff;
    border-radius: 50px;
    padding: 12px 24px;
    margin-top: 20px;
    font-size: 15px;
    font-weight: 600;
}

/* List styling */
.card-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    margin-bottom: 14px;
    line-height: 1.4;
}

.card-list img {
    width: 32px;
    height: 32px;
    background: #f5f5f5;
    border-radius: 10px;
    padding: 6px;
}
/* ============ TABLET + MOBILE FIXES ============ */
@media (max-width: 1024px) {

    .ui-card {
        width: 100%;
        max-width: 100%;
        transform: rotate(0deg) !important;
        margin: 25px 0 !important;
        padding: 26px 22px;
        height: auto;
    }

    .card-inner {
        flex-direction: column;
    }

    .left-col, .right-col {
        width: 100%;
    }

    .card-title {
        font-size: 22px;
        margin-top: 10px;
        padding-top: 5px !important;
    }

    .card-text {
        font-size: 15px;
    }

    .ui-card-btn {
        width: 100%;
        font-size: 16px;
    }

    .badge-label {
        margin-bottom: 10px;
    }

    .card-list li {
        font-size: 15px;
    }

    /* Hide desktop circles for mobile */
    .problem-circle,
    .problem-circle2 { display: none; }
}
.workwithus-section {
    padding: 120px 0;
}

.work-title {
    font-size: 2.4rem;
    font-weight: 700;
}

.work-subtitle {
    font-size: 1.05rem;
    color: #666;
}

/* GRID LAYOUT (desktop default) */
.work-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
    margin-top: 40px;
}
.wide-container3 {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 25px;
}

/* Individual card */
.work-card {
    background: #ffffff;
    padding: 16px;
    border-radius: 16px;
    border: 1px solid #e8e8e8;
    text-align: left;
    transition: 0.2s ease;
    width: 240px;
    height: 128px;
}
.work-card:hover {
    background: #00a55a;
    padding: 16px;
    border-radius: 16px;
    border: 1px solid #e8e8e8;
    text-align: left;
    transition: 0.2s ease;
    width: 240px;
    height: 128px;
    color: #111;
}

/* Placeholder icon */
.work-icon {
    height: 40px;
    width: 40px;
    margin-bottom: 16px;
}

.work-text {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
}
@media (max-width: 1024px) {
    .work-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 22px;
    }
}
@media (max-width: 767px) {
    .work-title {
        font-size: 1.9rem;
    }

    .work-card {
    background: #ffffff;
    padding: 16px;
    border-radius: 16px;
    border: 1px solid #e8e8e8;
    text-align: left;
    transition: 0.2s ease;
    width: auto;
    height: auto;
}
 .work-card:hover {
    background: #0c1412;
    padding: 16px;
    border-radius: 16px;
    border: 1px solid #e8e8e8;
    text-align: left;
    transition: 0.2s ease;
    width: auto;
    height: auto;
    color: #fff;    
}

    .work-subtitle {
        font-size: 0.98rem;
        line-height: 1.45;
        padding: 0 10px;
    }

    .work-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .work-card {
        padding: 22px 16px;
    }

    .work-icon {
        height: 44px;
    }

    .work-text {
        font-size: 0.92rem;
        line-height: 1.35;
    }
}
/* Center last two cards with closer spacing */
@media (min-width: 1025px) {

    .work-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 26px; /* keep normal gap */
    }

    /* First 8 cards full width in their cells */
    .work-grid .work-card:nth-child(-n+8) {
        width: 100%;
        justify-self: stretch;
    }

    /* Last two cards: place them in center columns */
    .work-grid .work-card:nth-last-child(2) {
        grid-column: 2 / span 1; /* Start in column 2 */
    }

    .work-grid .work-card:last-child {
        grid-column: 3 / span 1; /* Start in column 3 */
    }

    /* Set consistent width so they match UI */
    .work-grid .work-card:nth-last-child(2),
    .work-grid .work-card:last-child {
        width: 100%;
        justify-self: center;
    }
}
.work-card:hover,
.ui-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
    transition: 0.25s ease;
}
.main-nav.sticky {
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to   { opacity: 1; transform: translateY(0); }
}
.card-left[data-aos="fade-right"] {
    transform-origin: left center;
}

.card-right[data-aos="fade-left"] {
    transform-origin: right center;
}
/* =========================
   MORE THAN OUTSOURCING
   ========================= */

.more-section {
    padding: 120px 0;
}

.more-title {
    font-size: 2.4rem;
    font-weight: 600;
    margin-bottom: 14px;
}

.more-title span {
    font-weight: 700;
}

.more-subtitle {
    font-size: 1.02rem;
    color: #666;
    margin-bottom: 50px;
}

/* GRID: desktop default (2 x 2) */
.more-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 36px 32px; /* row / column gap */
    margin-top: 24px;
}

/* Card base */
.more-card {
    background: #ffffff;
    border-radius: 24px;
    border: 1px solid #e7ebff;
    padding: 26px 26px 30px;
    text-align: left;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* Illustration container */
.more-image-wrap {
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 18px;
}

/* Illustration itself */
.more-image-wrap img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

/* Subtle hover interaction */
.more-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 60px rgba(15, 23, 42, 0.15);
}

.more-card:hover .more-image-wrap img {
    transform: scale(1.02);
}

/* Text */
.more-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.more-card-text {
    font-size: 0.96rem;
    color: #4b4b4b;
    line-height: 1.5;
}

/* =========== TABLET =========== */
@media (max-width: 1024px) {

    .more-section {
        padding: 90px 0;
    }

    .more-title {
        font-size: 2.1rem;
    }

    .more-subtitle {
        font-size: 0.98rem;
    }

    .more-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px;
    }

    .more-card {
        padding: 22px 20px 26px;
    }
}
.more-image-wrap img {
    max-width: 100%;
    height: auto;
    display: block;
}



@media (max-width: 1024px) {
    .more-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .more-card {
        text-align: left;
    }
}
.more-section {
    overflow-x: hidden;
}

/* =========== MOBILE =========== */
@media (max-width: 767px) {

    .more-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px;
    width: 100%;
}

    .more-section {
        padding: 70px 0;
    }

    .more-title {
        font-size: 1.9rem;
        line-height: 1.25;
    }

    .more-subtitle {
        font-size: 0.95rem;
        line-height: 1.45;
        margin-bottom: 32px;
    }

    .more-grid {
        grid-template-columns: 1fr; /* stack cards */
        gap: 20px;
    }

    .more-card {
        padding: 20px 18px 22px;
        text-align: left;  /* same as UI */
    }

    .more-card-title {
        font-size: 1.05rem;
    }

    .more-card-text {
        font-size: 0.92rem;
    }
}
/* Apply to the 24/7 Reliability image only */
.more-card:last-child .more-image-wrap img {
    animation: pulseClock 4s ease-in-out infinite;
}

@keyframes pulseClock {
    0%, 100% { transform: scale(1); }
    50%      { transform: scale(1.03); }
}
.wide-container4{
    max-width: 800px;
    margin: 0 auto;
    padding: 0 25px;
}
/* ======================================
   HOW IT WORKS SECTION
   ====================================== */
.how-section {
    padding: 120px 0;
}

.how-title {
    font-size: 2.6rem;
    font-weight: 700;
}

.how-subtitle {
    font-size: 1.05rem;
    color: #555;
}

/* GRID WRAPPER */
.how-grid-wrapper {
    position: relative;
    margin-top: 60px;
}

/* Desktop/tablet grid */
.how-grid {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-row-gap: 110px;
    grid-column-gap: 130px;
    position: relative;
    z-index: 2;
}

/* Step item */
.how-step {
    text-align: center;
}

.how-step-number {
    font-size: 3.3rem;
    font-weight: 700;
    margin-bottom: 14px;
}

.how-step-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.how-step-text {
    font-size: 1rem;
    color: #444;
    line-height: 1.55;
}

/* ===============================
   CONNECTOR IMAGE POSITIONING
   =============================== */
.connector {
    position: absolute;
    z-index: 1;
    pointer-events: none;
}

/* 01 → 02 curve */
.connector-1 {
    width: 80px;
    top: 100px;
    left: 280px;
}

/* 02 → 03 horizontal dashed line */
.connector-2 {
    width: 400px;
    top: 240px;
    left: 120px;
}

/* 03 → 04 curve */
.connector-3 {
    top: 415px;
    left: 270px;
    height: 80px;
}

.wide-container5{
    max-width: 700px;
    margin: 0 auto;
    padding: 0 25px;

}

/* Animate connectors (fade-in on scroll) */
.connector {
    opacity: ;
    transform: translateY(8px);
    transition: all 0.7s ease;
}

.aos-animate.connector {
    opacity: 1;
    transform: translateY(0);
}

/* ======================================
   TABLET VIEW (same layout, adjusted)
   ====================================== */
@media (max-width: 1024px) {
    .how-section {
        padding: 90px 0;
    }

    .how-grid {
        grid-row-gap: 90px;
        grid-column-gap: 80px;
        max-width: 700px;
    }

    /* Shift connectors slightly */
    .connector-1 {
        left: 180px;
        width: 230px;
    }
    .connector-2 {
        width: 600px;
        left: 60px;
    }
    .connector-3 {
        width: 230px;
        left: 260px;
    }
}

/* ======================================
   MOBILE VIEW
   ====================================== */
@media (max-width: 767px) {

    .how-section {
        padding: 70px 0;
    }

    .how-title {
        font-size: 2.2rem;
    }

    .how-grid-wrapper {
        margin-top: 10px;
    }

    /* Stack vertically */
    .how-grid {
        display: flex;
        flex-direction: column;
        gap: 70px;
        max-width: 450px;
    }

    /* Hide connector images */
    .connector {
        display: none;
    }

    .how-step {
        position: relative;
        padding-bottom: 40px;
    }

    /* Vertical dashed line between steps */
    .how-step:not(:last-child)::after {
        content: "";
        position: absolute;
        left: 50%;
        bottom: 0;
        width: 1px;
        height: 40px;
        transform: translateX(-50%);
        border-left: 2px dashed #c0c0c0;
    }

    .how-step-number {
        font-size: 2.7rem;
        margin-bottom: 12px;
    }
}
/* Smooth step hover effect */
.how-step {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.how-step:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.08);
}
/* Moving dash animation */
@keyframes dashFlow {
    to {
        stroke-dashoffset: -20;
    }
}
.connector {
    animation: connectorFade 0.8s ease forwards,
               dashFlow 1.4s linear infinite;
}

/* Fade in connectors */
@keyframes connectorFade {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}
/* Gentle directional motion for curves */
.connector-1 {
    animation-delay: 0.2s;
    animation-duration: 3s;
}

.connector-2 {
    animation-delay: 0.4s;
    animation-duration: 3s;
}

.connector-3 {
    animation-delay: 0.6s;
    animation-duration: 3s;
}

@keyframes connectorPulse {
    0%   { transform: translateY(0) scale(1); opacity: .8; }
    50%  { transform: translateY(-3px) scale(1.02); opacity: 1; }
    100% { transform: translateY(0) scale(1); opacity: .8; }
}
.connector {
    animation-name: connectorFade, connectorPulse, dashFlow;
}
/* Initial state */
.how-step-number {
    transform: scale(0.8);
    opacity: 0.6;
    transition: transform 0.5s ease, opacity 0.5s ease;
}

/* When AOS triggers */
.aos-animate .how-step-number {
    transform: scale(1.05);
    opacity: 1;
}
<div class="how-step"
     data-aos="fade-up"
     data-aos-duration="800"
     data-aos-easing="ease-out-cubic">
/* -------------------------
   MAIN CONTAINER
--------------------------*/
.pricing-section {
    padding: 60px 0;
}

.pricing-container {
    width: 92%;
    max-width: 1150px;
    margin: auto;
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    border: 1px solid #e3e3e3;
}

/* -------------------------
   HEADER
--------------------------*/
.pricing-header {
    background: #00C475;    /* exact green */
    padding: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pricing-header-left h2 {
    color: #000;
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 32px;
}

.pricing-header-left p {
    color: #000;
    font-size: 16px;
    max-width: 580px;
}

/* CTA Button */
.pricing-cta {
    background: #121212;
    color: #fff;
    padding: 16px 32px;
    border-radius: 40px;
    border: none;
    display: flex;
    align-items: center;
    font-weight: 600;
    gap: 10px;
    cursor: pointer;
    transition: 0.2s ease;
}

.pricing-cta img {
    height: 20px;
}

.pricing-cta:hover {
    opacity: 0.8;
}

/* Hide desktop CTA on mobile */
.desktop-only { display: block; }
.mobile-only { display: none; }

/* -------------------------
   FEATURES GRID
--------------------------*/
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    padding: 40px;
}

.pricing-col {
    display: flex;
    flex-direction: column;
    gap: 22px;
    border-right: 1px solid #e6e6e6;
    padding-right: 30px;
    padding-left: 16px;
}

.pricing-col:last-child {
    border-right: none;
}

.pricing-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 16px;
    color: #333;
    line-height: 1.4;
    letter-spacing: -0.5px;
}

.p-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: #f3f3f3;
    object-fit: contain;
    padding: 6px;
}

/* -------------------------
   TABLET VIEW
--------------------------*/
@media (max-width: 992px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 30px;
    }

    .pricing-col {
        border-right: none;
        padding-right: 0;
    }

    .desktop-only {
        display: none;
    }

    .mobile-only {
        display: none;
    }
}

/* -------------------------
   MOBILE VIEW
--------------------------*/
@media (max-width: 600px) {

    .pricing-header {
        flex-direction: column;
        text-align: center;
    }

    .pricing-header-left h2 {
        font-size: 28px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        padding: 25px;
        gap: 30px;
    }

    .desktop-only { display: none; }
    .mobile-only {
        display: flex;
        margin: 20px auto 30px;
        width: 90%;
        justify-content: center;
    }
}
/* Fade-in on scroll */
.pricing-section {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.pricing-section.visible {
    opacity: 1;
    transform: translateY(0);
    margin-bottom: 40px;
}
.pricing-item {
    position: relative;
    background: transparent;
    padding: 10px 5px;
    border-radius: 12px;
    transition: .25s ease;
}

.pricing-item:hover {
    background: #f9f9f9;
    transform: translateY(-4px);
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}
.p-icon {
    opacity: 0;
    transform: translateY(10px);
    animation: iconFadeUp .8s ease forwards;
}

@keyframes iconFadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.pricing-cta {
    transition: 0.2s ease, box-shadow 0.3s ease;
}

.pricing-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 18px rgba(0,0,0,0.25);
}
.pricing-header {
    position: relative;
    overflow: hidden;
}

.pricing-header::after {
    content: "";
    position: absolute;
    top: 0;
    left: -150%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.4), transparent);
    transform: skewX(-20deg);
    animation: shine 4s infinite;
}

@keyframes shine {
    0% { left: -150%; }
    60% { left: 150%; }
    100% { left: 150%; }
}
.pricing-section {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 1s ease, transform 1s ease;
}

.pricing-section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered children animation */
.pricing-section.visible .pricing-item {
    animation: staggerFade 0.7s ease forwards;
}

@keyframes staggerFade {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.pricing-item {
    background: rgba(255,255,255,0.6);
    backdrop-filter: blur(6px);
    border-radius: 14px;
    padding: 8px 6px;
    transition: 0.25s ease;
}

.pricing-item:hover {
    transform: translateY(-4px);
    background: rgba(255,255,255,0.85);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}
.p-icon {
    opacity: 0;
    transform: translateY(12px);
    animation: iconPop 0.8s ease forwards;
}

@keyframes iconPop {
    0% { opacity: 0; transform: translateY(12px) scale(.9); }
    70% { opacity: 1; transform: translateY(-2px) scale(1.05); }
    100% { transform: translateY(0) scale(1); }
}
.float-soft {
    animation: floatSoft 4.5s ease-in-out infinite;
}

@keyframes floatSoft {
    0% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
    100% { transform: translateY(0); }
}
.pricing-header {
    position: relative;
    overflow: hidden;
}

.pricing-header::after {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 60%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,.5), transparent);
    transform: skewX(-20deg);
    animation: shineAnim 6s infinite ease-in-out;
}

@keyframes shineAnim {
    0% { left: -120%; }
    30% { left: 140%; }
    100% { left: 140%; }
}
.pricing-cta {
    transition: transform .25s ease, box-shadow .25s ease;
}

.pricing-cta:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}
@keyframes checkFlash {
    0% { transform: scale(0.8) rotate(-10deg); opacity: 0.2; }
    50% { transform: scale(1.2) rotate(8deg); opacity: 1; }
    100% { transform: scale(1) rotate(0deg); opacity: 1; }
}

.p-icon.flash {
    animation: checkFlash 0.6s ease forwards;
}
.site-footer {
    background: #060606;
    padding: 60px 0 120px;
    color: #fff;
    padding: 100px 20px 40px 20px;
    overflow: hidden;
}

/* WRAPPER GRID */
.footer-wrapper {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: start;
}

/* CTA BOX */
.footer-cta {
    background: linear-gradient(180deg, #ffffff 0%, #D9DDFC 100%);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
}

.footer-cta h2 {
    font-size: 32px;
    font-weight: 700;
    color: #007afc;
    margin-bottom: 10px;
    line-height: 40px;
    letter-spacing: -1px;
}

.footer-cta p {
    font-size: 16px;
    color: #111;
    margin-bottom: 20px;
}

.footer-btn {
    background: #000;
    color: #fff;
    border: none;
    padding: 18px 36px;
    border-radius: 50px;
    font-size: 18px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* RIGHT SECTION */
.footer-right {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

/* BRAND AREA */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-social a {
    color: white;
    background: #141414;
    padding: 10px 12px;
    border-radius: 8px;
    margin-right: 10px;
    font-size: 16px;
}

/* COLUMNS */
.footer-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.footer-col h4 {
    font-size: 20px;
    margin-bottom: 20px;
}

.footer-col a, 
.footer-col p {
    font-size: 16px;
    color: #ccc;
    display: block;
    margin-bottom: 10px;
}


/* MOBILE */
@media (max-width: 991px) {
    .footer-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .footer-columns {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-cta {
        padding: 40px 25px;
        text-align: left;
    }

    .footer-cta h2 {
        font-size: 32px;
    }
}
/* ========== ANIMATIONS ========== */

/* smooth fade-up */
@keyframes fadeUp {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* soft floating effect for CTA */
@keyframes floatUpDown {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

/* button hover glow */
@keyframes glow {
    0% { box-shadow: 0 0 0px rgba(0, 0, 0, 0.2); }
    100% { box-shadow: 0 0 20px rgba(0, 0, 0, 0.4); }
}

/* gradient shimmer */
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}

/* social hover lift */
@keyframes lift {
    0% { transform: translateY(0); }
    100% { transform: translateY(-4px); }
}


/* ========== APPLYING ANIMATIONS ========== */

/* CTA box gently floats */
.footer-cta {
    animation: floatUpDown 3s ease-in-out infinite;
    animation-delay: 1s;
}

/* CTA button glow on hover */
.footer-btn:hover {
    animation: glow 0.4s forwards;
    transform: translateY(-2px);
}

/* CTA title animated gradient */
.footer-cta h2 {
    background: linear-gradient(90deg, #007bff, #00e28a, #007bff);
    background-size: 200%;
    -webkit-background-clip: text;
    color: transparent;
    animation: gradientShift 3s linear infinite alternate;
}

/* Fade-in stagger effect */
.footer-brand,
.footer-columns .footer-col:nth-child(1),
.footer-columns .footer-col:nth-child(2) {
    opacity: 0;
    animation: fadeUp 0.9s ease forwards;
}

/* delays */
.footer-brand { animation-delay: 0.2s; }
.footer-columns .footer-col:nth-child(1) { animation-delay: 0.4s; }
.footer-columns .footer-col:nth-child(2) { animation-delay: 0.6s; }

/* social icons lift on hover */
.footer-social a:hover {
    animation: lift 0.2s forwards;
}

/* footer links hover */
.footer-col a:hover {
    color: white;
    transform: translateX(3px);
    transition: 0.2s;
}
.about-hero {
    background-color: #2D3CCD14;
    background-size: cover;
    padding: 70px 20px;
    border-radius: 20px;
    margin: 70px auto 0px auto;
    background-image: radial-gradient(circle, rgba(18, 18, 20, 0.08) 3px, transparent 3px);
    background-size: 55px 55px;
    max-width: 1310px;
    margin: 0 auto;
    border-radius: 10px;
    margin-top: 80px;
}

.about-hero-inner {
    text-align: center;
}

.about-title {
    font-size: 42px;
    font-weight: 700;
    color: #121212;
}

.about-subtitle {
    font-size: 14px;
    margin-top: 6px;
    color: #555;
    letter-spacing: 0.3px;
}

.about-content {
    padding: 40px 20px;
    text-align: center;
}

.about-text {
    max-width: 600px;
    margin: 0 auto 20px auto;
    font-size: 16px;
    color: rgba(18, 18, 18, 0.8);
    line-height: 1.6;
    line-height: 22px;
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 400;
    letter-spacing: -0.5px;
}

.about-heading {
    font-size: 32px;
    font-weight: 700;
    margin-top: 25px;
    margin-bottom: 10px;
    line-height: 40px;
    letter-spacing: -1px;
    color: #121212;
}

.about-btn {
    display: inline-block;
    background: #000;
    color: #fff;
    padding: 14px 26px;
    border-radius: 40px;
    text-decoration: none;
    font-size: 15px;
    margin-top: 15px;
    transition: 0.3s ease;
}

.about-btn:hover {
    background: #222;
    transform: translateY(-3px);
}

/* MOBILE */
@media (max-width: 768px) {
    .about-title { font-size: 35px; }
    .about-heading { font-size: 20px; }
}
/* WRAPPER */
.careers-section {
    padding: 80px 0;
}

.careers-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: start;
}

/* LEFT COLUMN */
.careers-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.careers-text {
    font-size: 15px;
    color: #444;
    margin-bottom: 16px;
    line-height: 1.6;
}

.careers-list {
    padding-left: 18px;
    margin-bottom: 16px;
}

.careers-list li {
    margin-bottom: 8px;
    font-size: 15px;
    color: #444;
}

/* RIGHT FORM */
.careers-form-card {
    background: #fff;
    padding: 28px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.form-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
}

.form-sub {
    font-size: 13px;
    color: #555;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 16px;
}

label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 6px;
}

.country-select-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  width: 100%;
}

.country-select {
    width: 80px;
  flex-shrink: 0;
  padding: 12px 40px 12px 14px; /* space for arrow */
  border-radius: 10px;
  border: none;
  
  font-size: 14px;

  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  cursor: pointer;
}

.select-arrow {
  position: absolute;
  left: 52px; /* aligns inside select */
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: #6b7280;
}

.phone-input {
  width: 100%;
  padding: 12px 14px 12px 52px; /* space for flag */
  border-radius: 10px;
  border: none;
  background: #f6f6f6;
  font-size: 14px;
}

.iti {
  width: 100%;
}

.iti__flag-container {
  left: 10px;
}

.iti__selected-flag {
  padding: 0 8px;
}

.phone-input:focus {
  outline: none;
  background: #ffffff;
}




/* Optional focus polish */
.country-select:focus {
  outline: none;
  background: #fff;
}

.country-select-wrapper input[type="text"] {
  flex: 1;
  padding: 12px 14px;
  border-radius: 10px;
  border: none;
  
  font-size: 14px;
}




input, textarea, select {
    width: 100%;
    padding: 12px;
    border-radius: 6px;
    border: 1px solid #ddd;
    font-size: 14px;
    outline: none;
    transition: 0.2s;
}

input:focus, textarea:focus, select:focus {
    border-color: #1b6bff;
    box-shadow: 0 0 0 3px rgba(27,107,255,0.15);
}

textarea {
    height: 90px;
    resize: none;
}

.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

/* SUBMIT BUTTON */
.careers-submit {
    width: 100%;
    background: #1b1b1b;
    color: #fff;
    padding: 14px;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.careers-submit:hover {
    background: #000;
    transform: translateY(-2px);
}

/* RESPONSIVE */

/* Tablet */
@media (max-width: 992px) {
    .careers-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .form-row-2 {
        grid-template-columns: 1fr;
    }

    .careers-section {
        padding: 50px 0;
    }
}
/* Full card container */
.careers-form-container {
    background: #fff;
    border-radius: 20px;
    border: 1px solid #E5E7EB;
    overflow: hidden;
    width: 100%;
    max-width: 900px;
    margin: auto;
}

/* Header area */
.careers-form-header {
    background: linear-gradient(180deg, #F5F6FF 0%, #ECEFFE 100%);
    padding: 30px 30px 25px;
    border-bottom: 1px solid #E5E7EB;
    border-radius: 10px;
}

.careers-form-header h2 {
    font-size: 24px;
    font-weight: 700;
    color: #111;
    margin-bottom: 5px;
}

.careers-form-header p {
    color: #555;
    font-size: 15px;
    margin: 0;
}

/* Form body */
.careers-form-body {
    padding-top: 30px;
}

.input-field {
    background: #F7F7F7;
    border: 1px solid #E5E7EB;
    border-radius: 10px;
    padding: 12px 15px;
}

.error-text {
    color: red;
    font-size: 13px;
}
/* PHONE AREA */
.phone-wrapper {
    display: flex;
    gap: 10px;
}

.phone-code {
    width: 110px;
    border-radius: 10px;
    border: 1px solid #DDD;
    padding: 10px 12px;
    background: #F7F7F7;
}

.phone-input {
    flex: 1;
    border: 1px solid #DDD;
    border-radius: 10px;
    padding: 12px 15px;
    background: #F7F7F7;
}
.input-error,
.phone-input.input-error,
.country-select.input-error {
    border-color: #ff4b4b !important;
    animation: shake 0.25s linear 0s 2;
    background-color: #ffecec;
}

.error-text {
    color: #ff4b4b;
    font-size: 12px;
    margin-top: 3px;
}

/* little wobble */
@keyframes shake {
    0%   { transform: translateX(0); }
    25%  { transform: translateX(-3px); }
    50%  { transform: translateX(3px); }
    75%  { transform: translateX(-2px); }
    100% { transform: translateX(0); }
}
.submit-btn {
    position: relative;
    overflow: hidden;
}

.submit-btn.btn-loading {
    opacity: 0.85;
    cursor: wait;
}

.btn-spinner {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.4);
    border-top-color: #fff;
    animation: spin 0.7s linear infinite;
    display: inline-block;
    vertical-align: middle;
    margin-right: 8px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}
.success-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.success-modal.show {
    display: flex;
}

.success-modal-content {
    background: #ffffff;
    padding: 25px 30px;
    border-radius: 16px;
    max-width: 380px;
    text-align: center;
    box-shadow: 0 12px 30px rgba(0,0,0,0.25);
    animation: popupIn 0.3s ease-out;
}

.success-close-btn {
    margin-top: 18px;
    padding: 10px 20px;
    border-radius: 999px;
    border: none;
    background: #111;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
}

@keyframes popupIn {
    from { opacity: 0; transform: translateY(15px) scale(0.95); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}
.contact-page {
    padding: 80px 20px;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
    max-width: 1200px;
    margin: auto;
}

/* LEFT PANEL */
.contact-form-panel {
    background: #f7f7fb;
    border-radius: 14px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
   
}

.contact-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 5px;
}

.contact-subtitle {
    color: #777;
    margin-bottom: 30px;
}

/* INPUTS */
.form-group {
    margin-bottom: 22px;
}

label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
    display: block;
}

input, textarea, select {
    width: 100%;
    padding: 15px;
    border: 1.5px solid #eee;
    border-radius: 10px;
    background: #fafafa;
    font-size: 15px;
   
}

input:focus, textarea:focus, select:focus {
    border-color: #4f7df0;
    box-shadow: 0 0 0 3px rgba(79,125,240,0.15);
    background: #fff;
}

.two-input-row {
    display: flex;
    gap: 20px;
}

textarea {
    height: 120px;
    resize: none;
}

/* PHONE WITH COUNTRY CODE */
.phone-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.country-code {
    width: 90px;
    background: #fff;
    
  
}

/* RADIO OPTIONS */
.radio-item {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 5px;
}

/* BUTTON */
#contactSubmitBtn {
    width: 100%;
    padding: 16px;
    background: #2e47ff;
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 17px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    gap: 10px;
    align-items: center;
    transition: 0.3s;
}

#contactSubmitBtn:hover {
    background: #162fdb;
    transform: translateY(-2px);
}

/* RIGHT PANEL */
.contact-info-panel {
    padding-top: 20px;
}

.info-section {
    margin-bottom: 40px;
}

.info-section h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.info-section p {
    margin: 5px 0;
    display: flex;
    gap: 8px;
    align-items: center;
}

.info-section i {
    font-size: 18px;
}

/* MOBILE */
@media (max-width: 900px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}
.contact-form-panel {
    position: relative;
    overflow: hidden;
}

/* Animated gradient ring */
.contact-form-panel::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 16px;
    padding: 2px;
    background: linear-gradient(120deg,
        #5ea0ff,
        #6a5fff,
        #00e1ff,
        #5ea0ff);
    background-size: 300% 300%;
    animation: borderMove 6s ease infinite;
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

@keyframes borderMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
#particles-header {
    width: 100%;
    height: 90px;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 14px 14px 0 0;
    background: transparent;
    pointer-events: none;
}
.contact-form-panel {
    position: relative;
    z-index: 1;
}

.contact-form-panel::before {
    pointer-events: none;   /* <-- IMPORTANT */
    z-index: -1;            /* Push behind the form */
}
.radio input[type="radio"] {
    width: 20px;
}
.roi-hero {
    padding: 60px 0;
    background: #f5f6ff;
    border-bottom: 1px solid #e6e6e6;
}

.roi-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}

.roi-subtitle {
    opacity: 0.7;
    font-size: 16px;
    line-height: 24px;
}

.roi-main {
    padding: 60px 0;
}

.roi-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.roi-card {
    background: #fff;
    padding: 30px;
    border-radius: 14px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.roi-card-title {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 8px;
}

.roi-card-subtext {
    font-size: 14px;
    opacity: 0.7;
    margin-bottom: 20px;
}

.roi-label {
    font-weight: 600;
    margin-top: 20px;
    display: block;
}

.roi-input,
.roi-select {
    width: 100%;
    padding: 12px;
    background: #f5f5f5;
    border-radius: 8px;
    border: none;
    margin-top: 6px;
}

.roi-input-icon {
    position: relative;
}

.roi-input-icon span {
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    opacity: 0.6;
}

.roi-input-icon input {
    padding-left: 30px !important;
}

.roi-two-inputs {
    display: flex;
    gap: 10px;
}

/* Result boxes */
.result-box {
    padding: 20px;
    border: 1px solid #e9e9e9;
    border-radius: 10px;
    margin-bottom: 20px;
}

.result-title {
    font-size: 14px;
    font-weight: 600;
}

.result-value {
    font-size: 28px;
    font-weight: 700;
    margin: 5px 0;
}

.result-text {
    opacity: 0.7;
    font-size: 13px;
}

/* MOBILE */
@media (max-width: 768px) {
    .roi-grid {
        grid-template-columns: 1fr;
    }
}
/* ----------------------------------
   DESKTOP NAV — UNDERLINE ANIMATION
------------------------------------ */
.nav-menu .nav-link {
    position: relative;
    padding-bottom: 4px;
    transition: color 0.3s ease;
}

/* line under nav */
.nav-menu .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0%;
    height: 2px;
    background: #2D3CCD;
    transition: width 0.35s ease;
    border-radius: 2px;
}

/* Hover animation */
.nav-menu .nav-link:hover::after {
    width: 100%;
}

.nav-menu .nav-link:hover {
    color: #2D3CCD;
}

/* Active nav item */
.nav-menu .nav-link.active,
.nav-menu .nav-link.active:hover {
    color: #2D3CCD !important;
    font-weight: 600;
}

.nav-menu .nav-link.active::after {
    width: 100%;
}



/* ----------------------------------
   NAV SCROLL EFFECT
------------------------------------ */
.main-nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 50;
    transition: all 0.35s ease;
}

.main-nav.scrolled {
    backdrop-filter: blur(14px);
    background: rgba(255,255,255,0.72);
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    padding-block: 8px;
}






.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.4);
  opacity: 0;
  visibility: hidden;
  z-index: 1500;
  transition: .3s;
}

.mobile-overlay.show {
  opacity: 1;
  visibility: visible;
}
.mobile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px 24px;
  border-bottom: 1px solid #f0f0f0;
}

.nav-toggle-close {
  font-size: 28px;
  line-height: 1;
  background: none;
  border: none;
  cursor: pointer;
  color: #0b5cff;
}





/* MOBILE NAV LINKS - STAGGER ANIMATION */
.mobile-nav-links a {
    opacity: 0;
    transform: translateX(20px);
    display: block;
    margin-bottom: 22px;
    font-size: 17px;
    font-weight: 500;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.mobile-menu.open .mobile-nav-links a {
    opacity: 1;
    transform: translateX(0);
}

/* Stagger each item */
.mobile-menu.open .mobile-nav-links a:nth-child(1) { transition-delay: 0.05s; }
.mobile-menu.open .mobile-nav-links a:nth-child(2) { transition-delay: 0.1s; }
.mobile-menu.open .mobile-nav-links a:nth-child(3) { transition-delay: 0.15s; }
.mobile-menu.open .mobile-nav-links a:nth-child(4) { transition-delay: 0.2s; }
.mobile-menu.open .mobile-nav-links a:nth-child(5) { transition-delay: 0.25s; }


/* MOBILE ACTIVE LINK */
.mobile-nav-links .mobile-link-active {
    color: #2D3CCD;
    font-weight: 600;
}


/* ----------------------------------
   MOBILE TOGGLE BUTTON ANIMATION
------------------------------------ */
.nav-toggle .icon-close {
    display: none;
}

.nav-toggle.active .icon-menu {
    display: none;
}

.nav-toggle.active .icon-close {
    display: inline-block;
    font-size: 28px;
}



/* ----------------------------------
   HOVER FOR CTA BUTTON (Desktop)
------------------------------------ */
.btn-talk {
    transition: transform 0.3s ease, background 0.3s ease;
}

.btn-talk:hover {
    background: #2035c2;
    transform: translateY(-2px);
}


.popup {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.popup-content {
    background: #ffffff;
    padding: 25px;
    width: 90%;
    max-width: 400px;
    border-radius: 8px;
    text-align: center;
}

.popup-content h3 {
    margin-bottom: 10px;
}

.popup-content button {
    margin-top: 15px;
    padding: 10px 20px;
    cursor: pointer;
}


