/* 
    ARVIND KUMAR DUBEY & ASSOCIATES - Premium Tax & Legal Consultancy
    Theme: Dark Navy, Professional Gold Accents
    Style: Premium, Corporate, Law Firm Elegant
*/

:root {
    --primary-color: #0A2540;
    /* Dark Navy Blue - Primary */
    --primary-dark: #051a2f;
    /* Even darker navy */
    --secondary-color: #1F3C88;
    /* Professional secondary blue */
    --accent-color: #D4AF37;
    /* Premium Gold */
    --text-color: #111827;
    /* Deep charcoal for text */
    --text-light: #6B7280;
    /* Medium gray for secondary text */
    --white: #ffffff;
    --bg-light: #F5F7FA;
    /* Clean light background */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow: 0 10px 30px rgba(10, 37, 64, 0.1);
    --shadow-hover: 0 20px 50px rgba(10, 37, 64, 0.15);
    --border-radius: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-light);
    overflow-x: hidden;
}

p {
    font-size: 14px;
}

h2 {
    font-size: 36px;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 30px 0;
}

.text-center {
    text-align: center;
}

.section-title {
    margin-bottom: 20px;
}

.section-title span {
    color: var(--accent-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

.section-title h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 15px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--accent-color);
}

.section-title.text-center h2::after {
    left: 50%;
}

/* .about .section-title h2::after {
    left: 0;
    transform: none;
} */

/* Button Styles */
.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 400;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
    line-height: 20px;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    background-color: #c9a62a;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.btn-text {
    color: var(--primary-color);
    font-weight: 600;
    position: relative;
}

.btn-text::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.btn-text:hover::after {
    width: 100%;
}

/* Topbar Section */
.topbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 35px;
    z-index: 1001;
    background: linear-gradient(90deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    color: var(--white);
    font-size: 13px;
    font-weight: 500;
    border-bottom: 1px solid var(--accent-color);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.topbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.topbar-left {
    display: flex;
    gap: 25px;
}

.topbar-left a {
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    text-decoration: none;
    letter-spacing: 0.5px;
}

.topbar-left a i {
    color: var(--accent-color);
    font-size: 14px;
}

.topbar-left a:hover {
    color: var(--accent-color);
}

.topbar-right {
    display: flex;
    gap: 15px;
    align-items: center;
}

.topbar-right a {
    color: var(--white);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.topbar-right a:hover {
    color: var(--accent-color);
    transform: translateY(-2px);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 35px;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 10px 0;
    transition: var(--transition);
    background:rgb(255 255 255 / 84%);
    /* transparent white */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    /* Safari support */
    border: none;
}

.navbar.sticky {
    top: 0;
    background: var(--white);
    padding: 5px 0;
    box-shadow: var(--shadow);
    border-bottom: 2px solid var(--accent-color);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
   
}

.logo img {
    width: 50px;
    height:auto;
}

.logo a {
    font-size: 26px;
    font-weight: 700;
    color: #1570a2;
    letter-spacing: 1px;
     display: flex;
    align-items: center;
    gap: 8px;
}

.navbar.sticky .logo a {
    color: var(--primary-color);
}

.logo span {
    color: var(--accent-color);
}

.navbar.sticky .logo span {
    color: var(--accent-color);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: #0f3963;
    font-weight: 500;
    font-size: 15px;
}

.navbar.sticky .nav-links a {
    color: var(--text-color);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent-color);
    position: relative;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent-color);
    transition: var(--transition);
}

.navbar.sticky .nav-links a:hover,
.navbar.sticky .nav-links a.active {
    color: var(--primary-color);
}

.navbar.sticky .nav-links a:hover::after,
.navbar.sticky .nav-links a.active::after {
    background: var(--primary-color);
}

.menu-toggle {
    display: none;
    color: #000;
    font-size: 24px;
    cursor: pointer;
}

.navbar.sticky .menu-toggle {
    color: var(--text-color);
}

/* Hero Section */
.hero {
    height: 75vh;
    position: relative;
    display: flex;
    align-items: center;
    color: var(--white);
    overflow: hidden;
    background: #0d47a1;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/herobanner.jpg') no-repeat center center/cover;
    animation: zoomInOut 20s linear infinite alternate;
    z-index: 0;
}

@keyframes zoomInOut {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.15);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(135deg, rgba(10, 37, 64, 0.15) 0%, rgba(33, 150, 243, 0.1) 100%); */
    z-index: 1;
    background: rgb(10 37 64 / 35%);
}

.relative-z {
    position: relative;
    z-index: 2;
}

.hero .container {
    padding-top: 80px;
    width: 100%;
}

.hero-content {
    max-width: 670px;
    text-align: left;
    /* margin: 0 auto; */
}

.hero-badge {
    display: inline-block;
    padding: 6px 14px;
    background: #051a2f;
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 50px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    animation: fadeInDown 1s ease;
    backdrop-filter: blur(5px);
    color: var(--accent-color);
}

.hero h1 {
    font-size: 45px;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.1;
    animation: fadeInUp 1s ease 0.2s both;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.hero h1 span {
    color: #f3cc50;
    display: block;
    font-size: 38px;
    font-weight: 600;
    text-shadow: 0 0 15px #000;
}

.hero h3 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #fff;
    ;
    animation: fadeInUp 1s ease 0.4s both;
    text-shadow: 0 0 15px #000;
}

.hero p {
    font-size: 18px;
    margin-bottom: 35px;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.6s both;
    color: #000;
}

