/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation Bar Styles */
.navbar {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    font-size: larger;
}

.logo img {
    height: 40px;
}

/* Hide the checkbox */
.menu-toggle {
    display: none;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    list-style: none;
}

.nav-item {
    position: relative;
    margin-left: 25px;
    font-variant: small-caps;
    font-size:larger;
    
}

.nav-link {
    color: #333333;
    font-weight: 600;
    padding: 10px 0;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    text-decoration: none;
}

.nav-link:hover {
    color: #007bff;
}

.nav-link i {
    margin-left: 5px;
    font-size: 20px;
}

/* Dropdown Menu Styles */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    list-style: none;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    transform: translateY(10px);
    z-index: 1000;
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
    text-decoration: none;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: #333333;
    transition: all 0.3s ease;
    text-decoration: none;
}

.dropdown-menu a:hover {
    background-color: #f8f9fa;
    color: #007bff;
    padding-left: 25px;
    text-decoration: none;
}

/* Mobile Menu Styles */
.hamburger {
    display: none;
    cursor: pointer;
    padding: 10px;
}

.hamburger .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: #333333;
    transition: all 0.3s ease;
}

/* Responsive Styles */
@media (max-width: 500px) {
    /* Show hamburger menu */
    .hamburger {
        display: block;
    }
    
    /* Hide regular menu */
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        background-color: #ffffff;
        width: 100%;
        flex-direction: column;
        align-items: center;
        padding: 20px 5px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
    }
    
    .nav-item {
        margin: 15px 0;
        width: 100%;
        text-align: center;
        font-size: larger;
    }
    
    /* Style for when menu is toggled */
    .menu-toggle:checked ~ .nav-menu {
        left: 0;
    }
    
    /* Animate hamburger to X */
    .menu-toggle:checked ~ .hamburger .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .menu-toggle:checked ~ .hamburger .bar:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle:checked ~ .hamburger .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    /* Adjust dropdown for mobile */
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        display: none;
        width: 100%;
        text-align: center;
    }
    
    /* Show dropdown when parent is active */
    .dropdown:focus-within .dropdown-menu,
    .dropdown:hover .dropdown-menu {
        display: block;
    }
    
    /* Add some space between main items */
    .nav-item {
        margin: 15px 0;
    }
}


/* Banner section */
        .banner {
            position: relative;
            width: 100%;
            height: 80vh; /* Adjust height as needed */
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-align: center;
        }
         /* Ken Burns effect for the background image */
        .banner-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            animation: kenburns 20s infinite;
            z-index: -1;
        }
        @keyframes kenburns {
            0% {
                transform: scale(1);
                opacity: 1;
            }
            50% {
                transform: scale(1.1);
                opacity: 0.8;
            }
            100% {
                transform: scale(1);
                opacity: 1;
            }
        }
        /* Banner content */
        .banner-content {
            max-width: 800px;
            padding: 20px;
            background-color: rgba(0, 0, 0, 0.5); 
            border-radius: 10px;
        }
        
        .banner h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }
        .banner p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
        }
        
        /* Call-to-action buttons */
        .cta-buttons {
            display:flex;
            justify-content: center;
            gap: 20px;
            flex-wrap:wrap;
        }
        .cta-button {
            display: inline-block;
            padding: 12px 25px;
            background-color: #ff6b6b; /* Adjust color to match your design */
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: bold;
            text-transform: uppercase;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }
        .cta-button:hover {
            background-color: transparent;
            border-color: white;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }
        
        .cta-button.secondary {
            background-color: transparent;
            border-color: white;
        }
        
        .cta-button.secondary:hover {
            background-color: white;
            color: #333;
        }
         /* Responsive adjustments */
        @media (max-width: 768px) {
            .banner {
                height: 60vh;
            }
            
            .banner h1 {
                font-size: 2rem;
            }
            
            .banner p {
                font-size: 1rem;
            }
            
            .cta-buttons {
                flex-direction: column;
                gap: 10px;
            }
            .cta-button {
                padding: 10px 20px;
                font-size: 0.9rem;
            }
        }

        /* Services grid container */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            padding: 3rem;
            max-width: 1500px;
            margin: 0 auto;
        }

        /* Service item styling */
        .service-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            transition: transform 0.3s ease;
        }
        .service-item:hover {
            transform: translateY(-5px);
        }

        .service-image {
            width: 100%;
            height: 300px;
            object-fit: cover;
            border-radius: 8px;
            margin-bottom: 1rem;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }

        .service-caption {
            font-size: 1.2rem;
            font-weight: bold;
            color: #333;
            margin: top 0.5rem;
        }
        .service-description {
            color: #666;
            margin-top: 0.5rem;
            font-size: 0.9rem;
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
         @media (max-width: 480px) {
            .services-grid {
                grid-template-columns: 1fr;
            }
        }

         /* Portfolio Section Styles */
    .portfolio {
        padding: 4rem 2rem;
        background-color: #f9f9f9;
    }
    
    .section-header {
        text-align: center;
        margin-bottom: 3rem;
    }
    
    .section-header h2 {
        font-size: 2.5rem;
        color: #333;
        margin-bottom: 0.5rem;
    }
    
    .section-header p {
        color: #666;
        font-size: 1.1rem;
    }
    
    .portfolio-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
        max-width: 5000px;
        margin: 0 auto;
    }
    
    .portfolio-item {
        position: relative;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
    }
    
    .portfolio-item:hover {
        transform: translateY(-5px);
    }
    
    .portfolio-image {
        width: 100%;
        height: 300px;
        object-fit: cover;
        display: block;
    }
    
    .portfolio-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.7);
        color: white;
        padding: 1.5rem;
        transform: translateY(100%);
        transition: transform 0.3s ease;
    }
    
    .portfolio-item:hover .portfolio-overlay {
        transform: translateY(0);
    }
    
    .portfolio-overlay h3 {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }
    
    .portfolio-overlay p {
        font-size: 1rem;
        color: #ccc;
    }
    
    /* Responsive adjustments */
    @media (max-width: 768px) {
        .portfolio-grid {
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        }
    }
    
