:root {
            --primary: #2c5aa0;
            --secondary: #f8b739;
            --dark: #1a365d;
            --light: #f8f9fa;
            --accent: #28a745;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Roboto', sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #fff;
            overflow-x: hidden;
        }
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            margin-bottom: 1rem;
        }
        .container-fluid {
            padding-left: 5%;
            padding-right: 5%;
        }
        .navbar {
            padding: 1.2rem 0;
            background-color: rgba(255, 255, 255, 0.98);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1030;
            transition: all 0.3s ease;
        }
        .navbar-brand {
            font-weight: 700;
            font-size: 1.8rem;
            color: var(--primary) !important;
        }
        .navbar-brand span {
            color: var(--secondary);
        }
        .nav-link {
            font-weight: 500;
            margin: 0 0.5rem;
            color: var(--dark) !important;
            transition: color 0.3s;
        }
        .nav-link:hover, .nav-link.active {
            color: var(--primary) !important;
        }
        .navbar-toggler {
            border: none;
            padding: 0.5rem;
        }
        .navbar-toggler:focus {
            box-shadow: none;
        }
        .hero-section {
            padding: 180px 0 100px;
            background: linear-gradient(135deg, rgba(44, 90, 160, 0.9) 0%, rgba(26, 54, 93, 0.95) 100%), url('https://images.unsplash.com/photo-1516321318423-f06f85e504b3?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            position: relative;
        }
        .hero-content h1 {
            font-size: 3.2rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }
        .hero-content p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }
        .btn-primary {
            background-color: var(--secondary);
            border: none;
            color: var(--dark);
            font-weight: 600;
            padding: 0.8rem 2rem;
            border-radius: 50px;
            transition: all 0.3s;
        }
        .btn-primary:hover {
            background-color: #ffcc5c;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        .btn-outline-light {
            border-radius: 50px;
            padding: 0.8rem 2rem;
            font-weight: 600;
            transition: all 0.3s;
        }
        .btn-outline-light:hover {
            background-color: white;
            color: var(--primary);
            transform: translateY(-3px);
        }
        .section-title {
            text-align: center;
            margin-bottom: 3rem;
            position: relative;
        }
        .section-title h2 {
            font-size: 2.5rem;
            color: var(--dark);
            display: inline-block;
            position: relative;
        }
        .section-title h2:after {
            content: '';
            position: absolute;
            width: 70px;
            height: 4px;
            background-color: var(--secondary);
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
        }
        .section-padding {
            padding: 100px 0;
        }
        .about-img {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            transition: transform 0.5s;
        }
        .about-img:hover {
            transform: translateY(-10px);
        }
        .about-content h3 {
            color: var(--primary);
            margin-bottom: 1.5rem;
        }
        .about-content p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .feature-box {
            padding: 1.5rem;
            border-radius: 10px;
            background-color: #f8f9fa;
            margin-bottom: 1.5rem;
            transition: all 0.3s;
            border-left: 4px solid var(--primary);
        }
        .feature-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
        }
        .feature-box i {
            font-size: 2rem;
            color: var(--primary);
            margin-bottom: 1rem;
        }
        .services-section {
            background-color: #f8f9fa;
        }
        .service-card {
            background-color: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
            height: 100%;
            transition: all 0.4s;
            border-top: 4px solid transparent;
        }
        .service-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            border-top-color: var(--secondary);
        }
        .service-icon {
            height: 80px;
            width: 80px;
            background-color: rgba(44, 90, 160, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 2rem auto 1.5rem;
        }
        .service-icon i {
            font-size: 2.2rem;
            color: var(--primary);
        }
        .service-content {
            padding: 0 1.5rem 2rem;
        }
        .team-member {
            text-align: center;
            margin-bottom: 2rem;
        }
        .team-img {
            width: 180px;
            height: 180px;
            border-radius: 50%;
            object-fit: cover;
            margin: 0 auto 1.5rem;
            border: 5px solid #f1f1f1;
            transition: all 0.3s;
        }
        .team-member:hover .team-img {
            border-color: var(--secondary);
        }
        .contact-info-box {
            padding: 2rem;
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            margin-bottom: 2rem;
            transition: all 0.3s;
        }
        .contact-info-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        }
        .contact-info-box i {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 1.5rem;
        }
        .contact-form {
            padding: 2.5rem;
            background-color: white;
            border-radius: 12px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
        }
        .form-control {
            padding: 0.9rem 1.2rem;
            border: 1px solid #e1e5eb;
            border-radius: 8px;
            margin-bottom: 1.5rem;
            transition: all 0.3s;
        }
        .form-control:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 0.25rem rgba(44, 90, 160, 0.25);
        }
        .footer {
            background-color: var(--dark);
            color: white;
            padding: 80px 0 30px;
        }
        .footer h5 {
            color: var(--secondary);
            margin-bottom: 1.8rem;
            font-size: 1.2rem;
        }
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        .footer-links a {
            color: #b0b7c3;
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer-links a:hover {
            color: var(--secondary);
            padding-left: 5px;
        }
        .social-icons a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            margin-right: 10px;
            color: white;
            transition: all 0.3s;
        }
        .social-icons a:hover {
            background-color: var(--secondary);
            color: var(--dark);
            transform: translateY(-5px);
        }
        .copyright {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 2rem;
            margin-top: 3rem;
            text-align: center;
            color: #b0b7c3;
            font-size: 0.9rem;
        }
        .friendlink {
            padding: 70px 0;
            background-color: #f8f9fa;
        }
        .flink {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
        }
        .flink a {
            display: inline-block;
            padding: 12px 25px;
            background-color: white;
            border-radius: 8px;
            color: var(--dark);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s;
            border: 1px solid #e1e5eb;
        }
        .flink a:hover {
            background-color: var(--primary);
            color: white;
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(44, 90, 160, 0.15);
        }
        @media (max-width: 992px) {
            .hero-content h1 {
                font-size: 2.5rem;
            }
            .section-padding {
                padding: 80px 0;
            }
        }
        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2rem;
            }
            .section-title h2 {
                font-size: 2rem;
            }
            .container-fluid {
                padding-left: 15px;
                padding-right: 15px;
            }
            .contact-form {
                padding: 1.5rem;
            }
        }
        @media (max-width: 576px) {
            .hero-section {
                padding: 150px 0 80px;
            }
            .hero-content h1 {
                font-size: 1.8rem;
            }
            .btn-primary, .btn-outline-light {
                display: block;
                width: 100%;
                margin-bottom: 15px;
            }
        }
