﻿body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

html {
    scroll-behavior: smooth;
}



/* SLIDER */
.slider {
    height: 60vh;
    position: relative;
    overflow: hidden;
}

.slides {
    display: flex;
    width: 300%;
    height: 81%;
    transition: transform 1s ease-in-out;
}

.slide {
    width: 100%;
    height: 60vh;
    background-size: cover;
    background-position: center;
    position: relative;
}

    .slide::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient( to right, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.65) 35%, rgba(0,0,0,0.35) 60%, rgba(0,0,0,0.1) 80%, rgba(0,0,0,0) 100% );
    }

.content {
    position: absolute;
    top: 50%;
    left: 15%;
    right: 15%;
    transform: translateY(-50%);
    color: white;
    max-width: 650px;
    z-index: 2;
}

    /* ===============================
   HERO TEXT DESIGN
================================= */

    .content small {
        font-size: 14px;
        letter-spacing: 2px;
        font-weight: 600;
        color: #3bb6ff;
        display: inline-block;
        margin-bottom: 20px;
    }

.hero-title {
    font-size: 45px;
    font-weight: 300px;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 25px;
    width: 1147px;
}

@media(max-width: 992px) {
    .hero-title {
        font-size: 34px;
        max-width: 100%;
    }
}

/* ===== MOBILE ===== */
@media(max-width: 768px) {
    .hero-title {
        font-size: 26px;
        line-height: 1.3;
        max-width: 100%;
    }
}

/* ===== SMALL MOBILE ===== */
@media(max-width: 480px) {
    .hero-title {
        font-size: 22px;
        line-height: 1.4;
    }
}

.hero-title strong {
    font-weight: 800;
    color: #ffffff;
}

/* Paragraph */
.content p {
    font-size: 18px;
    line-height: 1.8;
    color: #e2e8f0;
    max-width: 600px;
    margin-bottom: 35px;
}


/* Button */
.content .btn {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #1e88e5, #00c6ff);
    border-radius: 14px;
    overflow: hidden;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 10px 25px rgba(30,136,229,0.4);
}

    /* Text Part */
    .content .btn span {
        background: #f3f4f6;
        color: #1e2b4f;
        padding: 17px 25px;
    }

    /* Arrow Part */
    .content .btn i {
        padding: 14px 18px;
        color: white;
        font-style: normal;
    }

/* ===== LETTER BY LETTER HERO ANIMATION ===== */
/* LETTER BY LETTER ANIMATION */

.letter-anim span {
    opacity: 0;
    display: inline-block;
    transform: translateY(40px);
    animation: letterFade 0.6s ease forwards;
}

