/********** Template CSS **********/
:root {
    --primary: #09102e;
    --secondary: #161f38;
    --light: #F7FAFF;
    --dark: #1D1D27;
    --yellow:#dbbe1b;
}

.btn-yellow {
    background-color: var(--yellow) !important;
    color: var(--dark) !important
}
/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Heading ***/
h1,
h2,
h3,
.fw-bold {
    font-weight: 700 !important;
}

h4,
h5,
h6,
.fw-medium {
    font-weight: 500 !important;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50px;
}


/*** Navbar ***/
.navbar-light .navbar-nav .nav-link {
    position: relative;
    margin-left: 25px;
    padding: 35px 0;
    color: var(--light) !important;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--dark) !important;
}

/* .navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--secondary) !important;
} */

.navbar-light .navbar-brand h1 {
    color: #FFFFFF;
}

.navbar-light .navbar-brand img {
    max-height: 100px;
    transition: .5s;
}



.sticky-top.navbar-light .navbar-brand img {
    max-height: 85px;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-light {
        position: relative;
        background: #FFFFFF;
    }

    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid #DDDDDD;
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
        color: var(--dark) !important;
    }

    .navbar-light .navbar-brand h1 {
        color: var(--primary);
    }

    .navbar-light .navbar-brand img {
        max-height: 45px;
    }
}

@media (min-width: 992px) {
    .navbar-light {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(256, 256, 256, .1);
        z-index: 999;
    }
    
    .sticky-top.navbar-light {
        position: fixed;
        background: #FFFFFF;
    }

    .navbar-light .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 2px;
        bottom: -1px;
        left: 50%;
        background: var(--secondary);
        transition: .5s;
    }

    .navbar-light .navbar-nav .nav-link:hover::before,
    .navbar-light .navbar-nav .nav-link.active::before {
        width: 100%;
        left: 0;
    }

    .navbar-light .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }

    .sticky-top.navbar-light .navbar-brand h1 {
        color: var(--primary);
    }
}


/*** Hero Header ***/
.hero-header {
    background:
        url(../img/bg-dot.png),
        url(../img/bg-dot.png),
        url(../img/bg-round.png),
        url(../img/bg-tree.png),
        url(../img/bg-bottom-hero.png);
    background-position:
        10px 10px,
        bottom 190px right 10px,
        left 55% top -1px,
        left 45% bottom -1px,
        center bottom -1px;
    background-repeat: no-repeat;
    background-size:
        auto,
        auto,
        auto,
        auto,
        100% auto;
}


/*** Section Title ***/


/* .section-title::after {
    position: absolute;
    content: "";
    width: 4px;
    height: 4px;
    bottom: 0;
    left: 50px;
    background: var(--dark);
} */



/* .section-title.text-center::after {
    left: 50%;
    margin-left: -25px;
} */

.section-title h6 {
  font-size: 40px;
  font-weight: 700;
  position: relative;
  display: inline-block;
  color: var(--primary);
  padding-left: 55px; /* increase this to add more gap */
  letter-spacing: 1.5px;
}






/*** Service ***/
#services.bg-light {
    background: #F0F4FF !important;
}

.service-item {
    position: relative;
    height: auto;
    min-height: 310px;
    padding: 36px 26px 30px;
    background: #FFFFFF;
    border-radius: 16px;
    border: 1.5px solid #e2e8f6;
    box-shadow: 0 2px 10px rgba(13, 84, 199, 0.05);
    overflow: hidden;
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.25s ease;
}

/* Bottom blue line slides in on hover */
.service-item::before {
    content: '';
    position: absolute;
    bottom: 0; left: 40%; right: 40%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 3px 3px 0 0;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.32s ease;
}

.service-item:hover {
    /* transform: translateY(-9px); */
    box-shadow: 0 18px 48px rgba(13, 84, 199, 0.12);
    border-color: rgba(13, 84, 199, 0.25);
}

.service-item:hover::before {
    transform: scaleX(1);
}

