﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins',sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

img {
    max-width: 100%;
    display: block;
}
/* ================= BASE SAFE STATE ================= */
/* JS नसला तरी content दिसेल */
.anim-left,
.anim-right,
.anim-bottom {
    opacity: 1;
    transform: none;
}

/* ================= WHEN JS RUN ================= */
.anim-left.anim-show,
.anim-right.anim-show,
.anim-bottom.anim-show {
    opacity: 1;
    transform: translate(0, 0);
}

/* ================= HIDDEN INITIAL ================= */
/* ================= INITIAL HIDDEN ================= */
.js-enabled .anim-left,
.js-enabled .anim-right,
.js-enabled .anim-bottom {
    opacity: 0;
    transition: all 0.8s ease;
}

/* LEFT */
.js-enabled .anim-left {
    transform: translateX(-60px);
}

/* RIGHT */
.js-enabled .anim-right {
    transform: translateX(60px);
}

/* BOTTOM */
.js-enabled .anim-bottom {
    transform: translateY(40px);
}

/* ================= SHOW ================= */


/* ================= STAGGER ================= */
.anim-bottom {
    transition-delay: 0.2s;
}

.anim-right {
    transition-delay: 0.4s;
}

/* ================= PERFORMANCE ================= */
.anim-left,
.anim-right,
.anim-bottom {
    will-change: transform, opacity;
}
.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    border-radius: 50px;
    background: linear-gradient(135deg, #1e88e5, #00c6ff);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    box-shadow: 0 8px 25px rgba(30,136,229,0.3);
    transition: all 0.3s ease;
}

/*logo*/

.logo i {
    color: #1e88e5;
    margin-right: 8px;
}

.nav-menu a i {
    margin-right: 8px;
    color: #1e88e5;
}

.nav-menu .login-btn {
    color: white !important;
}

    .nav-menu .login-btn i {
        color: white !important;
    }

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

    .logo img {
        height: 76px;
        width: 210px; /* maintain ratio */
    }
@media (max-width:768px) {

    .logo img {
        height: 50px; /* कमी height */
        width: auto; /* ratio maintain */
    }
}



.anim-show {
    opacity: 1 !important;
    transform: translate(0,0) !important;
}






/* HERO SLIDER */



.hero-slider {
    width: 100%;
    height: 70vh;
    position: relative;
    overflow: hidden;
}

.slides {
    display: flex;
    width: 300%;
    height: 100%;
    transition: transform 1s ease-in-out;
}

.slide {
    width: 100%;
    height: 90vh;
    position: relative;
    flex-shrink: 0;
}

.slide-img {
    width: 35%;
    height: 100%;
    object-fit: cover;
}

/* overlay */

.slide::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.45);
}

/* hero content */

.hero-content {
    position: absolute;
    top: 50%;
    left: 7%;
    transform: translate3d(0, -50%, 0); /* keep center */

    color: white;
    max-width: 600px;
    z-index: 2;
    /* animation fix */
    opacity: 0;
    animation: heroFadeFix 0.9s ease-out forwards;
    will-change: transform, opacity;
}

    .hero-content h1 {
        text-shadow: 0 5px 20px rgba(0,0,0,0.4);
    }

    .hero-content p {
        font-size: 18px;
        color: #e2e8f0;
    }

.slide::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* MAIN EFFECT 🔥 */
    background: linear-gradient(to right, rgb(0 0 0) 13%, /* left dark */ rgba(0, 0, 0, 0.6) 30%, rgba(0, 0, 0, 0.3) 60%, rgba(0, 0, 0, 0.05) 100% /* right almost clear */ );
    z-index: 1;
}

.hero-content .btn {
    background: #1e88e5;
    padding: 14px 30px;
    border-radius: 8px;
    text-decoration: none;
    color: white;
    display: inline-block;
    transition: 0.3s;
}

    .hero-content .btn:hover {
        background: #0d47a1;
    }

/* animation */

@keyframes heroFadeFix {
    from {
        opacity: 0;
        transform: translate3d(0, calc(-50% + 30px), 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, -50%, 0);
    }
}

/* mobile */