.hero-btns {
    display: flex;
    justify-content: start;
    gap: 20px;
    animation: fadeInUp 1s ease 0.8s both;
}

.btn-outline {
    background: #051a2f;
    border: 2px solid #d4af37;
    color: #d4af37;
    display: inline-block;
    padding: 10px 20px;
    border-radius: 50px;
    /* font-weight: 600; */
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn-outline:hover {
    background: var(--accent-color);
    color: var(--primary-color);
    border-color: var(--accent-color);
    transform: translateY(-3px);
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Services Scrolling Banner Section */
.services-scroll-banner {
    background: var(--primary-color);
    padding: 2px 0;
    position: relative;
    overflow: hidden;
}

.services-scroll-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}

.services-scroll-track {
    display: flex;
    gap: 30px;
    animation: scrollServices 50s linear infinite;
    padding: 0px 20px;
    will-change: transform;
}

.scroll-service-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0;
    min-width: auto;
    text-align: center;
    flex-shrink: 0;
    padding: 8px 0;
    transition: var(--transition);
    white-space: nowrap;
}

.scroll-service-item:hover {
    transform: none;
}

.scroll-service-icon {
    width: 0px;
    height: 0px;
    background: transparent;
    border-radius: 8px;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--accent-color);
    transition: var(--transition);
    border: none;
}

.scroll-service-item:hover .scroll-service-icon {
    background: transparent;
    color: var(--accent-color);
    border-color: transparent;
    transform: scale(1);
}

.scroll-service-name {
    font-size: 13px;
    font-weight: 400;
    color: #f5f7faa8;
    margin: 0;
    letter-spacing: 1px;
    line-height: 1.2;
    text-transform: uppercase;
}

.scroll-service-name::before {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    background: var(--accent-color);
    border-radius: 50%;
    margin-right: 10px;
}

@keyframes scrollServices {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Stop animation on hover for services scroll */
.services-scroll-track:hover {
    animation-play-state: paused;
}

/* Responsive Services Scroll */
@media (max-width: 1024px) {
    .services-scroll-track {
        gap: 25px;
        animation: scrollServices 45s linear infinite;
    }
}

@media (max-width: 768px) {
    .scroll-service-item {
        min-width: auto;
        padding: 8px 0;
        gap: 0;
    }

    .scroll-service-name {
        font-size: 12px;
    }

    .services-scroll-track {
        gap: 20px;
        animation: scrollServices 40s linear infinite;
    }
}

@media (max-width: 480px) {
    .scroll-service-name {
        font-size: 11px;
        font-weight: 600;
    }

    .services-scroll-track {
        gap: 15px;
        animation: scrollServices 35s linear infinite;
    }
}

.team-minds {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #102845 0%, rgba(10, 37, 64, 0.96) 45%, rgba(33, 150, 243, 0.08) 100%);
    color: var(--white);
}

.team-minds::before {
    content: '';
    position: absolute;
    width: 460px;
    height: 460px;
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.32), transparent 55%);
    top: -140px;
    right: -140px;
    filter: blur(28px);
    pointer-events: none;
}

.team-minds::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 200px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent);
    bottom: 0;
    left: 0;
    pointer-events: none;
}

.team-minds .section-title span {
    color: rgba(212, 175, 55, 0.95);
}

.team-minds .section-title h2 {
    color: var(--white);
    font-size: 36px;
    line-height: 1.1;
    max-width: 900px;
    margin: 0 auto;
}

.team-minds .services-subtitle {
    color: rgba(255, 255, 255, 0.86);
    max-width: 100%;
    margin: 0 auto;
    line-height: 1.9;
    /* font-size: 16px; */
}

.team-minds-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
    margin-top: 40px;
    position: relative;
    z-index: 1;
}

.team-minds-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 15px;
    padding: 20px;
    backdrop-filter: blur(18px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
    animation: fadeInUpSmall 0.9s ease forwards;
    opacity: 0;
    transform: translateY(24px);
}

.team-minds-card:nth-child(1) {
    animation-delay: 0.2s;
}

.team-minds-card:nth-child(2) {
    animation-delay: 0.35s;
}

.team-minds-card:hover {
    transform: translateY(-12px) scale(1.01);
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.26);
    border-color: rgba(212, 175, 55, 0.32);
}

.team-minds-card h3 {
    font-size: 24px;
    color: #ffffff;
    margin-bottom: 4px;
}

.team-minds-card p {
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.85;
    /* font-size: 14px; */
}

@keyframes fadeInUpSmall {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 900px) {
    .team-minds-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .team-minds {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .team-minds .section-title h2 {
        font-size: 28px;
    }

    .team-minds-card {
        padding: 28px;
    }

    .team-minds-card h3 {
        font-size: 20px;
    }
}


/* About Section Redesign - Modern */
.about {
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
    z-index: 1;
    background: #fff;
}

/* Background Animations */
.about-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    animation: floatShape 20s infinite ease-in-out;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: rgba(33, 150, 243, 0.15);
    top: -100px;
    left: -100px;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: rgba(49, 49, 49, 0.1);
    bottom: -50px;
    right: -50px;
    animation-delay: -10s;
}

@keyframes floatShape {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-50px) scale(1.1);
    }
}

.about-grid-modern {
    display: grid;
    grid-template-columns: 1.2fr 0.85fr;
    gap: 40px;
    align-items: stretch;
}

.about-intro-modern .section-title {
    text-align: left;
    max-width: 620px;
}

.about-intro-modern .section-title h2::after {
    left: 0;
    transform: none;
}

.about-lead {
    /* font-size: 18px; */
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 24px;
    border-left: 4px solid var(--accent-color);
    padding-left: 16px;
}

