:root {
    /* Color Palette */
    --primary-navy: #0B2A5B;
    --deep-navy: #061A3A;
    --arogan-teal: #006B63;
    --accent-cyan: #12A9D6;
    --accent-orange: #F28C28;
    --white: #FFFFFF;
    --light-bg: #F5F8FA;
    --dark-text: #172033;

    /* Typography */
    --font-primary: 'Inter', sans-serif;

    /* Transitions */
    --transition-smooth: all 0.3s ease-in-out;
}

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

body {
    font-family: var(--font-primary);
    color: var(--dark-text);
    background-color: var(--light-bg);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ------------------------------------- */
/* 2. HEADER                             */
/* ------------------------------------- */
.site-header {
    position: fixed;
    width: 100%;
    top: 20px;
    z-index: 1000;
    transition: var(--transition-smooth);
    padding: 0; /* Remove side padding to make it full width */
    box-sizing: border-box;
}

.site-header.scrolled {
    top: 0;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #ffffff;
    border-radius: 0; /* Remove rounded corners for full width */
    padding: 0 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden; /* For the swooshes */
    min-height: 80px;
}

/* Background Swooshes */
.header-swoosh-left {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100px;
    height: 120px;
    background: linear-gradient(135deg, rgba(255,204,229,0.5), rgba(204,229,255,0.5));
    border-radius: 50%;
    z-index: 0;
}

.header-swoosh-right {
    position: absolute;
    top: 0;
    right: 0;
    width: 320px; /* Wider to cover the button */
    height: 100%;
    background: #0b1a30; /* Dark blue */
    z-index: 0;
    /* Creating the wave effect on the left side of this right block */
    -webkit-clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%, 25% 45%);
    clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%, 25% 45%);
}
/* A better approach for the swoosh: border-radius */
.header-swoosh-right {
    -webkit-clip-path: none;
    clip-path: none;
    background: #0b1a30;
    width: 250px;
    border-top-left-radius: 80px;
    border-bottom-left-radius: 20px;
    right: -10px;
    box-shadow: -5px 0 15px rgba(11,26,48,0.2);
}

.logo-container {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: #0b1a30;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 1;
}

.nav-links li a {
    text-decoration: none;
    color: #0b1a30; /* Dark blue text */
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition-smooth);
    position: relative;
    padding-bottom: 5px;
}

.nav-links li a:hover {
    color: #e11d48; /* Magenta hover */
}

.nav-links li.active a {
    color: #e11d48; /* Magenta active */
}

.nav-links li.active a::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #e11d48;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    text-decoration: none;
    border-radius: 40px; /* Pill shape */
    font-weight: 600;
    transition: var(--transition-smooth);
    cursor: pointer;
    border: none;
}

.btn-magenta {
    background-color: #e11d48;
    color: #ffffff;
    box-shadow: 0 5px 15px rgba(225, 29, 72, 0.3);
}

.btn-magenta:hover {
    background-color: #be123c;
    color: #ffffff;
    box-shadow: 0 5px 20px rgba(225, 29, 72, 0.5);
}

.header-cta {
    position: relative;
    z-index: 2;
    padding-right: 5px;
}

.header-cta .btn {
    padding: 12px 24px;
    font-size: 15px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    color: var(--white);
    background-image: linear-gradient(90deg, rgba(6, 26, 58, 0.9) 0%, rgba(6, 26, 58, 0.7) 40%, rgba(6, 26, 58, 0.2) 100%), url('https://images.unsplash.com/photo-1519494026892-80bbd2d6fd0d?q=80&w=2053&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 800px;
    padding: 0 5%;
    z-index: 2;
}

.hero-supertitle {
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ccc;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 72px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
    animation: fadeInUp 1s ease-out;
}

.text-orange {
    color: var(--accent-orange);
}

.hero-subtitle {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 40px;
    max-width: 600px;
    color: rgba(255, 255, 255, 0.9);
    animation: fadeInUp 1s ease-out 0.2s;
    animation-fill-mode: both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    animation: fadeInUp 1s ease-out 0.4s;
    animation-fill-mode: both;
}

.scroll-down {
    margin-top: 60px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #ccc;
    animation: fadeInUp 1s ease-out 0.6s;
    animation-fill-mode: both;
}

.mouse-icon {
    width: 20px;
    height: 30px;
    border: 2px solid #ccc;
    border-radius: 10px;
    position: relative;
}

.mouse-icon::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background: #ccc;
    border-radius: 50%;
}

.hero-cursive {
    position: absolute;
    right: 10%;
    top: 40%;
    font-family: 'Brush Script MT', cursive;
    font-size: 50px;
    line-height: 1.2;
    color: var(--primary-navy);
    transform: rotate(-10deg);
    text-shadow: 2px 2px 0px rgba(255, 255, 255, 0.8);
    z-index: 2;
}

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

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

/* Responsive */
@media (max-width: 992px) {
    .nav-links {
        display: none;
    }

    .header-cta {
        display: none;
    }

    .hero-title {
        font-size: 48px;
    }
}

/* Global Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

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

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

.bg-light {
    background-color: var(--light-bg);
}

.bg-dark {
    background-color: var(--deep-navy);
}

.white-text {
    color: var(--white);
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--primary-navy);
}

.section-desc {
    font-size: 18px;
    color: var(--dark-text);
}

.bg-very-light {
    background-color: #f9f9fc;
}

/* Updated Stats Section */
.company-stats-wrapper {
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

.stats-box {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 40px;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
    justify-content: center;
}

.stat-icon {
    color: var(--accent-orange);
    display: flex;
}

.stat-text h3 {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-navy);
    line-height: 1.1;
}

.stat-text p {
    font-size: 14px;
    color: var(--dark-text);
    margin: 0;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background-color: #eee;
    margin: 0 15px;
}

.mission-vision-modern {
    background: linear-gradient(135deg, #ffffff 0%, #f0f7fb 100%);
    position: relative;
    overflow: hidden;
}

.mission-vision-modern::before {
    content: 'A';
    position: absolute;
    right: -10%;
    top: 10%;
    font-size: 800px;
    font-weight: 900;
    color: rgba(18, 169, 214, 0.03);
    z-index: 0;
    pointer-events: none;
    line-height: 1;
}

.mv-row {
    display: flex;
    align-items: center;
    gap: 80px;
    position: relative;
    z-index: 1;
}

.vision-row {
    margin-bottom: 120px;
}

.mv-text-col {
    flex: 1;
    position: relative;
}

.mv-image-col {
    flex: 1.2;
    position: relative;
}

.text-teal {
    color: var(--arogan-teal);
}

.mv-heading {
    font-size: 56px;
    font-weight: 800;
    color: var(--primary-navy);
    margin-bottom: 20px;
    line-height: 1.1;
}

.mv-desc {
    font-size: 16px;
    color: var(--dark-text);
    margin-bottom: 40px;
    max-width: 90%;
}

.mv-features {
    display: flex;
    gap: 0;
}

.mv-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    padding: 0 20px;
    border-right: 1px solid #ddd;
}

.mv-feature:first-child {
    padding-left: 0;
}

.mv-feature:last-child {
    border-right: none;
    padding-right: 0;
}

.mv-icon {
    width: 60px;
    height: 60px;
    background: #eef5f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-navy);
    margin-bottom: 15px;
}

.mv-feature span {
    font-weight: 700;
    color: var(--primary-navy);
    font-size: 14px;
    line-height: 1.3;
}

.mv-main-img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.img-top-overlay {
    position: absolute;
    top: 30px;
    right: 30px;
    color: var(--white);
    font-size: 12px;
    letter-spacing: 2px;
    text-align: right;
    line-height: 1.5;
    z-index: 2;
}