@media(max-width:768px) {

    .hero-slider {
        height: 60vh;
    }

    .hero-content {
        left: 0%;
        right: 0%;
    }

        .hero-content h1 {
            font-size: 22px;
        }

        .hero-content p {
            font-size: 11px;
        }
}


/*navbar */


.navbar {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 0px 14%;
    background: #fff;
    position: relative;
    z-index: 1000;
    backdrop-filter: blur(10px);
    background: rgba(255,255,255,0.8);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
}

/* logo */

.logo {
    font-size: 20px;
    font-weight: 600;
}

/* desktop menu */

.nav-menu {
    display: flex;
    gap: 80px;
    list-style: none;
}

    .nav-menu a {
        text-decoration: none;
        color: black;
        font-weight: 100;
    }
@media(max-width:768px) {

    @media(max-width:768px) {

        .menu-toggle {
            display: flex;
            margin-left: auto; /* 🔥 fix (50% काढ) */
        }

        .nav-menu {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh; /* 🔥 full screen */
            background: #fff;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            transform: translateY(-100%);
            transition: 0.4s ease;
            z-index: 9999; /* 🔥 MAIN FIX */
        }

            .nav-menu li {
                margin: 20px 0;
            }

            .nav-menu a {
                font-size: 22px;
            }

            .nav-menu.active {
                transform: translateY(0);
            }
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh; /* 🔥 full screen */
        background: #fff;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transform: translateY(-100%);
        transition: 0.4s ease;
        z-index: 9999; /* 🔥 MAIN FIX */
    }

        .nav-menu li {
            margin: 20px 0;
        }

        .nav-menu a {
            font-size: 22px;
        }

        .nav-menu.active {
            transform: translateY(0);
        }
}

/* hamburger */

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

    .menu-toggle span {
        width: 26px;
        height: 3px;
        background: #333;
        margin: 4px 0;
    }
@media(max-width:768px) {

    .menu-toggle {
        display: flex;
        margin-left: 50%;
    }

    /* hide desktop menu */

    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 72vh;
        background: #fff;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transform: translateY(-100%);
        transition: 0.4s ease;
    }

        .nav-menu li {
            margin: 20px 0;
        }

        .nav-menu a {
            font-size: 16px;
        }

        .nav-menu.active {
            transform: translateY(0);
            gap: 20px;
        }
}




/*close btn code navbar*/

.close-btn {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 28px;
    cursor: pointer;
    display: none;
}

@media(max-width:768px) {

    .close-btn {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 78vh;
        background: #fff;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transform: translateY(-100%);
        transition: 0.4s cubic-bezier(0, 1.74, 1, 1.52);
    }

        
}
/*hero section code

*/



.btn {
    background: #1e88e5;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 6px;
}

.about {
    padding: 80px 8%;
    background: #f7f9fc;
}

.container {
    display: flex;
    gap: 40px;
    align-items: center;
}

.about img {
    width: 400px;
    border-radius: 10px;
}

.services {
    padding: 80px 8%;
    text-align: center;
}

.service-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-top: 40px;
}



.clients {
    background: #f3f6ff;
    padding: 80px 8%;
    text-align: center;
}

.client-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 20px;
    margin-top: 30px;
}

.contact {
    padding: 80px 8%;
    text-align: center;
}

    .contact input,
    .contact textarea {
        width: 100%;
        max-width: 400px;
        margin: 10px;
        padding: 10px;
    }

footer {
    background: #111;
    color: white;
    text-align: center;
    padding: 20px;
}


/* ================= ABOUT SECTION ================= */

.about {
    padding: 100px 8%;
    background: #f8fbff;
}

.container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

/* IMAGE */

.about-image {
    flex: 1;
}

    .about-image img {
        width: 100%;
        max-width: 701px;
        border-radius: 20px;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    }
/* TEXT */

.about-text {
    flex: 1;
}

    .about-text h2 {
        font-size: 36px;
        margin-bottom: 15px;
    }

    .about-text p {
        color: #555;
        line-height: 1.7;
        margin-bottom: 20px;
    }

    /* LIST */

    .about-text ul {
        list-style: none;
        padding: 0;
    }

        .about-text ul li {
            margin-bottom: 10px;
            font-weight: 500;
        }

