 :root {
            --primary-blue: #0d3d75;
            --secondary-blue: #0066cc;
            --accent-blue: #0078d8;
            --light-blue: #e6f2ff;
            --lighter-blue: #154a8f;
            --white: #ffffff;
            --light-gray: #f5f7fa;
            --dark-gray: #333333;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            --transition: all 0.3s ease;
        }

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

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--dark-gray);
            background-color: var(--white);
            overflow-x: hidden;
            padding-top: 80px;
        }

        h1, h2, h3, h4 {
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 1rem;
            color: var(--primary-blue);
        }

        p {
            margin-bottom: 1.5rem;
        }

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

        .btn {
            display: inline-block;
            padding: 14px 32px;
            background: var(--secondary-blue);
            color: var(--white);
            border: none;
            border-radius: 4px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            transition: var(--transition);
            text-decoration: none;
            font-size: 0.9rem;
        }

        .btn:hover {
            background: var(--accent-blue);
            transform: translateY(-3px);
            box-shadow: var(--shadow);
        }

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

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

        /* Header Styles */
         header {
                background-color: rgba(255, 255, 255, 0.5); /* Add transparency */
                backdrop-filter: blur(10px); /* Add blur effect */
                -webkit-backdrop-filter: blur(10px); /* Safari support */
                box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
                position: fixed; /* Change from sticky to fixed */
                top: 0;
                left: 0; /* Add left positioning */
                right: 0; /* Add right positioning */
                width: 100%; /* Ensure full width */
                z-index: 1000;
                padding: 0.8rem 0;
                transition: all 0.3s ease;
            }

            .header-container {
                display: flex;
                justify-content: space-between;
                align-items: center;
                max-width: 1200px;
                margin: 0 auto;
                padding: 0 2rem;
            }
            /* Dropdown Styles */

            .dropdown {
                position: relative;
                display: inline-block;
            }

            .dropdown-content {
                display: none;
                position: absolute;
                background-color: var(--white);
                min-width: 220px;
                box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
                border-radius: 4px;
                z-index: 1;
                opacity: 0;
                visibility: hidden;
                transition: all 0.3s ease;
                transform: translateY(10px);
            }

            .dropdown-content a {
                color: var(--dark-gray);
                padding: 12px 16px;
                text-decoration: none;
                display: block;
                text-align: left;
                transition: all 0.2s ease;
            }

            .dropdown-content a:hover {
                background-color: var(--light-blue);
                color: var(--primary-blue);
                padding-left: 20px;
            }

            .dropdown:hover .dropdown-content {
                display: block;
                opacity: 1;
                visibility: visible;
                transform: translateY(0);
            }

            .dropdown .dropbtn i {
                margin-left: 5px;
                font-size: 0.8em;
                transition: transform 0.3s ease;
            }

            .dropdown:hover .dropbtn i {
                transform: rotate(180deg);
            }
            /* Mobile dropdown adjustments */

           /* Improved Mobile Dropdown Styles */
            @media (max-width: 768px) {
                .header-container {
                    padding: 0 1.5rem;
                }

                .mobile-toggle {
                    display: block;
                    z-index: 1001;
                    background: none;
                    border: none;
                    font-size: 1.5rem;
                    cursor: pointer;
                    color: var(--primary-blue);
                }

                nav {
                    position: fixed;
                    top: 80px;
                    left: 0;
                    width: 100%;
                    background: white;
                    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
                    max-height: 0;
                    overflow: hidden;
                    transition: max-height 0.4s ease;
                    z-index: 1000;
                }

                nav.active {
                    max-height: 500px;
                    overflow-y: auto;
                }

                nav ul {
                    flex-direction: column;
                    gap: 0;
                    padding: 0;
                    margin: 0;
                }

                nav li {
                    padding: 0;
                    border-bottom: 1px solid #f1f1f1;
                    position: relative;
                }

                nav a {
                    display: block;
                    padding: 1rem 2rem;
                    width: 100%;
                    text-align: left;
                    border: none;
                    background: none;
                    font-size: 1rem;
                    color: #333;
                    text-decoration: none;
                }

                nav a::after {
                    display: none;
                }

                /* Improved Dropdown styles for mobile */
                .dropdown-content {
                    position: static;
                    box-shadow: none;
                    display: none;
                    opacity: 1;
                    visibility: visible;
                    transform: none;
                    padding-left: 0;
                    background-color: #f8f9fa;
                    border-top: 1px solid #e9ecef;
                    max-height: 0;
                    overflow: hidden;
                    transition: max-height 0.3s ease;
                }

                .dropdown.active .dropdown-content {
                    display: block;
                    max-height: 300px;
                }

                .dropdown-content a {
                    padding: 0.8rem 3rem;
                    border-bottom: 1px solid #e9ecef;
                    color: #666;
                    font-size: 0.95rem;
                }

                .dropdown-content a:hover {
                    background-color: #e9ecef;
                    color: var(--primary-blue);
                    padding-left: 3.5rem;
                }

                .dropdown .dropbtn {
                    display: flex;
                    justify-content: space-between;
                    align-items: center;
                    width: 100%;
                }

                .dropdown .dropbtn i {
                    transition: transform 0.3s ease;
                    font-size: 0.8em;
                    margin-left: 10px;
                }

                .dropdown.active .dropbtn i {
                    transform: rotate(180deg);
                }

                /* Ensure dropdown links look different from main nav items */
                .dropdown-content a {
                    background-color: #f8f9fa;
                    font-weight: normal;
                }

                .dropdown-content a:last-child {
                    border-bottom: none;
                }
            }
            /* Reduce header logo sizes */
                .header-container .logo img {
                    height: 50px;
                    width: auto;
                    transition: transform 0.3s ease;
                }


                /* Fix mobile dropdown styles */
            @media (max-width: 768px) {
                .dropdown.active .dropdown-content {
                    display: block !important;
                    max-height: 300px !important;
                    opacity: 1 !important;
                    visibility: visible !important;
                    transform: none !important;
                }

                .dropdown .dropbtn i {
                    transition: transform 0.3s ease;
                }

                .dropdown.active .dropbtn i {
                    transform: rotate(180deg) !important;
                }

                /* Ensure proper spacing for dropdown items */
                .dropdown-content a {
                    padding: 0.8rem 3rem !important;
                    border-bottom: 1px solid #e9ecef !important;
                    color: #666 !important;
                    font-size: 0.95rem !important;
                    background-color: #f8f9fa !important;
                }

                .dropdown-content a:hover {
                    background-color: #e9ecef !important;
                    color: var(--primary-blue) !important;
                    padding-left: 3.5rem !important;
                }
            }
                        /* Navigation Styles */

            nav ul {
                display: flex;
                gap: 1.8rem;
                list-style: none;
                margin: 0;
                padding: 0;
            }

            nav a {
                color: #333;
                text-decoration: none;
                font-weight: 500;
                font-size: 1.1rem;
                position: relative;
                padding: 0.5rem 0;
                transition: color 0.3s ease;
            }

            nav a:hover {
                color: #0066cc;
            }
            /* Animated underline effect */

            nav a::after {
                content: '';
                position: absolute;
                bottom: 0;
                left: 0;
                width: 0;
                height: 2px;
                background-color: #0066cc;
                transition: width 0.3s ease;
            }

            nav a:hover::after {
                width: 100%;
            }

            body.menu-open {
                overflow: hidden; /* Optional: prevents scrolling when menu is open */
            }


            /* Mobile Toggle */

            .mobile-toggle {
                display: none;
                cursor: pointer;
                font-size: 1.5rem;
            }
            /* Responsive Design */

            @media (max-width: 768px) {
                .header-container {
                    padding: 0 1.5rem;
                }
                .mobile-toggle {
                    display: block;
                }
                nav {
                    position: absolute;
                    top: 100%;
                    left: 0;
                    width: 100%;
                    background: white;
                    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
                    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
                    transition: clip-path 0.4s ease;
                }
                nav.active {
                    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
                }
                nav ul {
                    flex-direction: column;
                    gap: 0;
                    padding: 1rem 0;
                }
                nav li {
                    padding: 0.8rem 2rem;
                    border-bottom: 1px solid #f1f1f1;
                }
                nav a::after {
                    display: none;
                }
            }

            /* Nested Dropdown Styles */
