.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8fcff;
}

.hero-bg {

    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;

    animation: zoomHero 18s ease-in-out infinite alternate;
}

.overlay {

    position: absolute;
    inset: 0;

    background:
        linear-gradient(rgba(255, 255, 255, .15),
            rgba(255, 255, 255, .35));

    backdrop-filter: blur(1px);
}

.gradient {

    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: .45;
    mix-blend-mode: screen;
    animation: float 16s ease-in-out infinite;

}

.gradient1 {

    width: 520px;
    height: 520px;

    background: #5cc8ff;

    top: -120px;
    left: -100px;

}

.gradient2 {

    width: 420px;
    height: 420px;

    background: #9df7d4;

    bottom: -120px;
    right: -60px;

    animation-delay: 5s;

}

.gradient3 {

    width: 360px;
    height: 360px;

    background: #d7b5ff;

    top: 35%;
    left: 55%;

    animation-delay: 10s;

}

.hero-content {

    position: relative;
    z-index: 10;

    text-align: center;

    max-width: 850px;

    color: rgb(26, 23, 245);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: bold;

}

.tagline {

    display: inline-block;

    padding: 12px 22px;

    border-radius: 50px;

    background: rgba(255, 255, 255, .15);

    backdrop-filter: blur(14px);

    margin-bottom: 25px;

    letter-spacing: 2px;

}

.hero h1 {

    font-size: 72px;
    font-weight: 700;

    line-height: 1.1;

    margin-bottom: 25px;

}

.hero p {

    font-size: 20px;

    max-width: 650px;

    margin: auto;

    opacity: .95;

}

.hero-btn {

    margin-top: 45px;

    display: flex;

    justify-content: center;

    gap: 20px;

}

.btn-primary {

    padding: 16px 42px;

    background: white;

    color: #2686ff;

    border-radius: 60px;

    font-weight: 600;

    transition: .4s;

}

.btn-primary:hover {

    transform: translateY(-6px);

    box-shadow: 0 20px 45px rgba(0, 0, 0, .15);

}

.btn-secondary {

    padding: 16px 42px;

    border: 2px solid white;

    color: white;

    border-radius: 60px;

    backdrop-filter: blur(15px);

}

@keyframes float {

    0% {

        transform:
            translate(0px, 0px) scale(1);

    }

    25% {

        transform:
            translate(80px, -60px) scale(1.12);

    }

    50% {

        transform:
            translate(-50px, 90px) scale(.95);

    }

    75% {

        transform:
            translate(40px, -30px) scale(1.05);

    }

    100% {

        transform:
            translate(0px, 0px) scale(1);

    }

}

@keyframes zoomHero {

    from {

        transform: scale(1);

    }

    to {

        transform: scale(1.08);

    }

}


/*==============================
Navigation
==============================*/

.nav-link {

    display: flex;
    align-items: center;
    gap: 12px;

}

/*==============================
Navigation Item
==============================*/

.nav-item {

    position: relative;

    padding: 12px 22px;

    border-radius: 40px;

    text-decoration: none;

    font-size: .95rem;

    font-weight: 600;

    color: var(--text-muted);

    transition: .45s ease;

    overflow: hidden;

    z-index: 1;

}


/* Glass Background */

.nav-item::before {

    content: "";

    position: absolute;

    inset: 0;

    border-radius: 40px;

    background: linear-gradient(135deg,
            rgba(255, 255, 255, .95),
            rgba(255, 255, 255, .55));

    backdrop-filter: blur(18px);

    box-shadow:
        0 10px 30px rgba(35, 130, 255, .15);

    transform: scale(.5);

    opacity: 0;

    transition: .45s;

    z-index: -2;

}


/* Aurora Glow */