/* ================= MOBILE ================= */

@media(max-width:768px) {

    .container {
        flex-direction: column;
        text-align: center;
    }

    .about-image img {
        max-width: 100%;
    }
}
/*     */
.about-section {
    padding: 100px 8%;
    background: #f8fbff;
}

.about-container {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

/* Image */

.about-images {
    flex: 1;
}

.img-large {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

/* Content */

.about-content {
    flex: 1;
}

.about-tag {
    color: #1e88e5;
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 13px;
}

.about-content h2 {
    font-size: 40px;
    margin: 20px 0;
    line-height: 1.3;
}

    .about-content h2 span {
        color: #0d47a1;
        font-weight: 700;
    }

.about-content p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
}

/* List */

.about-list {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

    .about-list li {
        margin-bottom: 10px;
        font-weight: 500;
        color: #333;
    }

/* Rating Box */

.rating-box {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    min-width: 200px;
}

    .rating-box h3 {
        font-size: 28px;
        color: #1e88e5;
    }

    .rating-box p {
        font-size: 14px;
        color: #666;
    }

/* Responsive */

@media(max-width:992px) {

    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .rating-box {
        margin-top: 20px;
    }
}


/*services code*/

.services {
    padding: 80px 171px;
    background: #0f1117;
    text-align: center;
    color: white;
}

.services-title {
    font-size: 32px;
    margin-bottom: 40px;
}

/* GRID */

.service-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
    max-width: 1100px;
    margin: auto;
}

/* CARD */
.service-card {
    background: rgba(255,255,255,0.9);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    transition: 0.3s;
}

    .service-card:hover {
        transform: translateY(-10px) scale(1.02);
        box-shadow: 0 30px 60px rgba(0,0,0,0.15);
    }

    /* ICON */

    .service-card i {
        font-size: 34px;
        color: #1e88e5;
        margin-bottom: 12px;
    }

    /* TEXT */

    .service-card h3 {
        font-size: 18px;
        color: #333;
    }

    /* HOVER */

    .service-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    }

/* ================= TABLET ================= */

@media(max-width:992px) {

    .service-grid {
        grid-template-columns: repeat(2,1fr);
    }
}

/* ================= MOBILE ================= */

@media(max-width:600px) {

    .service-grid {
        grid-template-columns: 1fr;
    }

    .services-title {
        font-size: 26px;
    }

    .service-card {
        width: 100%;
    }
}

.services-inner {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 80px;
}

.left h2 {
    font-size: 42px;
    line-height: 1.3;
}

    .left h2 span {
        font-weight: 700;
    }

.tag {
    color: #3bb6ff;
    font-size: 14px;
    letter-spacing: 2px;
}

.right {
    max-width: 450px;
}

    .right p {
        color: #cbd5e1;
        line-height: 1.7;
    }

/* CARD WRAPPER */

.service-card-wrapper {
    display: flex;
    justify-content: center;
}

.service-card {
    background: white;
    border-radius: 25px;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
    color: black;
    width: 100%;
}

/* BOX */

.box {
    text-align: center;
    flex: 1;
    transition: 0.3s;
    cursor: pointer;
}

    .box:hover {
        transform: translateY(-8px);
    }

    .box h4 {
        font-size: 16px;
        margin-top: 15px;
    }

/* ICON */

.icon-circle {
    width: 70px;
    height: 70px;
    background: #f2f6ff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: auto;
    font-size: 28px;
    color: #1e88e5;
}

/* BUTTON */