.dropdown-nested {
    position: relative;
}

.dropdown-nested .has-submenu {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dropdown-nested .has-submenu i {
    margin-left: 10px;
    font-size: 0.8em;
    transition: transform 0.3s ease;
}

.dropdown-submenu {
    display: none;
    position: absolute;
    left: 100%;
    top: 0;
    background-color: var(--white);
    min-width: 280px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    transform: translateX(10px);
    z-index: 1001;
}

.dropdown-nested:hover .dropdown-submenu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.dropdown-submenu a {
    color: var(--dark-gray);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
    transition: all 0.2s ease;
    font-size: 0.95rem;
    white-space: nowrap;
}

.dropdown-submenu a:hover {
    background-color: var(--light-blue);
    color: var(--primary-blue);
    padding-left: 20px;
}

/* Hover effect for parent item with submenu */
.dropdown-nested:hover > .has-submenu {
    background-color: var(--light-blue);
    color: var(--primary-blue);
}

.dropdown-nested:hover .has-submenu i {
    transform: translateX(3px);
}

/* Mobile Nested Dropdown Styles */
@media (max-width: 768px) {
    .dropdown-nested {
        position: relative;
    }

    .dropdown-nested .has-submenu {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding: 1rem 2rem;
        background: none;
        border: none;
        color: #333;
        text-align: left;
        cursor: pointer;
    }

    .dropdown-nested .has-submenu i {
        transition: transform 0.3s ease;
        margin-left: auto;
    }

    .dropdown-submenu {
        position: static;
        box-shadow: none;
        display: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        background-color: #f0f0f0;
        border-top: 1px solid #e0e0e0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        padding-left: 0;
    }

    .dropdown-nested.active .dropdown-submenu {
        display: block;
        max-height: 500px;
    }

    .dropdown-nested.active .has-submenu i {
        transform: rotate(90deg);
    }

    .dropdown-submenu a {
        padding: 0.8rem 3.5rem;
        border-bottom: 1px solid #e0e0e0;
        color: #555;
        font-size: 0.9rem;
        background-color: #f0f0f0;
    }

    .dropdown-submenu a:hover {
        background-color: #e0e0e0;
        color: var(--primary-blue);
        padding-left: 4rem;
    }

    .dropdown-submenu a:last-child {
        border-bottom: none;
    }

    /* Prevent desktop hover on mobile */
    .dropdown-nested:hover .dropdown-submenu {
        display: none;
    }

    .dropdown-nested.active:hover .dropdown-submenu {
        display: block;
    }
}

/* Triple Nested Dropdown (Level 3 - Liability Insurance sub-items) */
        .dropdown-triple-nested {
            position: relative;
        }

        .dropdown-triple-nested .has-submenu-triple {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .dropdown-triple-nested .has-submenu-triple i {
            margin-left: 10px;
            font-size: 0.8em;
            transition: transform 0.3s ease;
        }

        .dropdown-submenu-triple {
            display: none;
            position: absolute;
            left: 100%;
            top: 0;
            background-color: var(--white);
            min-width: 250px;
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
            border-radius: 4px;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            transform: translateX(10px);
            z-index: 1003;
        }

        .dropdown-triple-nested:hover .dropdown-submenu-triple {
            display: block;
            opacity: 1;
            visibility: visible;
            transform: translateX(0);
        }

        .dropdown-submenu-triple a {
            color: #333;
            padding: 10px 16px;
            text-decoration: none;
            display: block;
            transition: all 0.2s ease;
            font-size: 0.9rem;
        }

        .dropdown-submenu-triple a:hover {
            background-color: var(--light-blue);
            color: var(--primary-blue);
            padding-left: 20px;
        }

        /* Hover effects */
        .dropdown-nested:hover > .has-submenu,
        .dropdown-triple-nested:hover > .has-submenu-triple {
            background-color: var(--light-blue);
            color: var(--primary-blue);
        }

        .dropdown-nested:hover .has-submenu i,
        .dropdown-triple-nested:hover .has-submenu-triple i {
            transform: translateX(3px);
        }

        /* Mobile Styles */
        @media (max-width: 768px) {
            .mobile-toggle {
                display: block;
                z-index: 1001;
            }

            nav {
                position: fixed;
                top: 80px;
                left: 0;
                width: 100%;
                background: white;
                box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.4s ease;
                z-index: 1000;
            }

            nav.active {
                max-height: 80vh;
                overflow-y: auto;
            }

            nav ul {
                flex-direction: column;
                gap: 0;
                padding: 0;
            }

            nav li {
                border-bottom: 1px solid #f1f1f1;
            }

            nav a {
                display: block;
                padding: 1rem 2rem;
            }

            .dropdown-content {
                position: static;
                box-shadow: none;
                display: none;
                opacity: 1;
                visibility: visible;
                transform: none;
                background-color: #f8f9fa;
                border-top: 1px solid #e9ecef;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.3s ease;
            }

            .dropdown.active .dropdown-content {
                display: block;
                max-height: 500px;
            }

            .dropdown-content a {
                padding: 0.8rem 3rem;
                border-bottom: 1px solid #e9ecef;
                font-size: 0.95rem;
            }

            /* Mobile Level 2 (General Insurance submenu) */
            .dropdown-submenu {
                position: static;
                box-shadow: none;
                display: none;
                opacity: 1;
                visibility: visible;
                transform: none;
                background-color: #f0f0f0;
                border-top: 1px solid #e0e0e0;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.3s ease;
            }

            .dropdown-nested.active .dropdown-submenu {
                display: block;
                max-height: 600px;
            }

            .dropdown-submenu a {
                padding: 0.8rem 3.5rem;
                border-bottom: 1px solid #e0e0e0;
                color: #555;
                background-color: #f0f0f0;
            }

            /* Mobile Level 3 (Liability Insurance submenu) */
            .dropdown-submenu-triple {
                position: static;
                box-shadow: none;
                display: none;
                opacity: 1;
                visibility: visible;
                transform: none;
                background-color: #e8e8e8;
                border-top: 1px solid #d0d0d0;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.3s ease;
            }

            .dropdown-triple-nested.active .dropdown-submenu-triple {
                display: block;
                max-height: 400px;
            }

            .dropdown-submenu-triple a {
                padding: 0.7rem 4.5rem;
                border-bottom: 1px solid #d0d0d0;
                color: #444;
                background-color: #e8e8e8;
                font-size: 0.9rem;
            }

            .dropdown-nested .has-submenu,
            .dropdown-triple-nested .has-submenu-triple {
                display: flex;
                justify-content: space-between;
                width: 100%;
            }

            .dropdown-nested .has-submenu i,
            .dropdown-triple-nested .has-submenu-triple i {
                transition: transform 0.3s ease;
            }

            .dropdown-nested.active .has-submenu i,
            .dropdown-triple-nested.active .has-submenu-triple i {
                transform: rotate(90deg);
            }

            /* Prevent desktop hover on mobile */
            .dropdown-nested:hover .dropdown-submenu,
            .dropdown-triple-nested:hover .dropdown-submenu-triple {
                display: none;
            }

            .dropdown-nested.active:hover .dropdown-submenu,
            .dropdown-triple-nested.active:hover .dropdown-submenu-triple {
                display: block;
            }
        }

        /* Demo content */
        .content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
        }

        .content h1 {
            color: var(--primary-blue);
            margin-bottom: 20px;
        }

        .content p {
            line-height: 1.6;
            color: #333;
        }


         /* Hero Section */

        .hero-section {
            position: relative;
            min-height: 700px; /* Increased from 500px */
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            background: transparent;
 
        }

         .hero-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('../media/backgrounds/about-page-background.webp') center/contain no-repeat;
            z-index: 1;
 
        }

        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            padding: 80px 20px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .hero-logo {
            margin-bottom: 40px;
            opacity: 0;
            transform: translateY(-30px);
            animation: fadeInDown 1s ease-out forwards;
        }

        .hero-logo img {
            height: 80px;
            width: auto;
        }

        .hero-title {
            font-size: 3.5rem;
            font-weight: 500;
            color: #0055aa;
            margin-bottom: 20px;
            letter-spacing: 2px;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s ease-out 0.3s forwards;
        }

        .hero-subtitle {
            font-size: 1.8rem;
            font-weight: 500;
            color: #0055aa;
            line-height: 1.6;
            letter-spacing: 1px;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s ease-out 0.6s forwards;
        }

        /* Animations */
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

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

        /* Responsive Design */
        @media (max-width: 768px) {
            .hero-section {
                min-height: 400px;
            }

            .hero-content {
                padding: 60px 20px;
            }

            .hero-logo img {
                height: 60px;
            }

            .hero-title {
                font-size: 2.2rem;
                letter-spacing: 1px;
            }

            .hero-subtitle {
                font-size: 1.2rem;
                letter-spacing: 0.5px;
            }
        }

        @media (max-width: 576px) {
            .hero-section {
                min-height: 350px;
            }

            .hero-content {
                padding: 40px 15px;
            }

            .hero-logo img {
                height: 50px;
            }

            .hero-title {
                font-size: 1.8rem;
            }

            .hero-subtitle {
                font-size: 1rem;
            }
        }


        /* Team Section with Gradient Background */
        .team-section {
            background: linear-gradient(135deg, #0d3d75 0%, #0066cc 50%, #0078d8 100%);
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }

        .team-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('../media/backgrounds/website-background.webp') center/cover no-repeat;
            opacity: 0.1;
            z-index: 1;
        }

        .team-section > .container {
            position: relative;
            z-index: 2;
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            justify-items: center;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #0066cc, #00aaff, #0066cc);
            box-shadow: 0 0 10px rgba(0, 170, 255, 0.5);
        }

        /* Override for team section - make it white */
        .team-section .section-title h2::after {
            background: white !important;
            background-color: white !important;
            width: 1100px !important;
            height: 3px !important;
            box-shadow: none !important;
        }
        .team-section .section-title h2 {
            color: white;
            text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.5);
            font-weight: 500;
            font-size: 2.5rem;
            position: relative;
            display: inline-block;
            padding-bottom: 15px;
        }

        .team-member {
            text-align: center;
            transition: all 0.4s ease;
            padding: 20px 15px;
            border-radius: 20px;
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            opacity: 0;
            transform: translateY(30px);
            width: 100%;
            max-width: 280px;
        }

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

        .team-member:hover {
            transform: translateY(-15px);
            background: rgba(255, 255, 255, 0.1);
            box-shadow: 0 15px 30px rgba(0, 102, 204, 0.4);
        }

        .member-photo {
            width: 180px;
            height: 180px;
            margin: 0 auto 20px;
            border-radius: 50%;
            overflow: hidden;
            position: relative;
            background: linear-gradient(135deg, #e6f2ff 0%, #b3d9ff 100%);
            padding: 5px;
            transition: all 0.4s ease;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        }

        .team-member:hover .member-photo {
            background: linear-gradient(135deg, #b3d9ff 0%, #66b3ff 100%);
            transform: scale(1.05);
            box-shadow: 0 12px 35px rgba(0, 102, 204, 0.6);
        }

        .member-photo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 50%;
            transition: all 0.4s ease;
            filter: brightness(0.9);
        }

        .team-member:hover .member-photo img {
            filter: brightness(1);
            transform: scale(1.05);
        }

        .member-info {
            color: white;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        }

        .member-info h4 {
            font-size: 1.4rem;
            font-weight: 500;
            margin-bottom: 8px;
            color: white;
            letter-spacing: 0.5px;
        }

        .position {
            font-size: 1.0rem;
            font-weight: 480;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 8px;
            letter-spacing: 0.3px;
        }


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

            .team-member {
                max-width: 300px;
            }

            .member-photo {
                width: 200px;
                height: 200px;
            }
        }

        @media (max-width: 768px) {
            .team-section {
                padding: 70px 0;
            }

            .team-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .team-member {
                max-width: 280px;
            }

            .member-photo {
                width: 180px;
                height: 180px;
            }

            .member-info h4 {
                font-size: 1.3rem;
            }

            .position {
                font-size: 1rem;
            }
        }

        @media (max-width: 480px) {
            .team-grid {
                gap: 30px;
            }

            .team-member {
                padding: 15px 10px;
            }

            .member-photo {
                width: 160px;
                height: 160px;
            }

            .member-info h4 {
                font-size: 1.2rem;
            }

            .position {
                font-size: 0.95rem;
            }

            .bio {
                font-size: 0.85rem;
            }
        }



        /* IRC Overview Section */
        .irc-overview-section {
            padding: 40px 0 0px 0;  /
            background-color: var(--white);
            color: #000;
        }

        .irc-overview-container {
            display: flex;
            flex-wrap: wrap;
            align-items: flex-start;
            max-width: 1200px;
            margin: 0 auto;
            gap: 60px;
            padding: 0 20px;
        }

        .irc-left, .irc-right {
            flex: 1 1 400px;
            min-width: 300px;
        }

        .irc-left h1 {
            font-size: 3.5rem;
            font-weight: 500;
            line-height: 1.1;
            margin-bottom: 18px;
            letter-spacing: 0.02em;
        }

        .irc-left p {
            font-size: 1.2rem;
            line-height: 1.5;
            max-width: 480px;
            margin-bottom: 40px;
            color: #222;
        }

        .irc-image-placeholder {
            width: 240px;
            height: 280px;
            margin: 0 auto;
        }

        .irc-image-placeholder img {
            max-width: 100%;
            height: auto;
            display: block;
            object-fit: contain;
        }

        /* Right side overview text */
        .irc-right h2 {
            font-size: 2.8rem;
            font-weight: 500;
            margin-bottom: 50px;
            letter-spacing: 0.02em;
            margin-top: 0;
        }

        .irc-info-block {
            margin-bottom: 20px;
        }

        .irc-info-block h3 {
            font-size: 1.6rem;
            font-weight: 500;
            margin-bottom: 8px;
            letter-spacing: 0.04em;
        }

        .irc-info-block p {
            font-size: 1.1rem;
            line-height: 1.6;
            color: #111;
            max-width: 450px;
            margin-bottom: 0;
        }

        hr {
            border: none;
            border-top: 3px solid #333;
            margin: 20px 0;
            max-width: 450px;
        }

        /* Responsive adjustments */
        @media (max-width: 1024px) {
            .irc-overview-container {
                gap: 40px;
            }
            .irc-left h1 {
                font-size: 3rem;
            }
            .irc-right h2 {
                font-size: 2.4rem;
            }
        }

        @media (max-width: 768px) {
            .irc-overview-container {
                flex-direction: column;
                gap: 50px;
                text-align: center;
            }
            .irc-left, .irc-right {
                flex: auto;
                min-width: auto;
            }
            .irc-left h1 {
                font-size: 2.5rem;
            }
            .irc-right h2 {
                font-size: 2rem;
            }
            .irc-info-block p, .irc-left p {
                max-width: 100%;
            }
            hr {
                max-width: 100%;
            }

            .irc-image-placeholder {
                width: 180px;
                height: 210px;
                margin: 0 auto;
            }
        }


        /* Value Add Section */
        .value-add-section {
            background-color: #bed6fb; /* light blue background */
            padding: 80px 20px 60px;
            color: #1a1a2e; /* dark text for contrast */
            text-align: left;
        }

        .value-add-container {
            max-width: 1200px;
            margin: 0 auto 60px;
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            justify-content: space-between;
            align-items: center;
        }

        .value-add-left,
        .value-add-right {
            flex: 1 1 400px;
            min-width: 280px;
        }

        .value-add-left h1 {
            font-weight: 500;
            font-size: 3.2rem;
            line-height: 1.1;
            margin: 0;
            letter-spacing: 0.02em;
        }

        .value-add-right p {
            font-weight: 450;
            font-size: 1.6rem;
            line-height: 1.6;
            margin: 0;
            max-width: 550px;
        }

        /* Image container for full width photo below text */
        .value-add-image-container {
            max-width: 1200px;
            margin: 0 auto;
            overflow: hidden;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .value-add-image-container img {
            width: 100%;
            height: auto;
            display: block;
        }

        /* Responsive adjustments */
        @media (max-width: 900px) {
            .value-add-container {
                flex-direction: column;
                text-align: center;
            }

            .value-add-left,
            .value-add-right {
                min-width: auto;
            }

            .value-add-left h1 {
                font-size: 2.4rem;
                margin-bottom: 30px;
            }

            .value-add-right p {
                font-size: 1.1rem;
                max-width: 100%;
            }
        }

        .value-add-section {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .value-add-section.animate {
            opacity: 1;
            transform: translateY(0);
        }


        /* ICBA Collaboration Section Styles */
        .icba-collaboration-section {
            background: url('../media/backgrounds/icba-collaboration-background.webp') center/cover no-repeat;
            background-attachment: fixed; /* Optional: creates parallax effect */
            color: white;
            padding: 80px 20px;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            position: relative;
            overflow: hidden; /* Prevents any overflow issues */
        }

        .icba-collaboration-section .container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .icba-text-logo-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 40px;
            gap: 20px;
            flex-wrap: wrap;
        }

        .icba-text {
            flex: 1 1 60%;
            min-width: 280px;
        }

        .icba-text h2 {
            color: white;
            font-size: 2rem;
            font-weight: 500;
            margin-bottom: 20px;
            letter-spacing: 0.05em;
        }

        .icba-text p {
            font-size: 1.15rem;
            line-height: 1.6;
        }

        /* ICBA Logo Enhancement */
        .icba-logo {
            flex: 0 0 300px; /* Increased from 150px */
            display: flex;
            justify-content: flex-end;
            align-items: center;
            min-width: 200px; /* Increased from 120px */

        }

        .icba-logo img {
            max-width: 70%;
            height: auto;
        }


        /* Benefits grid */
        .icba-benefits-grid {
            display: flex;
            justify-content: space-between;
            gap: 30px;
            flex-wrap: wrap;
        }

        /* Each benefit box */
        .benefit-box {
            border: 1px solid rgba(255, 255, 255, 0.4);
            padding: 25px 20px;
            flex: 1 1 30%;
            min-width: 250px;
            box-sizing: border-box;
            border-radius: 4px;
            transition: background 0.3s ease;
        }

        .benefit-box h3 {
            color:white;
            font-size: 2rem;
            font-weight: 500;
            margin-bottom: 15px;
            text-align: center;
        }

        .benefit-box ul {
            list-style: disc;
            padding-left: 20px;
            font-size: 1.6rem;
            line-height: 1.5;
        }

        .benefit-box ul li {
            margin-bottom: 8px;
        }

        /* Benefit box hover effect */
        .benefit-box:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: white;
        }

        /* Responsive adjustments */
        @media (max-width: 900px) {
            .icba-text-logo-row {
                flex-direction: column;
                text-align: center;
            }
            .icba-text {
                order: 2;
            }
            .icba-logo {
                order: 1;
                justify-content: center;
                margin-bottom: 20px;
            }
            .icba-benefits-grid {
                flex-direction: column;
                gap: 20px;
            }
            .benefit-box {
                flex-basis: 100%;
                min-width: auto;
            }
        }

        @media (max-width: 480px) {
            .icba-text h2 {
                font-size: 1.6rem;
            }
            .icba-text p {
                font-size: 1rem;
            }
        }



        /* Extended Background Container */
        .extended-bg-container {
            position: relative;
            background: url('../media/backgrounds/website-background.webp') center/cover no-repeat fixed;
            padding-bottom: 100px;
            filter:brightness(1.7);

        }

        .extended-bg-container::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.3);
            z-index: 1;
            backdrop-filter: blur(3px);
        }

        .extended-bg-container > section {
            position: relative;
            z-index: 2;
        }

        /* Company Overview Section */

        .company-overview {
            padding: 100px 0;
        }

        .overview-container {
            display: grid;
            grid-template-columns: 1fr;
            gap: 60px;
            align-items: center;
            background: rgba(255, 255, 255, 0.09);
            backdrop-filter: blur(50px);
            border: 3px solid rgba(255, 255, 255, 0.07);
            border-radius: 8px;
            padding: 40px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 1.4);
            margin: 0 auto;
            max-width: 1200px;
            transition: all 0.3s ease;
            opacity: 0;
            transform: translateY(30px) scale(0.98);
            animation: fadeInUp 1s ease-out forwards;
            animation-delay: 0.3s;
        }

        .overview-container:hover {
            background: rgba(255, 255, 255, 0.02);
            transform: translateY(-10px);
            box-shadow: 0 12px 40px rgba(0, 102, 204, 0.4), 0 0 20px rgba(0, 170, 255, 0.4);
            border: 3px solid rgba(255, 255, 255, 0.15);
            border-radius: 10px;

        }
        @keyframes fadeInUp {
            0% {
                opacity: 0;
                transform: translateY(30px) scale(0.98);
            }
            100% {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }
        .irc-overview-image {
                width: auto;
                margin: 0 auto;
                text-align: center;
            }

            .irc-overview-image img {
                width: 250px; /* Adjust this value to your preferred size */
                height: auto;
                max-width: 100%;
                display: block;
                margin: 0 auto;
            }

            /* Responsive sizing for mobile */
            @media (max-width: 768px) {
                .irc-overview-image img {
                    width: 150px; /* Smaller size for mobile */
                }
            }

        .overview-content h2 {
            font-size: 2.5rem;
            color: white !important;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 1.5);
            text-align: center;
            margin-bottom: 50px; /* Increased from 30px to 50px for more spacing */
            font-weight: 700;
            position: relative;
            display: inline-block;
            padding-bottom: 15px;
            width: 100%;
            opacity: 0;
            animation: fadeIn 0.8s ease-out forwards;
            animation-delay: 0.6s;
        }

        /* Add the radiant underline to Company Overview */
        .overview-content h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #0066cc, #00aaff, #0066cc);
            box-shadow: 0 0 10px rgba(0, 170, 255, 0.5);
        }

        .overview-content p {
            color: white !important;
            text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
            font-size: 1.2rem;
            font-weight: 400;
            line-height: 1.7;
            letter-spacing: 0.6px;
            margin-bottom: 1.5rem;
            opacity: 0;
            animation: fadeIn 0.8s ease-out forwards;
        }
        .overview-content p:nth-child(2) {
            animation-delay: 0.9s;
        }

        .overview-content p:nth-child(3) {
            animation-delay: 1.2s;
        }

        @keyframes fadeIn {
            0% {
                opacity: 0;
            }
            100% {
                opacity: 1;
            }
        }

        /* Add a subtle glow effect during animation */
        @keyframes subtleGlow {
            0% {
                box-shadow: 0 8px 32px rgba(0, 0, 0, 1.4);
            }
            50% {
                box-shadow: 0 8px 32px rgba(0, 102, 204, 0.3);
            }
            100% {
                box-shadow: 0 8px 32px rgba(0, 0, 0, 1.4);
            }
        }

        .overview-container {
            animation: fadeInUp 1s ease-out forwards, subtleGlow 2s ease-in-out;
            animation-delay: 0.3s;
        }
        .external-link {
            color: #00aaff !important;
            text-decoration: underline !important;
        }

        /* Section Title */
        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title h2 {
            color: white;
            text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.5);
            font-size: 2.5rem;
            position: relative;
            display: inline-block;
            padding-bottom: 15px;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #0066cc, #00aaff, #0066cc);
            box-shadow: 0 0 10px rgba(0, 170, 255, 0.5);
        }

        /* About Sections */
        .about-section {
            padding: 100px 0;
        }

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

        .feature-card {
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(40px);
            border: 2px solid rgba(255, 255, 255, 0.07);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.9);
            transition: var(--transition);
            display: flex;
            flex-direction: column;
            height: 100%;
            padding: 30px;
            opacity: 0;
            transform: translateY(30px) scale(0.98);
            transition: all 0.3s ease, opacity 1s ease-out, transform 1s ease-out;
        }

        .feature-card.animate {
            opacity: 1;
            transform: translateY(0) scale(1);
        }

        /* Staggered animation delays for cards */
        .feature-card:nth-child(1) { animation-delay: 0.1s; }
        .feature-card:nth-child(2) { animation-delay: 0.2s; }
        .feature-card:nth-child(3) { animation-delay: 0.3s; }
        .feature-card:nth-child(4) { animation-delay: 0.4s; }
        .feature-card:nth-child(5) { animation-delay: 0.5s; }
        .feature-card:nth-child(6) { animation-delay: 0.6s; }

        /* Glow animation keyframes for cards */
        @keyframes cardSubtleGlow {
            0% {
                box-shadow: 0 8px 32px rgba(0, 0, 0, 0.9);
            }
            50% {
                box-shadow: 0 12px 40px rgba(0, 102, 204, 0.8), 0 0 20px rgba(0, 170, 255, 0.6);
            }
            100% {
                box-shadow: 0 8px 32px rgba(0, 0, 0, 0.9);
            }
        }

        .feature-card:hover {
            background: rgba(255, 255, 255, 0.009);
            transform: translateY(-10px);
             box-shadow: 0 12px 40px rgba(0, 102, 204, 0.4), 0 0 20px rgba(0, 170, 255, 0.4);
            border: 2px solid rgba(255, 255, 255, 0.2);
            border-radius: 10px;
        }

        .feature-icon {
            width: 60px;
            height: 60px;
            background: rgba(255, 255, 255, 0.09);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }

        .feature-icon i {
            font-size: 1.5rem;
            color: var(--white);
        }

        .feature-card h4 {
            font-size: 1.6rem;
            font-weight: 500;
            color: white !important;
            line-height: 1.6;
            letter-spacing: 0.6px;
            margin-bottom: 1.5rem;
            margin-bottom: 15px;
        }

        .feature-card p {
            color: white !important;
            text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
            font-size: 1.1rem;
            font-weight: 400;
            line-height: 1.6;
            letter-spacing: 0.8px;
            margin-bottom: 1.5rem;
        }

        /* Footer */
        footer {
            background: linear-gradient(rgba(0, 51, 102, 0.96)), url('../media/backgrounds/footer-background.webp') no-repeat center center;
            color: var(--primary-blue);
            background-size: cover;
            color: white;
            padding: 60px 0 30px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 50px;
        }

        .footer-logo {
            height: 40px;
            margin-bottom: 20px;
        }

        .footer-about p {
            opacity: 0.8;
            margin-bottom: 20px;
        }

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

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: var(--white);
            transition: var(--transition);
        }

        .social-links a:hover {
            background: var(--accent-blue);
            transform: translateY(-5px);
        }

        .footer-links h3 {
            color: var(--white);
            margin-bottom: 25px;
            font-size: 1.3rem;
        }

        .footer-links ul {
            list-style: none;
        }

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

        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: var(--transition);
            white-space: nowrap;
        }

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

        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            opacity: 0.7;
        }

        /* Mobile dropdown adjustments */
        @media (max-width: 768px) {
            .dropdown-content {
                position: static;
                box-shadow: none;
                display: none;
                opacity: 1;
                visibility: visible;
                transform: none;
                padding-left: 20px;
                background-color: transparent;
            }

            .dropdown.active .dropdown-content {
                display: block;
            }

            .dropdown .dropbtn i {
                float: right;
                margin-top: 5px;
            }

            .dropdown:hover .dropdown-content {
                display: none;
            }

            .dropdown.active .dropbtn i {
                transform: rotate(180deg);
            }

            .header-container {
                padding: 0 1.5rem;
            }

            .mobile-toggle {
                display: block;
            }

            nav {
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: white;
                box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
                clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
                transition: clip-path 0.4s ease;
            }

            nav.active {
                clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            }

            nav ul {
                flex-direction: column;
                gap: 0;
                padding: 1rem 0;
            }

            nav li {
                padding: 0.8rem 2rem;
                border-bottom: 1px solid #f1f1f1;
            }

            nav a::after {
                display: none;
            }

            .section-title h2 {
                font-size: 2.2rem;
            }

            .about-section {
                padding: 60px 0;
            }
        }

        @media (max-width: 576px) {
            .overview-content h2 {
                font-size: 2.2rem;
            }

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

        /* Chatbot Styles */
        .hidden {
            display: none !important;
        }

        #chatbot-toggle {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: linear-gradient(135deg, #0061ff 0%, #60efff 100%);
            color: white;
            font-size: 0; /* Hide emoji text */
            padding: 0; /* Remove padding since we're using image */
            border-radius: 50%;
            cursor: pointer;
            z-index: 9999;
            box-shadow: 0 6px 15px rgba(0, 97, 255, 0.4);
            border: none;
            width: 100px; /* Adjust this to change size */
            height: 100px; /* Adjust this to change size */
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            overflow: hidden; /* Ensures image doesn't overflow */
        }

        #chatbot-toggle img {
            width: 100%; /* Makes image fill the button */
            height: 100%;
            object-fit: cover; /* Ensures image covers the area properly */
            border-radius: 50%; /* Makes image circular */
        }

        #chatbot-toggle:hover {
            transform: scale(1.1) rotate(10deg);
            box-shadow: 0 8px 20px rgba(0, 97, 255, 0.6);
        }

        /* Responsive sizing for mobile */
        @media (max-width: 768px) {
            #chatbot-toggle {
                width: 60px; /* Smaller on mobile */
                height: 60px;
                bottom: 20px;
                right: 20px;
            }
        }

        @media (max-width: 480px) {
            #chatbot-toggle {
                width: 50px; /* Even smaller on very small screens */
                height: 50px;
                bottom: 15px;
                right: 15px;
            }
        }

        #chatbot-overlay {
            position: fixed;
            top: 100px;
            right: 20px;
            bottom: 20px;
            width: 400px;
            background-color: white;
            border-radius: 20px;
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.25);
            display: none;
            z-index: 9998;
            opacity: 0;
            transform: translateX(20px);
            transition: all 0.4s ease;
            padding: 20px;
            box-sizing: border-box;
            overflow: hidden;
            border: 1px solid #e0e0e0;
        }

        #chatbot-overlay.show {
            display: block;
            opacity: 1;
            transform: translateX(0);
        }

        .chatbot-close {
            position: absolute;
            top: 15px;
            right: 15px;
            background: white;
            border: none;
            border-radius: 50%;
            width: 36px;
            height: 36px;
            cursor: pointer;
            font-size: 22px;
            font-weight: bold;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10000;
            color: #666;
            transition: all 0.2s ease;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }

        .chatbot-close:hover {
            background: #f0f0f0;
            color: #000;
            transform: rotate(90deg);
        }

        .integrated-chatbot-container {
            height: 100%;
            display: flex;
            flex-direction: column;
            background: white;
            border-radius: 12px;
            overflow: hidden;
        }

        .chatbot-header {
            background: linear-gradient(135deg, #0d3d75 0%, #0066cc 100%);
            color: white;
            padding: 20px;
            text-align: center;
        }

        .chatbot-header h2 {
            font-size: 1.7em;
            margin-bottom: 5px;
            font-weight: 700;
            background: linear-gradient(90deg, #0066cc, #00aaff, #0066cc);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            background-size: 200% auto;
        }

        .chatbot-header p {
            font-size: 1.1em;
            opacity: 0.9;
            margin: 0;
        }

        .chat-messages {
            flex: 1;
            padding: 20px;
            overflow-y: auto;
            background: #f8f9fa;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .message {
            max-width: 85%;
            padding: 12px 16px;
            border-radius: 18px;
            font-size: 1.05em;
            line-height: 1.4;
            animation: slideIn 0.3s ease-out;
        }

        .bot-message {
            background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
            color: #1565c0;
            align-self: flex-start;
            border-bottom-left-radius: 4px;
        }

        .user-message {
            background: linear-gradient(135deg, #0d3d75 0%, #0066cc 100%);
            color: white;
            align-self: flex-end;
            border-bottom-right-radius: 4px;
        }

        .options-container {
            margin-top: 10px;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .option-btn {
            background: white;
            border: 2px solid #0066cc;
            color: #0066cc;
            padding: 10px 15px;
            border-radius: 25px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 0.9em;
            text-align: left;
            font-weight: 500;
        }

        .option-btn:hover {
            background: #0066cc;
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0,102,204,0.3);
        }

        .typing-indicator {
            display: none;
            align-self: flex-start;
            background: #e9ecef;
            padding: 12px 16px;
            border-radius: 18px;
            border-bottom-left-radius: 4px;
        }

        .typing-dots {
            display: flex;
            gap: 4px;
        }

        .typing-dot {
            width: 8px;
            height: 8px;
            background: #6c757d;
            border-radius: 50%;
            animation: typing 1.4s infinite ease-in-out;
        }

        .typing-dot:nth-child(1) { animation-delay: -0.32s; }
        .typing-dot:nth-child(2) { animation-delay: -0.16s; }

        @keyframes typing {
            0%, 80%, 100% { transform: scale(0.8); opacity: 0.5; }
            40% { transform: scale(1); opacity: 1; }
        }

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

        .chat-messages::-webkit-scrollbar {
            width: 6px;
        }

        .chat-messages::-webkit-scrollbar-track {
            background: #f1f1f1;
            border-radius: 3px;
        }

        .chat-messages::-webkit-scrollbar-thumb {
            background: #c1c1c1;
            border-radius: 3px;
        }

        .chat-messages::-webkit-scrollbar-thumb:hover {
            background: #a8a8a8;
        }

        /* Scroll to Top Button */
#scrollToTop {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: linear-gradient(135deg, #0d3d75 0%, #0066cc 100%);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    z-index: 9997;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

#scrollToTop:hover {
    background: linear-gradient(135deg, #0066cc 0%, #0078d8 100%);
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0, 102, 204, 0.5);
}

#scrollToTop.show {
    display: flex;
}

/* Responsive sizing for mobile */
@media (max-width: 768px) {
    #scrollToTop {
        width: 45px;
        height: 45px;
        bottom: 20px;
        left: 20px;
        font-size: 20px;
    }
}