.mv-quote-box {
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
    background: #023e3f;
    color: var(--white);
    padding: 40px;
    border-radius: 12px;
    width: 280px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    z-index: 3;
}

.quote-icon {
    font-size: 40px;
    font-family: serif;
    color: rgba(255, 255, 255, 0.3);
    position: absolute;
    top: 10px;
    left: 20px;
    line-height: 1;
}

.mv-quote-box p {
    font-size: 18px;
    font-weight: 300;
    position: relative;
    z-index: 1;
    margin: 0;
}

.img-left-overlay {
    position: absolute;
    top: 30px;
    left: 30px;
    color: var(--white);
    font-size: 12px;
    letter-spacing: 2px;
    line-height: 1.5;
    z-index: 2;
}

.mv-tag-box {
    position: absolute;
    left: 30px;
    bottom: -30px;
    background: var(--white);
    padding: 20px 30px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    z-index: 3;
}

.tag-text {
    font-size: 14px;
    font-weight: 500;
    color: var(--primary-navy);
    line-height: 1.5;
}

.bg-watermark-text {
    position: absolute;
    right: -150px;
    bottom: 0px;
    font-size: 11px;
    letter-spacing: 3px;
    color: #a0b2c0;
    text-align: left;
    line-height: 1.8;
    z-index: 0;
}

.wm-line {
    width: 40px;
    height: 2px;
    background: #a0b2c0;
    margin-top: 10px;
}

.mission-row .mv-heading,
.mission-row .mv-desc,
.mission-row .mv-features {
    position: relative;
    z-index: 2;
}

.mv-bottom-label {
    text-align: center;
    font-size: 12px;
    letter-spacing: 2px;
    color: #999;
    font-weight: 600;
    margin-top: 80px;
}

/* Updated About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.section-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    color: var(--accent-orange);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
    position: relative;
    padding-left: 40px;
}

.section-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 2px;
    background: var(--accent-orange);
}

.about-image-wrapper {
    position: relative;
    padding-right: 40px;
}

.about-img {
    border-radius: 8px;
    width: 100%;
    height: 450px;
    object-fit: cover;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-quote {
    position: absolute;
    right: 0;
    bottom: -30px;
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    width: 250px;
    border-left: 4px solid var(--accent-orange);
}

.quote-mark {
    font-size: 60px;
    color: rgba(18, 169, 214, 0.2);
    font-family: serif;
    position: absolute;
    top: -10px;
    left: 20px;
}

.about-quote p {
    color: var(--primary-navy);
    font-weight: 600;
    font-size: 16px;
    line-height: 1.4;
    position: relative;
    z-index: 1;
}

/* Updated Services */
.services-section {
    position: relative;
    overflow: hidden;
}

.services-top-bar {
    display: flex;
    justify-content: space-between;
    padding: 0 5%;
    margin-bottom: 40px;
    font-size: 12px;
    letter-spacing: 2px;
    color: #999;
}

.stb-left span {
    display: inline-block;
    border-bottom: 2px solid var(--accent-cyan);
    padding-bottom: 10px;
    line-height: 1.4;
}

.stb-right {
    font-weight: 500;
}

.services-layout {
    display: flex;
    gap: 30px;
    align-items: center;
}

.services-sidebar {
    flex: 0 0 280px;
}

.dark-blue-btn {
    background-color: var(--primary-navy);
    color: var(--white);
    border-radius: 8px;
    padding: 15px 25px;
}

.dark-blue-btn:hover {
    background-color: var(--accent-orange);
    color: var(--white);
}

.sidebar-features {
    list-style: none;
    margin-top: 20px;
}

.sidebar-features li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 14px;
    color: var(--dark-text);
}

.sf-icon {
    color: var(--primary-navy);
    display: flex;
}

.services-carousel-wrapper {
    flex: 1;
}

.services-carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 20px;
    padding-top: 20px;
    scroll-behavior: smooth;
}

.services-carousel::-webkit-scrollbar {
    display: none;
    /* Hide scrollbar for a cleaner look */
}

.service-card-modern {
    background: var(--white);
    border-radius: 12px;
    padding: 0;
    min-width: 320px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition-smooth);
    overflow: hidden;
    position: relative;
}

.service-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.scm-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.service-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
    margin-top: -30px;
    /* Overlap image */
    position: relative;
    z-index: 2;
    margin-bottom: 20px;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(18, 169, 214, 0.1);
    color: var(--primary-navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-number-modern {
    color: #eee;
    font-size: 50px;
    font-weight: 800;
    line-height: 1;
}

.service-card-modern h3,
.service-card-modern p,
.service-card-modern .learn-more {
    padding: 0 30px;
}

.service-card-modern h3 {
    font-size: 20px;
    color: var(--primary-navy);
    margin-bottom: 15px;
    line-height: 1.3;
}

.service-card-modern p {
    font-size: 14px;
    color: var(--dark-text);
    margin-bottom: 20px;
}

.learn-more {
    font-weight: 700;
    color: var(--primary-navy);
    text-decoration: none;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 30px;
    padding-bottom: 5px;
    border-bottom: 1px solid var(--accent-cyan);
}

.learn-more:hover {
    color: var(--accent-orange);
}

/* Bottom slider nav */
.services-slider-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
}

.slider-controls {
    display: flex;
    align-items: center;
    gap: 20px;
}

.slider-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #ccc;
    background: transparent;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.slider-btn:hover {
    background: var(--primary-navy);
    color: var(--white);
    border-color: var(--primary-navy);
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
}

.dot.active {
    background: var(--primary-navy);

    .service-card-modern h3 {
        font-size: 20px;
        color: var(--primary-navy);
        margin-bottom: 15px;
        line-height: 1.3;
    }

    .service-card-modern p {
        font-size: 14px;
        color: var(--dark-text);
        margin-bottom: 20px;
    }

    .learn-more {
        font-weight: 700;
        color: var(--primary-navy);
        text-decoration: none;
        font-size: 14px;
        display: inline-flex;
        align-items: center;
        gap: 5px;
    }

    .learn-more:hover {
        color: var(--accent-orange);
    }

    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

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

.mt-20 {
    margin-top: 20px;
}

.dark-btn {
    border-color: var(--primary-navy);
    color: var(--primary-navy);
}

.dark-btn:hover {
    background-color: var(--primary-navy);
    color: var(--white);
}

/* Company Stats */
.company-stats {
    background-color: var(--white);
    padding: 60px 0;
    margin-top: -60px;
    position: relative;
    z-index: 10;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-card h3 {
    font-size: 48px;
    font-weight: 800;
    color: var(--accent-orange);
    margin-bottom: 10px;
}

.stat-card p {
    font-size: 18px;
    font-weight: 500;
    color: var(--primary-navy);
}

/* About Section */
.about-content p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #4a5568;
}

.image-reveal {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.image-reveal img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.image-reveal:hover img {
    transform: scale(1.05);
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.service-number {
    font-size: 64px;
    font-weight: 800;
    color: rgba(18, 169, 214, 0.1);
    position: absolute;
    top: 20px;
    right: 30px;
    line-height: 1;
}

.service-card h3 {
    font-size: 22px;
    color: var(--primary-navy);
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.service-card p {
    color: #4a5568;
    position: relative;
    z-index: 2;
}

/* Mission Vision */
.mv-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.mv-title {
    font-size: 24px;
    color: var(--arogan-teal);
    margin-bottom: 15px;
}

.mv-block p {
    font-size: 18px;
    color: #4a5568;
    line-height: 1.8;
}

/* Core Values */
.core-values-modern {
    background-image: linear-gradient(rgba(2, 19, 44, 0.95), rgba(2, 19, 44, 0.95)), url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    color: var(--white);
}

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

.cv-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 80px;
}

.cv-top-left {
    max-width: 600px;
}

.text-cyan {
    color: var(--accent-cyan);
}

.cv-heading {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
}

.cv-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.cv-top-right {
    text-align: left;
    font-size: 12px;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.8;
}

.cv-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.cv-card {
    position: relative;
    text-align: center;
    padding-top: 40px;
}

.cv-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 100px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    z-index: 0;
    line-height: 1;
}

.cv-icon-container {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
    z-index: 1;
}

.cv-inner-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.2);
}

