
        :root {
            --primary-color: #5390d9;
            --secondary-color: #4ea8de;
            --accent-color: #64dfdf;
            --light-accent: #80ffdb;
            --text-dark: #333;
            --text-light: #fff;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: var(--text-dark);
        }
        
        .navbar {
            padding: 1.5rem 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--primary-color);
        }
        
        .nav-link {
            color: var(--text-dark);
            font-weight: 500;
            margin: 0 0.5rem;
            transition: color 0.3s;
        }
        
        .nav-link:hover {
            color: var(--primary-color);
        }
        
        .btn-primary {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
            padding: 0.5rem 1.5rem;
            border-radius: 50px;
            font-weight: 500;
            transition: all 0.3s;
        }
        
        .btn-primary:hover {
            background-color: var(--secondary-color);
            border-color: var(--secondary-color);
            transform: translateY(-2px);
        }
        
        .btn-outline-primary {
            border-color: var(--primary-color);
            color: var(--primary-color);
            padding: 0.5rem 1.5rem;
            border-radius: 50px;
            font-weight: 500;
            transition: all 0.3s;
        }
        
        .btn-outline-primary:hover {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
            transform: translateY(-2px);
        }
        
        .hero {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: var(--text-light);
            padding: 7rem 0;
            margin-bottom: 4rem;
        }
        
        .hero h1 {
            font-weight: 700;
            margin-bottom: 1.5rem;
            font-size:60px;
        }
        
        .hero p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
        }
        
        .section-title {
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--primary-color);
        }
        
        .section-subtitle {
            margin-bottom: 3rem;
            color: #666;
        }
        
        .about-img {
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .counter-box {
            text-align: center;
            padding: 2rem 1rem;
            border-radius: 10px;
            background-color: #f8f9fa;
            margin-bottom: 2rem;
            transition: transform 0.3s;
        }
        
        .counter-box:hover {
            transform: translateY(-5px);
        }
        
        .counter-box i {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }
        
        .counter-box h3 {
            font-weight: 700;
            font-size: 2rem;
            color: var(--primary-color);
        }
        
        .vision-mission-box {
            padding: 2rem;
            border-radius: 10px;
            background-color: #f8f9fa;
            margin-bottom: 2rem;
            height: 100%;
        }
        
        .vision-mission-box h3 {
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }
        
        .process-step {
            text-align: center;
            padding: 1.5rem;
            border-radius: 10px;
            background-color: #f8f9fa;
            margin-bottom: 2rem;
            position: relative;
        }
        
        .process-step:not(:last-child)::after {
            content: "";
            position: absolute;
            top: 50%;
            right: -15px;
            width: 30px;
            height: 2px;
            background-color: var(--primary-color);
            transform: translateY(-50%);
        }
        
        .process-step i {
            font-size: 2rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }
        
        .feature-box {
            text-align: center;
            padding: 2rem;
            border-radius: 10px;
            background-color: #f8f9fa;
            margin-bottom: 2rem;
            height: 100%;
            transition: transform 0.3s;
        }
        
        .feature-box:hover {
            transform: translateY(-5px);
        }
        
        .feature-box i {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }
        
        .service-card {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        
        .service-card:hover {
            transform: translateY(-5px);
        }
        
        .service-card img {
            height: 200px;
            object-fit: cover;
        }
        
        .service-card-body {
            padding: 1.5rem;
            background-color: #f8f9fa;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        
        .service-card h3 {
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }
        
        .service-card p {
            flex-grow: 1;
        }
        
        .review-box {
            padding: 1.5rem;
            border-radius: 10px;
            background-color: #f8f9fa;
            margin-bottom: 2rem;
            position: relative;
        }
        
        .review-box::before {
            content: "";
            position: absolute;
            top: 10px;
            left: 15px;
            font-size: 3rem;
            color: var(--primary-color);
            opacity: 0.2;
        }
        
        .review-box p {
            margin-bottom: 1rem;
            font-style: italic;
        }
        
        .review-box h5 {
            font-weight: 600;
            color: var(--primary-color);
        }
        
        .accordion-button:not(.collapsed) {
            background-color: var(--accent-color);
            color: var(--text-dark);
        }
        
        .accordion-button:focus {
            box-shadow: none;
            border-color: var(--primary-color);
        }
        
        .cta {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: var(--text-light);
            padding: 4rem 0;
            border-radius: 10px;
            margin: 4rem 0;
        }
        
        .cta h2 {
            font-weight: 700;
            margin-bottom: 1.5rem;
        }
        
        .contact-box {
            padding: 2rem;
            border-radius: 10px;
            background-color: #f8f9fa;
            margin-bottom: 2rem;
            height: 100%;
        }
        
        .contact-box i {
            font-size: 1.5rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }
        
        .footer {
            background-color: #2c3e50;
            color: var(--text-light);
            padding: 4rem 0 2rem;
        }
        
        .footer h4 {
            font-weight: 600;
            margin-bottom: 1.5rem;
            color: var(--light-accent);
        }
        
        .footer ul {
            list-style: none;
            padding-left: 0;
        }
        
        .footer ul li {
            margin-bottom: 0.5rem;
        }
        
        .footer a {
            color: var(--text-light);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer a:hover {
            color: var(--light-accent);
        }
        
        .copyright {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 2rem;
            margin-top: 3rem;
            text-align: center;
            font-size: 0.9rem;
        }
        
        .newsletter-form {
            display: flex;
            margin-top: 1rem;
        }
        
        .newsletter-form input {
            flex-grow: 1;
            border: none;
            padding: 0.75rem;
            border-radius: 50px 0 0 50px;
        }
        
        .newsletter-form button {
            border: none;
            background-color: var(--primary-color);
            color: var(--text-light);
            padding: 0.75rem 1.5rem;
            border-radius: 0 50px 50px 0;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        
        .newsletter-form button:hover {
            background-color: var(--secondary-color);
        }
        
        @media (max-width: 768px) {
            .hero {
                padding: 5rem 0;
            }
            
            .process-step:not(:last-child)::after {
                display: none;
            }
        }

        .nav-link{
            margin-left:25px !important;
        }

        .nav-item a{
            font-size:20px;
        }
