:root {
            --primary-color: #1a237e;
            --secondary-color: #ff4081;
            --accent-color: #00bcd4;
            --dark-color: #121858;
            --light-color: #f5f7ff;
            --text-color: #333333;
            --text-light: #666666;
            --border-color: #e0e0e0;
            --success-color: #4caf50;
            --warning-color: #ff9800;
            --shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            --transition: all 0.3s ease;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Roboto', sans-serif;
            color: var(--text-color);
            line-height: 1.7;
            overflow-x: hidden;
            background-color: #f9f9f9;
        }
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            color: var(--dark-color);
            margin-bottom: 1rem;
        }
        h1 {
            font-size: 3.5rem;
            line-height: 1.2;
        }
        h2 {
            font-size: 2.8rem;
            margin-bottom: 2rem;
            position: relative;
            padding-bottom: 1rem;
        }
        h2:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background-color: var(--secondary-color);
            border-radius: 2px;
        }
        h3 {
            font-size: 1.8rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            color: var(--text-light);
        }
        .section-padding {
            padding: 80px 0;
        }
        .section-title {
            text-align: center;
            margin-bottom: 3rem;
        }
        .section-title h2 {
            display: inline-block;
        }
        .section-title h2:after {
            left: 50%;
            transform: translateX(-50%);
        }
        .btn-primary {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
            padding: 12px 30px;
            font-weight: 600;
            border-radius: 4px;
            transition: var(--transition);
        }
        .btn-primary:hover {
            background-color: var(--dark-color);
            border-color: var(--dark-color);
            transform: translateY(-3px);
            box-shadow: var(--shadow);
        }
        .btn-secondary {
            background-color: var(--secondary-color);
            border-color: var(--secondary-color);
            padding: 12px 30px;
            font-weight: 600;
            border-radius: 4px;
            transition: var(--transition);
        }
        .btn-secondary:hover {
            background-color: #e91e63;
            border-color: #e91e63;
            transform: translateY(-3px);
            box-shadow: var(--shadow);
        }
        .navbar {
            background-color: rgba(255, 255, 255, 0.95);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            padding: 15px 0;
            transition: var(--transition);
        }
        .navbar-brand {
            font-family: 'Montserrat', sans-serif;
            font-weight: 800;
            font-size: 1.8rem;
            color: var(--primary-color) !important;
        }
        .navbar-nav .nav-link {
            font-weight: 600;
            color: var(--dark-color) !important;
            margin: 0 10px;
            transition: var(--transition);
        }
        .navbar-nav .nav-link:hover {
            color: var(--secondary-color) !important;
        }
        .navbar-toggler {
            border: none;
            padding: 0;
        }
        .navbar-toggler:focus {
            box-shadow: none;
        }
        .hero-section {
            background: linear-gradient(rgba(26, 35, 126, 0.85), rgba(18, 24, 88, 0.9)), url('https://images.unsplash.com/photo-1550745165-9bc0b252726f?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') no-repeat center center;
            background-size: cover;
            color: white;
            padding: 150px 0 100px;
            position: relative;
        }
        .hero-section h1 {
            color: white;
            font-size: 3.8rem;
            margin-bottom: 1.5rem;
        }
        .hero-section p {
            color: rgba(255, 255, 255, 0.9);
            font-size: 1.3rem;
            margin-bottom: 2rem;
        }
        .hero-btns .btn {
            margin-right: 15px;
            margin-bottom: 10px;
        }
        .hero-stats {
            margin-top: 60px;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.2);
        }
        .stat-item {
            text-align: center;
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: white;
            margin-bottom: 5px;
        }
        .stat-text {
            font-size: 1rem;
            color: rgba(255, 255, 255, 0.8);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .about-img {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        .about-img:hover {
            transform: scale(1.02);
        }
        .about-content ul {
            list-style: none;
            padding-left: 0;
            margin-bottom: 2rem;
        }
        .about-content ul li {
            margin-bottom: 10px;
            padding-left: 30px;
            position: relative;
        }
        .about-content ul li:before {
            content: '\f00c';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            color: var(--success-color);
            position: absolute;
            left: 0;
            top: 2px;
        }
        .services-section {
            background-color: var(--light-color);
        }
        .service-card {
            background-color: white;
            border-radius: 10px;
            padding: 30px;
            height: 100%;
            box-shadow: var(--shadow);
            transition: var(--transition);
            margin-bottom: 30px;
        }
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        .service-icon {
            width: 70px;
            height: 70px;
            background-color: rgba(26, 35, 126, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }
        .service-icon i {
            font-size: 1.8rem;
            color: var(--primary-color);
        }
        .service-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
        }
        .portfolio-filter {
            margin-bottom: 40px;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
        }
        .portfolio-filter button {
            background: none;
            border: none;
            padding: 8px 20px;
            margin: 5px;
            font-weight: 600;
            color: var(--text-light);
            border-radius: 30px;
            transition: var(--transition);
        }
        .portfolio-filter button.active, .portfolio-filter button:hover {
            background-color: var(--primary-color);
            color: white;
        }
        .portfolio-item {
            margin-bottom: 30px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        .portfolio-item:hover {
            transform: translateY(-10px);
        }
        .portfolio-img {
            height: 250px;
            overflow: hidden;
        }
        .portfolio-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }
        .portfolio-item:hover .portfolio-img img {
            transform: scale(1.1);
        }
        .portfolio-info {
            padding: 20px;
            background-color: white;
        }
        .team-section {
            background-color: var(--light-color);
        }
        .team-member {
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            margin-bottom: 30px;
        }
        .team-member:hover {
            transform: translateY(-10px);
        }
        .team-img {
            height: 280px;
            overflow: hidden;
        }
        .team-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }
        .team-member:hover .team-img img {
            transform: scale(1.1);
        }
        .team-info {
            padding: 25px;
            text-align: center;
        }
        .team-social {
            margin-top: 15px;
        }
        .team-social a {
            display: inline-block;
            width: 36px;
            height: 36px;
            background-color: #f5f5f5;
            border-radius: 50%;
            text-align: center;
            line-height: 36px;
            margin: 0 5px;
            color: var(--text-color);
            transition: var(--transition);
        }
        .team-social a:hover {
            background-color: var(--primary-color);
            color: white;
        }
        .contact-info-box {
            background-color: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: var(--shadow);
            margin-bottom: 30px;
            height: 100%;
        }
        .contact-info-box i {
            font-size: 2rem;
            color: var(--primary-color);
            margin-bottom: 20px;
        }
        .contact-form {
            background-color: white;
            padding: 40px;
            border-radius: 10px;
            box-shadow: var(--shadow);
        }
        .form-control {
            padding: 12px 15px;
            border: 1px solid var(--border-color);
            border-radius: 4px;
            margin-bottom: 20px;
            transition: var(--transition);
        }
        .form-control:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.25rem rgba(26, 35, 126, 0.25);
        }
        .friendlink {
            background-color: var(--dark-color);
            color: white;
            padding: 60px 0;
        }
        .friendlink h2 {
            color: white;
            text-align: center;
            margin-bottom: 40px;
        }
        .friendlink h2:after {
            background-color: var(--secondary-color);
        }
        .flink-container {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
        }
        .flink {
            display: inline-block;
            color: white;
            background-color: rgba(255, 255, 255, 0.1);
            padding: 12px 25px;
            border-radius: 6px;
            text-decoration: none;
            transition: var(--transition);
            font-weight: 500;
        }
        .flink:hover {
            background-color: var(--secondary-color);
            color: white;
            transform: translateY(-3px);
        }
        .footer {
            background-color: #0a0e3a;
            color: rgba(255, 255, 255, 0.8);
            padding: 70px 0 20px;
        }
        .footer h5 {
            color: white;
            margin-bottom: 25px;
            font-size: 1.2rem;
        }
        .footer-links {
            list-style: none;
            padding-left: 0;
        }
        .footer-links li {
            margin-bottom: 10px;
        }
        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: var(--transition);
        }
        .footer-links a:hover {
            color: var(--secondary-color);
            padding-left: 5px;
        }
        .footer-about p {
            color: rgba(255, 255, 255, 0.7);
        }
        .social-icons {
            margin-top: 20px;
        }
        .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: var(--transition);
        }
        .social-icons a:hover {
            background-color: var(--secondary-color);
            transform: translateY(-3px);
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            margin-top: 50px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            h1 {
                font-size: 2.8rem;
            }
            h2 {
                font-size: 2.2rem;
            }
            .hero-section {
                padding: 120px 0 80px;
            }
            .section-padding {
                padding: 60px 0;
            }
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            .hero-section {
                padding: 100px 0 60px;
                text-align: center;
            }
            .navbar-nav {
                text-align: center;
                padding-top: 15px;
            }
            .contact-form {
                padding: 30px 20px;
            }
        }
        @media (max-width: 576px) {
            h1 {
                font-size: 1.8rem;
            }
            .hero-btns .btn {
                display: block;
                width: 100%;
                margin-right: 0;
                margin-bottom: 15px;
            }
            .flink-container {
                flex-direction: column;
                align-items: center;
            }
            .flink {
                width: 100%;
                text-align: center;
            }
        }