/* Icon — blue stays blue, no white, just glow ring */
.service-item .service-icon {
    margin: 0 auto 22px auto;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #EEF3FF;
    border: 2px solid #d0dcf8;
    color: var(--primary);
    font-size: 1.95rem;
    box-shadow: none;
    transition: background 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.service-item:hover .service-icon {
    background: #E3ECFF;
    border-color: var(--primary);
    box-shadow: 0 0 0 5px rgba(13, 84, 199, 0.10);
    color: var(--primary);
}

.service-item .service-icon i {
    transition: transform 0.28s ease;
}

.service-item:hover .service-icon i {
    transform: scale(1.14);
    color: var(--primary);
}

/* Heading — bigger, turns blue on hover */
.service-item h5 {
    font-size: 1.14rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
    line-height: 1.35;
    transition: color 0.25s;
}

.service-item:hover h5 {
    color: var(--primary);
}

.service-item p {
    font-size: 0.90rem;
    color: #64748b;
    line-height: 1.72;
    margin: 0;
}

/* Learn more link fades up on hover */
.service-item .srv-link {
    display: inline-flex;
    align-items: center;
    justify-content: center; 
    gap: 5px;
    margin-top: 16px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    /* opacity: 0; */
    transform: translateY(5px);
    transition: opacity 0.25s ease, transform 0.25s ease;
    width: 100%;
}

.service-item .srv-link i {
    font-size: 0.72rem;
    transition: transform 0.22s ease;
}

/* .service-item:hover .srv-link {
    opacity: 1;
    transform: translateY(0);
} */

.service-item:hover .srv-link i {
    transform: translateX(3px);
}

.service-item {
    position: relative; /* Ye already hoga, confirm karo */
    overflow: hidden;   /* Badge bahar na jaye */
}

/* Price Badge */
.service-price-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: #f5c518; /* Yellow badge — apni theme ke hisaab se badlo */
    color: #1a1a2e;
    font-size: 13px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    letter-spacing: 0.3px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    z-index: 2;
}

/* Get Started Button */
.service-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 8px 22px;
    background: var(--primary);
    color: #ffffff;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-btn:hover {
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
    transform: translateY(-2px);
    color: #ece4e4;
}


/*** Project Portfolio ***/
.portfolio-overlay {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 30px;
    top: 0;
    left: 0;
    background: var(--primary);
    transition: .5s;
    z-index: 1;
    opacity: 0;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-item .btn {
    position: absolute;
    width: 90px;
    height: 90px;
    top: 0px;
    right: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url(../img/icon-shape-white.png) center center no-repeat;
    border: none;
    transition: .5s;
    opacity: 0;
    z-index: 2;
}

.portfolio-item:hover .btn {
    opacity: 1;
    transition-delay: .15s;
}


/*** Footer ***/
.footer {
    background: url(../img/footer.png) center center no-repeat;
    background-size: contain;
}

.footer .btn.btn-social {
    margin-right: 5px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid rgba(256, 256, 256, .1);
    border-radius: 40px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 10px;
    padding: 0;
    text-align: left;
    color: var(--light);
    font-weight: normal;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    /* content: "\f105"; */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}


.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 14px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

html {
    scroll-behavior: smooth;
}

.hero-badges span {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 50rem;
    border: 1px solid rgba(255,255,255,.45);
    color: #fff;
    font-size: 14px;
    margin: 0 8px 8px 0;
    background: rgba(255,255,255,.08);
}


/* Our Process start*/

/*** Process Section ***/
.process-flow-grid {
    display: grid;
    grid-template-columns: 1fr 28px 1fr 28px 1fr 28px 1fr;
    gap: 0;
    max-width: 1080px;
    margin: 0 auto;
    align-items: stretch;
}

/* Arrow between cards */
.pf-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 36px;
}

.pf-arrow i {
    font-size: 1.2rem;
    color: #c7d7f5;
}

/* Card */
.pf-card {
    background: #ffffff;
    border-radius: 16px;
    border: 1.5px solid #e2e8f6;
    padding: 30px 22px 26px;
    box-shadow: 0 2px 10px rgba(13, 84, 199, 0.05);
    position: relative;
    overflow: hidden;
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.25s ease;
    text-align: center;
}

/* Top accent bar */
.pf-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.32s ease;
    border-radius: 16px 16px 0 0;
}

.pf-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 44px rgba(13, 84, 199, 0.12);
    border-color: rgba(13, 84, 199, 0.28);
}

.pf-card:hover::before {
    transform: scaleX(1);
}

/* Step number circle */
.pf-num {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #EEF3FF;
    border: 2px solid #d0dcf8;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    transition: background 0.28s ease, border-color 0.28s ease,
                color 0.28s ease, box-shadow 0.28s ease;
}

.pf-card:hover .pf-num {
    background: var(--primary);
    border-color: var(--primary);
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(13, 84, 199, 0.28);
}

