
        :root {
            --primary-color: #63c1b5;
            --secondary-color: #63c1b5;
            --accent-color: #D78FEE;
            --text-color: #333333;
            --light-bg: #f8f9fa;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            color: var(--text-color);
            line-height: 1.6;
        }
        
        /* Navbar Styles */
        .navbar {
            padding: 20px 0;
            background-color: transparent !important;
            box-shadow: none;
            transition: all 0.3s ease;
        }
        
        .navbar-nav {
            justify-content: center;
            width: 100%;
        }
        
        .navbar-nav .nav-item {
            margin: 0 15px;
        }
        
        .navbar-nav .nav-link {
            color: var(--text-color);
            font-weight: 500;
            transition: color 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--primary-color);
        }
        
        .navbar-light .navbar-nav .nav-link.active {
            color: var(--primary-color);
        }
        
        .btn-cta {
            background-color: var(--primary-color);
            color: white;
            padding: 8px 20px;
            border-radius: 30px;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        
        .btn-cta:hover {
            background-color: var(--secondary-color);
            color: white;
        }
        
        /* Hero Section */
        .hero-section {
            padding: 100px 0;
            background-color: #155724;
            background-image: url(../img/banner-bg.jpg);
            background-size: cover;
            background-position: center;
            position: relative;
        }
        
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(78, 192, 175, 0.8);
        }
        
        .hero-content {
            position: relative;
            z-index: 1;
        }
        
        .hero-title {
            font-size: 5rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: white;
        }
        
        .hero-subtitle {
            font-size: 1.2rem;
            margin-bottom: 30px;
            color: rgba(255, 255, 255, 0.9);
        }
        
        .btn-primary-custom {
            background-color: var(--secondary-color);
            border: none;
            padding: 12px 30px;
            font-weight: 500;
            border-radius: 30px;
            transition: all 0.3s ease;
        }
        
        .btn-primary-custom:hover {
            background-color: var(--accent-color);
            transform: translateY(-3px);
        }
        
        /* Section Styles */
        .section-padding {
            padding: 80px 0;
        }
        
        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 15px;
            color: var(--primary-color);
        }
        
        .section-subtitle {
            font-size: 1.1rem;
            color: #666;
            margin-bottom: 50px;
        }
        
        .bg-light-alt {
            background-color: var(--light-bg);
        }
        
        /* About Section */
        .about-img {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .about-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        /* Counter Section */
        .counter-box {
            text-align: center;
            padding: 30px 20px;
            border-radius: 10px;
            background-color: white;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease;
        }
        
        .counter-box:hover {
            transform: translateY(-10px);
        }
        
        .counter-icon {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 15px;
        }
        
        .counter-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--secondary-color);
            margin-bottom: 10px;
        }
        
        .counter-title {
            font-size: 1.1rem;
            font-weight: 500;
        }
        
        /* Vision & Mission */
        .vision-mission-box {
            background-color: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            height: 100%;
        }
        
        .vision-mission-icon {
            font-size: 2rem;
            color: var(--primary-color);
            margin-bottom: 20px;
        }
        
        /* Why Choose Us */
        .feature-box {
            text-align: center;
            padding: 30px 20px;
            border-radius: 10px;
            background-color: white;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            height: 100%;
            transition: all 0.3s ease;
        }
        
        .feature-box:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        
        .feature-icon {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 20px;
        }
        
        .feature-title {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 15px;
            color: var(--secondary-color);
        }
        
        /* Services Section */
        .service-card {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        
        .service-img {
            height: 200px;
            overflow: hidden;
        }
        
        .service-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .service-card:hover .service-img img {
            transform: scale(1.1);
        }
        
        .service-content {
            padding: 25px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        
        .service-title {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 15px;
            color: var(--primary-color);
        }
        
        .service-text {
            margin-bottom: 20px;
            flex-grow: 1;
        }
        
        /* CTA Section */
        .cta-section {
            background-color: var(--primary-color);
            padding: 80px 0;
            color: white;
            text-align: center;
        }
        
        .cta-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        .cta-subtitle {
            font-size: 1.2rem;
            margin-bottom: 30px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .btn-cta-light {
            background-color: white;
            color: var(--primary-color);
            padding: 12px 30px;
            font-weight: 600;
            border-radius: 30px;
            transition: all 0.3s ease;
        }
        
        .btn-cta-light:hover {
            background-color: var(--secondary-color);
            color: white;
        }
        
        /* FAQ Section */
        .accordion-button:not(.collapsed) {
            background-color: var(--primary-color);
            color: white;
        }
        
        .accordion-button:focus {
            box-shadow: none;
        }
        
        .accordion-button {
            font-weight: 500;
        }
        
        /* Client Reviews */
        .review-card {
            background-color: white;
            border-radius: 10px;
            padding: 25px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            height: 100%;
        }
        
        .review-header {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }
        
        .review-img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 15px;
        }
        
        .review-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .review-info h5 {
            margin-bottom: 0;
            font-weight: 600;
        }
        
        .review-rating {
            color: #ffc107;
            margin-bottom: 15px;
        }
        
        /* Contact Section */
        .contact-info-box {
            background-color: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            height: 100%;
        }
        
        .contact-icon {
            font-size: 1.5rem;
            color: var(--primary-color);
            margin-right: 15px;
        }
        
        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .contact-form .form-control {
            border-radius: 5px;
            border: 1px solid #ddd;
            padding: 12px 15px;
            margin-bottom: 20px;
        }
        
        .contact-form .form-control:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.25rem rgba(78, 86, 192, 0.25);
        }
        
        /* Newsletter Section */
        .newsletter-section {
            background-color: var(--secondary-color);
            padding: 60px 0;
            color: white;
        }
        
        .newsletter-title {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 15px;
        }
        
        .newsletter-form .form-control {
            border: none;
            border-radius: 30px;
            padding: 12px 20px;
            margin-right: 10px;
        }
        
        .newsletter-form .btn {
            background-color: var(--primary-color);
            border: none;
            padding: 12px 25px;
            border-radius: 30px;
            font-weight: 500;
        }
        
        .newsletter-form .btn:hover {
            background-color: var(--accent-color);
        }
        
        /* Footer */
        footer {
            background-color: #222;
            color: #ddd;
            padding: 70px 0 0;
            padding-bottom: 30px;
        }
        
        .footer-title {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 25px;
            color: white;
            position: relative;
            padding-bottom: 15px;
        }
        
        .footer-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background-color: var(--primary-color);
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links a {
            color: #ddd;
            transition: color 0.3s ease;
        }
        
        .footer-links a:hover {
            color: var(--primary-color);
            text-decoration: none;
        }
        
        .footer-cta {
            background-color: rgba(78, 86, 192, 0.2);
            border-radius: 10px;
            padding: 25px;
            text-align: center;
        }
        
        .footer-cta .btn {
            background-color: var(--primary-color);
            border: none;
            padding: 10px 25px;
            border-radius: 30px;
            font-weight: 500;
            margin-top: 15px;
        }
        
        .footer-cta .btn:hover {
            background-color: var(--secondary-color);
        }
        
        .copyright {
            margin-top: 50px;
            padding-top: 20px;
            border-top: 1px solid #444;
            text-align: center;
            font-size: 0.9rem;
        }
        
        .copyright a {
            color: var(--primary-color);
            margin: 0 10px;
        }
        
        /* Responsive */
        @media (max-width: 991px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .navbar-nav {
                text-align: center;
            }
            
            .navbar-nav .nav-item {
                margin: 5px 0;
            }
        }
        
        @media (max-width: 767px) {
            .hero-title {
                font-size: 2rem;
            }
            
            .section-padding {
                padding: 60px 0;
            }
            
            .cta-section {
                padding: 60px 0;
            }
            
            .newsletter-section {
                padding: 40px 0;
            }
        }


        .navbar-brand img{
            width: 200px;
        }

        .card{
      width:100%;
      max-width:420px;
      background:var(--card);
      border-radius:10px;
      padding:22px;
      box-shadow:0 6px 18px rgba(16,24,40,0.08);
    }

    h2{
      margin:0 0 12px;
      font-size:20px;
      color:#0f172a;
      text-align:center;
    }
    p.lead{
      margin:0 0 18px;
      font-size:13px;
      color:var(--muted);
      text-align:center;
    }

    label{
      display:block;
      font-size:13px;
      color:#111827;
      margin-bottom:6px;
      margin-top:12px;
    }

    input[type="text"],
    input[type="email"],
    input[type="date"]{
      width:100%;
      padding:10px 12px;
      border-radius:8px;
      border:1px solid #e6e9ef;
      font-size:14px;
      outline:none;
    }
    input[type="text"]:focus,
    input[type="email"]:focus,
    input[type="date"]:focus{ box-shadow:0 0 0 3px rgba(37,99,235,0.08); border-color:var(--accent); }

    .checkbox-row{
      display:flex;
      align-items:center;
      gap:8px;
      margin-top:12px;
    }

    button{
      width:100%;
      margin-top:16px;
      padding:11px;
      border-radius:8px;
      border:0;
      background: #0f172a;
      color:white;
      font-size:15px;
      cursor:pointer;
    }
    button:active{ transform:translateY(1px) }

    /* confirmation */
    .confirmation{
      margin-top:14px;
      padding:12px;
      border-radius:8px;
      background:rgba(16,185,129,0.09);
      color:var(--success);
      font-weight:600;
      text-align:center;
      opacity:0;
      transform:translateY(-6px);
      transition:opacity .28s ease, transform .28s ease;
      display:none;
    }
    .confirmation.show{
      display:block;
      opacity:1;
      transform:translateY(0);
    }

    /* small note */
    .note{ font-size:12px; color:var(--muted); margin-top:10px; text-align:center; }




       .unsub-form {
      background: #fff;
      padding: 22px;
      width: 100%;
      max-width: 430px;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }

    label {
      display: block;
      margin-top: 12px;
      font-size: 14px;
      font-weight: 600;
    }

    input[type="email"],
    input[type="date"] {
      width: 100%;
      padding: 10px;
      margin-top: 6px;
      border: 1px solid #ccc;
      border-radius: 6px;
      font-size: 14px;
    }

    .checkbox-row {
      margin-top: 12px;
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 14px;
    }

    button {
      width: 100%;
      background: #63c1b5;
      border: none;
      color: #fff;
      padding: 12px;
      margin-top: 16px;
      cursor: pointer;
      font-size: 15px;
      border-radius: 6px;
    }

    .message {
      margin-top: 14px;
      padding: 12px;
      background: #d4edda;
      color: #155724;
      border-radius: 6px;
      display: none;
      text-align: center;
      font-weight: bold;
    }