:root {
    /* New Color System */
    --primary-color: #00325F; /* Navy Blue */
    --primary-dark: #002a4d;
    --primary-light: #335c8a;

    --secondary-color: #FDB103; /* Yellow */
    --secondary-dark: #cc8e00;
    --secondary-light: #ffe066;

    /* Neutral Grayscale (for text and subtle elements) */
    --neutral-0: #FFFFFF; /* White for backgrounds */
    --neutral-100: #F8F8F8;
    --neutral-200: #E0E0E0;
    --neutral-300: #C8C8C8;
    --neutral-400: #B0B0B0;
    --neutral-500: #989898;
    --neutral-600: #808080;
    --neutral-700: #686868;
    --neutral-800: #505050;
    --neutral-900: #000000; /* Black for footer and buttons */

    /* Semantic Colors (using new palette) */
    --success-color: #00325F; /* Example: using primary for success */
    --error-color: #CC0000; /* Standard Red for errors */
    --warning-color: #FDB103; /* Yellow for warnings */

    --header-height: 80px;
    --header-position: fixed;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--neutral-900);
    overflow-x: hidden;
    background-color: var(--neutral-0); /* Set body background to a neutral shade */

}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 850px;
    min-height: 600px;
    
    overflow: hidden;
}

.hero-slider {
    height: 100%;
    position: relative;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 850px;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: flex;
    align-items: center;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

.hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 850px;
}



.hero-image {
    width: 100%;
    height: 850px;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 2rem;
  
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
 
}

.hero-subtitle {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    line-height: 1.5;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
}

.scroll-down {
    color: var(--neutral-900);
    font-size: 1.5rem;
    opacity: 0.7;
    transition: var(--transition-normal);
}

.scroll-down:hover {
    opacity: 1;
    transform: translateY(-5px);
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    z-index: 2;
    display: flex;
    gap: 0.5rem;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition-normal);
}

.slider-dot.active {
    background-color: #000000;
    transform: scale(1.2);
}

/* Hero Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Hero Responsive */
@media (max-width: 768px) {
    .hero-section {
        height: 100vh;
        min-height: 500px;
    }

    .hero-content {
        padding: 1.5rem;
        text-align: center;
    }

    .hero-cta {
        justify-content: center;
    }

    .slider-controls {
        bottom: 1rem;
        right: 50%;
        transform: translateX(50%);
    }

    .hero-scroll-indicator {
        display: none;
    }
}



/* Component Styles */

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px; /* Consistent padding */
    font-weight: 500;
    border-radius: 6px; /* Consistent border-radius */
    transition: background-color 300ms ease-in-out, border-color 300ms ease-in-out, color 300ms ease-in-out, opacity 300ms ease-in-out; /* Consistent transitions */
    text-decoration: none;
    cursor: pointer;
    font-size: 1rem;
    line-height: 1.5;
    gap: 0.5rem;
}

.btn-lg {
    padding: 12px 48px; /* Consistent padding */
    font-size: 1.125rem;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-primary {
    background-color: #000000; /* Black background */
    color: var(--neutral-50); /* White text */
    border: 1px solid var(--neutral-900);
}

.btn-primary:hover {
    background-color: var(--primary-dark); /* Darken primary color for hover */
    border-color: var(--primary-dark);
    color: var(--neutral-0); /* Ensure white text on hover */
}

.btn-primary:active {
    background-color: #000000;
    border-color: var(--neutral-900);
    transform: translateY(0);
}

.btn-outline {
    background-color: transparent;
    color: var(--neutral-900); /* Black text */
    border: 2px solid var(--neutral-900); /* Black border */
}

.btn-outline:hover {
    background-color: var(--primary-color); /* Use primary color for hover */
    color: var(--neutral-0); /* Ensure white text on hover */
}

.btn-outline-light {
    background-color: transparent;
    color: var(--neutral-900);
    border: 2px solid var(--neutral-50);
}

.btn-outline-light:hover {
    background-color: var(--primary-color); /* Use primary color for hover */
    color: var(--neutral-0); /* Ensure white text on hover */
}

/* Cards */
.card {
    background-color: #000000;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition-normal);
    overflow: hidden;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.card-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--neutral-200);
}

.card-body {
    padding: 1.5rem;
}

.card-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--neutral-200);
    background-color: var(--neutral-100);
}

/* Service Cards */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background-color: #000000;
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    transition: var(--transition-normal);
    border: 1px solid var(--neutral-200);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.service-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    color: var(--neutral-900);
    border-radius: var(--radius-full);
    font-size: 1.5rem;
}