.pf-card h5 {
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
    line-height: 1.35;
    transition: color 0.25s;
}

.pf-card:hover h5 {
    color: var(--primary);
}

.pf-card p {
    font-size: 0.86rem;
    color: #64748b;
    line-height: 1.68;
    margin-bottom: 16px;
}

/* Tick list — properly aligned */
.pf-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: left;
}

.pf-list li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
}

.pf-tick {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #EEF3FF;
    border: 1.5px solid #d0dcf8;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
    transition: background 0.25s ease, border-color 0.25s ease;
}

.pf-tick i {
    font-size: 0.5rem;
    color: var(--primary);
    transition: color 0.25s ease;
}

.pf-list li span:last-child {
    font-size: 0.84rem;
    font-weight: 500;
    color: #475569;
    line-height: 1.5;
    transition: color 0.25s ease;
}

/* Tick highlight on card hover */
.pf-card:hover .pf-tick {
    background: var(--primary);
    border-color: var(--primary);
}

.pf-card:hover .pf-tick i {
    color: #ffffff;
}

.pf-card:hover .pf-list li span:last-child {
    color: #1e3a6e;
}

/* Responsive */
@media (max-width: 860px) {
    .process-flow-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    .pf-arrow { display: none; }
}

@media (max-width: 500px) {
    .process-flow-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}




/*Our Process End */

/* .process-card {
    background: #fff;
    box-shadow: 0 0 45px rgba(0, 0, 0, .06);
}

.process-number {
    width: 64px;
    height: 64px;
    line-height: 64px;
    border-radius: 50%;
    margin: 0 auto 20px;
    color: #FFFFFF;
    background: var(--primary);
    font-weight: 700;
    font-size: 20px;
} */

.footer .btn-link {
    text-align: left;
}
/* .process-card {
    transition: all 0.3s ease;
}

.process-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 1rem 2rem rgba(0,0,0,0.08);
}

.process-number {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 10px;
} */
.tech-card-modern {
    background: white;
    border-radius: 1.5rem;
    padding: 1.8rem 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.02);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.tech-card-modern:hover {
    transform: translateY(-5px);
    border-color: rgba(33, 36, 177, 0.2);
    box-shadow: 0 20px 25px -12px rgba(0, 0, 0, 0.1);
}

.tech-icon-wrapper {
    width: 75px;
    height: 75px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
    border-radius: 1.2rem;
    transition: all 0.3s;
    box-shadow: 0 8px 16px -8px rgba(33, 36, 177, 0.1);
}

.tech-card-modern:hover .tech-icon-wrapper {
    transform: scale(1.05);
    box-shadow: 0 12px 20px -10px rgba(33, 36, 177, 0.2);
}

.tech-icon-wrapper i {
    color: #2124B1;
    transition: all 0.3s;
    font-size: 2.5rem;
}

.tech-card-modern:hover .tech-icon-wrapper i {
    transform: scale(1.02);
}

.tech-hover-line {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #2124B1, #4777F5);
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 3px;
}

.tech-card-modern:hover .tech-hover-line {
    width: 60px;
}

.tools-heading {
    font-weight: 600;
    color: #1e293b;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
    font-size: 1.5rem;
}

.tools-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, #2124B1, #4777F5);
    border-radius: 2px;
}

.tool-pill-modern {
    background: white;
    padding: 0.7rem 1.4rem;
    border-radius: 60px;
    transition: all 0.25s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: default;
}

.tool-pill-modern:hover {
    transform: translateY(-3px);
    border-color: rgba(33, 36, 177, 0.3);
    box-shadow: 0 12px 20px -12px rgba(0, 0, 0, 0.12);
}

.tool-pill-modern i {
    transition: all 0.2s;
}

.tool-pill-modern:hover i {
    transform: scale(1.05);
}

.tool-pill-modern span {
    font-weight: 500;
    font-size: 0.9rem;
    color: #334155;
}

