/* Main Styles */

/* Variables */
:root {
    /* Updated Primary Colors */
    --gold-start: #FFD700; /* Gold - RGB(255, 215, 0), HSL(51, 100%, 50%) */
    --gold-middle: #FFA500; /* Orange Gold - RGB(255, 165, 0), HSL(39, 100%, 50%) */
    --gold-end: #FFD700; /* Gold - RGB(255, 215, 0), HSL(51, 100%, 50%) */
    --blue-start: #1E3A8A; /* Deep Blue - RGB(30, 58, 138), HSL(220, 64%, 33%) */
    --blue-end: #3B82F6; /* Bright Blue - RGB(59, 130, 246), HSL(217, 91%, 60%) */

    /* Existing Colors (kept for compatibility, updated where necessary) */
    --primary-color: var(--blue-start); /* Updated to Deep Blue for primary elements */
    --primary-dark: #083857; /* Darker shade of primary */
    --primary-light: #4b7491; /* Lighter shade of primary */
    --secondary-color: #1e293b; /* Retained */
    --accent-color: var(--gold-start); /* Updated to Gold for accents */
    --accent-dark: #025072; /* Darker accent */
    --text-color: #1e293b;
    --text-light: #64748b;
    --light-bg: #f8fafc;
    --white: #ffffff;
    --black: #0f172a;
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --border-radius: 8px;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
#header {
    position: fixed;
    top: 0;
    left: 10px;
    width: 100%;
    z-index: 1000;
    background-color: transparent;
    transition: all 0.3s ease;
    padding: 15px 0;
}

#header.scrolled {
    background-color: var(--white);
    box-shadow: var(--shadow);
    padding: 10px 0;
}

#header .container {
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px;
}

.logo {
    flex: 0 0 auto;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--blue-start); /* Company name text in Deep Blue */
    font-weight: 700;
}

.logo-image {
    height: 50px;
    max-width: 100%;
    display: block;
    image-rendering: -webkit-optimize-contrast;
}

#header.scrolled .logo-image {
    filter: none;
}

.nav-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 65px;
    align-items: center;
    margin: 0 20px;
}

.nav-links a {
    color: var(--white);
    font-weight: 500;
    position: relative;
    text-decoration: none;
}

#header.scrolled .nav-links a {
    color: var(--text-color);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, var(--gold-start), var(--gold-middle), var(--gold-end)); /* Gold gradient for nav hover */
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

li.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 1px solid var(--gray-200);
    border-radius: 5px;
    min-width: 160px;
    z-index: 1000;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    background-color: var(--white);
}

li.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 15px;
    color: var(--text-color);
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.dropdown-menu li a:hover {
    background: linear-gradient(to right, var(--gold-start), var(--gold-middle), var(--gold-end));
    color: var(--white);
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(to right, var(--blue-start), var(--blue-end)); /* Blue gradient for primary buttons */
    color: var(--white);
    border: none;
}

.btn-primary:hover {
    background: linear-gradient(to right, var(--blue-end), var(--blue-start));
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--gold-start); /* Gold border for secondary buttons */
}

.btn-secondary:hover {
    background: linear-gradient(to right, var(--gold-start), var(--gold-middle), var(--gold-end));
    color: var(--black);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-small {
    padding: 8px 16px;
    font-size: 14px;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.mobile-menu-btn span {
    display: block;
    width: 28px;
    height: 2px;
    background-color: var(--white);
    transition: all 0.3s ease;
}

#header.scrolled .mobile-menu-btn span {
    background-color: var(--text-color);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

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

    .mobile-menu-btn {
        display: flex;
    }

    .nav-wrapper.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--white);
        padding: 20px;
        box-shadow: var(--shadow);
    }

    .nav-links {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

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

    .btn {
        margin-top: 10px;
    }

    .dropdown-menu {
        position: static;
        transform: none;
        box-shadow: none;
        border: none;
        background-color: transparent;
    }
}

#header, #header .container, .logo a, .nav-links a, .btn {
    transition: all 0.3s ease;
}

