/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

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

/* Header styles */
header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo img {
    height: 60px;
    width: auto;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 2rem;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #ff6b35;
    /* Orange color */
}

/* Hero section */
.hero {
    background-image: url('public/hero.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 6rem 0;
    position: relative;
    z-index: 0;
}

/* Add a dark overlay for better text readability */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    /* Dark overlay for text readability */
    z-index: -1;
}

/* Ensure content is above overlay */
.hero .container {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero .tagline {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero .intro {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    opacity: 0.9;
}

.btn-primary {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid white;
}

.btn-primary:hover {
    background-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

/* Unique Selling Points */
.usp {
    padding: 4rem 0;
    background-color: #f9f9f9;
}

.usp h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #ff6b35;
    /* Orange */
}

.usp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.usp-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.usp-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.usp-item h3 {
    color: #ff6b35;
    /* Orange */
    margin-bottom: 1rem;
}

/* Services section */
.services {
    padding: 4rem 0;
    background-color: white;
}

.services h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #ff6b35;
    /* Orange */
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 2rem;
}

.services-grid .service-card:nth-child(1),
.services-grid .service-card:nth-child(2),
.services-grid .service-card:nth-child(3) {
    grid-column: span 4;
}

.services-grid .service-card:nth-child(4),
.services-grid .service-card:nth-child(5) {
    grid-column: span 6;
}

.service-card {
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border-left: 4px solid #ff6b35;
    /* Orange accent */
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-card h3 {
    color: #ff6b35;
    /* Orange */
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

/* Contact section */
.contact {
    padding: 4rem 0;
    background-color: #f9f9f9;
}

/* Services section variation - matching verticals style */
.services-variant {
    padding: 4rem 0;
    background-color: #f8f9fa;
    /* Very light gray background for section */
}

.services-variant h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #ff6b35;
    /* Orange */
}

.services-variant .services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.services-variant .services-grid .service-card {
    flex: 1 1 calc(33.333% - 2rem);
    max-width: calc(33.333% - 2rem);
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #ffd700;
    /* Gold border all around */
    position: relative;
    overflow: hidden;
}

/* Responsive adjustments for services variant */
@media (max-width: 768px) {
    .services-variant .services-grid .service-card {
        flex: 1 1 calc(50% - 2rem);
        max-width: calc(50% - 2rem);
    }
}

@media (max-width: 480px) {
    .services-variant .services-grid .service-card {
        flex: 1 1 100%;
        max-width: 100%;
    }
}

.services-variant .service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: #ffd700;
    /* Gold accent bar */
}

.services-variant .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: #ff6b35;
    /* Orange on hover */
}

.services-variant .service-card:hover::before {
    background: #ff6b35;
    /* Orange on hover */
}

.services-variant .service-card h3 {
    color: #ff6b35;
    /* Orange */
    margin-bottom: 1rem;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 2rem 0;
}

footer p {
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-links a {
    color: white;
    font-size: 1.5rem;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #ffd700;
    /* Gold */
}

/* Hamburger menu styles */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
    margin-left: auto;
}

.hamburger-line {
    display: block;
    height: 4px;
    background-color: #333;
    border-radius: 2px;
    transition: all 0.3s ease;
    margin: 4px 0;
}

/* Additional breakpoint for very small screens */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero .tagline {
        font-size: 1rem;
    }
    
    .hero .intro {
        font-size: 0.9rem;
    }
    
    .btn-primary {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    h3 {
        font-size: 1.3rem;
    }
}

/* Responsive design */
@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        align-items: center;
    }

    nav ul li {
        margin: 0.5rem 0;
    }

    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero .tagline {
        font-size: 1.2rem;
    }
    
    .hero .intro {
        font-size: 1rem;
    }
    
    .usp-grid,
    .services-grid,
    .services-variant .services-grid,
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    /* Reset service card grid on mobile */
    .services-grid .service-card,
    .services-variant .services-grid .service-card:nth-child(1),
    .services-variant .services-grid .service-card:nth-child(2),
    .services-variant .services-grid .service-card:nth-child(3),
    .services-variant .services-grid .service-card:nth-child(4),
    .services-variant .services-grid .service-card:nth-child(5) {
        grid-column: 1 / -1;
    }
    
    /* Mobile menu styles */
    .hamburger-menu {
        display: flex;
    }
    
    nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: white;
        flex-direction: column;
        padding: 1rem 0;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        border-top: 1px solid #eee;
    }
    
    nav ul.active {
        display: flex;
    }
    
    nav ul li {
        margin: 1rem 0;
        width: 100%;
        text-align: center;
    }
    
    nav ul li a {
        display: block;
        padding: 0.5rem 0;
    }
    
    /* Make services variant responsive */
    .services-variant .services-grid {
        grid-template-columns: 1fr;
    }
    
    .services-variant .services-grid .service-card {
        grid-column: 1 / -1;
    }
    
    /* Hamburger menu animation */
    .hamburger-menu.active .hamburger-line:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger-menu.active .hamburger-line:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger-menu.active .hamburger-line:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

/* Common Verticals Section */
.verticals {
    padding: 4rem 0;
    background-color: #f8f9fa;
    /* Very light gray background for section */
}

.verticals h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #ff6b35;
    /* Orange */
}

.verticals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.vertical-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #ffd700;
    /* Gold border all around */
    position: relative;
    overflow: hidden;
}

.vertical-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: #ffd700;
    /* Gold accent bar */
}

.vertical-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: #ff6b35;
    /* Orange on hover */
}

.vertical-card:hover::before {
    background: #ff6b35;
    /* Orange on hover */
}

.vertical-card h3 {
    color: #ff6b35;
    /* Orange */
    margin-bottom: 1rem;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}