:root {
    --primary-blue: #0052CC;      /* Main blue */
    --dark-blue: #172B4D;         /* Dark blue for text */
    --light-blue: #4C9AFF;        /* Light blue for hover */
    --pale-blue: #DEEBFF;         /* Very light blue for backgrounds */
    --accent-blue: #0747A6;       /* Darker blue for emphasis */
    --white: #FFFFFF;
    --primary-color: #3c78da;
    --secondary-color: #01a2dd;
    --text-color: #ffffff;
    --overlay-color: rgba(0, 0, 0, 0.5);
}

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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
}

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

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    line-height: 1.2;
}

p {
    margin-bottom: 1rem;
}

a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #4C9AFF;
}

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

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }

.hero {
    min-height: 100vh;
    /* Remove the background image */
    /* background-image: url('https://images.unsplash.com/photo-1497366216548-37526070297c?ixlib=rb-4.0.3'); */
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: var(--text-color);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(23, 43, 77, 0.9), rgba(0, 82, 204, 0.8));
    z-index: 1;
    animation: overlayFloat 8s ease-in-out infinite;
}

.navbar {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
}

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

.dropdown-menu {
    max-height: 400px;
    overflow-y: auto;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    position: relative;
    z-index: 2;
    flex-grow: 1;
    display: flex;
    align-items: center;
}