@media (max-width: 768px) {
    .tech-icon-wrapper {
        width: 60px;
        height: 60px;
    }
    
    .tech-icon-wrapper i {
        font-size: 2rem;
    }
    
    .tech-card-modern {
        padding: 1.3rem 0.8rem;
    }
    
    .tool-pill-modern {
        padding: 0.5rem 1.1rem;
    }
    
    .tool-pill-modern span {
        font-size: 0.8rem;
    }
    
    .tool-pill-modern i {
        font-size: 1.3rem;
    }
}

 .input-group-modern {
        position: relative;
        margin-bottom: 10px;
    }
    
    .input-group-modern .input-icon {
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        z-index: 2;
        pointer-events: none;
    }
    
    .input-group-modern .form-control {
        background: transparent;
        padding-left: 35px !important;
        transition: all 0.3s ease;
    }
    
    .input-group-modern .form-control:focus {
        outline: none;
        box-shadow: none;
    }
    
    .input-group-modern .form-label {
        position: absolute;
        left: 35px;
        top: 50%;
        transform: translateY(-50%);
        transition: all 0.3s ease;
        pointer-events: none;
        color: #6c757d;
        margin-bottom: 0;
        background: transparent;
    }
    
    .input-group-modern .form-control:focus + .form-label,
    .input-group-modern .form-control:not(:placeholder-shown) + .form-label {
        top: -10px;
        transform: translateY(0);
        font-size: 12px;
        color: #2124B1;
        background: white;
        padding: 0 5px;
        left: 30px;
    }
    
    .input-group-modern .form-control:focus + .form-label + .input-border,
    .input-group-modern .form-control:not(:placeholder-shown) + .form-label + .input-border {
        width: 100%;
    }
    
    .input-group-modern .input-border {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background: linear-gradient(90deg, #121229, #131f3d);
        transition: width 0.3s ease;
    }
    
    .input-group-modern .form-control:focus ~ .input-border {
        width: 100%;
    }
    
    /* Textarea specific styles */
    .input-group-modern textarea.form-control {
        min-height: 100px;
        padding-top: 12px;
    }
    
    .input-group-modern textarea.form-control + .form-label {
        top: 20px;
        transform: none;
    }
    
    .input-group-modern textarea.form-control:focus + .form-label,
    .input-group-modern textarea.form-control:not(:placeholder-shown) + .form-label {
        top: -10px;
    }
    
    /* Button hover effect */
    .btn-primary:hover .btn-overlay {
        opacity: 0.1 !important;
    }
    
    .btn-primary .z-1 {
        z-index: 1;
    }
    
    /* Contact info card hover effects */
    .contact-info-card .bg-white-opacity-20 {
        transition: all 0.3s ease;
    }
    
    .contact-info-card .bg-white-opacity-20:hover {
        transform: scale(1.05);
        background-color: rgba(255, 255, 255, 0.3) !important;
    }
    
    .social-links a:hover {
        transform: translateY(-3px);
        background-color: rgba(255, 255, 255, 0.3) !important;
    }
    
    /* Animation classes */
    .opacity-10 {
        opacity: 0.1;
    }
    
    /* Responsive adjustments */
    @media (max-width: 991px) {
        .contact-info-card {
            margin-bottom: 30px;
        }
        
        .form-card {
            padding: 30px !important;
        }
    }
    
    /* Custom scrollbar for textarea */
    textarea.form-control::-webkit-scrollbar {
        width: 5px;
    }
    
    textarea.form-control::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 10px;
    }
    
    textarea.form-control::-webkit-scrollbar-thumb {
        background: #2124B1;
        border-radius: 10px;
    }
    
    /* Smooth transitions */
    .form-card,
    .contact-info-card {
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .form-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.1) !important;
    }
    
    .contact-info-card:hover {
        transform: translateY(-5px);
    }

    .text-area-sk .input-icon{
        top: 30% !important;
    }

    .sk-button:hover{
        background-color: #18214d !important;
    }


   #mascot-popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(80, 90, 120, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  backdrop-filter: blur(5px);
  animation: mp2OverlayIn 0.35s ease both;
}
 
@keyframes mp2OverlayIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
 
#mascot-popup-card {
  display: flex;
  width: 820px;
  max-width: 100%;
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #e8e8f0;
  box-shadow: 0 24px 60px rgba(0,0,0,0.13);
  animation: mp2PopIn 0.5s cubic-bezier(0.34,1.56,0.64,1) both;
}
 
@keyframes mp2PopIn {
  from { transform: scale(0.85) translateY(20px); opacity: 0; }
  to   { transform: scale(1) translateY(0); opacity: 1; }
}
 
