@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');




:root {
            --primary: #003a70;
            --primary-2: #35b6b4;
            --primary-light: #c2ddff;
            --secondary: #00C9A7;
            --accent: #FF6B6B;
            --light: #FFFFFF;
            --light-gray: #dfefff;
            --medium-gray: #E2E8F0;
            --dark-gray: #64748B;
            --dark: #0F172A;
            --transition: all 0.3s ease;
            --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
            --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
            --shadow-lg: 0 10px 25px rgba(0,0,0,0.1);
            --shadow-xl: 0 20px 40px rgba(0,0,0,0.15);
            --rounded-sm: 4px;
            --rounded-md: 8px;
            --rounded-lg: 12px;
            --rounded-xl: 16px;
            --rounded-full: 9999px;
        }



        
   .sub-header {
            background-color: var(--primary);
            color: #ffffff;
            padding: .6rem 3rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

       
        .sub-header-left {
            display: flex;
            align-items: center;
            gap: 20px;
            
            
        }

        
        .contact-item {
            display: flex;
            align-items: center;
        }

       
        .contact-item::before {
            content: '';
            display: block;
            width: 1px;
            height: 20px;
            background-color: #444444;
            margin-right: 20px;
        }

        
        .contact-item:first-of-type::before {
            display: none;
        }
        
      
        .sub-header-left i {
            margin-right: 8px;
            font-size: 16px;
        }

        .sub-header-left a{
            font-size: 15px;
        }
       
        .sub-header-right {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            gap: 20px;
        }

        
        .sub-header-right a {
            color: #ffffff; 
            font-size: 18px;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
      
        .sub-header-right a:hover {
            color: var(--primary);
        }

        .phone-item,
        .email-item {
            display: flex;
            align-items: center;
        }




        /* Header Styles */
        header {
            position: sticky; 
            top: 0; 
            padding: 15px;
            width: 100%;
            z-index: 1000;
            background: var(--light);
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.25rem 2.5rem;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .logo img {
            height: 70px;
            width: auto;
        }
        
        .logo-text h3 {
            color: var(--primary);
            margin-bottom: 0.25rem;
            font-family: "Playfair Display", serif;
        }
        
        .logo-text p {
            font-size: 0.85rem;
            font-weight: 500;
            font-family: "Roboto", sans-serif;
            color: #eb2c31;
        }
        
        nav ul {
            display: flex;
            align-items: center;
            list-style: none;
            gap: 2rem;
        }
        
        nav ul li a {
            color: var(--dark);
            font-weight: 500;
            font-size: 1rem;
            position: relative;
            padding: 0.5rem 0;
            font-family: "Roboto", sans-serif;
        }
        
        nav ul li a:hover {
            color: var(--primary-2);
        }
        
        nav ul li a.active {
            color: var(--primary);
            font-weight: 600;
        }
        
        nav ul li a.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: var(--primary);
        }
        
        .cta-button {
            background: var(--primary);
            color: white;
            padding: 0.75rem 1.75rem;
            border-radius: var(--rounded-sm);
            font-weight: 600;
            font-size: 1rem;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: var(--transition);
            border: 1px solid var(--primary);
        }
        
        .cta-button:hover {
            background: transparent;
            color: var(--primary);
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }
        
        .secondary-button {
            background: transparent;
            color: var(--primary);
            padding: 0.75rem 1.75rem;
            border-radius: var(--rounded-sm);
            font-weight: 600;
            font-size: 1rem;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: var(--transition);
            border: 1px solid var(--primary);
        }
        
        .secondary-button:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }
        
        .mobile-menu {
            display: none;
            font-size: 1.5rem;
            color: var(--dark);
            cursor: pointer;
            z-index: 1001;
        }




        /* Footer */
        footer {
            background: var(--dark);
            color: white;
            padding: 5rem 0 2rem;
        }
        
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }
        
        .footer-about h3 {
            color: white;
            margin-bottom: 1.5rem;
        }
        
        .footer-about p {
            color: rgba(255,255,255,0.7);
            margin-bottom: 1.5rem;
        }
        
        .social-links {
            display: flex;
            gap: 1rem;
        }
        
        .social-links a {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: #FF6B6B;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
        }
        
        .social-links a:hover {
            background: var(--primary);
            transform: translateY(-3px);
        }
        
        .footer-links h3 {
            color: white;
            margin-bottom: 1.5rem;
            font-size: 1.25rem;
        }
        
        .footer-links ul {
            list-style: none;
        }
        
        .footer-links ul li {
            margin-bottom: 0.75rem;
        }
        
        .footer-links ul li a {
            color: rgba(255,255,255,0.7);
            transition: var(--transition);
        }
        
        .footer-links ul li a:hover {
            color: white;
            padding-left: 5px;
        }
        
        .footer-contact h3 {
            color: white;
            margin-bottom: 1.5rem;
            font-size: 1.25rem;
        }
        
        .footer-contact p {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            margin-bottom: 1rem;
            color: rgba(255,255,255,0.7);
        }
        
        .footer-contact i {
            color: var(--accent);
            margin-top: 0.2rem;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: rgba(255,255,255,0.5);
            font-size: 0.9rem;
        }
        .footer-bottom a{
            color: rgba(255,255,255,0.5);
        }
        

        
        
        
        @media (max-width: 768px) {
            nav {
                position: fixed;
                top: 0;
                right: -100%;
                width: 80%;
                max-width: 300px;
                height: 100vh;
                background: var(--light);
                box-shadow: -5px 0 15px rgba(0,0,0,0.1);
                padding: 2rem;
                transition: var(--transition);
                z-index: 1000;
            }
            
            nav.active {
                right: 0;
            }
            
            nav ul {
                flex-direction: column;
                gap: 1.5rem;
                margin-top: 3rem;
            }

            .sub-header {
                display: none;
            }
            
            .mobile-menu {
                display: block;
            }
            
        }
        
      