@keyframes letterFade {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* ===== NAVBAR ===== */
/* ================= ULTRA PREMIUM NAVBAR ================= */
/* ================= NAVBAR ================= */

.navbar {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    padding: 18px 8%;
    position: sticky;
    top: 0;
    height: 28px;
    background: rgba(255,255,255,0.9);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    z-index: 1000;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    font-size: 20px;
    font-weight: 600;
    color: #1e2b4f;
    padding-left: 12px;
}

    .logo img {
        width: 119px;
        margin-right: 10px;
        padding-top: 19px;
    }

/* Menu */


.nav-menu li {
    position: relative;
}

.nav-menu a {
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    color: #1e2b4f;
    transition: 0.3s ease;
}

    .nav-menu a:hover {
        color: #1e88e5;
    }

/* Dropdown */
.dropdown-menu {
    position: absolute;
    top: 35px;
    left: 0;
    background: #fff;
    border-radius: 12px;
    padding: 10px 0;
    display: none;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

    .dropdown-menu li {
        margin: 0;
    }

    .dropdown-menu a {
        display: block;
        padding: 10px 20px;
        font-size: 14px;
    }

.dropdown:hover .dropdown-menu {
    display: block;
}

/* Hamburger */
.menu-toggle {
    display: none;
    width: 28px;
    height: 20px;
    cursor: pointer;
    position: relative;
}

    .menu-toggle span {
        position: absolute;
        width: 100%;
        height: 3px;
        background: #1e2b4f;
        border-radius: 3px;
        transition: 0.3s;
    }

        .menu-toggle span:nth-child(1) {
            top: 0;
        }

        .menu-toggle span:nth-child(2) {
            top: 8px;
        }

        .menu-toggle span:nth-child(3) {
            bottom: 0;
        }

/* ================= MOBILE ================= */

@media(max-width: 992px) {

    .navbar {
        padding: 12px 5%;
        height: 65px;
    }

    .logo img {
        width: 119px;
    }

    .menu-toggle {
        display: block;
        z-index: 1001;
    }



    .nav-menu.active {
        right: 0;
    }

    .dropdown-menu {
        position: static;
        display: block;
        box-shadow: none;
        padding-left: 10px;
    }
}

/* Logo */


/* Menu */
.nav-menu li a {
    text-transform: capitalize;
    transition: 0.3s ease;
}

    .nav-menu li a:hover {
        color: #1e88e5;
    }

.nav-menu li {
    position: relative;
}

/* Normal Links */

.nav-menu a {
    text-decoration: none;
    font-size: 15px;
    font-weight: 300;
    color: #1e2b4f;
    padding: 6px 0;
    position: relative;
    transition: 0.3s ease;
}

    /* Animated underline */

    .nav-menu a::before {
        content: "";
        position: absolute;
        bottom: -6px;
        left: 50%;
        width: 0%;
        height: 2px;
        background: linear-gradient(135deg,#1e88e5,#00c6ff);
        transition: 0.4s ease;
        transform: translateX(-50%);
    }

    .nav-menu a:hover::before {
        width: 100%;
    }

    .nav-menu a:hover {
        color: #1e88e5;
    }

/* Dropdown */

.dropdown-menu {
    position: absolute;
    top: 50px;
    left: 0;
    min-width: 230px;
    background: white;
    border-radius: 16px;
    padding: 12px 0;
    box-shadow: 0 25px 60px rgba(0,0,0,0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: 0.4s ease;
}

    .dropdown-menu li {
        margin: 0;
    }

    .dropdown-menu a {
        display: block;
        padding: 10px 20px;
        font-size: 14px;
        color: #444;
    }

        .dropdown-menu a:hover {
            background: #f4f9ff;
            color: #1e88e5;
        }

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* CTA Button */

.nav-cta a {
    background: linear-gradient(135deg,#1e88e5,#00c6ff);
    padding: 10px 22px;
    border-radius: 30px;
    color: white !important;
    font-weight: 600;
    box-shadow: 0 10px 25px rgba(30,136,229,0.4);
    transition: 0.4s ease;
}

    .nav-cta a::before {
        display: none;
    }

    .nav-cta a:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 35px rgba(30,136,229,0.5);
    }

/* Hamburger */

.menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
}

/* ================= MOBILE ================= */

@media(max-width: 992px) {

    .menu-toggle {
        display: block;
    }



    .nav-menu.active {
        right: 0;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding-left: 10px;
    }
}


/* ================= ULTRA NAVBAR EFFECTS ================= */

/* Top animated gradient line */
/*.navbar::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg,#1e88e5,#00c6ff,#1e88e5);
    animation: moveLine 4s linear infinite;
*/

@keyframes moveLine {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

/* Shrink effect */
.navbar.shrink {
    padding: 10px 8%;
    background: rgba(255,255,255,0.95);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

    /* Logo shrink */
    .navbar.shrink .logo img {
        width: 35px;
    }

/* Active link highlight */
.nav-menu a.active {
    color: #1e88e5;
}

    .nav-menu a.active::before {
        width: 100%;
    }

/* Hamburger animation */
.menu-toggle {
    width: 30px;
    height: 22px;
    position: relative;
    cursor: pointer;
}

    .menu-toggle span {
        position: absolute;
        width: 100%;
        height: 3px;
        background: #1e2b4f;
        border-radius: 3px;
        transition: 0.4s ease;
    }

        .menu-toggle span:nth-child(1) {
            top: 0;
        }

        .menu-toggle span:nth-child(2) {
            top: 9px;
        }

        .menu-toggle span:nth-child(3) {
            bottom: 0;
        }

    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg);
        top: 9px;
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg);
        bottom: 10px;
    }

.nav-menu a {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-menu svg {
    transition: 0.3s ease;
}

.nav-menu a:hover svg {
    transform: scale(1.1);
}
/* Logo */


/* Menu */
.nav-menu {
    list-style: none;
    display: flex;
    align-items: center;
}

    .nav-menu li {
        position: relative;
        margin-left: 25px;
    }

    .nav-menu a {
        text-decoration: none;
        color: #2d3559;
        font-weight: 300;
        font-size: 15px;
        transition: 0.3s;
    }

        .nav-menu a:hover {
            color: #1e88e5;
        }

/* Dropdown */
.dropdown-menu {
    display: none;
    position: absolute;
    top: 30px;
    left: 0;
    background: white;
    list-style: none;
    min-width: 180px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    border-radius: 6px;
    padding: 8px 0;
}

    .dropdown-menu li {
        margin: 0;
    }

    .dropdown-menu a {
        display: block;
        padding: 10px 15px;
        font-size: 14px;
    }

        .dropdown-menu a:hover {
            background: #f2f7ff;
        }

.dropdown:hover .dropdown-menu {
    display: block;
}

/* Responsive */
@media(max-width:768px) {
    .nav-menu {
        display: flex; /* Important */
    }
}

.about-section {
    padding: 100px 8%;
    background: #f8fafc;
}

.about-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: wrap;
}

/* Images */
.about-images {
    position: relative;
    /*flex: 1;*/
    min-width: 300px;
}

.img-small {
    width: 250px;
    border-radius: 20px;
    position: absolute;
    top: 0;
    left: 0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.img-large {
    width: 750px;
    border-radius: 25px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Content */
.about-content {
    flex: 1;
    min-width: 320px;
}

.about-tag {
    color: #1e88e5;
    font-weight: 600;
    letter-spacing: 2px;
}

.about-content h2 {
    font-size: 42px;
    margin: 20px 0;
    line-height: 1.3;
}

    .about-content h2 span {
        color: #0d2b45;
        font-weight: 700;
    }

.about-content p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 25px;
}

/* List */
.about-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

    .about-list li {
        margin-bottom: 10px;
        font-weight: 500;
    }

/* Rating box */
.rating-box {
    background: white;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    width: 250px;
    text-align: center;
}

    .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;
    }

    .img-small {
        position: relative;
        margin-bottom: 20px;
    }

    .img-large {
        margin: 0;
    }
}
/* ===== SERVICES SECTION ===== */

.services-section {
    position: relative;
    background: url('https://images.unsplash.com/photo-1581093458791-9d42e6a8b3a1') center/cover no-repeat;
    padding: 120px 8% 200px 8%;
    color: white;
    overflow: hidden;
}

.services-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
}