.cv-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 120px;
    height: 120px;
    transform: rotate(150deg);
    z-index: 0;
}

.cv-ring-dot {
    position: absolute;
    /* (60 + 58 * cos(30deg)), (60 + 58 * sin(30deg)) -> approx 110px, 89px */
    left: 107px;
    top: 86px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    z-index: 2;
}

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

.cv-card h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.cv-card p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

.cv-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    font-size: 12px;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.5);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.cv-bottom-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Why Choose Arogan Modern */
.why-choose-modern {
    position: relative;
    background-color: #F5F8FA; /* Light background */
    overflow: hidden;
}

.wc-bg-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 35%;
    height: 100%;
    z-index: 1;
}
.wc-bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    mask-image: linear-gradient(to right, transparent, black 40%);
    -webkit-mask-image: linear-gradient(to right, transparent, black 40%);
}

.wc-angled-text {
    position: absolute;
    right: 5%;
    bottom: 25%;
    transform: rotate(-10deg);
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-navy);
    line-height: 1.2;
    z-index: 2;
    opacity: 0.8;
}
.wc-angled-line {
    width: 60px;
    height: 4px;
    background-color: var(--primary-navy);
    margin-top: 15px;
}

.wc-layout {
    position: relative;
    z-index: 3;
    padding-right: 15%; /* To give space for background image */
}

.wc-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 50px;
}

.wc-title-block {
    max-width: 650px;
}

.wc-heading {
    font-size: 56px;
    font-weight: 800;
    color: var(--primary-navy);
    margin-bottom: 20px;
    line-height: 1.1;
}

.wc-desc {
    font-size: 18px;
    color: #4a5568;
    line-height: 1.6;
}

.wc-top-right {
    text-align: right;
    font-size: 12px;
    letter-spacing: 3px;
    color: rgba(11, 42, 91, 0.4);
    font-weight: 700;
    line-height: 1.8;
}

.wc-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}

.wc-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px 15px;
    display: flex;
    align-items: center;
    position: relative;
    box-shadow: 0 10px 40px rgba(0,0,0,0.04);
    overflow: hidden;
}

.wc-card-bg-num {
    position: absolute;
    top: 5px;
    right: 15px;
    font-size: 70px;
    font-weight: 900;
    color: rgba(11, 42, 91, 0.03);
    line-height: 1;
    z-index: 0;
}

.wc-card-left {
    margin-right: 15px;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

.wc-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.wc-card-content {
    flex: 1;
    position: relative;
    z-index: 1;
}

.wc-card-content h4 {
    font-size: 18px;
    font-weight: 800;
    color: var(--primary-navy);
    margin-bottom: 8px;
    line-height: 1.3;
}

.wc-card-content p {
    font-size: 13px;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}

.wc-card-arrow {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(11, 42, 91, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-navy);
    font-size: 18px;
    margin-left: 10px;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
    cursor: pointer;
    flex-shrink: 0;
}

.wc-card:hover .wc-card-arrow {
    background: var(--primary-navy);
    color: #fff;
    border-color: var(--primary-navy);
}

.wc-bottom-features {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 40px;
    border-top: 1px solid rgba(11, 42, 91, 0.1);
}

.wc-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--primary-navy);
    font-size: 14px;
    font-weight: 700;
}

.wc-bottom-right-label {
    font-size: 11px;
    letter-spacing: 2px;
    font-weight: 700;
    color: rgba(11, 42, 91, 0.4);
}

/* Responsive Overrides */
@media (max-width: 992px) {
    .two-col {
        grid-template-columns: 1fr;
    }

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

    .values-container {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .value-item {
        width: 100%;
        border-radius: 8px;
        height: auto;
        padding: 30px;
    }

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

@media (max-width: 768px) {

    .stats-grid,
    .choose-grid {
        grid-template-columns: 1fr;
    }
}

/* Services Modern */
.services-modern {
    position: relative;
    background-color: #F5F8FA;
    overflow: hidden;
    padding-top: 80px;
    padding-bottom: 80px;
}

.srv-bg-blueprint {
    position: absolute;
    top: 0;
    left: -20%;
    width: 80%;
    height: 100%;
    z-index: 1;
    opacity: 0.15;
    pointer-events: none;
}
.srv-bg-blueprint img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-mask-image: radial-gradient(circle at center, black 10%, transparent 60%);
    mask-image: radial-gradient(circle at center, black 10%, transparent 60%);
}

.srv-watermark {
    position: absolute;
    font-size: 12px;
    letter-spacing: 4px;
    font-weight: 800;
    color: rgba(11, 42, 91, 0.25);
    line-height: 1.8;
}
.srv-wm-tr {
    top: 50px;
    right: 5%;
}
.srv-wm-cursive {
    top: 60px;
    right: 5%;
    font-family: 'Brush Script MT', cursive;
    font-size: 42px;
    letter-spacing: 0;
    color: var(--primary-navy);
    transform: rotate(-10deg);
    line-height: 1.2;
    z-index: 2;
}
.srv-wm-ml {
    top: 300px;
    left: 2%;
    font-size: 11px;
}
.srv-wm-line {
    width: 30px;
    height: 2px;
    background: rgba(11, 42, 91, 0.3);
    margin-top: 10px;
}
.srv-wm-bl {
    bottom: 50px;
    left: 2%;
}
.srv-wm-br {
    bottom: 50px;
    right: 5%;
    text-align: right;
}

.srv-layout {
    position: relative;
    z-index: 3;
}

.srv-header-block {
    margin-bottom: 50px;
    max-width: 700px;
}
.srv-header-block .section-label {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--accent-orange);
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 15px;
}
.srv-header-block .section-label::before {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: var(--accent-orange);
}

.srv-heading {
    font-size: 50px;
    font-weight: 900;
    color: var(--primary-navy);
    margin-bottom: 20px;
    line-height: 1.1;
}

.srv-desc {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.6;
}

/* Card Common */
.srv-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    overflow: visible;
    position: relative;
    border-bottom: 4px solid var(--card-theme);
    display: flex;
    transition: transform 0.3s ease;
}
.srv-card:hover {
    transform: translateY(-5px);
}

.srv-card-img-box {
    position: relative;
}
.srv-card-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}
.srv-card-icon {
    position: absolute;
    bottom: -20px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: var(--card-theme);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid #fff;
    z-index: 2;
}

.srv-card-content {
    padding: 40px 30px 30px;
    display: flex;
    flex-direction: column;
}

.srv-card-title-row {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}
.srv-num {
    font-size: 40px;
    font-weight: 900;
    color: rgba(11, 42, 91, 0.15);
    line-height: 1;
}
.srv-card-title-row h4 {
    font-size: 20px;
    font-weight: 800;
    color: var(--primary-navy);
    line-height: 1.2;
}

.srv-card-content > p {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 20px;
    line-height: 1.5;
}