/* Hero Section */
#hero {
    background: linear-gradient(135deg, var(--blue-start), var(--blue-end)); /* Blue gradient for hero background */
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 160px 0 80px;
    overflow: hidden;
}

.hero-content {
    color: var(--white);
    max-width: 600px;
    z-index: 10;
    padding-bottom: 120px;
}

.hero-content h1 {
    font-size: 45px;
    margin-bottom: 24px;
    font-weight: 700;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 32px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    z-index: 15;
    position: relative;
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 1;
}

.hero-image {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 45%;
    height: 80%;
    overflow: hidden;
    z-index: 5;
    opacity: 0.4;
    border-radius: 40px;
}

.hero-image img {
    width: 100%;
    height: 60%;
    object-fit: cover;
    border-bottom-left-radius: 40px;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    cursor: pointer;
    pointer-events: auto;
}

.btn-primary {
    background: linear-gradient(to right, var(--blue-start), var(--blue-end));
    color: var(--white);
    border: none;
}

.btn-primary:hover {
    background: linear-gradient(to right, var(--blue-end), var(--blue-start));
    color: var(--white);
    border: none;
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--gold-start);
}

.btn-secondary:hover {
    background: linear-gradient(to right, var(--gold-start), var(--gold-middle), var(--gold-end));
    color: var(--black);
    border: 2px solid var(--gold-start);
}

.typewriter::after {
    content: '|';
    animation: blink 0.7s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header h2 {
    font-size: 36px;
    color: var(--text-color);
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, var(--gold-start), var(--gold-middle), var(--gold-end)); /* Gold gradient for section headers */
    border-radius: 3px;
}

.section-header p {
    color: var(--text-light);
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

/* Services Section */
.uniq-grid-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    padding: 60px;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #f9f4f1;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.uniq-card-item {
    background-color: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 220px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.uniq-card-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.uniq-card-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--gold-start), var(--gold-middle), var(--gold-end)); /* Gold gradient for card borders */
    opacity: 0;
    transition: opacity 0.3s ease;
}

.uniq-card-item:hover::before {
    opacity: 1;
}

.uniq-card-item h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2b2b2b;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.uniq-card-item:hover h2 {
    color: var(--blue-start); /* Deep Blue on hover */
}

.uniq-card-item p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.uniq-card-item:hover p {
    color: #444;
}

.uniq-explore-btn {
    font-size: 0.9rem;
    color: var(--blue-start); /* Deep Blue for explore button */
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.uniq-explore-btn::after {
    content: '→';
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.uniq-explore-btn:hover {
    color: var(--blue-end); /* Bright Blue on hover */
    text-decoration: none;
    transform: translateX(5px);
}

.uniq-explore-btn:hover::after {
    transform: translateX(3px);
}

@media (max-width: 768px) {
    .uniq-grid-wrapper {
        grid-template-columns: 1fr;
        padding: 20px;
    }

    .uniq-card-item {
        height: auto;
    }

    .uniq-card-item:hover {
        transform: translateY(-3px);
    }
}

.uniq-explore-btn:focus {
    outline: 2px solid var(--blue-start);
    outline-offset: 2px;
    border-radius: 3px;
}

/* Our Managed Services */
.ms-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: center;
}

.ms-heading {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 10px;
}

.ms-description {
    font-size: 1.2em;
    color: #666;
    margin-bottom: 30px;
}

.ms-image-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.ms-image-grid img {
    width: 250px;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.ms-carousel-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    overflow: hidden;
}

.ms-carousel {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.ms-carousel-item {
    min-width: 100%;
    background-color: #e8ecef;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-sizing: border-box;
}

.ms-carousel-item h3 {
    font-size: 1.5em;
    color: #2f2d2d;
    margin-bottom: 10px;
}

.ms-carousel-item p {
    font-size: 1em;
    color: #484444;
}

.ms-carousel-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}

/* How We Can Help */
.help-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    padding: 60px;
    margin: 0 auto;
    gap: 40px;
}

.help-text {
    flex: 1;
    max-width: 50%;
}

.help-subtitle {
    font-size: 0.9rem;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.help-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2b2b2b;
    margin-bottom: 20px;
    line-height: 1.2;
}