.service-card h3 {
    color: var(--neutral-800);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.service-card p {
    color: var(--neutral-600);
    margin-bottom: 1.5rem;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-box {
    background-color: #000000;
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition-normal);
    border: 1px solid var(--neutral-200);
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.feature-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.feature-box:hover .feature-image img {
    transform: scale(1.1);
}

.feature-content {
    padding: 1.5rem;
}

.feature-content h4 {
    color: var(--neutral-800);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.feature-content h4 i {
    color: var(--primary-color);
}

.feature-content p {
    color: var(--neutral-600);
    margin: 0;
}

/* Section Headers */
.section-header {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.section-title, 
h2.section-title, 
.text-center.section-title {
    text-align: center !important;
    margin-bottom: 1rem;
    color: #000000;
    font-weight: 600;
    font-size: clamp(2rem, 3vw, 2.6rem);
    position: relative;
    width: 100%;
    display: block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-color);
}

.section-subtitle {
    color: var(--neutral-600);
    font-size: 1.125rem;
    line-height: 1.6;
}

/* Portal Grid */
.portal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.portal-category {
    background-color: var(--neutral-0);
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid var(--neutral-200);
    transition: var(--transition-normal);
}

.portal-category:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.portal-category h3 {
    color: var(--neutral-800);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.portal-category h3 i {
    color: var(--primary-color);
}

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

.portal-list li {
    color: var(--neutral-700);
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--neutral-200);
}

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

/* CTA Section */
.cta-section {
    background-color: var(--primary-color);
    color: var(--neutral-0);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    color: var(--neutral-0);
    margin-bottom: 2rem;
    font-size: clamp(1.75rem, 3vw, 2.25rem);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .btn {
        padding: 0.625rem 1.25rem;
    }

    .btn-lg {
        padding: 0.875rem 1.75rem;
    }

    .services-grid,
    .features-grid,
    .portal-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card,
    .feature-box,
    .portal-category {
        padding: 1.5rem;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    .cta-section {
        padding: 3rem 0;
    }
}

/* Base Typography Styles */
html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-padding-top: var(--header-height);
}

body {
    font-family: var(--font-primary);
    line-height: var(--line-height-normal);
    color: var(--text-primary);
    background-color: var(--neutral-50);
    opacity: 0;
    animation: fadeIn 0.5s ease-out forwards;
}

/* Typography Scale */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: var(--line-height-tight);
    color: var(--neutral-800);
    margin-bottom: var(--space-4);
}

h1 { font-size: clamp(2.5rem, 5vw, 3.5rem); }
h2 { font-size: clamp(2rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }
h5 { font-size: clamp(1.125rem, 2vw, 1.25rem); }
h6 { font-size: 1rem; }

p {
    margin-bottom: var(--space-4);
    color: var(--text-secondary);
    max-width: 70ch;
}



/* Base styles */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 16px; /* Base font size */
    scroll-padding-top: var(--header-height); /* Adjust scroll position for fixed header */
}

body {
    opacity: 0;
    animation: fadeIn 0.5s ease-out forwards;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    line-height: 1.65;
    color: var(--text-primary);
    background-color: var(--neutral-50);
    overflow-x: hidden;
}

/* Container */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem; /* Slightly more padding */
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif; /* Use Poppins for headings */
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1.25rem;
    color: var(--secondary-color);
}

h1 {
    font-size: clamp(2.25rem, 4vw, 3rem); /* Adjusted clamp values */
}

h2 {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
}

h3 {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
}

p {
    margin-bottom: 1.25rem;
    color: var(--text-secondary);
    max-width: 65ch; /* Improve readability */
}

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

a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Buttons */
.btn {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius-md);
    font-weight: 500;
    font-size: 0.95rem;
    text-decoration: none !important;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    box-shadow: var(--shadow);
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(var(--rgb-neutral-0), 0.1);
    transform: translateX(-100%);
    transition: transform 0.4s ease;
    z-index: -1;
}

.btn:hover::before {
    transform: translateX(0);
}

.btn-primary {
    background-color:#00325F;
    color: #FDB103;
 
}

.btn-primary:hover {
    background-color: #FDB103;
    color: #FFFFFF;
    
}

.btn-secondary {
    background-color: #000000;
    color: #FFFFFF;
    border: 1px solid var(--neutral-900);
}

.btn-secondary:hover {
    background-color: #FFFFFF;
    border-color: var(--neutral-700);
    color: #000000;
}

.btn-outline {
    background-color: var(--white);
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline:hover {
    background-color: rgba(var(--rgb-primary), 0.05);
    color: var(--primary-dark);
    border-color: var(--primary-dark);
}

/* Forms */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-primary);
}

.form-control {
    width: 100%;
    padding: 0.8rem 1rem; /* Slightly adjusted padding */
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    font-size: 0.95rem;
    transition: var(--transition);
    background-color: var(--white);
    color: var(--text-primary);
}

.form-control::placeholder {
    color: var(--text-secondary);
    opacity: 0.7;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(var(--rgb-primary), 0.1);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

/* Section Styling */
section {
    padding: 4rem 0; /* Default section padding */
}

.section-title {
    text-align: center;
    margin-bottom: 0.5rem;
    color: #000000;
}

.section-intro {
    text-align: center;
    color: var(--text-secondary);
    max-width: 700px;
    margin-bottom: 1rem;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 3rem;
}

/* Card Base Style */
.card {
    background: var(--neutral-0);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color-light);
    transition: var(--transition);
    overflow: hidden;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: var(--neutral-0); /* Solid white background */
    box-shadow: 0 2px 5px rgba(0,0,0,0.1); /* Consistent shadow */
    z-index: 9999;
    transition: var(--transition); /* Keep transition for smooth changes */
}

/* Mobile compatibility for header */
@media (max-width: 992px) {
    .site-header {
        height: var(--header-height-mobile, 60px); /* Define a mobile header height */
    }

    .site-header .main-nav {
        position: fixed;
        top: var(--header-height-mobile, 60px); /* Position below header */
        left: 0;
        width: 100%;
        height: calc(100vh - var(--header-height-mobile, 60px));
        background-color: rgba(var(--rgb-neutral-0), 0.98);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 20px;
        transform: translateY(-100%);
        transition: transform 0.3s ease-in-out;
        overflow-y: auto;
    }

    .site-header .main-nav.active {
        transform: translateY(0);
    }

    .site-header .nav-list {
        flex-direction: column;
        width: 100%;
    }

    .site-header .nav-list li {
        width: 100%;
        text-align: center;
        margin: 10px 0;
    }

    .site-header .nav-list li a {
        padding: 15px 0;
        display: block;
        width: 100%;
    }

    .site-header .has-dropdown .dropdown-menu {
        position: relative;
        width: 100%;
        background-color: transparent;
        box-shadow: none;
        border-radius: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-in-out;
    }

    .site-header .has-dropdown.active .dropdown-menu {
        max-height: 500px; /* Adjust as needed to show all dropdown items */
    }

    .site-header .dropdown-menu ul {
        flex-direction: column;
        padding: 0;
    }

    .site-header .dropdown-menu ul li {
        text-align: center;
    }

    .site-header .dropdown-menu ul li a {
        padding: 10px 0;
    }

    .site-header .header-actions {
        display: flex;
        align-items: center;
    }

    .site-header .header-actions .btn {
        margin-right: 15px; /* Space for mobile toggle */
    }
}