.mp2-left {
  flex: 1;
  background: linear-gradient(140deg, #f5f7ff 0%, #eef1fc 60%, #f0f4ff 100%);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  min-width: 0;
  border-right: 1px solid #e8eaf6;
}
 
.mp2-left::before {
  content: '';
  position: absolute;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: rgba(234,198,30,0.1);
  top: -70px; left: -50px;
  pointer-events: none;
}
 
.mp2-left::after {
  content: '';
  position: absolute;
  width: 160px; height: 160px;
  border-radius: 50%;
  border: 1.5px solid rgba(100,120,220,0.1);
  bottom: 10px; right: -50px;
  pointer-events: none;
}
 
.mp2-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(234,198,30,0.15);
  border: 1px solid rgba(234,198,30,0.4);
  color: #b8900a;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 18px;
  width: fit-content;
}
 
.mp2-badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #d4a010;
  animation: mp2Blink 1.5s ease-in-out infinite;
}
 
@keyframes mp2Blink {
  0%,100% { opacity:1; }
  50%      { opacity:0.3; }
}
 
.mp2-left h2 {
  font-family: 'Syne', sans-serif;
  font-size: 25px;
  font-weight: 700;
  color: #0f1535;
  line-height: 1.25;
  margin: 0 0 11px;
}
 
.mp2-left h2 span { color: #2952e3; }
 
.mp2-left > p {
  font-family: 'DM Sans', sans-serif;
  font-size: 13.5px;
  color: #6b7280;
  line-height: 1.65;
  margin: 0 0 26px;
}
 
.mp2-illustration {
  width: 100%;
  height: 158px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid #e2e6f8;
  overflow: hidden;
  margin-bottom: 22px;
  box-shadow: 0 4px 16px rgba(41,82,227,0.06);
}
 
.mp2-trust-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
 
.mp2-trust-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  color: #6b7280;
}
 
.mp2-trust-icon {
  width: 16px; height: 16px;
  border-radius: 50%;
  background: rgba(41,82,227,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
 
.mp2-right {
  width: 310px;
  flex-shrink: 0;
  background: #ffffff;
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  position: relative;
}
 
.mp2-close {
  position: absolute;
  top: 14px; right: 16px;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: #f3f4f6;
  border: 1px solid #e5e7eb;
  color: #9ca3af;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  transition: all 0.2s;
}
 
.mp2-close:hover {
  background: #e5e7eb;
  color: #374151;
}
 
.mp2-form-title {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #0f1535;
  margin: 0 0 5px;
}
 
.mp2-form-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 12.5px;
  color: #9ca3af;
  margin: 0 0 22px;
}
 
.mp2-form-group { margin-bottom: 13px; }
 
.mp2-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 11.5px;
  font-weight: 600;
  color: #374151;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 5px;
}
 
.mp2-input, .mp2-textarea {
  width: 100%;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 10px 13px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13.5px;
  color: #111827;
  outline: none;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
}
 
.mp2-input:focus, .mp2-textarea:focus {
  border-color: #2952e3;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(41,82,227,0.1);
}
 
.mp2-input::placeholder, .mp2-textarea::placeholder { color: #c1c5d0; }
 
.mp2-textarea {
  resize: none;
  height: 78px;
}
 
.mp2-btn {
  width: 100%;
  padding: 12px;
  background: #1a1a2e;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  margin-top: 6px;
  transition: background 0.2s, transform 0.1s;
  letter-spacing: 0.02em;
}
 
.mp2-btn:hover  { background: #2952e3; }
.mp2-btn:active { transform: scale(0.98); }
 
.mp2-skip {
  text-align: center;
  margin-top: 11px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  color: #c1c5d0;
  cursor: pointer;
  transition: color 0.2s;
}
 
.mp2-skip:hover { color: #6b7280; }
 
.mp2-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  gap: 10px;
}
 
.mp2-success-icon {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: #eef2ff;
  border: 1.5px solid #c7d2fe;
  display: flex;
  align-items: center;
  justify-content: center;
}
 
.mp2-success h3 {
  font-family: 'Syne', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #0f1535;
  margin: 0;
}
 
.mp2-success p {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: #9ca3af;
  margin: 0;
  line-height: 1.5;
}
 
@media (max-width: 600px) {
  #mascot-popup-card { flex-direction: column; }
  .mp2-left { padding: 28px 22px 18px; border-right: none; border-bottom: 1px solid #e8eaf6; }
  .mp2-illustration { height: 120px; }
  .mp2-right { width: 100%; padding: 24px 22px; }
}

.srv-outer {
    position: relative;
    background-color: #eef2fb;
    overflow: hidden;
}

.srv-outer-custom {
    position: relative;
    background-color:var(--primary) !important;;
    overflow: hidden;
}
 
.srv-bg-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}
h1,h2{
     font-family: 'DM Sans', sans-serif;
}
h6{
  font-family: 'DM Sans', sans-serif  
}

/* Hero Eyebrow Badge */
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245,197,24,0.12);
    border: 1px solid rgba(245,197,24,0.3);
    color: #f5c518;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 20px;
    width: fit-content;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.6s ease 0.2s forwards;
}
.eyebrow-dot {
    width: 7px; height: 7px;
    background: #f5c518;
    border-radius: 50%;
    animation: hPulse 1.5s ease-in-out infinite;
}
@keyframes hPulse {
    0%,100%{ opacity:1; transform: scale(1); }
    50%{ opacity:0.5; transform: scale(1.4); }
}