.about-intro-modern p {
    /* font-size: 16px; */
    color: var(--text-light);
    margin-bottom: 18px;
    line-height: 1.8;
}

.about-content-card {
    /* background: var(--white);
    border-radius: 30px; */
    /* padding: 36px; */
    /* box-shadow: var(--shadow);
    border: 1px solid rgba(10, 37, 64, 0.05); */
    position: relative;
    z-index: 2;
}

.about-content-card::before {
    content: '';
    position: absolute;
    top: -24px;
    right: -24px;
    width: 120px;
    height: 120px;
    background: rgba(212, 175, 55, 0.12);
    border-radius: 50%;
    z-index: -1;
}

.about-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin: 24px 0 10px;
}

.about-highlights-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 28px;
}

.highlight-item {
    background: linear-gradient(180deg, rgba(33, 150, 243, 0.08), #ffffff);
    border: 1px solid rgba(33, 150, 243, 0.16);
    border-radius: 0px;
    padding: 15px;
    text-align: center;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
}

.highlight-item span {
    display: block;
    font-size: 25px;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.highlight-item p {
    font-size: 12px;
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.about-cards-modern {
    display: grid;
    gap: 24px;
}

.modern-card {
    width: 100%;
}



.stat-box {
    text-align: center;
    width: 40%;
    padding: 19px;
    background: #fff;
    min-height: 130px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    box-shadow: 0px 0px 22px #ccc;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.stat-box h4 {
    font-size: 36px;
    font-weight: 800;
    color: var(--accent-color);
    line-height: 1;
    margin-bottom: 5px;
}

.stat-box p {
    font-size: 13px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    margin: 0;
    letter-spacing: 1px;
}

/* Right Cards */
.about-right-column {
    display: grid;
    gap: 24px;
}

.about-cards-modern {
    display: grid;
    gap: 24px;
}

.about-values-card {
    display: grid;
    gap: 24px;
    margin-top: 32px;
    width: 100%;
}

.about-values-card .modern-card {
    width: 100%;
}

.modern-card {
    background: var(--white);
    padding: 20px 35px;
    border-radius: 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.02);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    z-index: 1;
    width: 100%;
}

.modern-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 45px rgba(33, 150, 243, 0.1);
}

.modern-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--accent-color);
}

.standing-card::before {
    background: var(--primary-color);
}

.card-top {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.card-icon {
    width: 35px;
    height: 35px;
    background: rgba(212, 175, 55, 0.15);
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    font-size: 16px;
    margin-bottom: 0;
    flex-shrink: 0;
}

.standing-card .card-icon {
    background: rgba(10, 37, 64, 0.1);
    color: var(--primary-color);
}

.modern-card h3 {
    font-size: 17px;
    color: var(--primary-color);
    margin-bottom: 0;
}

.modern-card p {
    /* font-size: 15px; */
    color: var(--text-light);
    line-height: 1.6;
    /* margin-bottom: 20px; */
}

.expertise-list-modern {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.expertise-list-modern li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: var(--text-color);
}

.expertise-list-modern li i {
    color: var(--accent-color);
    margin-top: 3px;
}

.client-shoutout-modern {
    background: #f8fbfe;
    padding: 15px;
    border-radius: 8px;
    font-size: 13px;
    color: var(--text-color);
    line-height: 1.6;
}

.client-shoutout-modern strong {
    color: var(--secondary-color);
    display: block;
    margin-bottom: 5px;
}

/* Responsive Modern About */
@media (max-width: 992px) {
    .about-grid-modern {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-intro-modern .section-title {
        text-align: center;
    }

    .about-intro-modern .section-title h2::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .about-content-card {
        padding: 30px;
    }

    .about-cta-row {
        justify-content: center;
    }

    .about-highlights-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .about-content-card {
        padding: 24px;
    }

    .about-highlights-grid {
        /* grid-template-columns: 1fr; */
        gap: 10px;
    }

    .about-cta-row {
        justify-content: stretch;
    }

    .btn {
        width: 100%;
    }
}

/* Services Section - Modern Card Redesign */
.services {
    background: linear-gradient(180deg, #F5F7FA 0%, #FFFFFF 100%);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.services::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -50px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(10, 37, 64, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* Services Title Section */
.services .section-title {
    margin-bottom: 50px;
}

.services-subtitle {
    color: var(--text-light);
    /* font-size: 17px; */
    margin-top: 15px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(265px, 1fr));
    gap: 15px;
    position: relative;
    z-index: 2;
    animation: fadeInUp 0.8s ease-out;
}

/* Service Card */
.service-card {
    background: var(--white);
    border-radius: 10px;
    padding: 20px 20px 20px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-height: 240px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

/* Service Card Background Effect */
.service-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(212, 175, 55, 0.05) 0%,
            rgba(212, 175, 55, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0;
    border-radius: 16px;
}

/* Service Card Hover Background */
.service-card:hover .service-card-bg {
    opacity: 1;
}

/* Service Card Number */
.service-card-number {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 18px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.3;
    transition: all 0.4s ease;
    font-family: 'Poppins', sans-serif;
}

.service-card:hover .service-card-number {
    opacity: 1;
    transform: translateY(-10px);
}

/* Service Card Icon */
.service-card-icon {
    width: 40px;
    height: 40px;
    background: #0a2540;
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #c9a62a;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    z-index: 1;
}

.service-card:hover .service-card-icon {
    background: linear-gradient(135deg,
            var(--accent-color) 0%,
            rgba(212, 175, 55, 0.8) 100%);
    border-color: var(--accent-color);
    transform: scale(1) translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
    color: var(--white);
}

.service-card-icon::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.3), transparent);
    border-radius: 14px;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.service-card:hover .service-card-icon::after {
    opacity: 1;
}

/* Service Card Title */
.service-card-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
    letter-spacing: -0.5px;
    padding: 0px 0;
    line-height: 23px;
}

.service-card:hover .service-card-title {
    color: var(--accent-color);
    transform: translateX(5px);
}

/* Service Card Description */
.service-card-desc {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.5;
    margin: 0;
    transition: color 0.4s ease;
    position: relative;
    z-index: 1;
    flex-grow: 1;
}

.service-card:hover .service-card-desc {
    color: var(--text-color);
}

/* Service Card Button */
.service-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    background: rgba(212, 175, 55, 0.1);
    color: var(--accent-color);
    border-radius: 5px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1.5px solid rgba(212, 175, 55, 0.3);
    cursor: pointer;
    position: relative;
    z-index: 1;
    width: fit-content;
    margin-top: auto;
}