.srv-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    flex-grow: 1;
}
.srv-list li {
    font-size: 13px;
    color: #4a5568;
    margin-bottom: 8px;
    line-height: 1.4;
}
.srv-list li:last-child {
    margin-bottom: 0;
}

.srv-explore {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 800;
    color: var(--primary-navy);
    text-decoration: none;
}
.explore-circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(11, 42, 91, 0.05);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;
}
.explore-circle::after {
    content: '→';
    font-weight: bold;
}
.srv-explore:hover .explore-circle {
    background: var(--card-theme);
    color: #fff;
}

/* Grids */
.srv-grid-top {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}
.srv-card-vertical {
    flex-direction: column;
}
.srv-card-vertical .srv-card-img-box {
    height: 220px;
}

.srv-grid-bottom {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}
.srv-card-horizontal {
    flex-direction: row;
}
.srv-card-horizontal .srv-card-img-box {
    width: 40%;
}
.srv-card-horizontal .srv-card-img-box img {
    border-top-right-radius: 0;
    border-bottom-left-radius: 12px;
}
.srv-card-horizontal .srv-card-content {
    width: 60%;
    padding: 30px;
}
.srv-card-horizontal .srv-card-icon {
    left: auto;
    right: -30px;
    bottom: 20px;
}

/* Industries We Serve */
.industries-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.industry-item {
    flex: 1;
    min-width: 200px;
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    text-align: center;
    border-bottom: 3px solid var(--primary-navy);
    transition: var(--transition-smooth);
}

.industry-item:hover {
    border-bottom-color: var(--accent-cyan);
    transform: translateY(-5px);
}

.industry-item h4 {
    font-size: 22px;
    color: var(--arogan-teal);
    margin-bottom: 20px;
}

.industry-item ul {
    list-style: none;
    padding: 0;
}

.industry-item ul li {
    padding: 5px 0;
    color: #4a5568;
    font-size: 15px;
}

/* Responsive updates for new sections */
@media (max-width: 992px) {
    .detailed-services-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .detailed-services-grid {
        grid-template-columns: 1fr;
    }

    .industries-flex {
        flex-direction: column;
    }
}

/* Projects Timeline */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 40px auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 2px;
    background: var(--arogan-teal);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
}

.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    right: -8px;
    background-color: var(--accent-orange);
    border: 4px solid var(--deep-navy);
    top: 15px;
    border-radius: 50%;
    z-index: 1;
}

.timeline-item:nth-child(even)::after {
    left: -8px;
}

.timeline-year {
    font-size: 28px;
    font-weight: 800;
    color: var(--accent-cyan);
    margin-bottom: 15px;
}

.timeline-project {
    margin-bottom: 15px;
}

.timeline-project h5 {
    font-size: 18px;
    color: var(--white);
    margin-bottom: 5px;
}

.timeline-project p {
    color: #aaa;
    font-size: 14px;
}

/* Featured Projects */
.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.featured-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    background: var(--white);
    transition: var(--transition-smooth);
}

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

.featured-img {
    position: relative;
    height: 300px;
}

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

.featured-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-orange);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
}

.featured-info {
    padding: 30px;
}

.featured-info h3 {
    font-size: 22px;
    color: var(--primary-navy);
    margin-bottom: 10px;
}

.location,
.details {
    color: #666;
    font-size: 15px;
    margin-bottom: 5px;
}

/* Masonry Gallery */
.gallery-filters {
    margin-bottom: 40px;
}

.filter-btn {
    background: transparent;
    border: 2px solid var(--primary-navy);
    color: var(--primary-navy);
    padding: 8px 20px;
    margin: 0 5px 10px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-navy);
    color: var(--white);
}

.masonry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.masonry-item {
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
}

.masonry-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.masonry-item:hover img {
    transform: scale(1.1);
}

/* Arch Gallery */
.arch-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.arch-gallery-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    transition: var(--transition-smooth);
}

.arch-gallery-grid img:hover {
    transform: scale(1.02);
}

/* Clients */
.clients-logo-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.client-logo {
    background: var(--white);
    padding: 20px 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    font-weight: bold;
    color: var(--dark-text);
    filter: grayscale(100%);
    opacity: 0.7;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 200px;
}

.client-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
    color: var(--primary-navy);
    transform: translateY(-5px);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 80vh;
}

.close-lightbox {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

@media (max-width: 768px) {
    .timeline::after {
        left: 31px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
        text-align: left !important;
    }

    .timeline-item:nth-child(even),
    .timeline-item:nth-child(odd) {
        left: 0;
    }

    .timeline-item::after {
        left: 23px !important;
    }
}
}

/* Team */
.team-subheading {
    text-align: center;
    font-size: 24px;
    color: var(--arogan-teal);
    margin-bottom: 30px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.management-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.team-card {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition-smooth);
    border-bottom: 3px solid transparent;
}

.team-card:hover {
    transform: translateY(-5px);
    border-bottom-color: var(--accent-orange);
}

.team-card h4 {
    font-size: 20px;
    color: var(--primary-navy);
    margin-bottom: 5px;
}

.team-card p {
    color: #666;
    font-size: 14px;
}

/* Director Message */
.director-img {
    border-radius: 8px;
    overflow: hidden;
    height: 400px;
}

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

/* Form */
.premium-form {
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-row input,
.form-row select,
.form-row textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 16px;
    transition: var(--transition-smooth);
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
    outline: none;
    border-color: var(--accent-orange);
    box-shadow: 0 0 0 3px rgba(242, 140, 40, 0.1);
}

@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
    }
}

/* ------------------------------------- */
/* 12. INDUSTRIES WE SERVE MODERN        */
/* ------------------------------------- */
.ind-header {
    margin-bottom: 40px;
}
.ind-heading {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary-navy);
    margin-bottom: 10px;
    letter-spacing: -1px;
}
.ind-header-line {
    width: 60px;
    height: 3px;
    background: var(--arogan-teal);
    margin: 0 auto 20px auto;
}
.ind-subtitle {
    font-size: 14px;
    color: #64748b;
    letter-spacing: 2px;
    font-weight: 600;
    text-transform: uppercase;
}
.ind-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}
.ind-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.ind-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}
.ind-card-img {
    position: relative;
    height: 200px;
}
.ind-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}
.ind-wave-container {
    position: absolute;
    bottom: -2px; /* Prevent tiny gaps */
    left: 0;
    width: 100%;
    line-height: 0;
}
.ind-wave-container svg {
    display: block;
    width: 100%;
    height: 60px;
}
.ind-icon-wrap {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--theme-color);
    border: 4px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    z-index: 2;
}
.ind-card-content {
    padding: 40px 20px 20px 20px;
    text-align: center;
}
.ind-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--primary-navy);
    margin-bottom: 20px;
}
.ind-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}
.ind-list li {
    font-size: 15px;
    color: #475569;
    margin-bottom: 10px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}
.chevron {
    color: var(--theme-color);
    font-size: 20px;
    font-weight: 900;
    line-height: 1;
}