.services-content {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: wrap;
}

.services-text h2 {
    font-size: 48px;
    line-height: 1.3;
}

.services-text span {
    font-weight: 700;
}

.services-tag {
    letter-spacing: 2px;
    color: #1e88e5;
    font-weight: 600;
}

.services-description {
    max-width: 500px;
}

    .services-description p {
        line-height: 1.7;
        color: #ddd;
    }

/* ===== Floating Card Container ===== */

.services-cards {
    position: absolute;
    bottom: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 85%;
    background: white;
    border-radius: 30px;
    padding: 40px 20px;
    display: flex;
    justify-content: space-between;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    z-index: 3;
    flex-wrap: wrap;
}

.service-box {
    flex: 1;
    min-width: 220px;
    text-align: center;
    padding: 20px;
    border-right: 1px solid #eee;
    transition: 0.3s;
}

    .service-box:last-child {
        border-right: none;
    }

    .service-box .icon {
        font-size: 32px;
        margin-bottom: 15px;
    }

    .service-box h4 {
        font-size: 16px;
        color: #333;
        margin-bottom: 20px;
    }

    .service-box .arrow {
        font-size: 18px;
        color: #1e88e5;
    }

    .service-box:hover {
        transform: translateY(-5px);
    }

/* Responsive */
@media(max-width: 992px) {
    .services-content {
        flex-direction: column;
    }

    .services-cards {
        position: relative;
        bottom: 0;
        transform: none;
        margin-top: 60px;
        flex-direction: column;
    }

    .service-box {
        border-right: none;
        border-bottom: 1px solid #eee;
    }

        .service-box:last-child {
            border-bottom: none;
        }
}
/* ===== SERVICES SECTION ===== */

.services {
    position: relative;
    padding: 10px 188px 205px;
    background-color: black;
    color: white;
}

    .services::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: radial-gradient(#dcdcdc 1px, transparent 1px);
        background-size: 20px 20px;
        opacity: 0.3;
        pointer-events: none;
    }
/* 📱 MOBILE VIEW */
@media(max-width: 992px) {

    .services {
        padding: 80px 205px; /* कमी padding */
        text-align: center;
    }
}

@media(max-width: 768px) {

    .services {
        padding: 60px 198px;
    }
}

@media(max-width: 480px) {

    .services {
        padding: 47px 40px;
    }
}

/* 🔥 LINE CONTROL */
.letter-anim .line {
    display: block;
    white-space: nowrap; /* word break होणार नाही */
}

    /* OPTIONAL spacing */
    .letter-anim .line:last-child {
        margin-top: 5px;
    }

.services-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

/* ===== DESKTOP ===== */
.left h2 {
    font-size: 49px;
    font-weight: 300;
    line-height: 1.2;
}

/* ===== LAPTOP / TABLET ===== */
@media(max-width: 992px) {
    .left h2 {
        font-size: 38px;
        line-height: 1.3;
    }
}

/* ===== MOBILE ===== */
@media(max-width: 768px) {
    .left h2 {
        font-size: 30px;
        line-height: 1.4;
    }
}

/* ===== SMALL MOBILE ===== */
@media(max-width: 480px) {
    .left h2 {
        line-height: 1.4;
    }
}

.left h2 span {
    font-weight: 700;
}

.tag {
    font-size: 14px;
    letter-spacing: 2px;
    color: #3bb6ff;
    font-weight: 600;
}

.right {
    max-width: 500px;
}

    .right p {
        color: #d1d5db;
        line-height: 1.8;
    }

/* ===== FLOATING CARD ===== */

.service-card-wrapper {
    position: absolute;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 85%;
}

.service-card {
    background: #f7f7f7;
    border-radius: 40px;
    padding: 50px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 25px 60px rgba(0,0,0,0.25);
}