.help-description {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

.help-image {
    flex: 1;
    max-width: 50%;
    text-align: center;
}

.help-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

@media (max-width: 768px) {
    .help-content {
        flex-direction: column;
        text-align: center;
    }

    .help-text,
    .help-image {
        max-width: 100%;
    }

    .help-title {
        font-size: 2rem;
    }

    .help-description {
        font-size: 0.95rem;
    }
}

/* Data Features Section */
.data-features-section {
    padding: 60px 40px;
    background-color: #fff;
}

.data-features-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.data-feature-card {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 40px;
    border-radius: 10px;
    background-color: #fff;
    transition: box-shadow 0.3s ease;
}

.data-feature-card:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.data-feature-image {
    flex: 0 0 350px;
}

.data-feature-image img {
    max-width: 100%;
    height: auto;
    display: block;
}

.data-feature-content {
    flex: 1;
}

.data-feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2b2b2b;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.data-feature-description {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .data-feature-card {
        flex-direction: column;
        text-align: center;
    }

    .data-feature-image {
        flex: none;
        margin-bottom: 20px;
    }

    .data-feature-title {
        font-size: 1.3rem;
    }

    .data-feature-description {
        font-size: 0.95rem;
    }
}

/* Thought Leadership Section */
.thought-leadership-section {
    padding: 60px 20px;
    background-color: #f0efef;
}

.thought-leadership-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.thought-leadership-subtitle {
    font-size: 0.9rem;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.thought-leadership-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2b2b2b;
    margin-bottom: 20px;
    line-height: 1.2;
}

.thought-leadership-description {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

.thought-leadership-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.thought-leadership-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.thought-leadership-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.thought-leadership-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.thought-leadership-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2b2b2b;
    padding: 20px 20px 10px 20px;
}

.thought-leadership-card-description {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    padding: 0 20px 20px 20px;
}

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

    .thought-leadership-title {
        font-size: 2rem;
    }

    .thought-leadership-description {
        font-size: 0.95rem;
    }

    .thought-leadership-card img {
        height: 250px;
    }
}

/* Who We Are */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

.who-we-are-container {
    display: flex;
    max-width: 1400px;
    margin: 50px auto;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.who-we-are-image-section {
    flex: 1;
}

.who-we-are-image-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.who-we-are-text-section {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.who-we-are-text-section h3 {
    font-size: 14px;
    color: #888;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.who-we-are-text-section h1 {
    font-size: 32px;
    color: var(--blue-start); /* Deep Blue for company name */
    margin-bottom: 20px;
    line-height: 1.2;
}

.who-we-are-text-section p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.who-we-are-link {
    font-size: 14px;
    color: var(--blue-start);
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
}

.who-we-are-link:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .who-we-are-container {
        flex-direction: column;
    }

    .who-we-are-image-section, .who-we-are-text-section {
        flex: none;
        width: 100%;
    }

    .who-we-are-text-section {
        padding: 20px;
    }

    .who-we-are-text-section h1 {
        font-size: 24px;
    }

    .who-we-are-text-section p {
        font-size: 14px;
    }
}


/* Pranaalika Mission Container */
.Pranaalika-mission-container {
    display: flex;
    max-width: 1400px;
    margin: 50px auto;
    background-color: #e6f0fa;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.Pranaalika-mission-text {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.Pranaalika-mission-text h1 {
    font-size: 32px;
    color: var(--blue-start);
    margin-bottom: 20px;
    line-height: 1.2;
}

.Pranaalika-mission-text p {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
}

.Pranaalika-mission-image {
    flex: 1;
    position: relative;
}

.Pranaalika-mission-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .Pranaalika-mission-container {
        flex-direction: column;
    }

    .Pranaalika-mission-text, .Pranaalika-mission-image {
        flex: none;
        width: 100%;
    }

    .Pranaalika-mission-text {
        padding: 20px;
    }

    .Pranaalika-mission-text h1 {
        font-size: 24px;
    }

    .Pranaalika-mission-text p {
        font-size: 14px;
    }

    .Pranaalika-mission-image {
        height: 300px;
    }
}    