.btn {
    width: 31%;
    height: 53px;
    margin: 20px auto 0;
    border-radius: 10px;
    background: linear-gradient(135deg, #1e88e5, #00c6ff);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
}
@media(max-width:768px) {

    .btn {
        width: 100%;
        max-width: 260px;
        margin: auto;
        font-size: 15px;
        height: 45px;
    }
}

/* DIVIDER */

.divider {
    width: 1px;
    height: 120px;
    background: #eee;
}

/* RESPONSIVE */

@media(max-width:992px) {

    .services-inner {
        flex-direction: column;
    }

    .service-card {
        flex-direction: column;
    }

    .divider {
        display: none;
    }
}

/*STORY SECTION CSS*/


.story-section {
    padding: 120px 8%;
    background: #f9fafb;
}

.story-header {
    text-align: center;
    margin-bottom: 60px;
}

.story-tag {
    color: #1e88e5;
    font-size: 14px;
    letter-spacing: 2px;
    font-weight: 600;
}

.story-header h2 {
    font-size: 42px;
    margin-top: 15px;
}

.story-header span {
    font-weight: 700;
}

.story-container {
    display: flex;
    gap: 60px;
    align-items: center;
}

.story-left {
    flex: 1;
}

.main-img {
    width: 100%;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.story-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.top-images {
    display: flex;
    gap: 15px;
}

    .top-images img {
        width: 48%;
        border-radius: 15px;
    }

.story-right p {
    color: #555;
    line-height: 1.7;
}

.stats-section {
    display: flex;
    gap: 20px;
}

.stat-card {
    background: white;
    padding: 20px 25px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    text-align: center;
}

    .stat-card h3 {
        font-size: 28px;
        color: #1e88e5;
    }


/*WHAT WE DO SECTION CSS*/

.what-section {
    display: flex;
    padding: 120px 8%;
    background: #0f1117;
    color: white;
    gap: 60px;
}

.what-left {
    flex: 1;
}

.what-tag {
    color: #3bb6ff;
    letter-spacing: 2px;
    font-size: 14px;
}

.what-left h2 {
    font-size: 42px;
    margin: 20px 0 40px;
}

.what-left span {
    font-weight: 700;
}

.what-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.what-card {
    background: rgba(255,255,255,0.05);
    padding: 25px;
    border-radius: 15px;
}

    .what-card.dark {
        background: rgba(255,255,255,0.1);
    }

    .what-card h4 {
        margin-bottom: 10px;
    }

    .what-card p {
        color: #cbd5e1;
        font-size: 14px;
    }

.what-cta {
    margin-top: 30px;
}

.what-right {
    flex: 1;
}

    .what-right img {
        width: 102%;
        border-radius: 25px;
        object-fit: cover;
        margin-top: 18%;
        height: 74%;
    }


/*SECTOR SECTION CSS*/


.sector-section {
    padding: 120px 8%;
    background: white;
}

.sector-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
}

.sector-title h2 {
    font-size: 42px;
}

.sector-desc {
    max-width: 450px;
    color: #666;
}

.sector-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
}

.sector-card {
    text-align: center;
}

    .sector-card img {
        width: 100%;
        height: 220px;
        object-fit: cover;
        border-radius: 20px;
        transition: 0.3s;
    }

        .sector-card img:hover {
            transform: scale(1.05);
        }

    .sector-card h4 {
        margin-top: 15px;
    }


/*CLIENT SECTION CSS*/

.client-section {
    padding: 120px 8%;
    background: #000;
    color: white;
}

.client-container {
    display: flex;
    gap: 60px;
    align-items: center;
}

.client-image {
    flex: 1;
}

    .client-image img {
        width: 100%;
        border-radius: 20px;
    }

.client-content {
    flex: 1;
}

.client-tag {
    letter-spacing: 2px;
    font-size: 14px;
}

.client-content h2 {
    font-size: 42px;
    margin: 20px 0;
}

.client-content span {
    font-weight: 700;
}

.client-text {
    color: #cbd5e1;
    line-height: 1.7;
}


/*  Footer CSS*/
.footer {
    background: #0f1117;
    color: white;
    padding: 80px 8% 20px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 40px;
}

.footer-col h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.footer-col h4 {
    margin-bottom: 15px;
}

.footer-col p {
    font-size: 14px;
    color: #cbd5e1;
    line-height: 1.7;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

    .footer-col ul li {
        margin-bottom: 10px;
    }

        .footer-col ul li a {
            text-decoration: none;
            color: #cbd5e1;
            transition: 0.3s;
        }

            .footer-col ul li a:hover {
                color: #3bb6ff;
            }

.social-icons {


    display: flex;
    gap: 10px;
    margin-top: 10px;
    justify-content: space-around;
}

    .social-icons a {
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #1f2937;
        border-radius: 50%;
        color: white;
        font-size: 16px;
        transition: 0.3s;
    }

        .social-icons a:hover {
            background: #1e88e5;
            transform: translateY(-3px);
        }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
    font-size: 14px;
    color: #aaa;
}