.nav-item::after {

    content: "";

    position: absolute;

    inset: -2px;

    border-radius: 40px;

    background: linear-gradient(90deg,
            #55C2FF,
            #7BD8FF,
            #DDF8FF,
            #55C2FF);

    background-size: 300%;

    opacity: 0;

    z-index: -3;

}


/* Hover */

.nav-item:hover {

    color: #0A63FF;

    transform: translateY(-4px);

}

.nav-item:hover::before {

    opacity: 1;

    transform: scale(1);

}

.nav-item:hover::after {

    opacity: 1;

    animation: aurora 5s linear infinite;

}


/* Active Page */

.nav-item.active {

    color: #0A63FF;

    background: white;

    box-shadow:
        0 12px 35px rgba(80, 140, 255, .18);

}


/* Smooth Underline */

.nav-item span {

    position: relative;

}

.nav-item span::after {

    content: "";

    position: absolute;

    width: 0;

    height: 2px;

    left: 50%;

    bottom: -6px;

    background: #0A63FF;

    transition: .35s;

}

.nav-item:hover span::after {

    width: 100%;

    left: 0;

}


/* Aurora Animation */

@keyframes aurora {

    0% {

        background-position: 0%;

    }

    100% {

        background-position: 300%;

    }

}



/* h1 ends */

@keyframes floatText {

    0%,
    100% {
        transform: perspective(1200px) rotateX(12deg) translateY(0);
    }

    50% {
        transform: perspective(1200px) rotateX(12deg) translateY(-10px);
    }
}



/* about pop us codes */

/*=========================
ABOUT MODAL
==========================*/

.about-modal {

    position: fixed;

    left: 0;
    top: 0;

    width: 100%;
    height: 100%;

    background: rgba(0, 0, 0, .45);

    backdrop-filter: blur(10px);

    display: none;

    justify-content: center;

    align-items: center;

    z-index: 9999;

    animation: fadeIn .4s;

}

/*=========================
CONTENT
==========================*/

.about-content {

    width: 900px;

    max-width: 95%;

    background: rgba(255, 255, 255, .85);

    backdrop-filter: blur(25px);

    border-radius: 25px;

    padding: 45px;

    box-shadow:

        0 20px 60px rgba(0, 0, 0, .15);

    position: relative;

    animation: popup .4s ease;

}

/*=========================
TITLE
==========================*/

.about-content h2 {

    text-align: center;

    font-size: 36px;

    margin-bottom: 40px;

    color: #1565ff;

}

/*=========================
MISSION
==========================*/

.mission-vision {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 30px;

    margin-bottom: 35px;

}

.box {

    padding: 30px;

    background: white;

    border-radius: 20px;

    box-shadow:

        0 10px 30px rgba(0, 0, 0, .08);

    transition: .4s;

}

.box:hover {

    transform: translateY(-8px);

    box-shadow:

        0 25px 45px rgba(0, 120, 255, .15);

}

.box h3 {

    margin-bottom: 15px;

    color: #1565ff;

}

/*=========================
VALUES
==========================*/

.values {

    padding: 30px;

    background: #f8fbff;

    border-radius: 20px;

}

.values h3 {

    margin-bottom: 20px;

    color: #1565ff;

}

.values ul {

    columns: 2;

    padding-left: 20px;

}

.values li {

    margin-bottom: 12px;

    font-size: 17px;

}

/*=========================
CLOSE BUTTON
==========================*/

.close {

    position: absolute;

    right: 25px;

    top: 20px;

    font-size: 35px;

    cursor: pointer;

    color: #666;

    transition: .3s;

}

.close:hover {

    color: red;

    transform: rotate(90deg);

}

/*=========================
ANIMATION
==========================*/

@keyframes popup {

    from {

        opacity: 0;

        transform: translateY(50px) scale(.9);

    }

    to {

        opacity: 1;

        transform: translateY(0) scale(1);

    }

}

@keyframes fadeIn {

    from {

        opacity: 0;

    }

    to {

        opacity: 1;

    }

}

/*=========================
RESPONSIVE
==========================*/

@media(max-width:768px) {

    .mission-vision {

        grid-template-columns: 1fr;

    }

    .values ul {

        columns: 1;

    }

}


/* SERVICE SECTIONN*/

.services-section {

    padding: 100px 8%;

    background: linear-gradient(180deg, #ffffff, #f4fbff);

    position: relative;

    overflow: hidden;

}

.section-title {

    text-align: center;

    max-width: 900px;

    margin: auto;

    margin-bottom: 70px;

}

.section-title span {

    display: inline-block;

    padding: 8px 18px;

    background: #eaf7ff;

    color: #1e88ff;

    border-radius: 30px;

    font-weight: 700;

    letter-spacing: 1px;

}

.section-title h2 {

    font-size: 48px;

    margin: 20px 0;

    color: #183b56;

}

.section-title p {

    font-size: 18px;

    line-height: 1.8;

    color: #6c7b8a;

}

.service-grid {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));

    gap: 50px;

}

