*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    overflow-x: hidden;
}

header {
    background-color: #1b1b1b;
    padding: 15px 10%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
}

/* Header Styles - Reduced Height */
header {
    background-color: #111;
    padding: 12px 10%; /* Reduced padding for smaller height */
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    color: white;
    font-size: 20px; /* Reduced font size */
    font-weight: 600;
    display: flex;
    align-items: center;
}

.logo svg {
    width: 20px;
    height: 20px;
    margin-right: 8px;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 18px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 14px; /* Smaller font size */
    font-weight: 500;
    transition: color 0.3s;
    letter-spacing: 0.5px;
}

nav ul li a:hover {
    color: #e75442;
}

.phone-button {
    background-color: #e75442;
    color: white;
    padding: 8px 16px; /* Reduced padding */
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px; /* Smaller font size */
    transition: all 0.3s;
    display: flex;
    align-items: center;
}

.phone-button svg {
    margin-right: 5px;
    width: 16px;
    height: 16px;
}

.phone-button:hover {
    background-color: #d14836;
    transform: translateY(-2px);
}
.hero {
    background-color: #1b1b1b;
    padding: 50px 10%;
    display: flex;
    align-items: center;
    min-height: 400px;
}

.hero-img {
    flex: 1;
    text-align: center;
    transition: transform 0.5s ease;
}

.hero-img:hover {
    transform: translateY(-10px);
}

.hero-img img {
    max-width: 100%;
}

.hero-content {
    flex: 1;
    color: white;
    padding-left: 40px;
}

.hero-content h1 {
    font-size: 36px;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.hero-content h1::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background-color: #E75A45;
    bottom: -10px;
    left: 0;
    transition: width 0.3s ease;
}

.hero-content:hover h1::after {
    width: 100%;
}

.hero-content p {
    line-height: 1.6;
    margin-bottom: 20px;
}

.services {
    padding: 80px 10%;
    display: flex;
    align-items: center;
    background-color: #f9f9f9;
}

.services-content {
    flex: 1;
    padding-right: 40px;
}

.services-content h2 {
    font-size: 28px;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.services-content h3 {
    font-size: 24px;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.services-content h3::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 3px;
    background-color: #E75A45;
    bottom: -10px;
    left: 0;
    transition: width 0.3s ease;
}

.services-content:hover h3::after {
    width: 100%;
}

.services-content p {
    line-height: 1.6;
    margin-bottom: 25px;
}

.services-img {
    flex: 1;
    text-align: center;
    overflow: hidden;
}

.services-img img {
    max-width: 100%;
    transition: transform 0.5s ease;
}

.services-img:hover img {
    transform: scale(1.05);
}

.contact-btn {
    background-color: #E75A45;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background-color: #ca4632;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(231, 90, 69, 0.4);
}

.contact-btn i {
    margin-right: 8px;
}

footer {
    background-color: #0B0B2B;
    color: white;
    padding: 50px 10% 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.footer-section {
    flex: 1;
    margin-right: 40px;
    min-width: 200px;
    margin-bottom: 30px;
}

.footer-section h3 {
    font-size: 20px;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 2px;
    background-color: #E75A45;
    bottom: -10px;
    left: 0;
    transition: width 0.3s ease;
}

.footer-section:hover h3::after {
    width: 100%;
}

.footer-section p {
    line-height: 1.6;
    margin-bottom: 20px;
}

.quick-links ul, .services-links ul {
    list-style: none;
}

.quick-links ul li, .services-links ul li {
    margin-bottom: 10px;
}

.quick-links ul li a, .services-links ul li a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.quick-links ul li a:hover, .services-links ul li a:hover {
    color: #E75A45;
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.floating-phone {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #E75A45;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
    z-index: 99;
}

.floating-phone:hover {
    transform: scale(1.1);
    animation: none;
    background-color: #ca4632;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(231, 90, 69, 0.7);
    }
    
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(231, 90, 69, 0);
    }
    
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(231, 90, 69, 0);
    }
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-content, .services-content {
    animation: fadeIn 1s ease;
}

.services-img img, .hero-img img {
    animation: fadeIn 1.2s ease;
}

@media screen and (max-width: 768px) {
    .hero, .services {
        flex-direction: column;
        padding: 40px 5%;
    }
    
    .hero-content, .services-content {
        padding: 20px 0;
    }
    
    .services-img {
        margin-top: 30px;
    }
    
    nav ul {
        display: none;
    }
}