  :root {
            --primary: #14b8a6;
            --primary-dark: #0d9488;
            --dark: #111827;
            --light: #f9fafb;
            --gray: #6b7280;
            --light-gray: #e5e7eb;
            --white: #fff;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        a{
            text-decoration: none !important;
        }

        body {
            font-family: 'Poppins', sans-serif;
            color: var(--dark);
            background-color: var(--light);
            overflow-x: hidden;
        }

      /* Top Info Bar Styles */
        .top-info-bar {
            background-color: var(--dark);
            color: var(--light);
            padding: 10px 0;
            position: sticky;
            top: 0;
            z-index: 1030;
            width: 100%;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        }

        .top-info-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1px;
            
        }

        .slogan {
            font-size: 16px;
            font-weight: 500;
            color: var(--primary);
            white-space: nowrap;
            
            align-items: right;
            justify-content: flex-end;
            gap: 20px;
        }

        .contact-info2 {
            display: flex;
            gap: 20px;
        }

        .contact-item2 {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
        }

        .contact-item2 i {
            color: var(--primary);
        }

        .social-icons {
            display: flex;
            gap: 12px;
        }

        .social-icons a {
            color: var(--light);
            width: 28px;
            height: 28px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
        }

        .social-icons a:hover {
            background-color: var(--primary);
            transform: translateY(-2px);
        }

        /* Header Styles */
        header {
            position: fixed;
            top: 42px; /* Height of top info bar */
            left: 0;
            width: 100%;
            padding: 10px 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background-color: white;
            z-index: 1000;
            transition: all 0.3s ease;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        header.scrolled {
            padding: 5px 5%;
            background-color: white;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .logo img {
            height: 80px;
        }

        .logo h1 {
            color: var(--dark);
            font-size: 1.5rem;
            font-weight: 600;
        }

        .logo span {
            color: var(--primary);
        }

        .navbar {
            display: flex;
            gap: 2rem;
        }

        .navbar a {
            color: var(--dark);
            text-decoration: none;
            font-weight: 500;
            font-size: 1rem;
            transition: color 0.3s ease;
            position: relative;
        }

        .navbar a:hover {
            color: var(--primary);
        }

        .navbar a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background: var(--primary);
            bottom: -4px;
            left: 0;
            transition: width 0.3s ease;
        }

        .navbar a:hover::after {
            width: 100%;
        }

        .navbar a.active {
            color: var(--primary);
        }

        .navbar a.active::after {
            width: 100%;
        }

        .menu-toggle {
            display: none;
            cursor: pointer;
            color: var(--dark);
            font-size: 1.5rem;
        }
        
        
         @media (max-width: 768px) {
            .top-info-bar {
                display: none !important;
            }
            header {
                position: fixed;
                top: 0px !important; 
                
            }
          

            .navbar {
                position: fixed;
                top: 0px !important; /* Adjusted for top bar + header */
                left: -100%;
                width: 80%;
                height: 120vh;
                background-color: white; 
                flex-direction: column;
                align-items: left;
                justify-content: start;
                 align-content: start;
                 padding-top: 130px;
                text-align: left;
                gap: 2rem;
                transition: left 0.3s ease;
                z-index: 999;
        
            }
              .navbar a{
            width: 100% !important;
            text-align: left;
            padding-left:20px;
            
            }

            .navbar.active {
                left: 0;
            }
            
            .navbar a.active::after{
                    width: 70%;
                }
                
                .navbar a::after {
                    content: '';
                    position: absolute;
                    width: 70%;
                    height: 1px;
                    background: var(--primary);
                    bottom: -10px;
                    left: 20px;
                    transition: width 0.3s ease;
                }
            
            
            
            .menu-toggle {
                display: block;
                color: var(--dark);
            }
            
           
        }
        
        
        
        
/*  footer -----------------*/        
         /* Footer */
        footer {
            background-color: black;
            color: var(--light);
            padding: 5rem 5% 2rem;
        }

        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-col h3 {
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            position: relative;
            display: inline-block;
        }

        .footer-col h3::after {
            content: '';
            position: absolute;
            width: 50%;
            height: 2px;
            background-color: var(--primary);
            bottom: -8px;
            left: 0;
        }

        .footer-col p {
            color: var(--light-gray);
            line-height: 1.6;
            margin-bottom: 1rem;
        }

        .footer-links {
            list-style: none;
            padding-left: 0px !important;
        }

        .footer-links li {
            margin-bottom: 0.8rem;
        }

        .footer-links a {
            color: var(--light-gray);
            text-decoration: none;
            transition: color 0.3s ease;
            display: inline-block;
        }

        .footer-links a:hover {
            color: var(--primary);
            transform: translateX(5px);
        }

        .footer-contact p {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            margin-bottom: 1rem;
        }

        .footer-contact i {
            color: var(--primary);
            font-size: 1.2rem;
        }

        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1.5rem;
        }

        .social-links 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%;
            color: var(--light);
            font-size: 1.2rem;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background-color: var(--primary);
            transform: translateY(-3px);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 3rem;
            margin-top: 3rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--light-gray);
            font-size: 0.9rem;
        }

        
        