.box {
    text-align: center;
    flex: 1;
    padding: 0 25px;
}

.icon {
    font-size: 36px;
    margin-bottom: 20px;
}

.box h4 {
    font-size: 18px;
    font-weight: 500;
    color: #333;
    margin-bottom: 25px;
}



.btn:hover {
    background: #1e88e5;
    color: white;
}

.divider {
    width: 1px;
    height: 140px;
    background: #e0e0e0;
}

/* ===== RESPONSIVE ===== */
/* ===== STORY SECTION ===== */

.story-section {
    padding: 120px 8%;
    background: #f9fafb;
}

.story-container {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

/* LEFT IMAGE */
.story-left {
    flex: 1;
}

.main-img {
    width: 100%;
    border-radius: 40px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* RIGHT SIDE */
.story-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Small images */
.top-images {
    display: flex;
    gap: 20px;
}

    .top-images img {
        width: 48%;
        border-radius: 25px;
    }

/* Text */
.story-right p {
    color: #666;
    line-height: 1.8;
    font-size: 16px;
}

/* Stats */
.stats-section {
    display: flex;
    gap: 20px;
}

.stat-card {
    background: #ffffff;
    padding: 20px 16px;
    border-radius: 12px;
    text-align: center;
    min-width: 120px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

    .stat-card h3 {
        font-size: 28px;
        font-weight: 700;
        margin-bottom: 5px;
        background: linear-gradient(135deg,#1e88e5,#00c6ff);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .stat-card p {
        font-size: 13px;
        color: #555;
    }

/* ===== MOBILE RESPONSIVE ===== */

@media(max-width:992px) {

    .story-container {
        flex-direction: column;
        gap: 40px;
    }

    .top-images {
        flex-direction: column;
    }

        .top-images img {
            width: 100%;
        }

    .stats-section {
        justify-content: flex-start;
    }
}
/* ===== WHAT WE DO SECTION ===== */

.what-section {
    display: flex;
    min-height: 81vh;
    background: #0f1117;
    color: white;
    position: relative;
    overflow: hidden;
    padding-left: 70px;
    padding-right: 70px;
    padding-top: 20px;
}

    .what-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: radial-gradient(#dcdcdc 1px, transparent 1px);
        background-size: 20px 20px;
        opacity: 0.3;
        pointer-events: none;
    }



/* LEFT SIDE */
.what-left {
    flex: 1;
}

.what-tag {
    color: #3bb6ff;
    font-size: 14px;
    letter-spacing: 2px;
    font-weight: 600;
}

.what-left h2 {
    font-size: 54px;
    font-weight: 300;
    margin: 25px 0 50px;
    line-height: 1.2;
}

    .what-left h2 span {
        font-weight: 700;
    }

/* Cards */
.what-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.what-card {
    background: rgba(0, 0, 0, 0.65);
    padding: 30px;
    border-radius: 25px;
    border: 1px solid rgba(255,255,255,0.08);
}

    .what-card.dark {
        background: rgba(0, 0, 0, 0.65);
    }

    .what-card h4 {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .what-card p {
        font-size: 14px;
        line-height: 1.7;
        color: #cbd5e1;
    }

/* CTA */
.what-cta {
    margin-top: 40px;
    font-size: 14px;
}

    .what-cta strong {
        color: white;
    }

.icon i {
    font-size: 38px;
    color: #1e88e5;
    transition: 0.4s ease;
}

.box:hover .icon i {
    transform: scale(1.15) rotate(8deg);
    color: #1565c0;
}
/* RIGHT IMAGE */
.what-right {
    flex: 1;
}

    .what-right img {
        width: 100%;
        height: 89%;
        object-fit: cover;
        border-radius: 25px;
    }

/* Floating Contact Circle */


/* Responsive */
@media(max-width: 992px) {
    .what-section {
        flex-direction: column;
    }

    .what-left h2 {
        font-size: 36px;
    }

    .what-cards {
        grid-template-columns: 1fr;
    }

    .contact-circle {
        display: none;
    }
}

/* ===== SECTOR SECTION ===== */

.sector-section {
    padding: 36px 8%;
    background: #ffffff;
}

/* Header */
.sector-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    margin-bottom: 40px;
}

.sector-title h2 {
    font-size: 52px;
    font-weight: 300;
    line-height: 1.2;
}

    .sector-title h2 span {
        font-weight: 700;
    }

.sector-desc {
    max-width: 500px;
}

    .sector-desc p {
        color: #6b7280;
        line-height: 1.7;
    }

/* Filter Menu */
.sector-filter {
    margin: 30px 0 60px;
    text-align: center;
    font-size: 14px;
}

    .sector-filter a {
        color: #333;
        text-decoration: none;
        margin: 0 10px;
    }

        .sector-filter a.active {
            color: #1e88e5;
            font-weight: 600;
        }

    .sector-filter span {
        color: #999;
    }

/* Grid */
.sector-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

/* Card */
.sector-card {
    text-align: center;
}

    .sector-card img {
        width: 100%;
        border-radius: 35px;
        height: 260px;
        object-fit: cover;
        transition: 0.3s ease;
    }

        .sector-card img:hover {
            transform: scale(1.03);
        }

    .sector-card h4 {
        margin-top: 18px;
        font-size: 18px;
        font-weight: 500;
    }

/* Responsive */
@media(max-width: 992px) {

    .sector-header {
        flex-direction: column;
    }

    .sector-title h2 {
        font-size: 36px;
    }

    .sector-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== CLIENT SECTION ===== */

.client-section {
    padding: 120px 8%;
    background-color: #000000;
    position: relative;
    overflow: hidden;
}

    /* subtle dotted world style effect */
    .client-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: radial-gradient(#dcdcdc 1px, transparent 1px);
        background-size: 20px 20px;
        opacity: 0.3;
        pointer-events: none;
    }

.client-container {
    display: flex;
    align-items: center;
    gap: 80px;
    position: relative;
    z-index: 2;
}

/* Image */
.client-image {
    flex: 1;
}

    .client-image img {
        width: 100%;
        border-radius: 25px;
        object-fit: cover;
    }

/* Content */
.client-content {
    flex: 1;
}

.client-tag {
    font-size: 14px;
    letter-spacing: 2px;
    color: #ffffff;
    font-weight: 600;
}

.client-content h2 {
    font-size: 52px;
    font-weight: 300;
    margin: 25px 0;
    line-height: 1.2;
    color: #ffffff;
}

    .client-content h2 span {
        font-weight: 700;
    }

.client-text {
    color: #6b7280;
    font-size: 16px;
    line-height: 1.7;
    max-width: 500px;
    color: #ffffff;
}

/* Buttons */
.content .btn {
    display: inline-flex;
    align-items: center;
    border-radius: 14px;
    overflow: hidden;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 10px 25px rgba(30,136,229,0.4);
}

    /* Left text part */
    .content .btn span {
        white-space: nowrap; /* 👈 Important */
    }

    /* Right arrow part */
    .content .btn i {
        padding: 14px 18px;
        color: white;
        font-style: normal;
    }
/* Responsive */
@media(max-width: 992px) {

    .client-container {
        flex-direction: column;
        gap: 50px;
    }

    .client-content h2 {
        font-size: 36px;
    }
}

/* ===== CTA + FOOTER ===== */

.cta-footer {
    background: #000000;
    padding: 0px 8% 40px;
    position: relative;
    color: white;
}

/* CTA Top */
.cta-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.cta-text h2 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 10px;
}

.cta-text p {
    color: #ffffff;
}



/* Divider */
.footer-line {
    border: none;
    height: 1px;
    background: #ddd;
    margin: 40px 0;
}

/* Footer Layout */
.footer-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
}

.footer-col img {
    margin-bottom: 15px;
    background: #ffffff;
    border-radius: 15px;
}

.footer-col h4 {
    font-weight: 600;
    margin-bottom: 10px;
}

.footer-col h3 {
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

    .footer-col ul li {
        margin-bottom: 10px;
        color: #ffffff;
        font-size: 14px;
    }

.footer-col ul {
    list-style: none;
    padding: 0;
}

    .footer-col ul li {
        margin-bottom: 10px;
    }

        .footer-col ul li a {
            text-decoration: none;
            color: #444;
            transition: 0.3s;
        }

            .footer-col ul li a:hover {
                color: #1e88e5;
            }

/* Bottom */
.footer-bottom {
    text-align: center;
    color: #ffffff;
    font-size: 14px;
    margin-top: 20px;
}

/* Responsive */
@media(max-width: 992px) {

    .cta-top {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}
/* ===============================
   PREMIUM SERVICE CARD DESIGN
================================= */

@media(max-width: 992px) {

    .service-card-wrapper {
        position: relative;
        left: 20px;
        transform: none;
        width: 65%;
        padding: 0 20px;
    }

    .service-card {
        width: 100%;
        border-radius: 25px;
    }
}

.service-card {
    display: flex;
    background: #ffffff;
    border-radius: 25px;
    padding: 40px 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    transition: 0.4s ease;
    position: relative;
    overflow: hidden;
}

    /* subtle glow background */
    .service-card::before {
        content: "";
        position: absolute;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle at top right, rgba(30,136,229,0.08), transparent 60%);
        top: -50%;
        right: -50%;
        transition: 0.6s ease;
    }

    .service-card:hover::before {
        top: -30%;
        right: -30%;
    }

/* Divider line */
.divider {
    width: 1px;
    background: #eaeaea;
    margin: 0 25px;
}

/* Box */
.box {
    text-align: center;
    transition: 0.4s ease;
    cursor: pointer;
}

    .box:hover {
        transform: translateY(-10px);
    }

/* Icon */
.icon {
    font-size: 40px;
    margin-bottom: 15px;
    display: inline-block;
    transition: 0.4s ease;
}

.box:hover .icon {
    transform: rotate(10deg) scale(1.1);
}

/* Heading */
.box h4 {
    font-size: 16px;
    font-weight: 600;
    color: #222;
    margin-bottom: 20px;
}

/* Arrow Button */
.box .btn {
    width: 45px;
    height: 45px;
    margin: auto;
    border-radius: 12px;
    background: linear-gradient(135deg, #1e88e5, #1565c0);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: 0.3s ease;
}

.box:hover .btn {
    transform: translateX(5px);
    box-shadow: 0 10px 20px rgba(30,136,229,0.3);
}

/* Responsive */
@media(max-width: 992px) {
    .service-card {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .divider {
        display: none;
    }
}
/* ================= MOBILE RESPONSIVE ================= */

/* ================= SIDE DRAWER MOBILE MENU ================= */

.menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
}

/* Overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    z-index: 998;
}

    /* Only visible when active */
    .menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }

/* Mobile Drawer */
@media(max-width:992px) {

    .menu-toggle {
        display: block;
        z-index: 1001;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -300px; /* Hidden initially */
        width: 280px;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        padding: 80px 25px;
        transition: 0.4s ease;
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
        z-index: 999;
    }

        .nav-menu li {
            margin: 20px 0;
        }

        .nav-menu.active {
            right: 0; /* Slide in */
        }

    .menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }
}

@media(max-width:992px) {


    element.style {
    }

    @media (max-width: 992px) {
        .nav-menu {
            position: fixed;
            top: -15px;
            left: -14px;
            width: 100%;
            height: 46vh;
            background: #ffffff;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 2px;
            clip-path: inset(0 0 100% 0);
            opacity: 0;
            transition: clip-path 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
            z-index: 999;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
        }
    }

    .nav-menu.active {
        clip-path: inset(0 0 0 0);
        opacity: 1;
    }

    /* Menu items smooth fade */
    .nav-menu li {
        opacity: 0;
        transform: translateY(15px);
        transition: 0.4s ease;
    }

    .nav-menu.active li {
        opacity: 1;
        transform: translateY(0);
    }

        .nav-menu.active li:nth-child(1) {
            transition-delay: .1s;
        }

        .nav-menu.active li:nth-child(2) {
            transition-delay: .15s;
        }

        .nav-menu.active li:nth-child(3) {
            transition-delay: .2s;
        }

        .nav-menu.active li:nth-child(4) {
            transition-delay: .25s;
        }

        .nav-menu.active li:nth-child(5) {
            transition-delay: .3s;
        }

        .nav-menu.active li:nth-child(6) {
            transition-delay: .35s;
        }
}
/* HERO MOBILE */
@media(max-width:768px) {

    .slider {
        height: 90vh;
    }

    .slide {
        height: 90vh;
    }

    .content {
        left: 5%;
        right: 5%;
        max-width: 100%;
    }

    .hero-title {
        font-size: 21px;
        line-height: 1.3;
    }

    .content p {
        font-size: 14px;
    }
}

/* ABOUT MOBILE */
@media(max-width:992px) {

    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .img-small,
    .img-large {
        position: static;
        width: 100%;
        margin: 10px 0;
    }
}

/* SERVICES MOBILE */
@media(max-width:992px) {

    .services-inner {
        flex-direction: column;
    }

    .service-card {
        flex-direction: column;
        padding: 30px;
    }

    .divider {
        display: none;
    }
}

/* STORY MOBILE */
@media(max-width:992px) {

    .story-container {
        flex-direction: column;
    }

    .top-images {
        flex-direction: column;
    }

        .top-images img {
            width: 96%;
        }
}

/* WHAT SECTION MOBILE */
@media(max-width:992px) {

    .what-section {
        flex-direction: column;
    }

    .what-cards {
        grid-template-columns: 1fr;
    }

    .what-right {
        height: 300px;
    }
}

/* SECTOR MOBILE */
@media(max-width:992px) {

    .sector-grid {
        grid-template-columns: 1fr;
    }
}

/* CLIENT MOBILE */
@media(max-width:992px) {

    .client-container {
        flex-direction: column;
        text-align: center;
    }
}

/* FOOTER MOBILE */
@media(max-width:992px) {

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

.section {
    padding-left: 15px;
    padding-right: 15px;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.icon-circle {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 10px 25px rgb(0 0 0 / 93%), inset 0 0 15px rgb(255 255 255 / 60%);
    transition: all 0.4s ease;
}

    .icon-circle svg {
        width: 36px;
        height: 36px;
        stroke: #1e88e5;
        stroke-width: 1.8;
        transition: 0.4s ease;
    }

.box:hover .icon-circle {
    transform: translateY(-8px) scale(1.08);
    box-shadow: 0 20px 45px rgba(30,136,229,0.35), inset 0 0 20px rgba(255,255,255,0.8);
}

    .box:hover .icon-circle svg {
        stroke: #1565c0;
    }




/* product page code */
/* ================= PRODUCT HERO ================= */

.product-hero {
    height: 50vh;
    background: url('../images/pharma4.jpg') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.product-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
}

.product-hero-content {
    position: relative;
    z-index: 2;
}

.product-hero h1 {
    font-size: 50px;
    margin-bottom: 10px;
}

.product-hero span {
    color: #3bb6ff;
}



/* ================= PRODUCTS ================= */

.products-section {
    padding: 120px 8%;
    background: #f9fafb;
}

.products-header {
    text-align: center;
    margin-bottom: 60px;
}

    .products-header h2 {
        font-size: 42px;
        margin: 15px 0;
    }

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
    gap: 30px;
}

.product-card {
    background: #fff;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
}

    .product-card img {
        width: 94%;
        height: 180px;
        object-fit: contain;
        background: white;
        border-radius: 23px;
        padding: 8px;
        border: solid 1px;
    }

    .product-card h3 {
        font-size: 18px;
        margin-top: 15px;
    }

    .product-card p {
        font-size: 14px;
        flex-grow: 1;
    }



/* ================= RESPONSIVE ================= */

@media(max-width:992px) {

    .products-grid {
        grid-template-columns: repeat(2,1fr);
    }
}

@media(max-width:600px) {

    .products-grid {
        grid-template-columns: 1fr;
    }

    .product-hero h1 {
        font-size: 32px;
    }
}



/* ================= contact page code ================= */

/* ================= CONTACT HERO ================= */

/* ================= CONTACT SECTION ================= */

.contact-section {
    padding: 100px 8%;
    background: #f8fafc;
}

.contact-header {
    text-align: center;
    margin-bottom: 50px;
}

    .contact-header h2 {
        font-size: 42px;
        margin-bottom: 10px;
    }

    .contact-header p {
        color: #666;
    }


/* ================= CONTACT INFO ================= */

.contact-info {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 60px;
}

.info-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    width: 260px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: 0.3s;
}

    .info-card:hover {
        transform: translateY(-5px);
    }

    .info-card i {
        font-size: 28px;
        color: #1e88e5;
        margin-bottom: 10px;
    }

    .info-card h4 {
        margin-bottom: 8px;
    }

    .info-card p {
        font-size: 14px;
        color: #555;
    }


/* ================= CONTACT LAYOUT ================= */



/* ================= CONTACT HERO ================= */

/* ================= CONTACT HERO ================= */

.contact-hero-banner {
    height: 45vh;
    background: url('../images/pharma4.jpg') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 0 20px;
}

.contact-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( 90deg, rgba(0,0,0,0.85) 15%, rgba(0,0,0,0.6) 40%, rgba(0,0,0,0.3) 65%, rgba(0,0,0,0.05) 90% );
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

    .contact-hero-content h1 {
        font-size: 48px;
        font-weight: 600;
        margin-bottom: 10px;
    }

    .contact-hero-content span {
        color: #3bb6ff;
    }

    .contact-hero-content p {
        font-size: 16px;
        color: #e2e8f0;
        line-height: 1.6;
    }


/* ================= CONTACT SECTION ================= */

.contact-section {
    padding: 100px 8%;
    background: #f8fafc;
}


/* HEADER */

.contact-header {
    text-align: center;
    margin-bottom: 50px;
}

    .contact-header h2 {
        font-size: 40px;
        margin-bottom: 10px;
    }

    .contact-header p {
        color: #666;
        max-width: 600px;
        margin: auto;
    }


/* ================= CONTACT INFO ================= */

.contact-info {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 60px;
    flex-wrap: wrap;
    margin-top: 41px;
}

.info-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    width: 260px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: .3s;
}

    .info-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    }

    .info-card i {
        font-size: 28px;
        color: #1e88e5;
        margin-bottom: 10px;
    }

    .info-card h4 {
        margin-bottom: 8px;
        font-size: 18px;
    }

    .info-card p {
        font-size: 14px;
        color: #555;
        line-height: 1.6;
    }


/* ================= CONTACT LAYOUT ================= */

.contact-container {
    display: flex;
    gap: 40px;
    align-items: stretch;
    max-width: 1200px;
    margin: auto;
}


/* MAP */

.contact-map {
    flex: 1;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

    .contact-map iframe {
        width: 100%;
        height: 100%;
        min-height: 420px;
        border: 0;
    }


/* ================= CONTACT FORM ================= */

.contact-form {
    flex: 1;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

    .contact-form h3 {
        margin-bottom: 20px;
        font-size: 24px;
    }

    .contact-form input,
    .contact-form textarea {
        width: 92%;
        padding: 12px 14px;
        border: 1px solid #ddd;
        border-radius: 8px;
        margin-bottom: 15px;
        font-size: 14px;
        transition: .3s;
    }

        .contact-form input:focus,
        .contact-form textarea:focus {
            outline: none;
            border-color: #1e88e5;
            box-shadow: 0 0 0 2px rgba(30,136,229,0.1);
        }

    .contact-form textarea {
        height: 120px;
        resize: none;
    }

.form-group {
    display: flex;
    gap: 10px;
}


/* BUTTON */

.contact-form button {
    background: linear-gradient(135deg,#1e88e5,#00c6ff);
    border: none;
    padding: 12px 25px;
    color: white;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: .3s;
}

    .contact-form button:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(30,136,229,0.35);
    }


/* ================= TABLET ================= */

@media(max-width:992px) {

    .contact-container {
        flex-direction: column;
    }

    .form-group {
        flex-direction: column;
    }

    .contact-info {
        flex-direction: column;
        align-items: center;
    }

    .contact-map iframe {
        min-height: 300px;
    }
}


/* ================= MOBILE ================= */

@media(max-width:768px) {

    .contact-hero-content h1 {
        font-size: 30px;
    }

    .contact-hero-banner {
        height: 35vh;
    }

    .contact-header h2 {
        font-size: 26px;
    }

    .contact-section {
        padding: 60px 20px;
    }

    .info-card {
        width: 100%;
        max-width: 320px;
    }

    .contact-form {
        padding: 25px;
    }
}


/* ================= industry ================= */
.industry-hero {
    height: 50vh;
    background: url('../images/pharma4.jpg') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.industry-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
}

.industry-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

    .industry-content h1 {
        font-size: 48px;
        margin-bottom: 10px;
    }

    .industry-content span {
        color: #3bb6ff;
    }

.industry-section {
    padding: 100px 8%;
    background: #f8fafc;
}

.industry-header {
    text-align: center;
    margin-bottom: 50px;
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
    gap: 30px;
}

.industry-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: .3s;
}

    .industry-card:hover {
        transform: translateY(-8px);
    }

    .industry-card img {
        width: 100%;
        height: 180px;
        object-fit: cover;
    }

    .industry-card h3 {
        padding: 15px;
        font-size: 20px;
    }

    .industry-card p {
        padding: 0 15px 20px;
        font-size: 14px;
        color: #555;
    }

.industry-cta {
    text-align: center;
    padding: 80px 20px;
    background: #1e88e5;
    color: white;
}


/* ================= footer icon ================= */
.social-icons {
    margin-top: 20px;
    display: flex;
    gap: 15px;
   
    justify-content: center;
}

    .social-icons a {
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: #222;
        color: white;
        font-size: 18px;
        transition: 0.3s;
        text-decoration: none;
    }

        .social-icons a:hover {
            background: #1e88e5;
            transform: translateY(-3px);
        }

/* ================= footer icon ================= */

.footer-col ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 14px;
    color: #ffffff;
}

    .footer-col ul li i {
        color: white;
        background: #000000;
        width: 22px;
        height: 22px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        font-size: 11px;
    }

    .footer-col ul li a {
        text-decoration: none;
        color: #ffffff;
        display: flex;
        align-items: center;
        gap: 10px;
    }

        .footer-col ul li a:hover {
            color: #1e88e5;
        }



.contact-form {
    background: #ffffff;
    padding: 81px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    max-width: 520px;
    margin: auto;
}

    .contact-form h3 {
        font-size: 24px;
        margin-bottom: 20px;
        color: #1e2b4f;
    }

    .contact-form form {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

.form-group {
    display: flex;
    gap: 10px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    transition: 0.3s;
    outline: none;
}

    .contact-form input:focus,
    .contact-form textarea:focus {
        border-color: #1e88e5;
        box-shadow: 0 0 0 2px rgba(30,136,229,0.1);
    }

.contact-form textarea {
    resize: none;
}

.contact-form button {
    background: linear-gradient(135deg,#1e88e5,#00c6ff);
    border: none;
    padding: 12px;
    color: white;
    font-size: 15px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
}

    .contact-form button:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 18px rgba(0,0,0,0.15);
    }

.form-success {
    display: none;
    background: #d4edda;
    color: #155724;
    padding: 10px 15px;
    border-radius: 6px;
    border: 1px solid #c3e6cb;
    margin-bottom: 15px;
    font-size: 14px;
}

@media(max-width:768px) {

    .form-group {
        flex-direction: column;
    }
}


.login-btn-nav {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg,#1e88e5,#00c6ff);
    padding: 8px 18px;
    border-radius: 25px;
    color: white !important;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: 0.3s ease;
}

    .login-btn-nav i {
        font-size: 14px;
    }

    .login-btn-nav:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(30,136,229,0.4);
    }
.address-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

    .address-item i {
        color: #ff5722; /* optional color */
        font-size: 18px;
        margin-top: 4px;
    }

    .address-item p {
        margin: 0;
    }