/* Reset &amp; Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgb(203 133 128);
    z-index: 1000;
    transition: background 0.3s;
}
.navbar.scrolled {
    background: #706868;
}
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}
.logo {
    display: flex;
    align-items: center;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 900;
}
.logo img {
    height: 60px;
    margin-right: 10px;
}
.nav-menu {
    display: flex;
    list-style: none;
}
.nav-link {
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    transition: color 0.3s;
}
.nav-link:hover {
    color: #DC3545;
}
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}
.hamburger span {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, #DC3545 0%, #000 100%), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}
.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}
.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 30px;
}
.cta-btn {
    background: #DC3545;
    color: #fff;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}
.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(220,53,69,0.4);
}

/* About */
.about {
    padding: 100px 0;
    background: #F8F9FA;
}
.about h2, .services h2, .projects h2, .clients h2, .contact h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 50px;
    color: #121212;
}
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}
.about-text p {
    font-size: 1.1rem;
    margin-bottom: 20px;
}
.about-image img {
    width: 100%;
    border-radius: 10px;
}
.section {
    margin-bottom: 50px;
}
.strategy-grid h3 {
    text-align: center;
    margin-bottom: 30px;
    color: #DC3545;
}
.strategy-grid .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}
.strategy-item {
    background: #fff;
    padding: 30px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}
.strategy-item:hover {
    transform: translateY(-10px);
}

/* Services */
.services {
    
    padding: 100px 0;
    background: #000;
    color: #fff;
}

.services h2{
    color:#fff;

}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 50px;
}
.service-card {
    background: #111;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s;
}
.service-card:hover {
    transform: translateY(-10px);
}
.service-card img {
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
}
.service-card h3 {
    color: #DC3545;
    margin-bottom: 20px;
}
.service-card ul {
    list-style: none;
    text-align: left;
}
.service-card li {
    padding: 5px 0;
    position: relative;
    padding-left: 20px;
}
.service-card li::before {
    content: '▶';
    color: #DC3545;
    position: absolute;
    left: 0;
}

/* Projects */
.projects {
    padding: 100px 0;
    background: #F8F9FA;
}
.projects-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.project {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.project h4 {
    color: #DC3545;
    margin-bottom: 10px;
}

/* Clients */


.clients {
    padding: 80px 0;
    background: #706868;
    color: #eadfdf;
}

.clients-carousel {
    display: flex;
    gap: 50px;
    overflow-x: auto;
    padding: 20px 0;
    scroll-snap-type: x mandatory;
    background: transparent;  /* remove extra white layer */
    
}

.clients-carousel img {
    height: 80px;
    width: auto;
    flex-shrink: 0;
    border-radius: 10px;
    scroll-snap-align: center;
}

/* Contact */
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, #DC3545 0%, #000 100%);
    color: #fff;
}
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}
.contact-info p {
    font-size: 1.1rem;
    margin-bottom: 15px;
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.contact-form input, .contact-form textarea {
    padding: 15px;
    border: none;
    border-radius: 10px;
    font-family: inherit;
    background: rgba(255,255,255,0.1);
    color: #fff;
}
.contact-form input::placeholder, .contact-form textarea::placeholder {
    color: rgba(255,255,255,0.7);
}
.contact-form input:focus, .contact-form textarea:focus {
    outline: 2px solid #fff;
}

/* Footer */
.footer {
    background: #111;
    color: #fff;
    text-align: center;
    padding: 30px 0;
}

/* Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: #000;
        width: 100%;
        text-align: center;
        transition: 0.3s;
    }
    .nav-menu.active {
        left: 0;
    }
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .about-content, .contact-content, .services-grid {
        grid-template-columns: 1fr;
    }
    .strategy-grid .grid {
        grid-template-columns: 1fr;
    }
}