/* FMCG Banner */
.fmcg-banner {
    position: relative;
    background: linear-gradient(90deg, #e7f7e9 0%, #ffffff 50%);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 40px 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.fmcg-bg-img {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    object-fit: cover;
    -webkit-mask-image: linear-gradient(to right, transparent, black 30%);
    mask-image: linear-gradient(to right, transparent, black 30%);
    z-index: 1;
}
.fmcg-content {
    position: relative;
    z-index: 2;
    width: 40%;
}
.fmcg-title {
    font-size: 32px;
    font-weight: 900;
    color: var(--primary-navy);
    margin-bottom: 15px;
}
.fmcg-tagline {
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    font-size: 18px;
    font-weight: 700;
    color: #22c55e;
    line-height: 1.2;
    text-align: right;
    letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 1024px) {
    .ind-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .ind-grid {
        grid-template-columns: 1fr;
    }
    .fmcg-banner {
        flex-direction: column;
        padding: 30px;
    }
    .fmcg-bg-img {
        width: 100%;
        -webkit-mask-image: linear-gradient(to bottom, transparent, black 50%);
        mask-image: linear-gradient(to bottom, transparent, black 50%);
    }
    .fmcg-content {
        width: 100%;
        margin-bottom: 30px;
    }
    .fmcg-tagline {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        text-align: left;
    }
}

/* ------------------------------------- */
/* 13. PROJECTS SECTION MODERN           */
/* ------------------------------------- */
.projects-timeline-modern {
    background: radial-gradient(circle at top left, #051630 0%, #030e21 100%);
    padding: 80px 0;
    color: #fff;
    position: relative;
    overflow: hidden;
}
/* Abstract Background Blobs */
.projects-timeline-modern::before {
    content: '';
    position: absolute;
    top: -200px;
    left: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(12, 137, 219, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}
.projects-timeline-modern::after {
    content: '';
    position: absolute;
    bottom: -200px;
    right: -200px;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 107, 99, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}
.pt-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* Header */
.pt-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 60px;
}
.pt-title-area {
    max-width: 600px;
}
.pt-top-subtitle {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--arogan-teal);
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 14px;
    margin-bottom: 10px;
}
.pt-top-subtitle .line {
    width: 30px;
    height: 2px;
    background: var(--arogan-teal);
}
.pt-heading {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 10px;
    line-height: 1.2;
}
.pt-desc {
    color: #a0aec0;
    font-size: 18px;
}
.pt-badges {
    display: flex;
    gap: 30px;
}
.pt-badge {
    text-align: center;
}
.pt-badge-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 10px auto;
    color: var(--accent-cyan);
}
.pt-badge span {
    font-size: 13px;
    color: #e2e8f0;
    font-weight: 600;
    line-height: 1.4;
}

/* Timeline */
.pt-timeline {
    position: relative;
    padding: 40px 0;
    margin-bottom: 40px;
}
.pt-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: linear-gradient(to bottom, var(--accent-cyan), transparent);
    transform: translateX(-50%);
}
.pt-row {
    position: relative;
    width: 45%;
    margin-bottom: 60px;
}
.pt-left {
    margin-right: auto;
}
.pt-right {
    margin-left: auto;
}
.pt-offset-1 {
    margin-top: -80px;
}
.pt-offset-2 {
    margin-top: 40px;
}

.pt-year-badge {
    background: #0d274d;
    border: 2px solid var(--accent-cyan);
    color: #fff;
    font-size: 20px;
    font-weight: 800;
    padding: 8px 25px;
    border-radius: 30px;
    display: inline-block;
    position: absolute;
    top: 0;
}
.pt-left .pt-year-badge {
    right: -50px; /* Overlap center line */
    transform: translateX(100%);
}
.pt-right .pt-year-badge {
    left: -50px;
    transform: translateX(-100%);
}
/* Orange Dot on line */
.pt-year-badge::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    background: var(--accent-orange);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: 0 0 10px var(--accent-orange);
}
.pt-left .pt-year-badge::after {
    right: -25px;
}
.pt-right .pt-year-badge::after {
    left: -25px;
}

/* Cards */
.pt-cards {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 50px;
}
.pt-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    padding: 10px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    cursor: pointer;
}
.pt-card:hover {
    background: rgba(255,255,255,0.08);
    border-color: var(--accent-cyan);
    transform: translateX(5px);
}
.pt-card-img {
    width: 80px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
    margin-right: 15px;
}
.pt-card-info {
    flex: 1;
}
.pt-card-info h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #fff;
}
.pt-meta {
    display: flex;
    gap: 15px;
    font-size: 12px;
    color: #a0aec0;
}
.pt-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}
.pt-meta svg {
    color: var(--accent-cyan);
}
.pt-card-arrow {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 15px;
    margin-right: 10px;
    transition: all 0.3s;
}
.pt-card:hover .pt-card-arrow {
    background: var(--accent-cyan);
    border-color: var(--accent-cyan);
    color: #fff;
}

.pt-ellipsis {
    text-align: center;
    margin: 40px 0;
    display: flex;
    justify-content: center;
    gap: 10px;
}
.pt-ellipsis span {
    width: 6px;
    height: 6px;
    background: var(--accent-cyan);
    border-radius: 50%;
}

/* Bottom Stats & Button */
.pt-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 50px;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 40px;
}
.pt-stats {
    display: flex;
    gap: 40px;
}
.pt-stat {
    display: flex;
    align-items: center;
    gap: 15px;
}
.pt-stat .icon {
    color: var(--accent-cyan);
}
.pt-stat .text {
    display: flex;
    flex-direction: column;
}
.pt-stat .text strong {
    font-size: 20px;
    font-weight: 800;
}
.pt-stat .text span {
    font-size: 13px;
    color: #a0aec0;
}

.pt-btn-glow {
    background: linear-gradient(90deg, var(--accent-orange), #ff6b00);
    color: #fff;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    box-shadow: 0 10px 20px rgba(242, 140, 40, 0.4);
    transition: all 0.3s;
}
.pt-btn-glow:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(242, 140, 40, 0.6);
    color: #fff;
}

/* Responsive */
@media (max-width: 992px) {
    .pt-header {
        flex-direction: column;
        gap: 30px;
    }
    .pt-bottom {
        flex-direction: column;
        gap: 30px;
        align-items: flex-start;
    }
    .pt-stats {
        flex-wrap: wrap;
    }
}
@media (max-width: 768px) {
    .pt-line {
        display: none;
    }
    .pt-row {
        width: 100%;
        margin-top: 0 !important;
        margin-bottom: 40px;
    }
    .pt-year-badge {
        position: relative;
        transform: none !important;
        left: 0 !important;
        right: 0 !important;
        margin-bottom: -30px;
        z-index: 2;
    }
    .pt-year-badge::after {
        display: none;
    }
    .pt-card {
        flex-direction: column;
        align-items: flex-start;
        position: relative;
    }
    .pt-card-img {
        width: 100%;
        height: 120px;
        margin-bottom: 15px;
        margin-right: 0;
    }
    .pt-card-arrow {
        position: absolute;
        top: 20px;
        right: 10px;
        background: rgba(0,0,0,0.5);
    }
}

/* ------------------------------------- */
/* 15. PORTFOLIO MODERN SECTION          */
/* ------------------------------------- */
.portfolio-gallery {
    position: relative;
    overflow: hidden;
    background: #f8fbff; /* Very light blue background based on image */
}

/* Background decorations */
.portfolio-gallery::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(13, 110, 253, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}
.portfolio-gallery::after {
    content: '';
    position: absolute;
    bottom: -150px;
    right: -150px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 107, 99, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}
.portfolio-gallery .container {
    position: relative;
    z-index: 2;
}

.port-top-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--arogan-teal);
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 14px;
    margin-bottom: 15px;
    text-transform: uppercase;
}
.port-top-subtitle .line {
    width: 40px;
    height: 2px;
    background: var(--arogan-teal);
}
.port-heading {
    font-size: 46px;
    font-weight: 800;
    color: #0b1a30;
    margin-bottom: 15px;
}
.port-desc {
    color: #64748b;
    font-size: 18px;
}