/* Floating image animation */
.hero-img-wrap { animation: heroFloat 4s ease-in-out infinite; }
@keyframes heroFloat {
    0%,100%{ transform: translateY(0); }
    50%{ transform: translateY(-14px); }
}

/* Glow behind image */
.hero-glow {
    position: absolute;
    width: 320px; height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(99,120,255,0.18) 0%, transparent 70%);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    animation: glowPulse 3s ease-in-out infinite;
    pointer-events: none;
}
@keyframes glowPulse {
    0%,100%{ transform: translate(-50%,-50%) scale(1); opacity:0.8; }
    50%{ transform: translate(-50%,-50%) scale(1.12); opacity:1; }
}

/* Fade up animations for text */
.anim-1 { opacity:0; transform:translateY(20px); animation: fadeUp 0.6s ease 0.4s forwards; }
.anim-2 { opacity:0; transform:translateY(20px); animation: fadeUp 0.6s ease 0.6s forwards; }
.anim-3 { opacity:0; transform:translateY(20px); animation: fadeUp 0.6s ease 0.8s forwards; }
.anim-4 { opacity:0; transform:translateY(20px); animation: fadeUp 0.6s ease 1.0s forwards; }
@keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
}

/* Floating stat chips */
.hero-chip {
    position: absolute;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 12px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #fff;
    font-weight: 600;
    animation: chipFloat 3.5s ease-in-out infinite;
}
.hero-chip.chip-1 { top: 10px; left: -10px; animation-delay: 0s; }
.hero-chip.chip-2 { bottom: 30px; right: -85px; animation-delay: 1.2s; }

@media (max-width: 768px) {
    .hero-chip.chip-2 {
        display: none;
    }

     .hero-chip.chip-1 {
        display: none;
    }
   
}
@keyframes chipFloat {
    0%,100%{ transform: translateY(0); }
    50%{ transform: translateY(-7px); }
}
.chip-icon {
    width: 28px; height: 28px;
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 14px;
}

.custom-section-heading-sk{
    margin-left:-55px ;
}

.custom-project-card {
    transition: all 0.3s ease;
}

.custom-project-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
}

.text-yellow{
    color:#dbbe1b ;
}


/* ===== AW CTA SECTION ===== */
.aw-cta-section {
    background: #09102e;
    position: relative;
    overflow: hidden;
    padding: 48px 60px;
}
.aw-cta-dots {
    position: absolute;
    top: 0; right: 0;
    width: 180px; height: 100%;
    background-image: radial-gradient(circle, rgba(219,190,27,0.2) 1.5px, transparent 1.5px);
    background-size: 16px 16px;
    opacity: 0.6;
}
.aw-cta-dots-left {
    position: absolute;
    top: 0; left: 0;
    width: 120px; height: 100%;
    background-image: radial-gradient(circle, rgba(219,190,27,0.12) 1.5px, transparent 1.5px);
    background-size: 16px 16px;
    opacity: 0.5;
}
.aw-cta-line {
    position: absolute;
    top: 0; left: 0;
    width: 4px; height: 100%;
    background: #dbbe1b;
    animation: aw-linegrow 0.6s ease both;
}
.aw-cta-inner {
    position: relative;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}