/*MOBILE RESPONSIVE CSS*/

/* ================= TABLET ================= */

@media (max-width:1024px) {

    .container,
    .about-container,
    .story-container,
    .client-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        margin-left: 0;
        padding: 0 20px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .about img {
        width: 100%;
    }

    .service-card {
        flex-direction: column;
    }

    .divider {
        display: none;
    }

    .what-section {
        flex-direction: column;
    }

    .what-cards {
        grid-template-columns: 1fr;
    }

    .sector-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .footer-container {
        grid-template-columns: repeat(2,1fr);
    }
}


/* ================= MOBILE ================= */

@media (max-width:768px) {

    .navbar {
        display: flex;
        justify-content: space-between; /* 🔥 important */
        align-items: center;
    }
    .menu-toggle {
        display: flex;
       
    }
        .navbar ul {
            flex-direction: column;
            width: 100%;
            padding: 0;
                   color: #000000;
        }

            .navbar ul li {
                margin: 10px 0;
            }

    .hero {
        height: 60vh;
    }

        .hero h1 {
            font-size: 28px;
        }

    .hero-content {
        max-width: 100%;
        padding: 0 20px;
    }

    .about {
        padding: 60px 20px;
    }

    .about-content h2 {
        font-size: 28px;
    }

    .services {
        padding: 80px 20px;
    }

    .services-inner {
        flex-direction: column;
        text-align: center;
    }

    .story-section {
        padding: 80px 20px;
    }

    .story-header h2 {
        font-size: 30px;
    }

    .top-images {
        flex-direction: column;
    }

        .top-images img {
            width: 100%;
        }

    .what-section {
        padding: 80px 20px;
    }

    .sector-grid {
        grid-template-columns: 1fr;
    }

    .client-section {
        padding: 80px 20px;
    }

    .client-content h2 {
        font-size: 28px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
}


/* ================= SMALL MOBILE ================= */

@media (max-width:480px) {

    .hero h1 {
        font-size: 24px;
    }

    .about-content h2 {
        font-size: 24px;
    }

    .left h2 {
        font-size: 26px;
    }

    .story-header h2 {
        font-size: 24px;
    }

    .client-content h2 {
        font-size: 24px;
    }

    .stat-card {
        padding: 15px;
    }

    .service-card {
        padding: 20px;
    }
}

/* ================= LOGIN BUTTON CSS ================= */


.login-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 3px 11px;
    border-radius: 30px;
    background: linear-gradient(135deg, #1e88e5, #00c6ff);
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(30,136,229,0.3);
}

    /* hover */
    .login-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(30,136,229,0.5);
    }

    /* icon animation */
    .login-btn i {
        transition: 0.3s;
    }

    .login-btn:hover i {
        transform: translateX(4px);
    }

@media(max-width:768px) {

    .nav-btn {
        margin-top: 20px;
    }

    .login-btn {
        font-size: 18px;
        padding: 12px 30px;
    }
}


/*consultancy page code*/

.consult-hero {
    height: 65vh;
    background: url('../images/pharma-bg.jpg') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .consult-hero::after {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        background: linear-gradient( 90deg, rgba(0,0,0,0.85) 20%, rgba(0,0,0,0.5) 60%, rgba(0,0,0,0.1) 100% );
    }

.consult-hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    text-align: center;
}

    .consult-hero-content h1 {
        font-size: 44px;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .consult-hero-content p {
        font-size: 18px;
        color: #e2e8f0;
    }


/* ================= SERVICES ================= */

.consult-services {
    padding: 100px 8%;
    background: #f8fbff;
    text-align: center;
}

    .consult-services h2 {
        font-size: 36px;
        margin-bottom: 50px;
    }

.consult-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 30px;
}