.service-card-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--accent-color);
    border-radius: 10px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.service-card-btn i {
    font-size: 12px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Service Card Button Hover */
.service-card:hover .service-card-btn {
    background: var(--accent-color);
    color: var(--white);
    border-color: var(--accent-color);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    transform: translateY(-3px);
}

.service-card:hover .service-card-btn i {
    transform: translateX(3px);
}

.service-modal {
    position: fixed;
    inset: 0;
    background: rgba(10, 37, 64, 0.76);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    z-index: 9999;
    overflow-y: auto;
}

.service-modal.active {
    display: flex;
}

.service-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.75);
}

.service-modal-container {
    position: relative;
    width: 100%;
    max-width: 920px;
    background: var(--white);
    border-radius: 28px;
    padding: 34px;
    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.22);
    z-index: 1;
    overflow: hidden;
    animation: fadeInUp 0.3s ease;
}

.service-modal-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 22px;
    flex-wrap: wrap;
}

.modal-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(212, 175, 55, 0.12);
    color: var(--accent-color);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.modal-title {
    font-size: 30px;
    margin: 0;
    color: var(--primary-color);
    line-height: 1.1;
}

.service-modal-close {
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 16px;
    background: var(--primary-color);
    color: var(--white);
    font-size: 26px;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
}

.service-modal-close:hover {
    transform: scale(1.05);
    background: var(--accent-color);
}

.service-modal-body {
    display: grid;
    gap: 18px;
}

.service-modal-description {
    margin: 0;
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.8;
}

.service-modal-list {
    margin: 0;
    padding-left: 24px;
    display: grid;
    gap: 10px;
}

.service-modal-list li {
    position: relative;
    color: var(--text-color);
    line-height: 1.7;
    font-size: 15px;
}

.service-modal-list li::before {
    content: '';
    position: absolute;
    left: -24px;
    top: 10px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent-color);
}

@media (max-width: 768px) {
    .service-modal-container {
        padding: 26px;
    }

    .modal-title {
        font-size: 24px;
    }
}

@media (max-width: 576px) {
    .service-modal-container {
        padding: 20px;
        border-radius: 22px;
    }

    .service-modal-header {
        align-items: stretch;
    }

    .modal-title {
        font-size: 20px;
    }

    .service-modal-close {
        width: 40px;
        height: 40px;
        font-size: 24px;
    }
}

/* Service Card Overall Hover */
.service-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 30px 60px rgba(10, 37, 64, 0.15);
    border-color: rgba(212, 175, 55, 0.3);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Services - Large Desktop */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
    }

}

/* Responsive Services - Tablet */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }

    /* .service-card {
        padding: 30px 20px;
        min-height: 380px;
    }

    .service-card-number {
        font-size: 28px;
        top: 15px;
        right: 20px;
    } */

    /* .service-card-icon {
        width: 60px;
        height: 60px;
        font-size: 26px;
    } */

    .service-card-title {
        font-size: 18px;
    }

    .service-card-desc {
        font-size: 13px;
        line-height: 1.6;
    }

    .service-card-btn {
        padding: 10px 20px;
        font-size: 12px;
    }
}

/* Responsive Services - Mobile */
@media (max-width: 576px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    /* .service-card {
        padding: 25px 18px;
        min-height: 360px;
        gap: 15px;
    }

    .service-card-number {
        font-size: 24px;
        top: 12px;
        right: 15px;
    }

    .service-card-icon {
        width: 55px;
        height: 55px;
        font-size: 24px;
    } */

    .service-card-title {
        font-size: 16px;
        padding: 8px 0;
    }

    .service-card-desc {
        font-size: 12px;
        line-height: 1.5;
    }

    .service-card-btn {
        padding: 9px 18px;
        font-size: 11px;
    }

    .service-card:hover {
        transform: translateY(-10px);
    }

    .services-subtitle {
        font-size: 13px;
        margin-top: 12px;
    }
}

.sectors-served {
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
    position: relative;
    padding: 30px 0;
    overflow: hidden;
}

.sectors-served::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -60px;
    width: 360px;
    height: 360px;
    background: rgba(42, 91, 170, 0.08);
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
}

.sectors-served .section-title span {
    color: var(--accent-color);
    display: inline-block;
    margin-bottom: 10px;
    font-size: 13px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    opacity: 0.85;
}

.sectors-served .section-title h2 {
    color: var(--primary-color);
    margin-bottom: 18px;
    font-size: clamp(30px, 3vw, 42px);
    line-height: 1.1;
}

