 :root {
            --primary-color: #007e82;
            --secondary-color: #ff5722;
            --accent-color: #136265;
            --light-color: #f5f5f5;
            --dark-color: #333;
            --text-color: #444;
            --white: #ffffff;
            --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }
  header {
            background:#007e82;
            color: var(--white);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
        }
        
        .logo {
            height: 98px;
            width: auto;
            object-fit: contain;
        }
        
        h1 {
            font-size: 1.8rem;
            text-align: center;
            font-weight: 600;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
            flex-grow: 1;
            margin: 0 15px;
        }
        
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 10px;
        }
        
        .hamburger div {
            width: 25px;
            height: 3px;
            background-color: var(--white);
            margin: 3px 0;
            transition: var(--transition);
        }
    
        
        nav ul {
            display: flex;
            justify-content: center;
            list-style: none;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        nav li {
            position: relative;
        }
        
        nav a {
            color: var(--white);
            text-decoration: none;
            padding: 1rem 1.2rem;
            display: block;
            font-weight: 500;
            transition: var(--transition);
            position: relative;
        }
        
        nav a:hover {
            background-color: rgba(255, 255, 255, 0.1);
            color: var(--white);
        }
        
        nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 3px;
            background-color: var(--secondary-color);
            transition: var(--transition);
        }
        
        nav a:hover::after {
            width: 70%;
        }
        
        .dropdown {
            position: relative;
        }
        
        .dropdown-content {
            position: absolute;
            top: 100%;
            left: 0;
            background-color: var(--white);
            min-width: 220px;
            box-shadow: var(--box-shadow);
            border-radius: 0 0 5px 5px;
            z-index: 1;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            transform: translateY(10px);
        }
        
        .dropdown:hover .dropdown-content {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        
        .dropdown-content div {
            padding: 0;
        }
        
        .dropdown-content a {
            color: var(--dark-color);
            padding: 12px 16px;
            display: block;
            transition: var(--transition);
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }
        
        .dropdown-content a:hover {
            background-color: var(--light-color);
            color: var(--primary-color);
            padding-left: 20px;
        }
        
        .dropdown-content a i {
            margin-right: 8px;
            color: var(--secondary-color);
        }
  footer {
            background: #007e82;
            color: var(--white);
            padding: 3rem 0 1rem;
        }
        
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }
        
        .footer-logo {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }
        
        .footer-logo img {
            height: 80px;
            margin-bottom: 1rem;
        }
        
        .footer-logo p {
            font-size: 0.9rem;
            opacity: 0.8;
        }
        
        .footer-links h3 {
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
            position: relative;
            display: inline-block;
        }
        
        .footer-links h3::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 50px;
            height: 2px;
            background-color: var(--secondary-color);
        }
        
        .footer-links ul {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        
        .footer-links a {
            color: var(--white);
            text-decoration: none;
            transition: var(--transition);
            opacity: 0.8;
            font-size: 0.95rem;
        }
        
        .footer-links a:hover {
            opacity: 1;
            padding-left: 5px;
        }
        
        .footer-contact h3 {
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
            position: relative;
            display: inline-block;
        }
        
        .footer-contact h3::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 50px;
            height: 2px;
            background-color: var(--secondary-color);
        }
        
        .contact-info {
            margin-bottom: 1.5rem;
        }
        
        .contact-info p {
            margin-bottom: 0.8rem;
            display: flex;
            align-items: flex-start;
            font-size: 0.95rem;
            opacity: 0.8;
        }
        
        .contact-info i {
            margin-right: 10px;
            color: var(--secondary-color);
        }
        
        .social-icons {
            display: flex;
            gap: 1rem;
        }
        
        .social-icons 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(--white);
            transition: var(--transition);
        }
        
        .social-icons a:hover {
            background-color: var(--secondary-color);
            transform: translateY(-3px);
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            opacity: 0.7;
        }

 @media (max-width: 992px) {
            .hamburger {
                display: flex;
            }
            
            nav ul {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: var(--primary-color);
                box-shadow: var(--box-shadow);
                z-index: 100;
            }
            
            nav ul.show {
                display: flex;
            }
            
            nav li {
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }
            
            .dropdown-content {
                position: static;
                opacity: 1;
                visibility: visible;
                transform: none;
                box-shadow: none;
                background-color: rgba(0, 0, 0, 0.1);
                display: none;
            }
            
            .dropdown:hover .dropdown-content {
                display: block;
            }
        }
          @media (max-width: 768px) {
            h1 {
                font-size: 1.5rem;
            }
            
            .logo {
                height: 60px;
            }
               .footer-links{
                display: none;
           }
           footer .contact-info{
            display: none;
           }
.footer-contact h3{
    display: none;
}
        }
       


         @media (max-width: 576px) {
            .header-container {
                flex-wrap: wrap;
            }
            
            h1 {
                font-size: 0.9rem;
                margin: 0 10px;
            }

            .logo {
                height: 42px;
            }
            
            .hamburger {
                order: 2;

            }
             .footer-container {
                grid-template-columns: 1fr;
                text-align: center;
            }
            
            .footer-logo {
                align-items: center;
            }
            
            .footer-links h3::after, .footer-contact h3::after {
                left: 50%;
                transform: translateX(-50%);
            }
            
            .social-icons {
                justify-content: center;
            }
           .footer-links{
                display: none;
           }
          footer .contact-info{
            display: none;
           }
        }