.service-card {

    background: rgba(255, 255, 255, .75);

    backdrop-filter: blur(20px);

    border-radius: 25px;

    padding: 35px;

    transition: .4s;

    box-shadow: 0 15px 40px rgba(0, 0, 0, .07);



}

.service-card h3 {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1.5em;
    font-weight: bold;
}

.service-card h5 {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1.25em;
    font-weight: bold;
}

.service-card p {
    font-family: Segoe UI, Tahoma, Geneva, Verdana, sans-serif;
    text-align: justify;

}

.service-card:hover {

    transform: translateY(-12px);

    box-shadow: 0 25px 50px rgba(33, 150, 243, .15);

}

.service-icon {

    font-size: 55px;

    margin-bottom: 20px;

}

.service-card h3 {

    color: #0b5ed7;

    margin-bottom: 20px;

}

.service-card h5 {

    margin-top: 20px;

    margin-bottom: 10px;

    color: #333;

}

.service-card p {

    color: #666;

    line-height: 1.8;

}

.service-card ul {

    padding-left: 18px;

    line-height: 2;

    color: #555;

}

.btn-service {

    margin-top: 25px;

    background: #1e88ff;

    color: white;

    padding: 14px 28px;

    border: none;

    border-radius: 50px;

    cursor: pointer;

    font-weight: 600;

    transition: .3s;

}

.btn-service:hover {

    background: #0d6efd;

    transform: scale(1.05);

}


/* whatsapp codes */

/* Floating WhatsApp */

.whatsapp-float {

    position: relative;

    width: 85px;
    height: 85px;

    margin: 70px auto;

    border-radius: 50%;

    background: #25D366;

    display: flex;

    justify-content: center;

    align-items: center;

    cursor: pointer;

    box-shadow:
        0 0 25px rgba(37, 211, 102, .6);

    animation: float 3s infinite;

    transition: .4s;

}

.whatsapp-float:hover {

    transform: scale(1.1);

}

.pulse {

    position: absolute;

    width: 100%;
    height: 100%;

    border-radius: 50%;

    background: #25D366;

    opacity: .35;

    animation: pulse 2s infinite;

}

@keyframes pulse {

    0% {

        transform: scale(1);

        opacity: .5;

    }

    70% {

        transform: scale(1.7);

        opacity: 0;

    }

    100% {

        opacity: 0;

    }

}

@keyframes float {

    0%,
    100% {

        transform: translateY(0);

    }

    50% {

        transform: translateY(-12px);

    }

}


/* Popup */

.wa-popup {

    display: none;

    position: fixed;

    left: 0;
    top: 0;

    width: 100%;
    height: 100%;

    background: rgba(0, 0, 0, .55);

    backdrop-filter: blur(10px);

    justify-content: center;

    align-items: center;

    z-index: 9999;

}

.wa-box {

    width: 650px;

    max-width: 92%;

    padding: 40px;

    background: rgba(255, 255, 255, .85);

    backdrop-filter: blur(30px);

    border-radius: 25px;

    box-shadow: 0 30px 60px rgba(0, 0, 0, .15);

    position: relative;

    animation: popup .35s;

    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

    text-align: justify;

}

.wa-box h2 {
    font-size: 1.5em;
    font-weight: bold;
}

.wa-box p {
    font-size: 1.25em;
}