.header-content {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1rem; /* Reduce side padding */
    width: 100%;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    display: flex;
    align-items: top;
    gap: 0.5rem; /* Reduce gap */
    margin-right: 0.5rem; /* Add margin to give more space to navigation */
}

.logo img {
    height: 100px; /* Reduce logo size */
    width: auto;
    display: block;
    align-items: top;
    
}

/* Adjust main nav */
.main-nav {
    display: flex;
    align-items: center;
    flex-grow: 1; /* Allow nav to take available space */
    justify-content: center; /* Center the nav items */
}

.nav-list {
    display: flex;
    gap: 0.8rem; /* Default gap for large screens */
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: nowrap; /* Ensure no wrapping */
}

.nav-list > li > a {
    color: var(--text-primary);
    padding: 0.5rem 0.75rem;
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
    display: inline-block;
    text-decoration: none;
    transition: var(--transition);
    white-space: nowrap; /* Prevent text wrapping */
}

/* Media query for medium-sized screens to prevent wrapping */
@media (min-width: 993px) and (max-width: 1150px) {
    .nav-list {
        gap: 0.5rem; /* Reduce gap further */
    }
    .nav-list > li > a {
        padding: 0.5rem 0.4rem; /* Reduce padding */
        font-size: 0.85rem; /* Smaller font size */
    }
    .header-actions .btn {
        padding: 0.5rem 1rem; /* Smaller button */
        font-size: 0.85rem;
    }
}

/* Additional tweaks for larger screens */
@media (min-width: 1151px) and (max-width: 1300px) {
    .nav-list {
        gap: 0.75rem; /* Slightly reduced gap */
    }
    .nav-list > li > a {
        padding: 0.5rem 0.5rem;
        font-size: 0.9rem;
    }
}

/* Extremely small screens might need special handling */
@media (max-width: 992px) {
    .nav-list > li > a {
        white-space: normal; /* Allow wrapping in mobile menu */
        padding: 0.75rem 1rem;
        font-size: 1rem;
        width: 100%;
        display: block;
    }
}

.nav-list > li > a:hover,
.nav-list > li > a.active { /* Add active state styling */
    color: var(--primary-color);
}

.nav-list > li > a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-list > li > a:hover::after,
.nav-list > li > a.active::after { /* Add active state styling */
    width: 60%;
}

.has-dropdown {
    position: relative;
}

.has-dropdown > a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.has-dropdown .fa-chevron-down {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.has-dropdown:hover .fa-chevron-down {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    background: var(--neutral-0);
    min-width: 280px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color-light);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 9999;
    padding: 15px;
    pointer-events: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.has-dropdown:hover .dropdown-menu,
.has-dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.dropdown-menu a {
    color: var(--text-secondary);
    padding: 0.6rem 1.2rem;
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 6px;
    transition: all 0.2s ease;
    font-size: 0.9rem;
}

.dropdown-menu a:hover {
    background-color: var(--background-medium);
    color: var(--primary-color);
}

.dropdown-menu i {
    font-size: 1.2em;
    color: var(--primary-color);
}

.dropdown-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.dropdown-section h3 {
    color: var(--secondary-color);
    font-size: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
}

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

.dropdown-section ul li a {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem;
    color: var(--text-primary);
    text-decoration: none;
    transition: var(--transition);
    border-radius: 0.375rem;
}

.dropdown-section ul li a:hover {
    background: var(--background-light);
    color: var(--primary-color);
}

.dropdown-section ul li a i {
    color: var(--primary-color);
    font-size: 1.25rem;
    margin-top: 0.125rem;
}

.dropdown-section ul li a span {
    display: block;
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-top: 0.25rem;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 0.25rem;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--secondary-color);
    transition: var(--transition);
}

@media (max-width: 992px) {
    .main-nav {
        position: fixed;
        top: 80px;
    left: 0;
    width: 100%;
        background: var(--neutral-0);
        padding: 20px;
        height: calc(100vh - 80px);
        overflow-y: auto;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 999;
}

    .main-nav.active {
        transform: translateX(0);
    }

    .nav-list {
        flex-direction: column;
    }

    .nav-list > li {
        margin: 0;
        padding: 0.5rem 0;
    }

    .dropdown-menu {
        position: static;
    opacity: 1;
        visibility: hidden;
        height: 0;
        min-width: 100%;
        transform: none;
        box-shadow: none;
        padding: 0 15px;
        grid-template-columns: 1fr;
    overflow: hidden;
        transition: all 0.3s ease;
    }

    .has-dropdown.active .dropdown-menu {
        height: auto;
   visibility: visible;
        padding: 15px;
        margin-top: 10px;
        background: var(--neutral-50);
    }

    .mobile-toggle {
        display: block;
        font-size: 24px;
        cursor: pointer;
    }
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    padding: 0.875rem 1.75rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--secondary-color);
    box-shadow: 0 4px 10px rgba(184, 115, 51, 0.3);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(184, 115, 51, 0.4);
}


}

.btn-outline {
    background: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--primary-color);
}

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

/* Hero Section Enhancements */
.hero-section {
    position: relative;
    overflow: hidden;
    height: auto;
    width: 100%;
    aspect-ratio: 16 / 9; /* This maintains 1920x1080 aspect ratio */
    max-height: 1000px; /* Limit height to viewport minus header */
    margin-bottom: 0;
    padding-bottom: 0;
    font-family: auromiya, sans-serif;
}

.hero-slider {
    position: relative;
    height: 100%;
    width: 100%;
}