.aw-cta-text {
    animation: aw-fadeLeft 0.6s 0.2s ease both;
}
.aw-cta-heading {
    font-size: clamp(20px, 2.5vw, 30px);
    font-weight: 800;
    color: #fff;
    margin: 0 0 8px;
    line-height: 1.2;
}
.aw-cta-heading span { color: #dbbe1b; }
.aw-cta-para {
    color: rgba(255,255,255,0.5);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    max-width: 480px;
}
.aw-cta-right {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
    flex-wrap: wrap;
    animation: aw-fadeRight 0.6s 0.35s ease both;
}
.aw-btn-gold {
    background: #dbbe1b;
    color: #09102e;
    border: none;
    padding: 13px 30px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    transition: opacity 0.2s, transform 0.2s;
    display: inline-block;
}
.aw-btn-gold::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0);
    transition: background 0.2s;
}
.aw-btn-gold:hover { transform: translateY(-2px); }
.aw-btn-gold:hover::after { background: rgba(255,255,255,0.12); }

.aw-btn-call {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    padding: 12px 22px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: border-color 0.25s, color 0.25s, background 0.25s;
}
.aw-btn-call i {
    animation: aw-ring 2.5s 1.2s ease infinite;
}
.aw-btn-call:hover {
    border-color: rgba(219,190,27,0.6);
    color: #dbbe1b;
    background: rgba(219,190,27,0.06);
}
.aw-pulse-dot {
    display: inline-block;
    width: 8px; height: 8px;
    background: #dbbe1b;
    border-radius: 50%;
    margin-right: 4px;
    animation: aw-pulse 1.8s ease-in-out infinite;
    vertical-align: middle;
}

/* ===== KEYFRAMES ===== */
@keyframes aw-linegrow {
    from { transform: scaleY(0); transform-origin: top; }
    to   { transform: scaleY(1); transform-origin: top; }
}
@keyframes aw-fadeLeft {
    from { opacity: 0; transform: translateX(-28px); }
    to   { opacity: 1; transform: translateX(0); }
}
@keyframes aw-fadeRight {
    from { opacity: 0; transform: translateX(28px); }
    to   { opacity: 1; transform: translateX(0); }
}
@keyframes aw-pulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50%       { opacity: 1;   transform: scale(1.5); }
}
@keyframes aw-ring {
    0%,  100% { transform: rotate(0deg);   }
    10%        { transform: rotate(-12deg); }
    20%        { transform: rotate(12deg);  }
    30%        { transform: rotate(-8deg);  }
    40%        { transform: rotate(8deg);   }
    50%        { transform: rotate(0deg);   }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .aw-cta-section  { padding: 36px 24px; }
    .aw-cta-inner    { flex-direction: column; text-align: center; }
    .aw-cta-right    { justify-content: center; }
    .aw-cta-para     { max-width: 100%; }
}



/* ===== WHATSAPP FIXED BUTTON ===== */
.aw-wa-btn {
    position: fixed;
    bottom: 120px;
    right: 45px;
    width: 50px;
    height: 50px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    text-decoration: none;
    transition: transform 0.3s ease;
}
.aw-wa-btn:hover {
    transform: scale(1.12);
}
.aw-wa-icon {
    width: 32px;
    height: 32px;
    position: relative;
    z-index: 2;
}

/* Ripple pulse animation */
.aw-wa-ripple {
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #25D366;
    animation: aw-wa-ripple 2s ease-out infinite;
    z-index: 1;
}
.aw-wa-btn:hover .aw-wa-ripple {
    animation-play-state: paused;
}

@keyframes aw-wa-ripple {
    0%   { transform: scale(1);   opacity: 0.6; }
    100% { transform: scale(1.8); opacity: 0;   }
}

@media (max-width: 768px) {
    .aw-wa-btn {
        bottom: 116px;
        right: 42px;
        width: 52px;
        height: 52px;
    }
    .aw-wa-ripple {
        width: 52px;
        height: 52px;
    }
}

/* ===== NAV PHONE HIGHLIGHT ===== */
.call-btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* hover lift + shadow */
.call-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* icon animation */
.call-btn i {
    margin-right: 8px;
    transition: transform 0.3s ease;
}

/* icon move on hover */
.call-btn:hover i {
    transform: rotate(-15deg) scale(1.2);
}

/* pulse effect */
.call-btn::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.2);
    top: 0;
    left: -100%;
    transition: all 0.5s ease;
}

/* shine effect */
.call-btn:hover::after {
    left: 100%;
}

/* optional: continuous pulse */
@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.6);
    }
    70% {
        box-shadow: 0 0 0 12px rgba(255, 193, 7, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 193, 7, 0);
    }
}

.call-btn {
    animation: pulseGlow 1s infinite;
}