.consult-card {
    background: white;
    padding: 30px;
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transition: 0.3s;
}

    .consult-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 25px 60px rgba(0,0,0,0.15);
    }

    .consult-card i {
        font-size: 34px;
        color: #1e88e5;
        margin-bottom: 15px;
    }

    .consult-card h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .consult-card p {
        font-size: 14px;
        color: #666;
    }


/* ================= WHY SECTION ================= */

.consult-why {
    padding: 100px 8%;
    background: #050b1a;
    color: white;
}

    .consult-why h2 {
        font-size: 36px;
        margin-bottom: 20px;
    }

    .consult-why ul {
        list-style: none;
        margin-top: 20px;
    }

    .consult-why li {
        margin-bottom: 12px;
        font-size: 16px;
        color: #cbd5e1;
    }


/* ================= CTA ================= */

.consult-cta {
    padding: 80px;
    text-align: center;
    background: black;
    color: white;
}

    .consult-cta h2 {
        font-size: 32px;
    }

    .consult-cta p {
        margin-top: 10px;
        color: #e2e8f0;
    }

    .consult-cta .btn {
        margin-top: 20px;
    }


/* ================= RESPONSIVE ================= */

@media(max-width:992px) {

    .consult-grid {
        grid-template-columns: repeat(2,1fr);
    }
}

@media(max-width:600px) {

    .consult-grid {
        grid-template-columns: 1fr;
    }

    .consult-hero-content h1 {
        font-size: 26px;
    }

    .consult-services h2 {
        font-size: 26px;
    }
}

/*inquery fornm code */

/* ================= INQUIRY FORM ================= */

 .contact-form {
            flex: 1;
            background: white;
            padding: 30px;
            border-radius: 20px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.08);
        }

            .contact-form h2 {
                margin-bottom: 15px;
            }

            .contact-form form {
                display: flex;
                flex-direction: column;
                gap: 15px;
            }

            /* INPUT */

            .contact-form input,
            .contact-form select,
            .contact-form textarea {
                padding: 14px;
                border-radius: 10px;
                border: 1px solid #ddd;
                font-family: 'Poppins',sans-serif;
            }

            /* BUTTON */

            .contact-form button {
                background: linear-gradient(135deg, #1e88e5, #00c6ff);
                color: white;
                border: none;
                padding: 14px;
                border-radius: 30px;
                cursor: pointer;
                transition: 0.3s;
            }

                .contact-form button:hover {
                    transform: translateY(-3px);
                    box-shadow: 0 10px 30px rgba(30,136,229,0.4);
                }


/* ================= ABOUT HERO ================= */

.about-hero {
    height: 60vh;
    position: relative;
    overflow: hidden;
}

    .about-hero img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .about-hero::after {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.6);
        top: 0;
        left: 0;
    }

    .about-hero h1 {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: #fff;
        z-index: 2;
        font-size: 42px;
    }




/* ================= GALLERY ================= */

.consult-gallery {
    padding: 100px 8%;
    background: #f8fbff;
}

/* HEADER */

.gallery-header {
    text-align: center;
    margin-bottom: 40px;
}

    .gallery-header h2 {
        font-size: 34px;
    }

    .gallery-header p {
        color: #666;
    }

/* GRID */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 25px;
}

/* CARD */

.gallery-card {
    overflow: hidden;
    border-radius: 20px;
    position: relative;
}

    /* IMAGE */

    .gallery-card img {
        width: 100%;
        height: 230px;
        object-fit: cover;
        transition: 0.4s;
    }

    /* HOVER EFFECT */

    .gallery-card:hover img {
        transform: scale(1.1);
    }

    /* OVERLAY */

    .gallery-card::after {
       
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background: rgba(30,136,229,0.9);
        color: white;
        padding: 8px 16px;
        border-radius: 20px;
        opacity: 0;
        transition: 0.3s;
        font-size: 14px;
    }

    .gallery-card:hover::after {
        opacity: 1;
    }

/* ================= MOBILE ================= */

@media(max-width:992px) {
    .gallery-grid {
        grid-template-columns: repeat(2,1fr);
    }
}

@media(max-width:600px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