.hero-slide {
    position: absolute;
    height: 100%;
    width: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    /* z-index removed */
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

.hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* z-index removed */
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    
    background: linear-gradient(to right, var(--primary-dark), var(--primary-color));
    padding: 4rem;
    max-width: 650px;
    font-family: auromiya, sans-serif;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 550px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background-color: var(--primary-color);
    transform: scale(1.2);
}

/* Responsive adjustments for hero section */
@media (max-width: 992px) {
    .hero-content {
    padding: 3rem;
        max-width: 500px;
}

    .hero-content h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hero-content {
        padding: 2rem;
    width: 100%;
        max-width: 100%;
        background: linear-gradient(to bottom, var(--primary-dark), var(--primary-color));
}

    .hero-content h1 {
        font-size: 2rem;
}

    .hero-content p {
    font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-section {
        aspect-ratio: auto;
        height: 550px;
    }
}

/* Modern Service Card Grid */
.services-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 2rem;
  margin: 2.5rem 0 0 0;
}

.service-card {
  background: var(--neutral-0);
  border-radius: 1.2rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07), 0 1.5px 6px rgba(0,0,0,0.03);
  padding: 2.2rem 1.5rem 1.7rem 1.5rem;
    display: flex;
    flex-direction: column;
        align-items: flex-start;
  transition: box-shadow 0.2s, transform 0.2s;
  position: relative;
  min-height: 320px;
}

.service-card:hover {
  box-shadow: 0 8px 32px rgba(0,86,179,0.13), 0 2px 8px rgba(0,0,0,0.06);
  transform: translateY(-4px) scale(1.02);
}

.service-card .service-icon {
  font-size: 2.2rem;
  color: var(--primary-color, #0056b3);
  margin-bottom: 1.2rem;
}

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.7rem;
  color: #222;
}

.service-card p {
        font-size: 1rem;
  color: #444;
  margin-bottom: 1.2rem;
}

.service-card ul {
  padding-left: 1.2rem;
  margin-bottom: 1.2rem;
}

.service-card ul li {
  font-size: 0.98rem;
  color: #333;
  margin-bottom: 0.4rem;
  list-style: disc;
}

.service-card .btn, .service-card a.btn {
    margin-top: auto;
    align-self: flex-start;
}

@media (max-width: 700px) {
  .services-grid {
        grid-template-columns: 1fr;
    gap: 1.2rem;
}
  .service-card {
    padding: 1.2rem 1rem;
    min-height: 220px;
}
}

/* Portal Grid Improvements */
.portal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 2rem;
}

.portal-category {
    background-color: var(--neutral-0);
    border-radius: 10px;
        padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.portal-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.portal-category h3 {
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.portal-category h3 i {
    color: var(--secondary-color);
}

.portal-list {
    list-style: none;
    padding-left: 1.5rem;
}

.portal-list li {
    margin-bottom: 0.7rem;
    position: relative;
    padding-left: 1rem;
}

.portal-list li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--secondary-color);
}

/* Testimonial Styling Improvements */
.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background-color: var(--neutral-0);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.testimonial-content {
    text-align: center;
    padding: 1rem;
}

.testimonial-content p {
        font-size: 1.2rem;
    line-height: 1.7;
    font-style: italic;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    position: relative;
}

.testimonial-content p:before,
.testimonial-content p:after {
    content: '"';
        font-size: 2rem;
    color: var(--primary-light);
}

.testimonial-author {
        margin-top: 1.5rem;
    }

.author-name {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 0.2rem;
}

.author-company {
    font-size: 0.9rem;
    color: var(--text-medium);
}
    
.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* About Section */
.about-content-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    border-radius: 1rem;
        overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Process Timeline */
.submission-process {
    position: relative;
    min-height: 100vh;
    background-color: transparent;
    overflow: hidden;
    padding: 0;
}

.submission-process .container {
        display: flex;
    width: 100%;
    height: 100vh;
    margin: 0;
    max-width: none;
    padding: 0;
    position: relative;
    z-index: 2;
}

.fixed-content {
    width: 35%;
    position: sticky;
        top: 0;
        height: 100vh;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
        padding: 2rem;
    z-index: 2;
}

.fixed-content-inner {
    text-align: center;
    
}

.fixed-content h2 {
    
    font-size: 2.5rem;
        margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    }
    
.process-timeline {
    width: 65%;
    padding: 0;
    overflow-y: auto;
    background-color: transparent;
    height: 100vh;
    scroll-behavior: smooth;
    position: relative;
    z-index: 1;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    background: none !important;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1 !important;
    background: none !important;
}

.process-step {
    position: relative;
    margin-bottom: 0;
    padding: 2rem 3rem 2rem 3.5rem;
    border-left: 3px solid rgba(255, 255, 255, 0.3);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    scroll-snap-align: center;
}

.process-step:first-child {
    padding-top: 33vh;
}

.process-step:last-child {
    padding-bottom: 33vh;
}

.step-number {
    position: absolute;
    left: -18px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-color);
    color: white;
    width: 36px;
    height: 36px;
    text-align: center;
    line-height: 36px;
    font-weight: bold;
    border-radius: 50%;
    font-size: 1.1rem;
    transition: transform 0.3s ease;
    z-index: 2;
    }
    
.step-content {
    background: rgba(var(--rgb-primary-dark), 0.75);
    border-radius: 1rem;
        padding: 2rem;
    margin: 0;
    backdrop-filter: blur(8px);
    max-width: 800px;
    border: 1px solid rgba(var(--rgb-neutral-0), 0.1);
}

.step-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
        margin-bottom: 1rem;
    
    }
    
.step-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    max-width: 600px;
}

.process-step.active .step-number {
    transform: translateY(-50%) scale(1.2);
    background: var(--primary-color);
    }
    
.process-timeline::-webkit-scrollbar {
    width: 8px;
    }
    