/* About Section */
.page-hero {
    background: linear-gradient(135deg, var(--blue-start), var(--blue-end));
    padding: 120px 0 60px;
    color: var(--white);
    text-align: left;
    letter-spacing: 1px;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.page-hero p {
    font-size: 18px;
    max-width: 700px;
    margin: 0;
    margin-left: 0;
    letter-spacing: 2px;
}

/* Mission and Values Section */
#mission-values {
    padding: 25px 0;
    background-color: var(--light-bg);
}

.mission-values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.mission-content .section-header {
    text-align: left;
    margin-bottom: 32px;
}

.mission-content .section-header h2 {
    font-size: 36px;
    color: var(--text-color);
    position: relative;
    display: inline-block;
}

.mission-content .section-header h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, var(--gold-start), var(--gold-middle), var(--gold-end));
    border-radius: 6px;
}

.mission-content p {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    text-align: justify;
}

.values-content h3 {
    font-size: 24px;
    color: var(--text-color);
    margin-bottom: 32px;
    font-weight: 600;
}

.values-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.values-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.values-list li:last-child {
    margin-bottom: 0;
}

.value-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: linear-gradient(to right, var(--blue-start), var(--blue-end)); /* Blue gradient for value numbers */
    color: var(--white);
    border-radius: 50%;
    font-size: 16px;
    font-weight: 600;
    flex-shrink: 0;
}

.value-text h4 {
    font-size: 18px;
    color: var(--text-color);
    margin-bottom: 8px;
    font-weight: 600;
}

.value-text p {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

/* Our Story / Journey */
#our-story {
    padding: 20px 0;
    background-color: var(--light-bg);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--blue-start), var(--blue-end));
}

.timeline ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.timeline li {
    position: relative;
    padding-left: 120px;
    padding-bottom: 40px;
}

.timeline li:last-child {
    padding-bottom: 0;
}

.timeline-year {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 18px;
    font-weight: 700;
    color: var(--blue-start);
    background-color: var(--light-bg);
    padding-right: 16px;
}

.timeline li::before {
    content: '';
    position: absolute;
    left: 43px;
    top: 6px;
    width: 14px;
    height: 14px;
    background: linear-gradient(to right, var(--gold-start), var(--gold-middle), var(--gold-end));
    border-radius: 50%;
    border: 3px solid var(--white);
    box-shadow: var(--shadow);
}

.timeline h3 {
    font-size: 20px;
    color: var(--text-color);
    margin-bottom: 8px;
    font-weight: 600;
}

.timeline p {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

/* Team Section */
#team {
    padding: 120px 0;
    background-color: var(--light-bg);
}

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

.team-member {
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    text-align: center;
}

.team-member:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.member-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

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

.member-social {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 16px;
    padding: 16px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    transform: translateY(100%);
    opacity: 0;
    transition: all 0.3s ease;
}

.team-member:hover .member-social {
    transform: translateY(0);
    opacity: 1;
}