/* Filters */
.modern-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}
.modern-filters .filter-btn {
    background: transparent;
    border: 1px solid #cbd5e1;
    color: #475569;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.modern-filters .filter-btn:hover {
    border-color: #0d6efd;
    color: #0d6efd;
}
.modern-filters .filter-btn.active {
    background: #0b1a30; /* Dark Navy for active */
    border-color: #0b1a30;
    color: #fff;
    box-shadow: 0 4px 10px rgba(11, 26, 48, 0.2);
}

/* Grid layout */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.port-card {
    background: #fff;
    border-radius: 20px;
    padding: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}
.port-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}
.port-img-wrap {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 220px;
    margin-bottom: 20px;
}
.port-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.port-card:hover .port-img-wrap img {
    transform: scale(1.05);
}
.port-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(0,0,0,0.6);
    color: #fff;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    backdrop-filter: blur(5px);
}
.port-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5px 10px 5px;
}
.port-text h4 {
    font-size: 18px;
    font-weight: 700;
    color: #0b1a30;
    margin-bottom: 5px;
}
.port-text p {
    font-size: 14px;
    color: #94a3b8;
    margin: 0;
}
.port-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f1f5f9;
    color: #0d6efd;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}
.port-card:hover .port-arrow {
    background: #0d6efd;
    color: #fff;
}

/* Button */
.port-btn-dark {
    display: inline-block;
    background: #0b1a30;
    color: #fff;
    padding: 15px 35px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}
.port-btn-dark:hover {
    background: #0d6efd;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(13, 110, 253, 0.3);
}

@media (max-width: 992px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    .port-heading {
        font-size: 36px;
    }
}

/* ------------------------------------- */
/* 16. MODULAR OT MODERN SECTION         */
/* ------------------------------------- */
.modular-ot-modern {
    position: relative;
    padding: 80px 0;
    background: #f4f9fc;
    overflow: hidden;
}

/* Abstract Background Shapes */
.modular-ot-modern::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #0d6efd 0%, #0099ff 100%);
    border-radius: 50%;
    opacity: 0.1;
    z-index: 1;
}
.modular-ot-modern::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -100px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #0d6efd 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0.05;
    z-index: 1;
}

.mot-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 2;
}

/* Left Content */
.mot-content {
    flex: 1;
}
.mot-top-subtitle {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #94a3b8;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 13px;
    margin-bottom: 15px;
}
.mot-top-subtitle .line {
    width: 30px;
    height: 2px;
    background: #00a0e3;
}
.mot-heading {
    font-size: 42px;
    font-weight: 800;
    color: #0b1a30;
    line-height: 1.2;
    margin-bottom: 20px;
}
.mot-desc {
    color: #475569;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.mot-features {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.mot-features li {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 15px;
    font-weight: 500;
    color: #334155;
}
.mot-icon-wrap {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mot-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #0b1a30;
    color: #fff;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}
.mot-btn:hover {
    background: #0d6efd;
    transform: translateX(5px);
    color: #fff;
}

/* Right Image Side */
.mot-image-side {
    flex: 1;
    position: relative;
}
.mot-image-wrap {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border: 5px solid #fff;
}
.mot-image-wrap img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
}

/* Badges */
.mot-badge-top {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 80px;
    height: 80px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    z-index: 3;
}
.mot-badge-bottom {
    position: absolute;
    bottom: -15px;
    right: -15px;
    background: #fff;
    padding: 12px 20px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    z-index: 3;
}
.mot-badge-bottom .badge-icon {
    width: 40px;
    height: 40px;
    background: #d1fae5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mot-badge-bottom .badge-text {
    font-size: 13px;
    color: #475569;
    line-height: 1.3;
}
.mot-badge-bottom .badge-text strong {
    color: #0b1a30;
    font-size: 15px;
}

@media (max-width: 992px) {
    .mot-container {
        flex-direction: column;
    }
    .mot-badge-top {
        top: 10px;
        left: 10px;
    }
    .mot-badge-bottom {
        bottom: 10px;
        right: 10px;
    }
}

/* ------------------------------------- */
/* 17. ARCHITECTURE & DESIGN MODERN      */
/* ------------------------------------- */
.arch-design-modern {
    background: radial-gradient(circle at top right, #09203f 0%, #030e21 100%);
    padding: 80px 0;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.arch-design-modern::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 800px;
    height: 800px;
    background-image: 
        linear-gradient(rgba(0, 198, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 198, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    transform: rotate(15deg);
    z-index: 1;
}
.arch-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* Header */
.arch-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 50px;
}
.arch-title-area {
    max-width: 700px;
}
.arch-subtitle {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #00c6ff;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 13px;
    margin-bottom: 15px;
    text-transform: uppercase;
}
.arch-subtitle .line {
    width: 40px;
    height: 2px;
    background: #00c6ff;
}
.arch-heading {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}
.arch-desc {
    color: #94a3b8;
    font-size: 16px;
    line-height: 1.6;
}

.arch-side-list {
    border-left: 2px solid rgba(0, 198, 255, 0.2);
    padding-left: 20px;
}
.arch-side-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.arch-side-list li {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.5);
    transition: color 0.3s ease;
    cursor: default;
}
.arch-side-list li:hover {
    color: #00c6ff;
}

/* Cards */
.arch-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.arch-card {
    background: #0b1d3a;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255,255,255,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.arch-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    border-color: rgba(0, 198, 255, 0.3);
}
.arch-card-img {
    width: 100%;
    height: 200px;
    overflow: hidden;
}
.arch-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.arch-card:hover .arch-card-img img {
    transform: scale(1.05);
}
.arch-card-content {
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    background: #0f274a;
}
.arch-card-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #00c6ff;
    color: #0b1d3a;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.arch-card-text {
    flex: 1;
}
.arch-card-text h4 {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
}
.arch-card-text p {
    font-size: 13px;
    color: #94a3b8;
    margin: 0;
}
.arch-card-arrow {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    flex-shrink: 0;
}
.arch-card:hover .arch-card-arrow {
    background: #00c6ff;
    border-color: #00c6ff;
    color: #0b1d3a;
}

/* Indicators */
.arch-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
}
.arch-dot {
    width: 30px;
    height: 4px;
    background: rgba(255,255,255,0.1);
    border-radius: 2px;
    transition: background 0.3s ease;
    cursor: pointer;
}
.arch-dot.active {
    background: #00c6ff;
}

@media (max-width: 992px) {
    .arch-header {
        flex-direction: column;
        gap: 30px;
    }
    .arch-side-list {
        border-left: none;
        border-top: 2px solid rgba(0, 198, 255, 0.2);
        padding-left: 0;
        padding-top: 20px;
        width: 100%;
    }
    .arch-side-list ul {
        flex-direction: row;
        gap: 20px;
        flex-wrap: wrap;
    }
    .arch-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .arch-cards-grid {
        grid-template-columns: 1fr;
    }
}