.process-timeline::-webkit-scrollbar-track {
    background: transparent;
    }
    
.process-timeline::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

@media (max-width: 992px) {
    .submission-process .container {
        flex-direction: column;
        height: auto;
    }
    
    .fixed-content {
        width: 100%;
        height: auto;
        min-height: 300px;
        position: relative;
        background-color: rgba(0, 0, 0, 0.8);
    }

    .process-timeline {
        width: 100%;
        height: 100vh;
        padding: 0;
    }
    
    .process-step {
        min-height: 100vh;
        padding: 2rem 1.5rem 2rem 3rem;
    }
    
    .process-step:first-child {
        padding-top: 33vh;
    }
    
    .process-step:last-child {
        padding-bottom: 33vh;
    }
    
    .step-content {
        padding: 1.5rem;
    }
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
    background: var(--neutral-0);
    border-radius: 1rem;
    box-shadow: var(--shadow);
    }
    
.form-group {
    margin-bottom: 1.5rem;
    }
    
.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-primary);
    }
    
.form-control {
        width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    transition: var(--transition);
    font-size: 1rem;
    }
    
.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.footer-content {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    }

.footer-section h3 {
    color: var(--neutral-900);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 2rem;
    height: 2px;
    background-color: var(--primary-color);
    }
    
.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
    }
    
.footer-section ul li {
    margin-bottom: 0.75rem;
    }
    
.footer-section ul li a {
    color: var(--neutral-200);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    }
    
.footer-section ul li a:hover {
    
    transform: translateX(5px);
    }
    
.footer-section ul li a i {
    font-size: 0.75rem;
    color: var(--primary-color);
    }
    
.footer-section p {
    color: var(--neutral-200);
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    }
    
.footer-section p i {
    color: var(--primary-color);
    margin-top: 0.25rem;
    }

.social-icons {
    display: flex;
        gap: 1rem;
    margin-top: 1.5rem;
    }

.social-icons a {
    width: 2.5rem;
    height: 2.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neutral-900);
    text-decoration: none;
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    margin-top: 3rem;
    padding: 1.5rem 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: var(--neutral-200);
    margin: 0;
    font-size: 0.875rem;
}

/* Footer Responsive Design */
@media (max-width: 1200px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
    gap: 2rem;
}

    footer {
        padding: 3rem 0 0;
}

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

    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-section ul li a {
        justify-content: center;
}

    .footer-section p {
        justify-content: center;
    }

    .social-icons {
    justify-content: center;
    }
}

/* Why Choose Us Section */
.why-choose-us {
    background-color: var(--light-bg-color);
    padding: 80px 0;
    text-align: center;
}

.why-choose-us .section-title {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.why-choose-us .section-intro {
    color: var(--text-color);
    font-size: 1.1em;
    max-width: 800px;
    margin: 0 auto 60px auto;
    line-height: 1.6;
}

/* Why Choose Us Section */
.why-choose-us {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-dark) 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
    padding: 5rem 0;
    margin-top: 10rem !important; /* Increased spacing and added !important to override any conflicting styles */
}

.why-choose-us .section-title {
    color: #000000;
    text-align: center;
    margin-bottom: 1.5rem;
    font-family: 'Poppins', sans-serif;
    position: relative;
    display: inline-block;
}

.why-choose-us .section-title::after {
    content: '';
    position: absolute;
    bottom: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-color);
}

.why-choose-us .section-intro {
    color: #000000  ;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    font-size: 1.25rem;
    line-height: 1.7;
}

.choose-points {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.choose-point-box {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    padding: 2rem;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.choose-point-box:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.choose-point-image {
    width: 300px;
    height: 300px;
    margin-bottom: 1.5rem;
    position: relative;
}

.choose-point-image img {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 1rem;
}

.choose-point-content h4 {
    color: var(--primary-color);
    font-size: 1.25rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Poppins', sans-serif;
}

.choose-point-content h4 i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.choose-point-content p {
    color: var(--text-color);
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
}

/* Why Choose Us Responsive */
@media (max-width: 1200px) {
    .choose-points {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .why-choose-us .section-intro {
        font-size: 1.1rem;
        margin-bottom: 3rem;
    }

    .choose-point-box {
        padding: 1.5rem;
}

    .why-choose-us {
        padding: 4rem 0;
        margin-top: auto;
    }
}

/* Knowledge Hub - Coming Soon Page */
.page-header {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #1e3a8a 100%);
    
    padding: 8rem 0 4rem;
    position: relative;
    text-align: center;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0, 33, 71, 0.7), rgba(0, 33, 71, 0.7));
    z-index: 1;
}

.page-header h1 {
    animation: fadeInUp 0.8s ease-out forwards;
    
    font-family: 'Poppins', sans-serif;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.page-header p {
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
    opacity: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.page-header::before,
.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0, 33, 71, 0.7), rgba(0, 33, 71, 0.7));
    z-index: 1;
    transition: background 0.5s ease;
}

.page-header:hover::before,
.page-hero:hover::before {
    background: linear-gradient(rgba(0, 33, 71, 0.6), rgba(0, 33, 71, 0.8));
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.coming-soon-section {
    padding: 5rem 0;
    background-color: var(--neutral-0);
}

.coming-soon-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.coming-soon-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.coming-soon-icon i {
    font-size: 3rem;
    
}

.coming-soon-section h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.coming-soon-section > .container > .coming-soon-content > p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto 3rem;
}

.coming-soon-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.feature-item {
    background: var(--neutral-50);
    border-radius: 1rem;
    padding: 2rem;
    text-align: left;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.feature-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--secondary-color);
}

.feature-item p {
    color: var(--text-secondary);
    margin: 0;
}

.notification-signup {
    background: var(--background-light);
    border-radius: 1rem;
    padding: 3rem;
    margin: 4rem 0;
    border: 1px solid var(--border-color);
}