.text-content {
    max-width: 600px;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

.btn {
    padding: 0.8rem 1.8rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

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

.nav-btn {
    background: transparent;
    color: white;
}

.nav-btn.primary {
    background: var(--primary-blue);
}

.bottom-bar {
    background: rgba(0, 0, 0, 0.8);
    padding: 2rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.bottom-bar h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.bottom-bar p {
    font-size: 1rem;
    margin-bottom: 1rem;
}

.btn.webinar {
    background: var(--secondary-color);
    color: white;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    .hero-content {
        padding: 2rem 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .navbar {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .nav-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .dropdown-menu {
        max-height: 100px;
    }
}
/* About Section Styles */
.about-section {
    min-height: 100vh;
    background-color: var(--text-color);
    position: relative;
    overflow: hidden;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    min-height: 100vh;
}

.content-wrapper {
    width: 50%;
    padding: 6rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section-label {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    color: var(--primary-blue);
}

.main-heading {
    font-size: 3rem;
    line-height: 1.2;
    color: var(--dark-blue);
    margin-bottom: 2rem;
}

.description p {
    margin-bottom: 1.5rem;
    color: #666;
    font-size: 1.1rem;
}

.emphasis {
    color: #333 !important;
    font-weight: 600;
    font-size: 1.2rem !important;
}

.image-wrapper {
    width: 50%;
    position: relative;
    overflow: hidden;
}

.diagonal-cut {
    position: absolute;
    top: 0;
    left: -100px;
    width: 200px;
    height: 100%;
    background: white;
    transform: skew(-15deg);
    z-index: 2;
}

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

/* Responsive Styles for About Section */
@media (max-width: 1024px) {
    .content-wrapper {
        padding: 4rem 2rem;
    }
    
    .main-heading {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
    }
    
    .content-wrapper,
    .image-wrapper {
        width: 100%;
    }
    
    .content-wrapper {
        padding: 3rem 1.5rem;
    }
    
    .image-wrapper {
        height: 400px;
        order: -1;
    }
    
    .diagonal-cut {
        display: none;
    }
    
    .main-heading {
        font-size: 2rem;
    }
}

/* Solutions Section Styles */
.solutions-section {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

.solutions-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.solutions-heading {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    line-height: 1.2;
}

.solutions-description {
    max-width: 900px;
    margin: 0 auto 4rem;
}

.solutions-description p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.highlight {
    color: var(--primary-blue);
}

.sub-description {
    font-size: 1.2rem !important;
    color: #333 !important;
}

.solutions-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.solution-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    border: 1px solid var(--pale-blue);
}

.solution-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-blue);
    box-shadow: 0 10px 30px rgba(0, 82, 204, 0.15);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: rgba(154, 183, 48, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.card-icon svg path, 
.card-icon svg circle {
    stroke: var(--primary-blue);
}

.solution-card h3 {
    color: #333;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.solution-card p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .solutions-section {
        padding: 4rem 1.5rem;
    }

    .solutions-heading {
        font-size: 2.2rem;
    }

    .solutions-description {
        padding: 0 1rem;
    }

    .solutions-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Animation Classes */
@keyframes slideInLeft {
    from {
        transform: translateX(-100px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(100px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

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

@keyframes scaleIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Animation Utility Classes */
.fade-in {
    animation: fadeInUp 0.8s ease forwards;
}

.slide-in-left {
    animation: slideInLeft 0.8s ease forwards;
}

.slide-in-right {
    animation: slideInRight 0.8s ease forwards;
}

.scale-in {
    animation: scaleIn 0.8s ease forwards;
}

/* Enhanced Element Styles */
.navbar {
    transition: all 0.5s ease;
}

.hero-content {
    transition: all 0.8s ease;
}

.bottom-bar {
    transition: all 0.5s ease;
}

.section-label,
.main-heading,
.description p,
.image-wrapper {
    opacity: 0;
    transition: all 0.8s ease;
}

.solutions-heading,
.solutions-description {
    opacity: 0;
    transition: all 0.8s ease;
}

.solution-card {
    opacity: 0;
    transition: all 0.5s ease;
}

/* Enhanced Hover Effects */
.solution-card {
    transition: all 0.3s ease;
}

.card-hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.btn {
    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 82, 204, 0.3);
}

/* Smooth Scroll Behavior */
html {
    scroll-behavior: smooth;
}

/* Additional Animation Modifiers */
.delay-100 {
    animation-delay: 100ms;
}

.delay-200 {
    animation-delay: 200ms;
}

.delay-300 {
    animation-delay: 300ms;
}

.delay-400 {
    animation-delay: 400ms;
}

/* Enhanced Mobile Animations */
@media (max-width: 768px) {
    .solution-card {
        transition: transform 0.3s ease;
    }

    .solution-card:active {
        transform: scale(0.98);
    }
}

/* Testimonials Section Styles */
.testimonials-section {
    padding: 6rem 2rem;
    background-color: #f8f8f8;
}

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

.testimonials-heading {
    text-align: center;
    font-size: 2rem;
    color: #333;
    margin-bottom: 4rem;
    letter-spacing: 2px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid var(--pale-blue);
}

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

.quote-icon {
    margin-bottom: 1.5rem;
    color: #3c78da;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 2rem;
}

.testimonial-author {
    margin-top: auto;
}

.testimonial-author h3 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.testimonial-author p {
    font-size: 0.9rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .testimonials-section {
        padding: 4rem 1.5rem;
    }

    .testimonials-heading {
        font-size: 1.8rem;
        margin-bottom: 3rem;
    }

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

    .testimonial-card {
        padding: 2rem;
    }
}

/* Case Study Section Styles */
.case-study-section {
    position: relative;
    overflow: hidden;
    background-color: #ffffff;
}

.case-study-container {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    min-height: 600px;
}

.case-study-content {
    width: 50%;
    padding: 6rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.case-study-text {
    max-width: 600px;
}

.section-label {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: #666;
    margin-bottom: 1.5rem;
}

.case-study-heading {
    font-size: 3.5rem;
    line-height: 1.2;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.case-study-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 2rem;
}

.case-study-btn {
    background: var(--primary-blue);
    color: var(--white);
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.case-study-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.case-study-image {
    width: 50%;
    position: relative;
    overflow: hidden;
}

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

.diagonal-overlay {
    position: absolute;
    top: 0;
    left: -100px;
    width: 200px;
    height: 100%;
    background: white;
    transform: skew(-15deg);
    z-index: 2;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .case-study-heading {
        font-size: 2.8rem;
    }

    .case-study-content {
        padding: 4rem 2rem;
    }
}

@media (max-width: 768px) {
    .case-study-container {
        flex-direction: column-reverse;
    }

    .case-study-content,
    .case-study-image {
        width: 100%;
    }

    .case-study-content {
        padding: 3rem 1.5rem;
    }

    .case-study-image {
        height: 400px;
    }

    .case-study-heading {
        font-size: 2.2rem;
    }

    .diagonal-overlay {
        display: none;
    }
}

/* Animation Classes */
.fade-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 1s ease;
}

.fade-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 1s ease;
}

.fade-in-active {
    opacity: 1;
    transform: translateX(0);
}

/* Updated Industry Solutions Section Styles */
.industry-solutions-section {
    padding: 4rem 2rem;
    background-color: #f8f8f8;
}

.solutions-container {
    max-width: 1400px;
    margin: 0 auto;
}

.solutions-heading {
    text-align: center;
    font-size: 3rem;
    color: #3c78da;
    margin-bottom: 3rem;
}

.solutions-wrapper {
    display: flex;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    min-height: 500px;
}

/* Industry Menu Styles */
.industry-menu {
    width: 350px;
    background: #3c78da;
    display: flex;
    flex-direction: column;
}

.menu-item {
    padding: 1.5rem 2rem;
    height: calc(100% / 5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    font-size: 1.2rem;
    text-align: center;
    background: #3c78da;
}

.menu-item:nth-child(2n) {
    background: #3c78da;
}

.menu-item:hover {
    background: var(--pale-blue);
    color: var(--primary-blue);
}

.menu-item.active {
    background: var(--primary-blue);
    color: var(--white);
}

/* Content Panel Styles */
.content-panel {
    flex: 1;
    background: white;
    padding: 3rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.industry-content {
    display: none;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s ease;
    max-width: 700px;
}

.industry-content.active {
    display: block;
    opacity: 1;
    transform: translateX(0);
}

.industry-content h2 {
    color: #333;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.industry-content p {
    color: #666;
    font-size: 1.2rem;
    line-height: 1.5;
    margin-bottom: 2rem;
}

.learn-more {
    background: var(--primary-blue);
    color: var(--white);
    border: 2px solid var(--primary-blue);
    padding: 0.8rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.learn-more:hover {
    background: var(--accent-blue);
    color: var(--white);
    transform: translateY(-2px);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .solutions-container {
        max-width: 100%;
    }

    .content-panel {
        padding: 2.5rem 3rem;
    }
}

@media (max-width: 968px) {
    .solutions-wrapper {
        flex-direction: column;
    }

    .industry-menu {
        width: 100%;
        flex-direction: row;
        overflow-x: auto;
    }

    .menu-item {
        height: auto;
        padding: 1.2rem 1.8rem;
        flex: 1;
        min-width: max-content;
    }

    .content-panel {
        padding: 2rem;
    }

    .industry-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .industry-solutions-section {
        padding: 3rem 1rem;
    }

    .solutions-heading {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .menu-item {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }

    .industry-content h2 {
        font-size: 1.8rem;
    }

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

.footer-consultation {
    display: inline-block;
    padding: 12px 24px;
    background-color: #4C9AFF;
    color: #ffffff;
    text-decoration: none;
    border-radius: 25px;
    transition: background-color 0.3s ease;
    text-align: center;
    margin-top: auto;
}

.footer-consultation:hover {
    background-color: #4C9AFF;
}

/* Footer Columns */
.footer-column h3 {
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

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

.footer-column ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #4C9AFF;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .footer-column:first-child {
        grid-column: span 3;
        text-align: center;
        align-items: center;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-column:first-child {
        grid-column: span 2;
    }
}

@media (max-width: 480px) {
    .footer-section {
        padding: 40px 0;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-column:first-child {
        grid-column: span 1;
    }

    .footer-logo img {
        max-width: 160px;
    }

    .footer-consultation {
        width: 100%;
    }

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

    .footer-column h3 {
        margin-bottom: 15px;
    }

    .footer-column ul li {
        margin-bottom: 10px;
    }
}

/* Scroll Progress Indicator */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(to right, #4C9AFF, #5DA9E9);
    z-index: 9999;
    transition: width 0.2s ease-out;
}

/* CTA Hero Section Styles */
.cta-hero {
    position: relative;
    min-height: 80vh; /* Increased height to match design */
    background-size: cover;
    background-position: right center; /* Aligned to show the person on the right */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 6rem 2rem;
}

.cta-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.9) 0%,
        rgba(0, 0, 0, 0.7) 60%,
        rgba(0, 0, 0, 0.4) 100%
    );
    z-index: 1;
}

.cta-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.cta-hero-title {
    font-size: 4rem;
    color: #3c78da;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 500;
}

.cta-hero-text {
    font-size: 1.25rem;
    color: white;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-hero-button {
    display: inline-block;
    background-color: var(--primary-blue);
    color: var(--white);
    text-decoration: none;
    padding: 1.2rem 2.5rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-hero-button:hover {
    background-color: var(--accent-blue);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(74, 144, 226, 0.3);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .cta-hero {
        min-height: 70vh;
    }

    .cta-hero-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .cta-hero {
        min-height: 60vh;
        padding: 4rem 1.5rem;
    }

    .cta-hero-title {
        font-size: 2.8rem;
    }

    .cta-hero-text {
        font-size: 1.1rem;
    }

    .cta-hero-button {
        padding: 1rem 2rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .cta-hero {
        min-height: 50vh;
    }

    .cta-hero-title {
        font-size: 2.2rem;
    }

    .cta-hero-text {
        font-size: 1rem;
    }
}

@keyframes heroAnimation {
    0% {
        background-size: 100%;
        opacity: 1;
        transform: scale(1);
    }
    
    50% {
        background-size: 110%;
        opacity: 0.9;
        transform: scale(1.05);
    }
    
    100% {
        background-size: 100%;
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes overlayPulse {
    0% {
        background: rgba(0, 0, 0, 0.5);
    }
    
    50% {
        background: rgba(0, 0, 0, 0.35);
    }
    
    100% {
        background: rgba(0, 0, 0, 0.5);
    }
}

@keyframes floatingEffect {
    0% {
        transform: translateY(0px) translateX(0px);
        background-position: center center;
    }
    
    25% {
        transform: translateY(-15px) translateX(10px);
        background-position: 51% 49%;
    }
    
    50% {
        transform: translateY(0px) translateX(0px);
        background-position: 50% 50%;
    }
    
    75% {
        transform: translateY(15px) translateX(-10px);
        background-position: 49% 51%;
    }
    
    100% {
        transform: translateY(0px) translateX(0px);
        background-position: center center;
    }
}

@keyframes overlayFloat {
    0%, 100% {
        background: rgba(0, 0, 0, 0.5);
    }
    
    50% {
        background: rgba(0, 0, 0, 0.45);
    }
}

/* Main Navbar Styles */
.main-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 0;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.nav-link {
    color: var(--dark-blue);
    text-decoration: none;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-blue);
}

.nav-link span::after {
    background: var(--primary-blue);
}

.nav-item:hover .nav-link i.fa-chevron-down {
    transform: rotate(180deg);
}

/* Contact button styling */
.contact-btn {
    background: var(--primary-blue);
    color: white !important;
    padding: 12px 24px;
    border-radius: 25px;
    text-align: center !important;
    position: relative;
    padding-left: 17px !important;
    padding-right: 5px !important;
}

.contact-btn:hover {
    background: var(--accent-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 82, 204, 0.3);
}

.contact-btn i {
    color: white !important;

}

/* Dropdown styling updates */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: white;
    min-width: 900px;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
    border-top: 3px solid var(--primary-blue);
}

.dropdown-header {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.dropdown-header h2 {
    color: var(--dark-blue);
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.dropdown-header p {
    color: var(--accent-blue);
    font-size: 0.9rem;
}

.dropdown-section h3 {
    color: var(--dark-blue);
    font-size: 0.85rem;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-blue);
}

.dropdown-section ul li a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #333;
    padding: 8px 0;
    transition: all 0.3s ease;
}

.dropdown-section ul li a i {
    color: var(--primary-blue);
    width: 20px;
    text-align: center;
}

.dropdown-section ul li a:hover {
    color: var(--primary-blue);
    transform: translateX(5px);
}

.dropdown-section ul li a::before {
    background: var(--primary-blue);
}

/* Show dropdown on hover */
.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .dropdown-menu {
        min-width: 700px;
    }
}

@media (max-width: 768px) {
    .dropdown-menu {
        min-width: 100%;
        padding: 20px;
        min-height: 250px;
    }
}

@media (max-width: 992px) {
    .nav-links {
        gap: 20px;
    }
    
    .nav-link {
        font-size: 0.9rem;
        padding: 8px 12px;
    }
}

/* Scrolled state - keeping it white */
.main-navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

/* Hamburger Menu Styles */
.hamburger {
    display: none; /* Hidden by default */
    cursor: pointer;
    font-size: 24px; /* Adjust size as needed */
    color: #0052CC;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .nav-links {
        display: none; /* Hide nav links by default */
        flex-direction: column ; /* Stack links vertically */
        width: 100%; /* Full width */
        position: absolute; /* Positioning */
        top: 60px; /* Adjust based on navbar height */
        left: 0;
        background-color: white; /* Background color */
        z-index: 1000; /* Ensure it appears above other content */
        margin-top: 50px ;
    }

    .nav-links.active {
        display: flex; /* Show links when active */
    }

    .hamburger {
        display: block; /* Show hamburger icon on mobile */
    }

    
}

/* Team Section Styles */
.team-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

.section-title {
    text-align: center;
    color: #1a237e;
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 50px;
}

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

.team-member {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    text-align: center;
    padding: 20px;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.member-image img {
    width: 70%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.member-info {
    padding: 25px;
    text-align: center;
}

.member-name {
    color: #1a237e;
    font-size: 1.5rem;
    margin: 10px 0;
    font-weight: 600;
}

.member-position {
    color: #2196f3;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.member-quote {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    font-style: italic;
    margin-top: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .member-image {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .member-info {
        padding: 20px;
    }
    
    .member-name {
        font-size: 1.3rem;
    }
}

/* Adjust the margin-top for the contact container */
.contact-container {
    margin-top: 140px; /* Increased space below the navbar */
    padding: 40px 20px; /* This adds internal spacing */
    margin: 40px auto;
    background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23000000' fill-opacity='0.05' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E");
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 100%;
    max-width: 1200px;
    border-radius: 20px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    display: flex;
    overflow: hidden;
}