@keyframes popup {

    from {

        opacity: 0;

        transform: translateY(60px);

    }

    to {

        opacity: 1;

        transform: translateY(0);

    }

}


.services-list {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 15px;

    margin: 30px 0;



}

.services-list label {

    padding: 15px;

    background: #f7fbff;

    border-radius: 12px;

    cursor: pointer;

    transition: .3s;

    border: 1px solid #d9ebff;

}

.services-list label:hover {

    background: #eaf7ff;

    transform: translateY(-4px);

}

input,
textarea {

    width: 100%;

    padding: 15px;

    margin-top: 15px;

    border-radius: 10px;

    border: 1px solid #d7e6f8;

    font-size: 16px;

}



/* about us */

/*============================
Counter Cards
=============================*/

.counter-card {

    padding: 25px;

    background: rgba(255, 255, 255, .85);

    backdrop-filter: blur(15px);

    border-radius: 20px;

    text-align: center;

    box-shadow: 0 15px 35px rgba(0, 0, 0, .08);

    transition: .4s;

}

.counter-card:hover {

    transform: translateY(-8px);

    box-shadow: 0 25px 45px rgba(0, 120, 255, .15);

}

.counter-card h2 {

    font-size: 36px;

    font-weight: 700;

    color: #1d7cff;

}

.counter-card p {

    margin-top: 10px;

    color: #666;

}


/*============================
Image Card
=============================*/

.image-card {

    position: relative;

    width: 100%;

    max-width: 520px;

    padding: 15px;

    background: rgba(255, 255, 255, .7);

    backdrop-filter: blur(20px);

    border-radius: 35px;

    box-shadow:

        0 25px 60px rgba(0, 0, 0, .12);

    overflow: hidden;

    transition: .5s;

    z-index: 5;

}

.image-card:hover {

    transform: translateY(-10px) rotate(-1deg);

}


/*============================
Glow Circle
=============================*/