.sectors-served .services-subtitle {
    max-width: 680px;
    margin: 0 auto;
    color: #4c607a;
    font-size: 15px;
    line-height: 1.9;
}

.sectors-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.sector-card {
    position: relative;
    padding: 26px 0 24px 0;
    min-height: auto;
    background: rgba(10, 37, 64, 0.05);
    border: none;
    border-left: 4px solid rgba(42, 91, 170, 0.7);
    transition: color 0.25s ease, border-color 0.25s ease;
}

.sector-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(42, 91, 170, 0.08);
}

.sector-card:last-child::after,
.sector-card:nth-child(4n)::after {
    display: none;
}

.sector-card:hover {
    border-left-color: var(--secondary-color);
}

.sector-card h3 {
    margin: 0 0 8px;
    padding-left: 18px;
    font-size: 16px;
    color: var(--primary-color);
    font-weight: 700;
    line-height: 1.25;
}

.sector-card p {
    margin: 0;
    padding-left: 18px;
    color: #4f617c;
    line-height: 1.5;
    font-size: 13px;
}

@media (max-width: 1200px) {
    .sectors-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 992px) {
    .sectors-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .sectors-served {
        padding: 60px 16px;
    }

    .sectors-served::before {
        width: 280px;
        height: 280px;
        top: -50px;
        right: -30px;
    }


}

@media (max-width: 576px) {
    .sectors-served {
        padding: 50px 14px;
    }

    .sectors-served .section-title h2 {
        font-size: 26px;
    }

    .sectors-grid {
        grid-template-columns: 1fr;
    }

    .sector-card {
        padding: 20px 0 20px 0;
    }
}

/* Modern Core Team Section */
.team-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px 0;
}

.modern-team-card {
    background: var(--white);
    border-radius: 20px;
    padding: 24px 30px;
    text-align: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.02);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  
}

.modern-team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.modern-team-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(33, 150, 243, 0.12);
    border-color: rgba(33, 150, 243, 0.1);
}

.modern-team-card:hover::before {
    opacity: 1;
}

.team-image-wrapper {
    width: 140px;
    height: 140px;
    margin: 0 auto 5px;
    border-radius: 50%;
    position: relative;
    padding: 5px;
    background: linear-gradient(135deg, var(--accent-color), #c9a62a);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
    transition: all 0.4s ease;
}

/* .modern-team-card:hover .team-image-wrapper {
    transform: scale(1.05) rotate(5deg);
    box-shadow: 0 15px 30px rgba(33, 150, 243, 0.3);
} */

.team-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid var(--white);
    background: #fff;
}

.team-image-wrapper.placeholder-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-image-wrapper.placeholder-icon i {
    font-size: 50px;
    color: var(--white);
    background: var(--white);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

.team-info-modern h3 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom:2px;
    font-weight: 700;
    transition: color 0.3s ease;
    line-height: 24px;
}

p.educt{    
    font-size: 13px;
    color: var(--text-light);
    /* margin-bottom: 15px; */
    font-weight: 500;
        display: inline-block;
    background: rgba(212, 175, 55, 0.15);
    color: var(--accent-color);
    padding: 3px 10px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-transform: capitalize;
}
/* .modern-team-card:hover .team-info-modern .educt {
    background: var(--accent-color);
    color: var(--primary-color);
} */

.modern-team-card:hover .team-info-modern h3 {
    color: var(--accent-color);
}

.team-info-modern .role {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: none;
}

.team-info-modern .experience {
    display: inline-block;
    background: rgba(212, 175, 55, 0.15);
    color: var(--accent-color);
    padding: 3px 10px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
}

/* .modern-team-card:hover .team-info-modern .experience {
    background: var(--accent-color);
    color: var(--primary-color);
} */


.team-info-modern {
display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
    justify-content: center;
    align-items: center;
}

.team-info-modern h3 {
  flex: 0 0 100%; /* full width */
  margin: 0;
}

.team-info-modern .educt,
.team-info-modern .role,
.team-info-modern .experience {
  flex: 0 0 auto; /* natural width, ek line me */
}

.read-bio-btn {
    display: inline-block;
    background: var(--primary-color);
    color:var(--accent-color);
    padding: 8px 16px;
    border-radius: 6px;
    border: none;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    margin-top: 12px;
    flex: 0 0 100%;
    text-align: center;
}