.member-social a {
    width: 36px;
    height: 36px;
    background: linear-gradient(to right, var(--blue-start), var(--blue-end));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.member-social a:hover {
    background: linear-gradient(to right, var(--gold-start), var(--gold-middle), var(--gold-end));
    color: var(--white);
    transform: translateY(-4px);
}

.team-member h3 {
    font-size: 20px;
    margin: 16px 0 4px;
    color: var(--text-color);
}

.team-member p {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 60px;
}


/* Contact Section */
.cu-section {
    background: #faf7f2;
    padding: 60px 20px;
    font-family: 'Segoe UI', sans-serif;
    color: #333;
}

.cu-container {
    max-width: 900px;
    margin: 0 auto;
}

.cu-header {
    text-align: center;
    margin-bottom: 40px;
}

.cu-icon {
    width: 40px;
    margin-bottom: 10px;
}

.cu-subtitle {
    font-size: 14px;
    letter-spacing: 1px;
    color: #777;
    margin-bottom: 8px;
}

.cu-title {
    font-size: 28px;
    margin-bottom: 12px;
    color: #222;
    line-height: 1.3;
}

.cu-description {
    font-size: 15px;
    color: #555;
}

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

.cu-field {
    flex: 1;
    min-width: 200px;
    display: flex;
    flex-direction: column;
}

.cu-field.cu-full {
    flex: 1 1 100%;
}

.cu-field label {
    font-size: 14px;
    margin-bottom: 6px;
    color: #444;
}

.cu-field label span {
    color: #c00;
}

.cu-field input,
.cu-field textarea,
.cu-field select {
    padding: 10px 12px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background: #fff;
    transition: border-color 0.2s;
}

.cu-field input:focus,
.cu-field textarea:focus,
.cu-field select:focus {
    border-color: var(--blue-start);
    outline: none;
}

.cu-disclaimer {
    font-size: 13px;
    color: #555;
    margin-bottom: 20px;
}

.cu-disclaimer label {
    display: block;
    margin-top: 8px;
    font-size: 14px;
    color: #333;
}

.cu-footer-text {
    font-size: 12px;
    color: #666;
    line-height: 1.4;
    margin-bottom: 20px;
}

.cu-submit {
    display: block;
    width: 160px;
    margin: 0 auto;
    padding: 12px 0;
    background: linear-gradient(to right, var(--blue-start), var(--blue-end));
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cu-submit:hover {
    background: linear-gradient(to right, var(--gold-start), var(--gold-middle), var(--gold-end));
}

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

/* AI Services / Point of View */
.section-title {
    font-size: 14px;
    color: #666;
    letter-spacing: 2px;
    margin-bottom: 10px;
    font-weight: normal;
}

h1 {
    font-size: 36px;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #ffffff; /* Deep Blue for headings */
}


.intro {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 10px;
}

.content-image-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

.text-content {
    flex: 1;
}

.image-placeholder {
    flex: 0 0 50%;
    height: 300px;
}

.image-placeholder img {
    width: 520px;
    height: 300px;
    object-fit: cover;
}

.columns {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.column {
    flex: 1;
}

.column h3 {
    font-size: 20px;
    color: var(--blue-start);
    margin-bottom: 15px;
}

.column p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.highlight {
    font-size: 16px;
    color: #333;
    font-weight: bold;
    background-color: #f0f0f0;
    padding: 10px;
    border-radius: 5px;
}

.bullet-points {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bullet-points li {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.bullet-points li:before {
    content: "•";
    color: var(--gold-start);
    position: absolute;
    left: 0;
    font-size: 20px;
}

.bullet-points li strong {
    color: #333;
}

@media (max-width: 768px) {
    .content-image-wrapper {
        flex-direction: column;
    }
    .image-placeholder {
        flex: 0 0 100%;
    }
    .columns {
        flex-direction: column;
    }
}

/* Our 4 Pillars */
.four-pillars-section {
    font-family: 'calluna', sans-serif;
    color: #666;
    padding: 40px;
    text-align: center;
    letter-spacing: 1px;
}

.four-pillars-section h1 {
    font-size: 24px;
    color: var(--blue-start);
    margin-bottom: 30px;
}

.four-pillars-section .pillars-box {
    display: flex;
    justify-content: space-between;
    background: linear-gradient(to right, #f2f2f7, #efeaed);
    padding: 40px;
    border-radius: 8px;
    max-width: 1000px;
    margin: 0 auto;
    text-align: left;
}

.four-pillars-section .pillars-left {
    flex: 1;
    padding-right: 40px;
}

.four-pillars-section .pillars-left p {
    font-size: 18px;
    margin-bottom: 20px;
}

.four-pillars-section .pillars-left p:first-child {
    font-weight: bold;
    font-size: 20px;
}

.four-pillars-section .pillars-right {
    flex: 1;
    font-size: 16px;
    line-height: 1.6;
}

/* How We Can Help */
.content {
    display: flex;
    gap: 40px;
}

.main-text {
    flex: 2;
}

.main-text p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.bullet-points li {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.bullet-points li:before {
    content: "•";
    color: var(--gold-start);
    position: absolute;
    left: 0;
    font-size: 20px;
}

.quote-section {
    flex: 1;
    background-color: #e6f0fa;
    padding: 20px;
    border-radius: 10px;
    position: relative;
}

.quote-section:before {
    content: "“";
    font-size: 40px;
    color: var(--blue-start);
    position: absolute;
    top: 10px;
    left: 20px;
}

.quote-section blockquote {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
    margin: 20px 0 0 0;
    padding: 0;
}

.signature {
    font-size: 14px;
    color: #333;
    line-height: 1.4;
    margin-top: 20px;
    text-align: right;
}

.badge {
    position: absolute;
    bottom: 2%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, background-color 0.3s ease;
    cursor: pointer;
    z-index: 999;
}

.badge img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    pointer-events: none;
}

.badge:hover {
    transform: scale(1.1);
    background-color: rgba(255, 255, 255, 1);
}

/* Footer */
.footer {
    background-color: #0f172a;
    color: #cbd5e1;
    padding: 40px 20px;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
    gap: 20px;
}

.footer-col {
    flex: 1 1 220px;
    min-width: 220px;
}

.footer-col h2,
.footer-col h3 {
    color: #fff;
    margin-bottom: 15px;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
    font-size: 14px;
}

.footer-col ul li a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--gold-start);
}

.contact-info i {
    margin-right: 8px;
    color: var(--gold-start);
}

.newsletter input[type="email"] {
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    margin-bottom: 10px;
    border: 1px solid #1e293b;
    background-color: #1e293b;
    color: #fff;
    border-radius: 4px;
}

.newsletter button {
    width: 100%;
    padding: 10px;
    background: linear-gradient(to right, var(--blue-start), var(--blue-end));
    color: #fff;
    font-weight: bold;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.newsletter button:hover {
    background: linear-gradient(to right, var(--gold-start), var(--gold-middle), var(--gold-end));
}

.social-icons a {
    margin-right: 10px;
    color: #cbd5e1;
    font-size: 18px;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: var(--gold-start);
}

.footer-bottom {
    border-top: 1px solid #1e293b;
    text-align: center;
    padding-top: 20px;
    margin-top: 30px;
    font-size: 14px;
    color: #94a3b8;
}

.footer-social {
    margin-top: 20px;
    display: flex;
    gap: 25px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    background: linear-gradient(to right, var(--blue-start), var(--blue-end));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: linear-gradient(to right, var(--gold-start), var(--gold-middle), var(--gold-end));
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
.quote-section {
    width: 100%;
    display: block !important;
    flex: none;
}

.main-text {
    flex: none;
    width: 100%;
}

.content {
    display: block !important;
    gap: initial;
}
.partners-grid {
    padding: 10px 0;
    display: block;
}

.partners-grid .partner-logo {
    padding: 10px 0;
}
.cards {
    display: block !important;
}

.cards .card {
    margin-bottom: 20px;
}
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.service-list li {
    padding: 8px 0;
    border-bottom: 1px solid var(--gray-200);
}

.service-list li:last-child {
    border-bottom: none;
}

.service-card .btn {
    margin-top: 20px;
}
@media (min-width: 992px) and (max-width: 1199px){
.nav-links {
    gap: 25px;
}
}
@media(max-width: 991px){	

.mobile-menu-btn {
    position: absolute;
    right: 30px;
    top: 40px;
}	
.active-menu .mobile-menu-overlay.active {
    opacity: 0;
    visibility: hidden;
}
.active-menu .nav-wrapper {
    display: block !important;
    left: 0;
    position: absolute !important;
    top: 0;
    right: 0;
}
.nav-links.active {
	right: -20px !important;
	top: 80px;
	width: 100%;
}
li.dropdown>ul {
        display: block !important;
        position: static;
        width: 100%;
        transform: none;
        box-shadow: none;
    }
.nav-links {
	right: -100% !important;
	width: 0 !important;
}
.active-menu .nav-links {
	right: -20px !important;
	width: 100% !important;
}
li.dropdown>ul>li {
    width: 100%;
    display: block;
}
}