.glow-circle {

    position: absolute;

    width: 450px;

    height: 450px;

    border-radius: 50%;

    background: linear-gradient(135deg, #6fd3ff, #d9f4ff);

    filter: blur(90px);

    opacity: .45;

    animation: floatGlow 6s ease-in-out infinite;

    z-index: 1;

}


/*============================
Animation
=============================*/

@keyframes floatGlow {

    0%,
    100% {

        transform: translateY(0px);

    }

    50% {

        transform: translateY(-25px);

    }

}



/*contact us */
/*========================================*/

.contact-section {

    padding: 110px 8%;

    background: linear-gradient(180deg, #ffffff, #eef9ff);

    position: relative;

    overflow: hidden;

}

/*========================================*/

.section-heading {

    text-align: center;

    max-width: 700px;

    margin: auto;

    margin-bottom: 60px;

}

.section-heading span {

    padding: 8px 20px;

    background: #eaf7ff;

    color: #0b6efd;

    border-radius: 50px;

    font-weight: 700;

}

.section-heading h2 {

    font-size: 48px;

    margin: 20px 0;

    color: #163c63;

}

.section-heading p {

    font-size: 18px;

    color: #666;

    line-height: 1.8;

}

/*========================================*/

.contact-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 45px;

}

/*========================================*/

.map-card {

    background: white;

    padding: 12px;

    border-radius: 25px;

    box-shadow: 0 20px 50px rgba(0, 0, 0, .08);

    margin-bottom: 30px;

}

.map-card iframe {

    width: 100%;

    height: 350px;

    border: 0;

    border-radius: 18px;

}

/*========================================*/

.office-card {

    background: rgba(255, 255, 255, .75);

    backdrop-filter: blur(20px);

    padding: 35px;

    border-radius: 25px;

    box-shadow: 0 20px 50px rgba(0, 0, 0, .08);

}

.office-card h3 {

    margin-bottom: 25px;

    font-size: 28px;

    color: #0b6efd;

}

.office-item {

    display: flex;

    gap: 15px;

    margin-bottom: 20px;

    font-size: 17px;

    line-height: 1.8;

    color: #555;

}

/*========================================*/

.form-card {

    background: rgba(255, 255, 255, .78);

    backdrop-filter: blur(18px);

    padding: 40px;

    border-radius: 30px;

    box-shadow: 0 25px 60px rgba(0, 0, 0, .08);

}

.form-card h3 {

    font-size: 30px;

    margin-bottom: 10px;

    color: #163c63;

}

.form-card p {

    color: #666;

    margin-bottom: 30px;

}

.form-card input,

.form-card textarea {

    width: 100%;

    padding: 16px;

    margin-bottom: 20px;

    border: 1px solid #d7e6f8;

    border-radius: 12px;

    font-size: 16px;

    outline: none;

    transition: .3s;

}

.form-card input:focus,

.form-card textarea:focus {

    border-color: #0b6efd;

    box-shadow: 0 0 15px rgba(11, 110, 253, .15);

}

.form-card button {

    width: 100%;

    padding: 18px;

    border: none;

    border-radius: 50px;

    background: linear-gradient(135deg, #4da3ff, #0b6efd);

    color: white;

    font-size: 18px;

    font-weight: 700;

    cursor: pointer;

    transition: .35s;

}

.form-card button:hover {

    transform: translateY(-5px);

    box-shadow: 0 20px 40px rgba(11, 110, 253, .35);

}

/*========================================*/

@media(max-width:992px) {

    .contact-grid {

        grid-template-columns: 1fr;

    }

}


/* mouse hover effect <a>*/

.stylish-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  /*  background: linear-gradient(135deg, #f9f9fa 0%, #dde6f9 100%) !important; */
}


/* enquiry form */
/*==================================*/

.enquiry-modal{

position:fixed;

left:0;
top:0;

width:100%;
height:100%;

display:none;

justify-content:center;
align-items:center;

background:rgba(0,0,0,.65);

backdrop-filter:blur(12px);

z-index:99999;      /* increase */

}

/*==================================*/

.enquiry-box{

position:relative;

z-index:100000;

max-height:90vh;

overflow-y:auto;

}

.popup-title {

    text-align: center;

    margin-bottom: 35px;

}

.popup-title span {

    padding: 7px 18px;

    background: #eaf6ff;

    border-radius: 30px;

    color: #0b6efd;

    font-weight: 700;

}

.popup-title h2 {

    margin-top: 15px;

    font-size: 34px;

    color: #163c63;

}

.popup-title p {

    margin-top: 5px;

    color: #666;

}

.form-group {

    margin-bottom: 20px;

}

.form-group label {

    display: block;

    font-weight: 600;

    color: white; 

}

.form-group input,

.form-group textarea,

.form-group select {

    width: 100%;

    padding: 15px;

    border-radius: 12px;

    border: 1px solid #d8e6f5;

    font-size: 16px;

    outline: none;

    transition: .3s;
    color: black;

}

.form-group input:focus,

.form-group textarea:focus,

.form-group select:focus {

    border-color: #0b6efd;

    box-shadow: 0 0 15px rgba(11, 110, 253, .15);

}

.enquiry-box button {

    width: 100%;

    padding: 18px;

    border: none;

    border-radius: 50px;

    background: linear-gradient(135deg, #4da3ff, #0b6efd);

    color: white;

    font-size: 18px;

    font-weight: 700;

    cursor: pointer;

    transition: .35s;

}

.enquiry-box button:hover {

    transform: translateY(-5px);

    box-shadow: 0 20px 40px rgba(11, 110, 253, .35);

}

.close-modal {

    position: absolute;

    right: 20px;

    top: 15px;

    width: 42px;

    height: 42px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    cursor: pointer;

    font-size: 28px;

    transition: .35s;

}

.close-modal:hover {

    background: #ff4d4d;

    color: white;

    transform: rotate(90deg);

}

@keyframes popup {

    from {

        opacity: 0;

        transform: translateY(50px);

    }

    to {

        opacity: 1;

        transform: translateY(0);

    }

}