/* ------------------------------------- */
/* 18. INTERIOR SPACES MODERN            */
/* ------------------------------------- */
.interior-spaces-modern {
    background: #f8fbff;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

/* Background graphics */
.interior-spaces-modern::before {
    content: '';
    position: absolute;
    top: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #e0f2fe 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}
.interior-spaces-modern::after {
    content: '';
    position: absolute;
    bottom: -150px;
    right: -150px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #e0f2fe 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

/* Dotted pattern */
.interior-spaces-modern .interior-container::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20px;
    width: 100px;
    height: 100px;
    background-image: radial-gradient(#bae6fd 2px, transparent 2px);
    background-size: 15px 15px;
    z-index: 1;
}

.interior-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.int-header {
    margin-bottom: 50px;
}
.int-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    color: #0369a1;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 13px;
    margin-bottom: 15px;
    text-transform: uppercase;
}
.int-subtitle .line {
    width: 40px;
    height: 1px;
    background: #00a0e3;
}
.int-heading {
    font-size: 42px;
    font-weight: 800;
    color: #0b1a30;
    margin-bottom: 15px;
}
.int-heading .text-cyan {
    color: #00a0e3;
}
.int-desc {
    color: #64748b;
    font-size: 16px;
    font-weight: 500;
}

.int-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}
.int-card {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    background: transparent;
}
.int-card-img {
    height: 250px;
    width: 100%;
}
.int-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}
.int-card-body {
    background: #fff;
    padding: 20px;
    border-radius: 20px;
    margin-top: -30px; /* Overlaps image slightly */
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.03);
}
.int-icon-circle {
    width: 50px;
    height: 50px;
    background: #f0f9ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.int-card-text {
    flex: 1;
}
.int-card-text h4 {
    font-size: 16px;
    font-weight: 700;
    color: #0b1a30;
    margin-bottom: 5px;
}
.int-card-text p {
    font-size: 13px;
    color: #64748b;
    margin: 0;
}
.int-card-btn {
    width: 35px;
    height: 35px;
    background: #0b1a30;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    flex-shrink: 0;
}
.int-card-btn:hover {
    background: #00a0e3;
    transform: translateX(3px);
}

.int-bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}
.int-indicators {
    display: flex;
    gap: 8px;
}
.int-dot {
    width: 30px;
    height: 6px;
    background: #dbeafe;
    border-radius: 3px;
    cursor: pointer;
}
.int-dot.active {
    background: #00a0e3;
}
.int-view-all a {
    color: #0b1a30;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: color 0.3s ease;
}
.int-view-all a:hover {
    color: #00a0e3;
}

@media (max-width: 992px) {
    .int-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .int-cards-grid {
        grid-template-columns: 1fr;
    }
    .int-bottom-row {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
}

/* ------------------------------------- */
/* 19. OUR CLIENTS MODERN                */
/* ------------------------------------- */
.clients-modern {
    background: #f0f7fb;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

/* Background elements */
.clients-modern::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1519494026892-80bbd2d6fd0d?q=80&w=2053&auto=format&fit=crop');
    background-size: cover;
    background-position: right center;
    opacity: 0.15;
    z-index: 1;
    mask-image: linear-gradient(to right, transparent, black);
    -webkit-mask-image: linear-gradient(to right, transparent, black);
}
.clients-modern::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #e0f2fe 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.clients-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.clients-header {
    margin-bottom: 40px;
}
.clients-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    color: #0369a1;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 13px;
    margin-bottom: 15px;
    text-transform: uppercase;
}
.clients-subtitle .line {
    width: 40px;
    height: 1px;
    background: #00a0e3;
}
.clients-heading {
    font-size: 42px;
    font-weight: 800;
    color: #0b1a30;
    margin-bottom: 15px;
}
.clients-desc {
    color: #64748b;
    font-size: 16px;
    font-weight: 500;
}

/* Grid Layout */
.clients-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}
.client-box {
    background: #fff;
    border-radius: 10px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
    font-weight: 700;
    font-size: 12px;
    color: #475569;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.client-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    color: #0b1a30;
}

/* Bottom Row */
.clients-bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
}
.clients-side-list {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #94a3b8;
    line-height: 1.8;
}
.clients-indicators {
    display: flex;
    gap: 8px;
}
.c-dot {
    width: 30px;
    height: 6px;
    background: #dbeafe;
    border-radius: 3px;
    cursor: pointer;
}
.c-dot.active {
    background: #00a0e3;
}
.clients-btn {
    display: inline-flex;
    align-items: center;
    background: #0b1a30;
    color: #fff;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
}
.clients-btn:hover {
    background: #00a0e3;
    transform: translateY(-2px);
    color: #fff;
}

@media (max-width: 992px) {
    .clients-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 768px) {
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .clients-bottom-row {
        flex-direction: column;
        gap: 20px;
        align-items: center;
        text-align: center;
    }
}

/* ------------------------------------- */
/* 20. ORGANIZATIONAL STRUCTURE MODERN   */
/* ------------------------------------- */
.org-structure-modern {
    background: #f4f9fc;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.org-structure-modern::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: #e0f2fe;
    border-radius: 50%;
    z-index: 1;
}
.org-structure-modern::after {
    content: '';
    position: absolute;
    bottom: -150px;
    right: -150px;
    width: 500px;
    height: 500px;
    background: #e0f2fe;
    border-radius: 50%;
    z-index: 1;
}

.org-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.org-heading {
    font-size: 42px;
    font-weight: 800;
    color: #0b1a30;
    margin-bottom: 10px;
}
.org-heading .text-blue {
    color: #007bff; /* Bright blue from image */
}
.org-heading-line {
    width: 60px;
    height: 4px;
    background: #007bff;
    margin: 0 auto 50px auto;
    border-radius: 2px;
}

.org-block {
    background: rgba(255, 255, 255, 0.7);
    border-radius: 15px;
    padding: 50px 30px 30px 30px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    margin-bottom: 40px;
    border: 1px solid rgba(255,255,255,1);
    backdrop-filter: blur(5px);
}
.org-block-badge {
    position: absolute;
    top: 0;
    left: 0;
    background: #0066cc; /* Slanted blue badge */
    color: #fff;
    padding: 10px 40px 10px 20px;
    font-weight: 700;
    font-size: 16px;
    border-top-left-radius: 15px;
    clip-path: polygon(0 0, 100% 0, 90% 100%, 0% 100%);
}

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

.org-card {
    background: #fff;
    border-radius: 8px;
    padding: 20px 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
    border-bottom: 4px solid transparent; /* Placeholder for gradients */
    transition: transform 0.3s ease;
}
.org-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}
.org-card h4 {
    font-size: 15px;
    font-weight: 700;
    color: #0b1a30;
    margin-bottom: 5px;
}
.org-card p {
    font-size: 12px;
    color: #94a3b8;
    margin: 0;
}