.notification-signup h3 {
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.notification-form {
    display: flex;
    max-width: 600px;
    margin: 0 auto;
    gap: 1rem;
}

.notification-form .form-control {
    flex: 1;
}

.cta-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
}

/* Responsive Design for Knowledge Hub */
@media (max-width: 768px) {
    .coming-soon-features {
        grid-template-columns: 1fr;
}

    .notification-form {
        flex-direction: column;
}

    .cta-links {
    flex-direction: column;
}

    .page-header {
        padding: 6rem 0 3rem;
}

    .page-header h1 {
        font-size: 2.25rem;
}

    .page-header p {
        font-size: 1.1rem;
    }
    
    .coming-soon-section h2 {
    font-size: 2rem;
}

    .coming-soon-section > .container > .coming-soon-content > p {
    font-size: 1.1rem;
}

    .notification-signup {
    padding: 2rem;
    }
}

/* About Page Styles */
.about-story {
    padding: 5rem 0;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.feature-list li i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

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

.section-title.text-center {
    display: inline-block;
    position: relative;
    margin-bottom: 2.5rem;
}

.section-title.text-center::after {
    content: '';
    position: absolute;
    bottom: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-color);
}

.section-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    color: var(--text-secondary);
    font-size: 1.2rem;
    line-height: 1.7;
}

/* Our Values Section */
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background: var(--neutral-0);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    border: 1px solid var(--border-color);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.value-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.value-icon i {
    font-size: 1.5rem;
    color: white;
}

.value-card h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
    color: var(--secondary-color);
}

.value-card p {
    margin-bottom: 0;
    color: var(--text-secondary);
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.team-member {
    background: var(--neutral-0);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

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

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

.member-info {
    padding: 1.5rem;
}

.member-info h3 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.member-role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.member-bio {
    color: var(--text-secondary);
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* Client Trust Section */
.client-trust {
    padding: 5rem 0;
}

.trust-indicators {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.trust-stat {
    background: var(--neutral-0);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.trust-stat:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-family: 'Poppins', sans-serif;
}

.trust-stat p {
    color: var(--secondary-color);
    font-weight: 500;
    margin: 0;
    font-size: 1.1rem;
}

/* Contact Page Styles */
.contact-main {
    padding: 5rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 6fr 4fr;
    gap: 3rem;
}

.contact-form-container {
    background: var(--neutral-0);
    border-radius: 1rem;
    padding: 2.5rem;
    box-shadow: var(--shadow);
}

.contact-form-container h2 {
    margin-bottom: 1rem;
    color: var(--secondary-color);
    font-family: 'Poppins', sans-serif;
}

.contact-form-container p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-card {
    background: var(--neutral-0);
    border-radius: 1rem;
    padding: 2.5rem;
    box-shadow: var(--shadow);
}

.contact-card h2 {
    margin-bottom: 2rem;
    color: var(--secondary-color);
    font-family: 'Poppins', sans-serif;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.contact-icon {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.2rem;
}

.contact-item h3 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    color: var(--secondary-color);
}

.contact-item p {
    margin: 0;
    color: var(--text-secondary);
}

.contact-item a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}

.contact-item a:hover {
    color: var(--primary-color);
}

.contact-social h3 {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--secondary-color);
}

.contact-map {
    overflow: hidden;
    border-radius: 1rem;
    box-shadow: var(--shadow);
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
}

.faq-container {
    max-width: 800px;
    margin: 3rem auto 0;
}

.faq-item {
    background: var(--neutral-0);
    border-radius: 0.75rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary-color);
}

.faq-icon {
    width: 1.5rem;
    height: 1.5rem;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.75rem;
    transition: var(--transition);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 1000px;
}

.faq-answer p {
    margin: 0;
    color: var(--text-secondary);
}

/* Contact Responsive */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
}

    .contact-form-container,
    .contact-card {
    padding: 2rem;
}

    .contact-item {
        gap: 1rem;
    }
}

/* Footer Subscribe Form */
.footer-subscribe {
    display: flex;
    margin: 1.5rem 0 2.5rem;
    position: relative;
}

.footer-subscribe input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(var(--rgb-neutral-0), 0.2);
    background: rgba(var(--rgb-neutral-0), 0.1);
    border-radius: 0.5rem;
    color: white;
    font-size: 0.9rem;
}

.footer-subscribe input::placeholder {
    color: rgba(var(--rgb-neutral-0), 0.6);
}

.footer-subscribe input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.btn-subscribe {
    position: absolute;
    right: 0.25rem;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-color);
    border: none;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: var(--transition);
}

.btn-subscribe:hover {
    background: var(--primary-dark);
}

.footer-info {
        margin-top: 1.5rem;
    }

.footer-info h3 {
    margin-bottom: 1rem;
}

/* Responsive Adjustments for services and other sections */
@media (max-width: 992px) {
    .service-card {
        padding: 1.75rem;
}

    .portal-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
}
}

@media (max-width: 768px) {
    .service-card {
        padding: 1.5rem;
    }
    
    .portal-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
}

    .hero-buttons {
    justify-content: center;
    }
}

@media (max-width: 576px) {
    .hero-buttons {
    flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        text-align: center;
}

    .service-card {
        padding: 1.25rem;
}
}

/* Specific adjustment to remove the white gap */
.hero-section + .why-choose-us {
    margin-top: 0;
    padding-top: 5rem;
}

/* Service Pages Styles */
.service-overview {
    padding: 5rem 0;
}

.service-content {
    max-width: 1000px;
    margin: 0 auto;
}

/* Add styles for page-hero class to match page-header */
.page-hero {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #1e3a8a 100%);
    
    padding: 8rem 0 4rem;
    position: relative;
    text-align: center;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0, 33, 71, 0.7), rgba(0, 33, 71, 0.7));
    z-index: 1;
}