/* Countdown Section - Pure CSS */
             .countdown-section {
            background-color: #121212;
            padding: 60px 20px;
            color: white;
            font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
            text-align: center;
        }
        
        .countdown-title {
            font-size: 32px;
            margin-bottom: 40px;
            color: #ffffff;
        }
        
        .countdown-grid {
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
        }
        
        .countdown-item {
            background-color: #1e1e1e;
            border-radius: 10px;
            padding: 30px;
            width: 200px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
            overflow: hidden;
            position: relative;
        }
        
        .countdown-number {
            font-size: 60px;
            font-weight: bold;
            color: #4CAF50;
            margin-bottom: 10px;
            line-height: 1;
            display: block;
            position: relative;
            height: 70px;
        }
        
        .countdown-number span {
            position: absolute;
            left: 0;
            right: 0;
            animation: countUp 2s ease-out forwards;
            opacity: 0;
            transform: translateY(20px);
        }
        
        .countdown-number span:nth-child(1) { animation-delay: 0.3s; }
        .countdown-number span:nth-child(2) { animation-delay: 0.6s; }
        .countdown-number span:nth-child(3) { animation-delay: 0.9s; }
        
        @keyframes countUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .countdown-label {
            font-size: 18px;
            color: #aaaaaa;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        @media (max-width: 768px) {
            .countdown-grid {
                flex-direction: column;
                align-items: center;
            }
        }

          /* Footer Styles */
        footer {
            background-color: #2c3e50;
            color: #ecf0f1;
            padding: 50px 20px;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }

        .footer-column h3 {
            color: #f39c12;
            margin-bottom: 20px;
            font-size: 1.3rem;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-column h3::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 50px;
            height: 2px;
            background-color: #f39c12;
        }

        .contact-info {
            margin-top: 20px;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 15px;
        }

        .contact-icon {
            margin-right: 15px;
            color: #f39c12;
            font-size: 1.2rem;
            min-width: 20px;
        }

        .contact-text {
            line-height: 1.6;
        }

        .contact-text a {
            color: #ecf0f1;
            text-decoration: none;
            transition: color 0.3s;
        }

        .contact-text a:hover {
            color: #f39c12;
        }

        .copyright {
            text-align: center;
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid #34495e;
            color: #bdc3c7;
            font-size: 0.9rem;
        }

        @media (max-width: 768px) {
            .footer-container {
                grid-template-columns: 1fr;
            }
        }