/* Gradient Borders */
.border-yellow { border-bottom: 4px solid #ffb84d; }
.border-cyan { border-bottom: 4px solid #33ccff; }
.border-green { border-bottom: 4px solid #00cc99; }
.border-cyan-light { border-bottom: 4px solid #66d9ff; }
.border-yellow-light { border-bottom: 4px solid #ffd633; }
.border-green-light { border-bottom: 4px solid #33ff77; }
.border-purple { border-bottom: 4px solid #cc66ff; }
.border-teal { border-bottom: 4px solid #00cca3; }
.border-pink { border-bottom: 4px solid #ff6699; }
.border-blue { border-bottom: 4px solid #6699ff; }
.border-orange { border-bottom: 4px solid #ff9933; }
.border-blue-light { border-bottom: 4px solid #3399ff; }
.border-green-mid { border-bottom: 4px solid #00e673; }
.border-yellow-mid { border-bottom: 4px solid #ffcc00; }
.border-purple-mid { border-bottom: 4px solid #9933ff; }

@media (max-width: 992px) {
    .org-cards-grid.grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .org-cards-grid.grid-3 {
        grid-template-columns: 1fr;
    }
    .org-cards-grid.grid-4 {
        grid-template-columns: 1fr;
    }
}

/* ------------------------------------- */
/* 22. DIRECTOR'S MESSAGE MODERN         */
/* ------------------------------------- */
.director-modern {
    background: #03142f; /* Deep navy from image */
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    color: #fff;
}

/* Background elements */
.director-modern::before {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: #051a3b;
    border-radius: 50%;
    z-index: 1;
}
.director-modern::after {
    content: '';
    position: absolute;
    top: -150px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: #051a3b;
    border-radius: 50%;
    z-index: 1;
}

/* Abstract Dot Pattern */
.dir-container::before {
    content: '';
    position: absolute;
    top: 30px;
    right: 0;
    width: 80px;
    height: 60px;
    background-image: radial-gradient(#33ccff 1.5px, transparent 1.5px);
    background-size: 15px 15px;
    opacity: 0.3;
    z-index: 1;
}
.dir-container::after {
    content: '';
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 60px;
    height: 60px;
    background-image: radial-gradient(#33ccff 1.5px, transparent 1.5px);
    background-size: 15px 15px;
    opacity: 0.3;
    z-index: 1;
}

.dir-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 60px;
}

/* Left: Placeholder */
.dir-left {
    flex: 1;
}
.dir-image-placeholder {
    width: 100%;
    height: 400px;
    border: 1px solid rgba(51, 204, 255, 0.3);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    position: relative;
}
.dir-placeholder-text {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}
.dir-line {
    width: 40px;
    height: 1px;
    background: rgba(255,255,255,0.3);
}
.dir-text {
    font-size: 12px;
    letter-spacing: 4px;
    color: rgba(255,255,255,0.6);
    line-height: 2;
    font-weight: 500;
}

/* Right: Content */
.dir-right {
    flex: 1;
}
.dir-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}
.dir-title .text-cyan {
    color: #00c6ff;
}
.dir-title-line {
    width: 50px;
    height: 3px;
    background: #00c6ff;
    margin-bottom: 30px;
}
.dir-content p {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255,255,255,0.8);
    margin-bottom: 20px;
}
.dir-content p:last-child {
    margin-bottom: 0;
}

@media (max-width: 992px) {
    .dir-container {
        flex-direction: column;
        gap: 40px;
    }
    .dir-left {
        width: 100%;
    }
}
@media (max-width: 768px) {
    .dir-title {
        font-size: 32px;
    }
    .dir-image-placeholder {
        height: 300px;
    }
}

/* ------------------------------------- */
/* 23. CTA SECTION MODERN                */
/* ------------------------------------- */
.cta-modern {
    background: #f97316; /* Vibrant orange */
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    color: #fff;
}

/* Abstract Circles */
.cta-modern::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}
.cta-container::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

/* Dark Blue Swoosh in bottom right corner */
.cta-modern::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 300px;
    height: 250px;
    background: #0b1d3a;
    border-top-left-radius: 100%;
    z-index: 2;
}

/* Background image overlay */
.cta-modern .bg-overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: right center;
    opacity: 0.1;
    z-index: 1;
    mask-image: linear-gradient(to right, transparent, black);
    -webkit-mask-image: linear-gradient(to right, transparent, black);
}

/* Abstract Dot Pattern - Top Left */
.cta-modern .dots-top-left {
    content: '';
    position: absolute;
    top: 40px;
    left: 40px;
    width: 60px;
    height: 45px;
    background-image: radial-gradient(#fff 1.5px, transparent 1.5px);
    background-size: 15px 15px;
    opacity: 0.4;
    z-index: 2;
}

/* Abstract Dot Pattern - Bottom Right */
.cta-modern .dots-bottom-right {
    content: '';
    position: absolute;
    bottom: 30px;
    right: 40px;
    width: 60px;
    height: 45px;
    background-image: radial-gradient(#fff 1.5px, transparent 1.5px);
    background-size: 15px 15px;
    opacity: 0.4;
    z-index: 3; /* above swoop */
}

.cta-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 4;
}

.cta-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    font-weight: 600;
    letter-spacing: 3px;
    font-size: 13px;
    margin-bottom: 20px;
    text-transform: uppercase;
}
.cta-line {
    width: 40px;
    height: 1px;
    background: rgba(255,255,255,0.6);
}
.cta-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}
.cta-title .text-dark-blue {
    color: #0b1d3a;
}
.cta-desc {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}
.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 35px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.cta-btn-dark {
    background: #0b1d3a;
    color: #fff;
}
.cta-btn-dark:hover {
    background: #0f274a;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    color: #fff;
}
.cta-btn-white {
    background: #fff;
    color: #f97316;
}
.cta-btn-white:hover {
    background: #f8fbff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.cta-footer {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.7);
}
.cta-line-small {
    width: 30px;
    height: 1px;
    background: rgba(255,255,255,0.3);
}

@media (max-width: 768px) {
    .cta-title {
        font-size: 42px;
    }
    .cta-buttons {
        flex-direction: column;
    }
}

/* ------------------------------------- */
/* 24. INTERNAL PAGE HERO BANNER         */
/* ------------------------------------- */
.page-hero {
    background: #03142f;
    padding: 60px 0 40px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    color: #fff;
    margin-top: 80px; /* Offset for fixed header */
}
.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1503387762-592deb58ef4e?q=80&w=2071&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: 1;
}
.page-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(3,20,47,0.8), rgba(3,20,47,1));
    z-index: 2;
}
.page-hero-container {
    position: relative;
    z-index: 3;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}
.page-hero-title {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 15px;
}
.page-hero-title .text-cyan {
    color: #00c6ff;
}
.page-hero-desc {
    font-size: 18px;
    color: rgba(255,255,255,0.8);
    font-weight: 400;
    letter-spacing: 1px;
}

/* Breadcrumbs */
.breadcrumbs {
    margin-top: 20px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
}
.breadcrumbs a {
    color: #00c6ff;
    text-decoration: none;
    transition: color 0.3s ease;
}
.breadcrumbs a:hover {
    color: #fff;
}
.breadcrumbs .separator {
    margin: 0 10px;
}

@media (max-width: 768px) {
    .page-hero {
        padding: 100px 0 60px 0;
    }
    .page-hero-title {
        font-size: 38px;
    }
}

/* ------------------------------------- */
/* 25. PREMIUM FORM STYLES               */
/* ------------------------------------- */
.premium-form input,
.premium-form select,
.premium-form textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-family: inherit;
    font-size: 15px;
    color: #333;
    background-color: #f8fafc;
    transition: all 0.3s ease;
    outline: none;
}

.premium-form input:focus,
.premium-form select:focus,
.premium-form textarea:focus {
    border-color: #00c6ff;
    background-color: #fff;
    box-shadow: 0 0 0 4px rgba(0, 198, 255, 0.1);
}

.premium-form select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23131313%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: right 15px top 50%;
    background-size: 12px auto;
}

.premium-form textarea {
    margin-bottom: 20px;
    resize: vertical;
}

/* ------------------------------------- */
/* 26. BUTTON HOVER ANIMATIONS           */
/* ------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn i {
    transition: transform 0.3s ease;
}

.btn:hover i.fa-arrow-right {
    transform: translateX(5px);
}

.btn-magenta:hover {
    background-color: #be123c;
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(225, 29, 72, 0.5);
}

/* ------------------------------------- */
/* 27. PRIMARY & OUTLINE BUTTONS         */
/* ------------------------------------- */
.btn-primary {
    background: linear-gradient(135deg, #00c6ff 0%, #0072ff 100%);
    color: #fff;
    box-shadow: 0 5px 15px rgba(0, 198, 255, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 8px 25px rgba(0, 198, 255, 0.5);
    color: #fff;
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.5);
    padding: 10px 26px; /* Adjust for border width */
}

.btn-outline:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}