.modern-team-card:hover .read-bio-btn {
    background:  var(--accent-color);
    color:var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

.read-bio-btn:active {
    transform: translateY(0);
}

/* Professional Team Section */
.pro-team {
    background-color: #f5f7f8;
}

/* .pro-team .section-title {
    text-align: left;
    margin-bottom: 40px;
}

.pro-team .section-title h2 {
    font-size: 28px;
    font-weight: 700;
    color: #37474f;
    letter-spacing: 1px;
    margin-bottom: 15px;
} */

/* .title-underline {
    width: 50px;
    height: 4px;
    background-color: #4db6ac;
    border-radius: 2px;
} */

.pro-team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.pro-card {
    background: var(--white);
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.pro-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.pro-img {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    background: #e0e0e0;
}

.pro-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pro-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: #263238;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.pro-card p {
    font-size: 13px;
    color: #78909c;
    margin-bottom: 20px;
    font-weight: 500;
}

.btn-bio {
    display: inline-block;
    padding: 8px 25px;
    background-color: #4db6ac;
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.btn-bio:hover {
    background-color: #00897b;
    color: var(--white);
}

@media (max-width: 1200px) {
    .pro-team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .pro-team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .pro-team-grid {
        grid-template-columns: 1fr;
    }
}

/* Contact Section Redesign */
.contact {
    background: linear-gradient(135deg, #f8f9fa 0%, #e3f2fd 100%);
    position: relative;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 20px;
    align-items: center;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-item {
    background: var(--white);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: start;
    gap: 20px;
    transition: var(--transition);
    border-left: 4px solid var(--accent-color);
}

.info-item:hover {
    transform: translateX(10px);
}

.info-item p a {
    color: var(--text-light);
    word-break: break-all;  
}

.info-item i {
    width: 55px;
    height: 55px;
    background: rgba(212, 175, 55, 0.15);
    color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.info-item h4 {
    color: var(--primary-color);
    margin-bottom: 5px;
    font-size: 18px;
}

.info-item p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.5;
}

.contact-form {
    background: rgba(255, 255, 255, 0.8);
    padding: 45px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    font-family: inherit;
    font-size: 15px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 15px rgba(33, 150, 243, 0.1);
    outline: none;
}

.w-100 {
    width: 100%;
}

.contact-form-status {
    margin-top: 14px;
    font-size: 14px;
    min-height: 20px;
}

.contact-form-status.success {
    color: #1b7f3a;
}

.contact-form-status.error {
    color: #c62828;
}

/* Footer Section */
.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 10px 0 10px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-about h3 {
    margin-bottom: 20px;
    font-size: 24px;
}

.footer-about span {
    color: var(--accent-color);
}

.footer h4 {
    margin-bottom: 25px;
    font-size: 18px;
    position: relative;
    padding-bottom: 10px;
}

.footer h4::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background: var(--accent-color);
    bottom: 0;
    left: 0;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: #cbd5e0;
}

.footer-links ul li a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(212, 175, 55, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--accent-color);
}

.social-icons a:hover {
    background: var(--accent-color);
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    /* border-top: 1px solid rgba(255, 255, 255, 0.05); */
}

.footer-bottom p {
    color: #718096;
    font-size: 14px;
}

.footer-bottom a{color: #fff;}

/* Partners Section */
.partners {
    background: linear-gradient(135deg, #f8fbfe 0%, #e3f2fd 100%);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.partners::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    opacity: 0.5;
    background-image: radial-gradient(rgba(10, 37, 64, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
}

.partners .section-title h2 {
    color: var(--white);
}

.partners-slider-container {
    overflow: hidden;
    position: relative;
    width: 100%;
    padding: 10px 0 10px 0;
    z-index: 1;
    margin: 0 auto;
}

.partners-track {
    display: flex;
    align-items: center;
}

.partner-slide {
    /* width: 200px; */
    /* Base width */
    flex-shrink: 0;
    padding: 0 6px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.partners-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 1;
  display: none;
}

.nav-btn {
  pointer-events: all;
  background: #C89B2E;
  color: #fff;
  border: none;
  padding: 10px 14px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  transition: 0.3s;
  width: 41px;
  height: 41px;
}

.nav-btn:hover {
  background: #C89B2E;
}
.partner-slide .logo-box {
    background: var(--white);
    padding: 15px 10px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.04);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.4);
    width: 100%;
    height:70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-slide .logo-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(10, 37, 64, 0.15);
    border-color: rgba(212, 175, 55, 0.2);
}

/* =============================================
   TEAM MODAL STYLES - Responsive Popup
   ============================================= */

.team-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    animation: fadeIn 0.3s ease-in-out;
    align-items: center;
    justify-content: center;
}

.team-modal.active {
    display: flex !important;
}

.team-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    z-index: 1;
}

.team-modal-content {
    position: relative;
    z-index: 2;
    background: var(--white);
    border-radius: 20px;
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    margin: auto;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.team-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(212, 175, 55, 0.15);
    color: var(--accent-color);
    font-size: 28px;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.team-modal-close:hover {
    background: var(--accent-color);
    color: var(--primary-color);
    transform: rotate(90deg);
}

.team-modal-header {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 40px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    border-radius: 20px 20px 0 0;
}

.team-modal-image {
    flex-shrink: 0;
}

.team-modal-image img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 5px solid var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    object-fit: cover;
}

.team-modal-icon {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 5px solid var(--white);
    background: linear-gradient(135deg, var(--accent-color), #c9a62a);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-modal-icon i {
    font-size: 90px;
    color: var(--white);
}

.team-modal-title h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
}

.modal-role {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    opacity: 0.95;
    display: none;
}

.modal-educ{
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    opacity: 0.95;}


.modal-experience {
    display: inline-block;
    background: rgba(255, 255, 255, 0.25);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
}

.team-modal-body {
    padding: 40px;
}

.modal-details {
    color: var(--text-color);
    line-height: 1.8;
    font-size: 15px;
}

.modal-details p {
    margin-bottom: 18px;
    color: var(--text-light);
}

.modal-details p:first-child {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(212, 175, 55, 0.2);
}

/* Responsive Design for Modal */
@media (max-width: 768px) {
    .team-modal-content {
        width: 95%;
        max-height: 95vh;
        border-radius: 16px;
    }

    .team-modal-header {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
        gap: 20px;
    }

    .team-modal-image img {
        width: 140px;
        height: 140px;
    }

    .team-modal-title h2 {
        font-size: 24px;
    }

    .team-modal-body {
        padding: 25px 20px;
    }

    .modal-details {
        font-size: 14px;
    }

    .team-modal-close {
        top: 15px;
        right: 15px;
        width: 36px;
        height: 36px;
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .team-modal-content {
        width: 98%;
        border-radius: 12px;
    }

    .team-modal-header {
        padding: 20px 15px;
    }

    .team-modal-image img {
        width: 120px;
        height: 120px;
    }

    .team-modal-title h2 {
        font-size: 20px;
    }

    .modal-role {
        font-size: 13px;
    }

    .team-modal-body {
        padding: 20px 15px;
    }

    .modal-details {
        font-size: 13px;
        line-height: 1.7;
    }

    .modal-details p {
        margin-bottom: 15px;
    }
}

.partner-slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: var(--transition);
}

.partner-slide:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

@media (min-width: 576px) {
    .partner-slide {
        width: 50%;
    }
}

@media (min-width: 768px) {
    .partner-slide {
        width: 33.333%;
    }
}

@media (min-width: 992px) {
    .partner-slide {
        width: 14.25%;
    }
}

.partners-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
    position: relative;
    z-index: 1;
}




.bullet {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(212, 175, 55, 0.3);
    cursor: pointer;
    transition: var(--transition);
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
    display: none;
}

.bullet.active {
    background-color: var(--accent-color);
    width: 25px;
    border-radius: 5px;
    box-shadow: 0 3px 8px rgba(212, 175, 55, 0.4);
}
.bullet:first-child {
    display: block;
}
.bullet:nth-child(2) {
    display: block;
}
.bullet:nth-child(3) {
    display: block;
}
.bullet:nth-child(4) {
    display: block;
}
.bullet:nth-child(5) {
    display: block;
}

.why-choose {
    padding: 30px 20px;
    background: var(--primary-color);
    color: var(--white);
    text-align: center;
}

.why-choose h2 {
    font-size: 32px;
    margin-bottom: 15px;
    font-weight: 700;
    color: var(--white);
}

.why-choose .subtitle {
    color: #cbd5e1;
    margin-bottom: 25px;
    font-size: 15px;
    line-height: 1.6;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.why-card {
    background: #00000047;
    padding: 20px 20px;
    border-radius: 0px;
    transition: var(--transition);
    border: 1px solid rgba(212, 175, 55, 0.2);
    text-align: left;
    box-shadow: 0 0px 3px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.why-card-icon {
    font-size: 16px;
    color: var(--accent-color);
    margin-bottom: 10px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(212, 175, 55, 0.4);
    border-radius: 8px;
    flex-shrink: 0;
}

.why-card h3 {
    margin-bottom: 5px;
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
}

.why-card p {
    font-size: 13px;
    color: #b0bcc4;
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1;
}

.why-card::after {
    content: "Learn more →";
    display: inline-block;
    color: var(--accent-color);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: none;
}

.why-card:hover {
    transform: translateY(-8px);
    background: rgba(31, 60, 136, 0.5);
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.why-card:hover::after {
    color: var(--white);
}

/* Responsive */
@media (max-width: 992px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .why-choose h2 {
        font-size: 28px;
    }

    .why-grid {
        gap: 25px;
        grid-template-columns: repeat(2, 1fr);
    }

    .why-card {
        padding: 30px 25px;
    }

    .why-card-icon {
        font-size: 24px;
        width: 45px;
        height: 45px;
        margin-bottom: 15px;
    }

    .why-card h3 {
        font-size: 15px;
    }

    .why-card p {
        font-size: 12px;
    }
}

@media (max-width: 576px) {
    .why-choose {
        padding: 40px 15px;
    }

    .why-choose h2 {
        font-size: 24px;
    }

    .why-choose .subtitle {
        font-size: 14px;
        margin-bottom: 35px;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .why-card {
        padding: 25px 20px;
    }

    .why-card-icon {
        font-size: 22px;
        width: 40px;
        height: 40px;
    }
}








/* Mobile Responsive */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 36px;
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

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

    .navbar {
        top: 0 !important;
    }

    .section-padding {
        padding: 30px 0;
    }

    .menu-toggle {
        display: block;
        position: relative;
        z-index: 1002;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        max-width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        justify-content: start;
        align-items: stretch;
        padding: 58px 6px;
        gap: 5px;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        display: flex;
        transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: 1001;
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        color: var(--primary-color) !important;
        font-size: 16px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .navbar.sticky .nav-links {
        top: 0;
    }


    .nav-links li {
        border-bottom: 1px rgb(33 150 243 / 9%) solid;
        background: #e0e0e014;
        padding: 10px;
    }

    .hero h1 {
        font-size: 22px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .logo a {
        font-size: 16px;
        letter-spacing: 0;
    }

    .navbar {
        padding: 10px 0;
    }

    .hero h1 {
        font-size: 28px;
    }

    .hero h1 span {
        font-size: 22px;
    }

    .hero h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .hero p {
        font-size: 14px;
    }

    .hero .container {
        padding-top: 20px;
    }

    .hero {
        height: 90vh;
    }

    .hero-btns {
        flex-direction: column;
        gap: 10px;
    }

    .section-padding {
        padding: 30px 0;
    }

    .stat-box {
        text-align: center;
        width: 30%;
    }
.logo img{width: 30px;}
    .stat-box h4 {
        font-size: 26px;
    }

    .stat-box p {
        font-size: 11px;
        letter-spacing: 0px;
        line-height: 16px
    }

    .about-stats-modern {
        gap: 15px;
    }

    .section-title h2 {
        font-size: 26px;
        line-height: 35px;
    }

    .service-icon {
        margin-bottom: 15px;
    }

    .partner-slide {
        width: 50%;
        padding: 0 5px
    }

    .contact-form {
        padding: 20px;
    }

    .about-intro-modern {
        grid-template-columns: 100%;
        gap: 20px;
    }

    .about-stats-modern {
        margin-top: 0;
    }

    .about-cards-modern {
        flex-direction: column;
    }

    .modern-card {
        width: 100%;
    }

    .stat-box {
        padding: 10px;
        min-height: 116px;
    }

    .service-card {
        min-height: 290px;
    }
}

/* Why Choose Us New Section */
.why-choose-new {
    background: var(--bg-light);
}

.why-choose-new-inner {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 40px;
    align-items: center;
}

.why-choose-new-copy {
    text-align: left;
}

.why-choose-new-copy .section-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.12);
    color: var(--accent-color);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    border-radius: 999px;
    padding: 8px 18px;
    margin-bottom: 18px;
    text-transform: uppercase;
}

.why-choose-new-copy h2 {
    font-size: 32px;
    line-height: 1.05;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.why-choose-new-copy .services-subtitle {
    color: #475569;
    font-size: 16px;
    line-height: 1.8;
    max-width: 520px;
    margin: 0;
}

.why-choose-new-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 11px;
}

.why-choose-new-card {
    background: var(--white);
    padding: 15px;
    border-radius: 0px;
    text-align: left;
    box-shadow: 0 20px 45px rgba(10, 37, 64, 0.08);
    transition: var(--transition);
    border: 1px solid rgba(10, 37, 64, 0.06);
    min-height: 180px;
    display: flex;
    flex-direction: column;
}

.why-choose-new-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 70px rgba(10, 37, 64, 0.12);
    border-color: rgba(212, 175, 55, 0.25);
}

.why-choose-new-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 9px;
    background: #0a2540;
    color: #c9a62a;
    border-radius: 4px;
    font-size: 16px;
}

.why-choose-new-card h3 {
    font-size: 15px;
    color: var(--primary-color);
    margin-bottom: 8px;
    font-weight: 600;
    line-height: 18px;
}

.why-choose-new-card p {
    color: var(--text-light);
    font-size: 13px;
    line-height: 1.55;
    margin: 0;
    flex-grow: 1;
}

@media (max-width: 1024px) {
    .why-choose-new-inner {
        grid-template-columns: 1fr;
    }

    .why-choose-new-copy {
        text-align: left;
    }
}

@media (max-width: 768px) {

    .why-choose-new-copy .section-label {
        padding: 7px 16px;
        font-size: 11px;
    }

    .why-choose-new-copy h2 {
        font-size: 30px;
    }

    .why-choose-new-copy .services-subtitle {
        font-size: 15px;
    }

    .why-choose-new-grid {
        grid-template-columns: 1fr;
    }



}

/* Floating Action Buttons */
.floating-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    border: none;
    cursor: pointer;
    animation: pulse 2s infinite;
}

.floating-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.whatsapp-btn:hover {
    background: linear-gradient(135deg, #128C7E, #075E54);
}

.enquiry-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    width: 129px;
    height: 50px;
    border-radius: 0;
    position: fixed;
    transform: rotate(-90deg);
    font-size: 14px;
    display: block;
    color: var(--white);
    text-align: center;
    padding: 10px;
    bottom: 154px;
}

.enquiry-btn:hover {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }

    50% {
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }

    100% {
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }
}

