:root {
        --bs-primary: #198754;
        --bs-primary-rgb: 25, 135, 84;
      }
      .btn-primary {
        background-color: var(--bs-primary);
        border-color: var(--bs-primary);
      }
      .btn-primary:hover {
        background-color: #157347;
        border-color: #146c43;
      }
      .text-primary {
        color: var(--bs-primary) !important;
      }
      .border-primary {
        border-color: var(--bs-primary) !important;
      }
      
      .bg-white{
            background-color:#fff !important
      }

      .bg-green{
            background-color:#198754 !important
      }

      /* .logo */

      .logo {
            display: flex;
            align-items: center;
        }
        
        .logo i {
            font-size: 36px;
            color: var(--primary);
            margin-right: 10px;
        }
        
        .logo h1 {
            font-size: 28px;
            color: var(--dark);
            margin: 0;
        }
        
        .logo span {
            color: var(--primary);
        }













     
        /* :root {
            --primary: #198754;
            --primary-dark: #146c43;
            --dark: #1c1c1c;
            --light: #f8f9fa;
            --gray: #6c757d;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Roboto', sans-serif;
            color: #333;
            line-height: 1.6;
            background-color: #f5f5f5;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        } */
        
        /* Topbar */
        /* .topbar {
            background-color: #1c1c1c;
            color: white;
            padding: 10px 0;
            font-size: 14px;
        }
        
        .topbar-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .topbar-contact {
            display: flex;
            gap: 20px;
        }
        
        .topbar-contact i {
            color: var(--primary);
            margin-right: 5px;
        }
        
        .topbar-social a {
            color: #fff;
            margin-left: 15px;
            transition: 0.3s;
        }
        
        .topbar-social a:hover {
            color: var(--primary);
        }
        
        /* Navbar */
        .navbar {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        
        .navbar-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            display: flex;
            align-items: center;
        }
        
        .logo i {
            font-size: 36px;
            color: var(--primary);
            margin-right: 10px;
        }
        
        .logo h1 {
            font-size: 28px;
            color: var(--dark);
            margin: 0;
        }
        
        .logo span {
            color: var(--primary);
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
        }
        
        .nav-menu li {
            margin: 0 15px;
        }
        
        .nav-menu a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 500;
            position: relative;
            padding: 5px 0;
            transition: 0.3s;
        }
        
        .nav-menu a:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--primary);
            transition: 0.3s;
        }
        
        .nav-menu a:hover:after,
        .nav-menu a.active:after {
            width: 100%;
        }
        
        .nav-menu a:hover,
        .nav-menu a.active {
            color: var(--primary);
        }
        
        .mobile-toggle {
            display: none;
            font-size: 24px;
            cursor: pointer;
        }
        
        /* Page Header */
        .page-header {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1584697964358-3e14ca57658b?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1200&q=80') no-repeat center center/cover;
            height: 350px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            margin-bottom: 60px;
        }
        
        .page-header h1 {
            font-size: 48px;
            margin-bottom: 20px;
        }
        
        .breadcrumb {
            display: flex;
            justify-content: center;
            list-style: none;
        }
        
        .breadcrumb li {
            margin: 0 10px;
            position: relative;
        }
        
        .breadcrumb li:after {
            content: '/';
            position: absolute;
            right: -15px;
            top: 0;
            color: #ccc;
        }
        
        .breadcrumb li:last-child:after {
            display: none;
        }
        
        .breadcrumb a {
            color: #ddd;
            text-decoration: none;
            transition: 0.3s;
        }
        
        .breadcrumb a:hover {
            color: var(--primary);
        }
        
        .breadcrumb .active {
            color: var(--primary);
        }
        
        /* About Section */
        .about {
            padding: 80px 0;
        }
        
        .about-container {
            display: flex;
            gap: 40px;
            align-items: center;
        }
        
        .about-img {
            flex: 1;
            position: relative;
        }
        
        .about-img img {
            width: 100%;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .experience-box {
            position: absolute;
            bottom: -30px;
            left: -30px;
            background: var(--primary);
            color: white;
            padding: 30px;
            text-align: center;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .experience-box h2 {
            font-size: 50px;
            margin-bottom: 5px;
        }
        
        .about-content {
            flex: 1;
        }
        
        .section-title {
            margin-bottom: 30px;
            position: relative;
            padding-left: 20px;
        }
        
        .section-title h6 {
            color: var(--primary);
            font-size: 18px;
            text-transform: uppercase;
            margin-bottom: 10px;
        }
        
        .section-title h1 {
            font-size: 36px;
            color: var(--dark);
        }
        
        .section-title:before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            width: 5px;
            background: var(--primary);
        }
        
        .about-content p {
            margin-bottom: 20px;
            color: #555;
        }
        
        .features {
            margin-top: 30px;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }
        
        .feature-item {
            display: flex;
            align-items: flex-start;
        }
        
        .feature-item i {
            color: var(--primary);
            font-size: 24px;
            margin-right: 15px;
            flex-shrink: 0;
        }
        
        .feature-text h5 {
            margin-bottom: 5px;
        } */
        
        /* Team Section */
        /* .team {
            padding: 60px 0;
            background-color: var(--light);
        }
        
        .team-header {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .team-header h6 {
            color: var(--primary);
            text-transform: uppercase;
            font-size: 18px;
            margin-bottom: 15px;
        }
        
        .team-header h1 {
            font-size: 36px;
            color: var(--dark);
            margin-bottom: 20px;
        }
        
        .team-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .team-member {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease;
        }
        
        .team-member:hover {
            transform: translateY(-10px);
        }
        
        .team-img {
            height: 300px;
            overflow: hidden;
        }
        
        .team-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .team-member:hover .team-img img {
            transform: scale(1.1);
        }
        
        .team-info {
            padding: 25px;
            text-align: center;
        }
        
        .team-info h3 {
            margin-bottom: 5px;
        }
        
        .team-info p {
            color: var(--primary);
            font-weight: 500;
        } */
        
        /* Stats Section */
        /* .stats {
            padding: 80px 0;
            background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('https://images.unsplash.com/photo-1509391366360-2e959784a276?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1200&q=80') no-repeat center center/cover;
            color: white;
            text-align: center;
        }
        
        .stats-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
        }
        
        .stat-item i {
            font-size: 48px;
            color: var(--primary);
            margin-bottom: 20px;
        }
        
        .stat-item h2 {
            font-size: 50px;
            margin-bottom: 10px;
        }
        
        .stat-item p {
            font-size: 18px;
            color: #ddd;
        } */
        
        /* Footer */
        /* .footer {
            background-color: var(--dark);
            color: #aaa;
            padding: 80px 0 0;
        }
        
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }
        
        .footer-col h3 {
            color: white;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-col h3:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background: var(--primary);
        }
        
        .footer-about p {
            margin-bottom: 20px;
        }
        
        .footer-social {
            display: flex;
            gap: 15px;
        }
        
        .footer-social a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: #333;
            color: white;
            border-radius: 50%;
            transition: 0.3s;
        }
        
        .footer-social a:hover {
            background: var(--primary);
        }
        
        .footer-contact p {
            display: flex;
            margin-bottom: 15px;
        }
        
        .footer-contact i {
            color: var(--primary);
            margin-right: 10px;
            min-width: 20px;
        }
        
        .footer-links a {
            display: block;
            color: #aaa;
            margin-bottom: 12px;
            text-decoration: none;
            transition: 0.3s;
        }
        
        .footer-links a:hover {
            color: var(--primary);
            padding-left: 5px;
        }
        
        .footer-newsletter p {
            margin-bottom: 15px;
        }
        
        .newsletter-form {
            display: flex;
        }
        
        .newsletter-form input {
            flex: 1;
            padding: 12px 15px;
            border: none;
            outline: none;
        }
        
        .newsletter-form button {
            background: var(--primary);
            color: white;
            border: none;
            padding: 0 20px;
            cursor: pointer;
            transition: 0.3s;
        }
        
        .newsletter-form button:hover {
            background: var(--primary-dark);
        }
        
        .copyright {
            background: #111;
            padding: 20px 0;
            text-align: center;
            border-top: 1px solid #333;
        }
        
        .copyright p {
            margin: 0;
            font-size: 14px;
        }
        
        .copyright a {
            color: var(--primary);
            text-decoration: none;
        } */
        
        /* Responsive */
        /* @media (max-width: 992px) {
            .about-container {
                flex-direction: column;
            }
            
            .experience-box {
                position: relative;
                bottom: auto;
                left: auto;
                margin-top: 30px;
            }
        }
        
        @media (max-width: 768px) {
            .topbar-content {
                flex-direction: column;
                gap: 10px;
            }
            
            .nav-menu {
                position: fixed;
                top: 100px;
                left: -100%;
                flex-direction: column;
                background: white;
                width: 100%;
                height: calc(100vh - 100px);
                padding: 20px;
                transition: 0.3s;
                box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
            }
            
            .nav-menu.active {
                left: 0;
            }
            
            .nav-menu li {
                margin: 10px 0;
            }
            
            .mobile-toggle {
                display: block;
            }
            
            .page-header h1 {
                font-size: 36px;
            }
            
            .features {
                grid-template-columns: 1fr;
            } */
        }
    