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

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

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

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

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

.logo img {
    height: auto;
    width: 250px; /* Reduced from 500px to 250px */
}

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

nav ul li {
    margin-left: 30px;
}

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

nav ul li a:hover {
    color: #F89922; /* Updated accent color */
}

/* Hero section */
.hero {
    background-color: #AFB1B4;
    color: white;
    text-align: center;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.03) 2%, transparent 2%),
        radial-gradient(circle at 60% 40%, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.03) 1%, transparent 1%),
        radial-gradient(circle at 40% 60%, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.03) 2%, transparent 2%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.03) 1%, transparent 1%),
        linear-gradient(45deg, transparent 48%, rgba(255, 255, 255, 0.05) 48%, rgba(255, 255, 255, 0.05) 52%, transparent 52%),
        linear-gradient(135deg, transparent 48%, rgba(255, 255, 255, 0.05) 48%, rgba(255, 255, 255, 0.05) 52%, transparent 52%);
    background-size: 50px 50px, 80px 80px, 60px 60px, 100px 100px, 150px 150px, 150px 150px;
    opacity: 0.8;
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(90deg, rgba(248, 153, 34, 0.05) 0%, rgba(248, 153, 34, 0.05) 1%, transparent 1%, transparent 99%, rgba(248, 153, 34, 0.05) 99%, rgba(248, 153, 34, 0.05) 100%),
        linear-gradient(0deg, rgba(248, 153, 34, 0.05) 0%, rgba(248, 153, 34, 0.05) 1%, transparent 1%, transparent 99%, rgba(248, 153, 34, 0.05) 99%, rgba(248, 153, 34, 0.05) 100%);
    background-size: 40px 40px;
    opacity: 0.7;
    z-index: 0;
    animation-name: moveGrid;
    animation-duration: 30s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

@keyframes moveGrid {
    0% {
        background-position: 0px 0px;
    }
    100% {
        background-position: 40px 40px;
    }
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.btn {
    display: inline-block;
    background-color: #F89922; /* Updated accent color */
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    background-color: #e98710; /* Slightly darker accent color for hover */
}

/* Section styling */
section {
    padding: 80px 0;
}

section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: #AFB1B4; /* Updated primary color */
}

/* About section */
.about {
    background-color: #ffffff;
}

.about p {
    max-width: 800px;
    margin: 0 auto 20px;
    text-align: center;
}

/* Services section */
.services {
    background-color: #f5f5f5;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    border-top: 3px solid #F89922; /* Added accent color border */
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card h3 {
    color: #F89922; /* Updated accent color */
    margin-bottom: 15px;
}

/* Contact section */
.contact {
    background-color: #ffffff;
    text-align: center;
}

.contact p {
    max-width: 600px;
    margin: 0 auto 40px;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.contact-info h3 {
    color: #F89922; /* Updated accent color */
    margin-bottom: 10px;
}

/* Footer */
footer {
    background-color: #AFB1B4; /* Updated primary color */
    color: white;
    padding: 20px 0;
    text-align: center;
}

.company-info {
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.company-info p {
    padding: 5px 0;
}

/* Responsive design */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
    }
    
    nav ul {
        margin-top: 20px;
    }
    
    nav ul li {
        margin: 0 15px;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    section {
        padding: 60px 0;
    }
}