:root {
            --primary-blue: #0056b3;
            --secondary-teal: #20a8d8;
            --accent-green: #28a745;
            --dark-blue: #003366;
            --light-gray: #f8f9fa;
            --text-dark: #333333;
            --text-light: #666666;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Open Sans', sans-serif;
            color: var(--text-dark);
            line-height: 1.7;
            overflow-x: hidden;
        }
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
            color: var(--dark-blue);
            margin-bottom: 1rem;
        }
        .section-padding {
            padding: 80px 0;
        }
        @media (max-width: 768px) {
            .section-padding {
                padding: 50px 0;
            }
        }
        .hero-section {
            background: linear-gradient(rgba(0, 51, 102, 0.85), rgba(0, 86, 179, 0.9)), url('https://images.unsplash.com/photo-1586773860418-dc22f8b874bc?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80') no-repeat center center;
            background-size: cover;
            color: white;
            min-height: 85vh;
            display: flex;
            align-items: center;
            position: relative;
        }
        .hero-content {
            z-index: 2;
            position: relative;
        }
        .hero-title {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }
        @media (max-width: 992px) {
            .hero-title {
                font-size: 2.8rem;
            }
        }
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.2rem;
            }
        }
        .btn-primary-custom {
            background-color: var(--secondary-teal);
            border-color: var(--secondary-teal);
            padding: 12px 30px;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s ease;
        }
        .btn-primary-custom:hover {
            background-color: #1b8db0;
            border-color: #1b8db0;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        .nav-bar {
            background-color: rgba(255, 255, 255, 0.95);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            padding: 15px 0;
        }
        .nav-bar.scrolled {
            padding: 10px 0;
            background-color: rgba(255, 255, 255, 0.98);
        }
        .navbar-brand {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            font-size: 1.8rem;
            color: var(--dark-blue) !important;
        }
        .nav-link {
            font-weight: 500;
            color: var(--text-dark) !important;
            margin: 0 10px;
            transition: color 0.3s ease;
        }
        .nav-link:hover, .nav-link.active {
            color: var(--primary-blue) !important;
        }
        .icon-box {
            background-color: white;
            padding: 40px 30px;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            height: 100%;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            text-align: center;
        }
        .icon-box:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
        }
        .icon-box i {
            font-size: 3rem;
            color: var(--primary-blue);
            margin-bottom: 25px;
        }
        .section-title {
            position: relative;
            padding-bottom: 20px;
            margin-bottom: 50px;
        }
        .section-title:after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 70px;
            height: 4px;
            background-color: var(--secondary-teal);
        }
        .section-title.text-center:after {
            left: 50%;
            transform: translateX(-50%);
        }
        .feature-card {
            border: none;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease;
            height: 100%;
        }
        .feature-card:hover {
            transform: translateY(-10px);
        }
        .feature-card img {
            height: 220px;
            object-fit: cover;
            width: 100%;
        }
        .feature-card .card-body {
            padding: 25px;
        }
        .stats-box {
            text-align: center;
            padding: 30px 20px;
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
            margin-bottom: 30px;
        }
        .stats-number {
            font-size: 3rem;
            font-weight: 700;
            color: var(--primary-blue);
            margin-bottom: 10px;
        }
        .team-member {
            text-align: center;
            margin-bottom: 30px;
        }
        .team-member img {
            width: 200px;
            height: 200px;
            object-fit: cover;
            border-radius: 50%;
            margin-bottom: 20px;
            border: 5px solid var(--light-gray);
        }
        .team-member h5 {
            margin-top: 15px;
            margin-bottom: 5px;
        }
        .team-member p {
            color: var(--text-light);
            font-size: 0.9rem;
        }
        .contact-info-box {
            background-color: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
            margin-bottom: 30px;
            height: 100%;
        }
        .contact-info-box i {
            font-size: 2.5rem;
            color: var(--primary-blue);
            margin-bottom: 20px;
        }
        footer {
            background-color: var(--dark-blue);
            color: white;
            padding: 70px 0 30px;
        }
        footer h5 {
            color: white;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 15px;
        }
        footer h5:after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 40px;
            height: 3px;
            background-color: var(--secondary-teal);
        }
        footer .footer-links {
            list-style: none;
            padding: 0;
        }
        footer .footer-links li {
            margin-bottom: 12px;
        }
        footer .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        footer .footer-links a:hover {
            color: var(--secondary-teal);
            padding-left: 5px;
        }
        .social-icons a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            text-align: center;
            line-height: 40px;
            margin-right: 10px;
            color: white;
            transition: all 0.3s ease;
        }
        .social-icons a:hover {
            background-color: var(--secondary-teal);
            transform: translateY(-5px);
        }
        .copyright {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 25px;
            margin-top: 50px;
            text-align: center;
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
        }
        friendlink {
            display: block;
            margin-top: 40px;
            padding-top: 40px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        .flink {
            display: inline-block;
            background-color: rgba(255, 255, 255, 0.05);
            color: rgba(255, 255, 255, 0.8);
            padding: 8px 20px;
            border-radius: 30px;
            margin: 0 10px 10px 0;
            text-decoration: none;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        .flink:hover {
            background-color: rgba(255, 255, 255, 0.1);
            color: white;
            transform: translateY(-3px);
        }
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background-color: var(--secondary-teal);
            color: white;
            border-radius: 50%;
            text-align: center;
            line-height: 50px;
            font-size: 1.2rem;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 1000;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        .back-to-top.active {
            opacity: 1;
            visibility: visible;
        }
        .back-to-top:hover {
            background-color: var(--primary-blue);
            transform: translateY(-5px);
        }
        .form-control-custom {
            padding: 12px 15px;
            border-radius: 8px;
            border: 1px solid #ddd;
            transition: all 0.3s ease;
        }
        .form-control-custom:focus {
            border-color: var(--secondary-teal);
            box-shadow: 0 0 0 0.25rem rgba(32, 168, 216, 0.25);
        }
        .breadcrumb {
            background-color: transparent;
            padding: 15px 0;
        }
        .breadcrumb-item a {
            color: var(--primary-blue);
            text-decoration: none;
        }
        .accordion-button:not(.collapsed) {
            background-color: rgba(32, 168, 216, 0.1);
            color: var(--dark-blue);
            font-weight: 600;
        }
        .accordion-button:focus {
            box-shadow: 0 0 0 0.25rem rgba(32, 168, 216, 0.25);
            border-color: var(--secondary-teal);
        }
        .timeline {
            position: relative;
            padding-left: 30px;
        }
        .timeline:before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 3px;
            background-color: var(--secondary-teal);
        }
        .timeline-item {
            position: relative;
            margin-bottom: 40px;
        }
        .timeline-item:before {
            content: '';
            position: absolute;
            left: -36px;
            top: 5px;
            width: 15px;
            height: 15px;
            border-radius: 50%;
            background-color: var(--secondary-teal);
            border: 3px solid white;
            box-shadow: 0 0 0 3px var(--secondary-teal);
        }
        .mobile-app-badge img {
            height: 50px;
            margin-right: 10px;
            margin-bottom: 10px;
        }
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2rem;
            }
            .section-padding {
                padding: 40px 0;
            }
            .stats-number {
                font-size: 2.5rem;
            }
        }