.page-hero h1 {
    animation: fadeInUp 0.8s ease-out forwards;
    
    font-family: 'Poppins', sans-serif;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.page-hero p {
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
    opacity: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.service-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.feature-item {
    background: var(--neutral-0);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.feature-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature-item h3 {
    margin-bottom: 1rem;
    color: var(--secondary-color);
    font-size: 1.25rem;
}

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

.feature-item ul li {
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-item ul li:before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--primary-color);
    font-size: 0.875rem;
}

.process-section {
    position: relative;
    overflow: hidden;
    background: none !important;
    background-color: transparent !important;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    background: none !important;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1 !important;
    background: none !important;
}

.process-section > .container {
    position: relative;
    z-index: 1;
}

.process-steps {
    max-width: 900px;
    margin: 3rem auto 0;
}

.benefits-section {
    padding: 5rem 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card {
    background: var(--neutral-0);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.benefit-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.benefit-card h3 {
    margin-bottom: 1rem;
    color: var(--secondary-color);
    font-size: 1.25rem;
}

.benefit-card p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Responsive Design for Service Pages */
@media (max-width: 992px) {
    .service-features {
        grid-template-columns: 1fr;
}

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .feature-item,
    .benefit-card {
        padding: 1.5rem;
}
}

/* Header Dropdown Styles */
.has-dropdown {
    position: relative;
}

.has-dropdown > a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.has-dropdown .fa-chevron-down {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.has-dropdown:hover .fa-chevron-down {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    background: var(--neutral-0);
    min-width: 280px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color-light);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 9999;
    padding: 15px;
    pointer-events: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.has-dropdown:hover .dropdown-menu,
.has-dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.dropdown-menu a {
    color: var(--text-secondary);
    padding: 0.6rem 1.2rem;
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 6px;
    transition: all 0.2s ease;
    font-size: 0.9rem;
}

.dropdown-menu a:hover {
    background-color: var(--background-medium);
    color: var(--primary-color);
}

.dropdown-menu i {
    font-size: 1.2em;
    color: var(--primary-color);
}

.dropdown-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.dropdown-section h3 {
    color: var(--secondary-color);
    font-size: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
}

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

.dropdown-section ul li a {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem;
    color: var(--text-primary);
    text-decoration: none;
    transition: var(--transition);
    border-radius: 0.375rem;
}

.dropdown-section ul li a:hover {
    background: var(--background-light);
    color: var(--primary-color);
}

.dropdown-section ul li a i {
    color: var(--primary-color);
    font-size: 1.25rem;
    margin-top: 0.125rem;
}

.dropdown-section ul li a span {
    display: block;
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-top: 0.25rem;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 0.25rem;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--secondary-color);
    transition: var(--transition);
}

@media (max-width: 992px) {
    .main-nav {
        position: fixed;
        top: 80px;
    left: 0;
    width: 100%;
        background: var(--neutral-0);
        padding: 20px;
        height: calc(100vh - 80px);
        overflow-y: auto;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 999;
}

    .main-nav.active {
        transform: translateX(0);
    }

    .nav-list {
        flex-direction: column;
    }

    .nav-list > li {
        margin: 0;
        padding: 0.5rem 0;
    }

    .dropdown-menu {
        position: static;
    opacity: 1;
        visibility: hidden;
        height: 0;
        min-width: 100%;
        transform: none;
        box-shadow: none;
        padding: 0 15px;
        grid-template-columns: 1fr;
    overflow: hidden;
        transition: all 0.3s ease;
    }

    .has-dropdown.active .dropdown-menu {
        height: auto;
   visibility: visible;
        padding: 15px;
        margin-top: 10px;
        background: var(--neutral-50);
    }

    .mobile-toggle {
        display: block;
        font-size: 24px;
        cursor: pointer;
    }
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    padding: 0.875rem 1.75rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--secondary-color);
    box-shadow: 0 4px 10px rgba(184, 115, 51, 0.3);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(184, 115, 51, 0.4);
}


}

.btn-outline {
    background: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--primary-color);
}

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

/* Hero Section Enhancements */
.hero-section {
    position: relative;
    overflow: hidden;
    height: auto;
    width: 100%;
    aspect-ratio: 16 / 9; /* This maintains 1920x1080 aspect ratio */
    max-height: 1000px; /* Limit height to viewport minus header */
    margin-bottom: 0;
    padding-bottom: 0;
    font-family: auromiya, sans-serif;
}

.hero-slider {
    position: relative;
    height: 100%;
    width: 100%;
}

.hero-slide {
    position: absolute;
    height: 100%;
    width: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    /* z-index removed */
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

.hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* z-index removed */
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    
    background: linear-gradient(to right, var(--primary-dark), var(--primary-color));
    padding: 4rem;
    max-width: 650px;
    font-family: auromiya, sans-serif;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 550px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background-color: var(--primary-color);
    transform: scale(1.2);
}

/* Responsive adjustments for hero section */
@media (max-width: 992px) {
    .hero-content {
    padding: 3rem;
        max-width: 500px;
}

    .hero-content h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hero-content {
        padding: 2rem;
    width: 100%;
        max-width: 100%;
        background: linear-gradient(to bottom, var(--primary-dark), var(--primary-color));
}

    .hero-content h1 {
        font-size: 2rem;
}

    .hero-content p {
    font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-section {
        aspect-ratio: auto;
        height: 550px;
    }
}

/* Modern Service Card Grid */
.services-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 2rem;
  margin: 2.5rem 0 0 0;
}

.service-card {
  background: var(--neutral-0);
  border-radius: 1.2rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07), 0 1.5px 6px rgba(0,0,0,0.03);
  padding: 2.2rem 1.5rem 1.7rem 1.5rem;
    display: flex;
    flex-direction: column;
        align-items: flex-start;
  transition: box-shadow 0.2s, transform 0.2s;
  position: relative;
  min-height: 320px;
}