/* Enquiry Modal */
.enquiry-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
}

.enquiry-modal.active {
    display: flex;
}

.enquiry-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
}

.enquiry-modal-content {
    position: relative;
    background: var(--white);
    border-radius: 16px;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(-20px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.enquiry-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--text-color);
    cursor: pointer;
    z-index: 1;
}

.enquiry-modal-header {
    padding: 30px 30px 20px;
    text-align: center;
    border-bottom: 1px solid rgba(10, 37, 64, 0.1);
}

.enquiry-modal-header h2 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 28px;
}

.enquiry-modal-header p {
    color: var(--text-light);
    margin: 0;
}

.enquiry-modal-body {
    padding: 30px;
}

.enquiry-modal-body .form-group {
    margin-bottom: 20px;
}

.enquiry-modal-body .form-group input,
.enquiry-modal-body .form-group select,
.enquiry-modal-body .form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid rgba(10, 37, 64, 0.1);
    border-radius: 8px;
    font-size: 16px;
    transition: var(--transition);
}

.enquiry-modal-body .form-group input:focus,
.enquiry-modal-body .form-group select:focus,
.enquiry-modal-body .form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.enquiry-modal-body .form-group textarea {
    resize: vertical;
    min-height: 100px;
}



@media (max-width: 990.98px) {
    .hero {
        height: 42vh;

    }

}




/* Responsive for Floating Buttons */
@media (max-width: 768px) {
    .floating-buttons {
        bottom: 15px;
        right: 15px;
        gap: 10px;
    }

    .floating-btn {
        width: 55px;
        height: 55px;
        font-size: 22px;
    }

    .enquiry-modal-content {
        width: 95%;
        margin: 20px;
    }

    .enquiry-modal-header {
        padding: 25px 20px 15px;
    }

    .enquiry-modal-body {
        padding: 20px;
    }

    .enquiry-btn {
        display: none;
    }

    .hero {
        height: 70vh;
    }

    .services .section-title {
        margin-bottom: 20px !important;
    }

    .sectors-grid {
        margin-top: 22px;
    }

    .info-item {
        padding: 15px;
    }

    .hero-content {
        text-align: center;
    }

    .menu-toggle {
        color: #000;
    }

    .why-choose-new-copy h2 {
        font-size: 21px;
    }

    .service-card {
        min-height: auto;
    }
}