/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f9f9f9;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Main Header */
.main-header {
    background-color: #ffffff;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px; /* space between image and text */
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

/* Logo image */
.logo-img {
    height: 45px; /* adjust as needed */
    width: auto;
    object-fit: contain;
}

/* Keep existing text styling */
.logo-text {
    font-size: 28px;
    font-weight: 700;
    color: #000000;
    letter-spacing: -0.5px;
}

.logo-highlight {
    color: #ff5722;
    font-weight: 700;
}

/* Responsive logo size */
@media (max-width: 768px) {
    .logo-img {
        height: 35px;
    }
    .logo-text {
        font-size: 22px;
    }
}


/* Navigation */
.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 5px;
    background-color: #f5f5f5;
    padding: 8px 15px;
    border-radius: 50px;
    align-items: center;
    /* border: 1px solid #e0e0e0;  ← ADD THIS LINE */
    /* border: 1px solid #ff5722; */
    border: 1px solid #ff5722; box-shadow: 0 0 10px rgba(255, 87, 34, 0.3);
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 12px 20px;
    text-decoration: none;
    color: #333333;
    font-size: 15px;
    font-weight: 500;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    background-color: #ffffff;
    color: #ff5722;
}

.nav-link.active {
    background-color: #ffffff;
    color: #ff5722;
}

.nav-link i {
    font-size: 10px;
    margin-left: 3px;
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    list-style: none;
    padding: 10px 0;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 100;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: #333333;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.dropdown-menu a:hover {
    background-color: #f5f5f5;
    color: #ff5722;
    padding-left: 25px;
}


/* CTA Button */
.header-cta {
    display: flex;
}

.cta-button {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #d71920 0%, #b31217 100%); /* red gradient */
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(215, 25, 32, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(215, 25, 32, 0.5);
}

.cta-button i {
    width: 24px;
    height: 24px;
    background-color: #ffffff; /* white circle behind icon */
    color: #d71920; /* red icon */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}


/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #333333;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-menu {
        gap: 2px;
    }
    
    .nav-link {
        padding: 10px 15px;
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .main-nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: #ffffff;
        flex-direction: column;
        justify-content: flex-start;
        padding: 20px;
        transition: left 0.3s ease;
        overflow-y: auto;
    }
    
    .main-nav.active {
        left: 0;
    }
    
    .nav-menu {
        flex-direction: column;
        width: 100%;
        background-color: transparent;
        padding: 0;
        gap: 10px;
    }
    
    .nav-link {
        width: 100%;
        justify-content: space-between;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding-left: 20px;
        display: none;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .header-cta {
        display: none;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 24px;
    }
    
    .container {
        padding: 0 15px;
    }
}

/* ========================
   MOBILE RESPONSIVE
======================== */

/* General adjustments for small screens */
@media (max-width: 1024px) {
    .hero-text h1 {
        font-size: 48px;
    }
    .hero-text p {
        font-size: 16px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .service-item h3 {
        font-size: 20px;
    }

    .service-item p {
        font-size: 14px;
    }
}

/* Tablets and phones */
@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 36px;
        text-align: center;
    }
    .hero-text p {
        text-align: center;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-left, .footer-center, .footer-right {
        max-width: 100%;
        margin-bottom: 30px;
    }

    .header-content {
        flex-direction: column;
        gap: 20px;
    }

    .main-nav {
        top: 70px;
    }

    .header-cta {
        display: none; /* hide CTA on small screens if desired */
    }
}

/* Extra small phones */
@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 28px;
    }

    .hero-text p {
        font-size: 14px;
    }

    .get-started-btn {
        padding: 12px 20px;
        font-size: 14px;
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: #ffffff;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    z-index: 1000;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    text-decoration: none;
    color: #ffffff;
}

.whatsapp-float i {
    line-height: 60px;
}