.service-card:hover {
  box-shadow: 0 8px 32px rgba(0,86,179,0.13), 0 2px 8px rgba(0,0,0,0.06);
  transform: translateY(-4px) scale(1.02);
}

.service-card .service-icon {
  font-size: 2.2rem;
  color: var(--primary-color, #0056b3);
  margin-bottom: 1.2rem;
}

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.7rem;
  color: #222;
}

.service-card p {
        font-size: 1rem;
  color: #444;
  margin-bottom: 1.2rem;
}

.service-card ul {
  padding-left: 1.2rem;
  margin-bottom: 1.2rem;
}

.service-card ul li {
  font-size: 0.98rem;
  color: #333;
  margin-bottom: 0.4rem;
  list-style: disc;
}

.service-card .btn, .service-card a.btn {
    margin-top: auto;
    align-self: flex-start;
}

@media (max-width: 700px) {
  .services-grid {
        grid-template-columns: 1fr;
    gap: 1.2rem;
}
  .service-card {
    padding: 1.2rem 1rem;
    min-height: 220px;
}
}

/* Portal Grid Improvements */
.portal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 2rem;
}

.portal-category {
    background-color: var(--neutral-0);
    border-radius: 10px;
        padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.portal-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.portal-category h3 {
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.portal-category h3 i {
    color: var(--secondary-color);
}

.portal-list {
    list-style: none;
    padding-left: 1.5rem;
}

.portal-list li {
    margin-bottom: 0.7rem;
    position: relative;
    padding-left: 1rem;
}

.portal-list li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--secondary-color);
}

/* Testimonial Styling Improvements */
.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background-color: var(--neutral-0);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.testimonial-content {
    text-align: center;
    padding: 1rem;
}

.testimonial-content p {
        font-size: 1.2rem;
    line-height: 1.7;
    font-style: italic;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    position: relative;
}

.testimonial-content p:before,
.testimonial-content p:after {
    content: '"';
        font-size: 2rem;
    color: var(--primary-light);
}

.testimonial-author {
        margin-top: 1.5rem;
    }

.author-name {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 0.2rem;
}

.author-company {
    font-size: 0.9rem;
    color: var(--text-medium);
}
    
.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* About Section */
.about-content-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    border-radius: 1rem;
        overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Process Timeline */
.submission-process {
    position: relative;
    min-height: 100vh;
    background-color: transparent;
    overflow: hidden;
    padding: 0;
}

.submission-process .container {
        display: flex;
    width: 100%;
    height: 100vh;
    margin: 0;
    max-width: none;
    padding: 0;
    position: relative;
    z-index: 2;
}

.fixed-content {
    width: 35%;
    position: sticky;
        top: 0;
        height: 100vh;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
        padding: 2rem;
    z-index: 2;
}

.fixed-content-inner {
    text-align: center;
    
}

.fixed-content h2 {
    
    font-size: 2.5rem;
        margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    }
    
.process-timeline {
    width: 65%;
    padding: 0;
    overflow-y: auto;
    background-color: transparent;
    height: 100vh;
    scroll-behavior: smooth;
    position: relative;
    z-index: 1;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    background: none !important;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1 !important;
    background: none !important;
}

.process-step {
    position: relative;
    margin-bottom: 0;
    padding: 2rem 3rem 2rem 3.5rem;
    border-left: 3px solid rgba(255, 255, 255, 0.3);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    scroll-snap-align: center;
}

.process-step:first-child {
    padding-top: 33vh;
}

.process-step:last-child {
    padding-bottom: 33vh;
}

.step-number {
    position: absolute;
    left: -18px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-color);
    color: white;
    width: 36px;
    height: 36px;
    text-align: center;
    line-height: 36px;
    font-weight: bold;
    border-radius: 50%;
    font-size: 1.1rem;
    transition: transform 0.3s ease;
    z-index: 2;
    }
    
.step-content {
    background: rgba(var(--rgb-primary-dark), 0.75);
    border-radius: 1rem;
        padding: 2rem;
    margin: 0;
    backdrop-filter: blur(8px);
    max-width: 800px;
    border: 1px solid rgba(var(--rgb-neutral-0), 0.1);
}

.step-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
        margin-bottom: 1rem;
    
    }
    
.step-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    max-width: 600px;
}

.process-step.active .step-number {
    transform: translateY(-50%) scale(1.2);
    background: var(--primary-color);
    }
    
.process-timeline::-webkit-scrollbar {
    width: 8px;
    }
    
.process-timeline::-webkit-scrollbar-track {
    background: transparent;
    }
    
.process-timeline::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

@media (max-width: 992px) {
    .submission-process .container {
        flex-direction: column;
        height: auto;
    }
    
    .fixed-content {
        width: 100%;
        height: auto;
        min-height: 300px;
        position: relative;
        background-color: rgba(0, 0, 0, 0.8);
    }

    .process-timeline {
        width: 100%;
        height: 100vh;
        padding: 0;
    }
    
    .process-step {
        min-height: 100vh;
        padding: 2rem 1.5rem 2rem 3rem;
    }
    
    .process-step:first-child {
        padding-top: 33vh;
    }
    
    .process-step:last-child {
        padding-bottom: 33vh;
    }
    
    .step-content {
        padding: 1.5rem;
    }
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
    background: var(--neutral-0);
    border-radius: 1rem;
    box-shadow: var(--shadow);
    }
    
.form-group {
    margin-bottom: 1.5rem;
    }
    
.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-primary);
    }
    
.form-control {
        width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    transition: var(--transition);
    font-size: 1rem;
    }
    
.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

footer {
    background-color: var(--neutral-900) !important;
    padding-top: 40px; !important;
}

.footer-section {
    color: var(--neutral-0);
}

.footer-section h3,
.footer-section p,
.footer-section a,
.footer-section li {
    color: var(--neutral-0);
}