
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #f5f5f5;
    line-height: 1.6;
}

/* 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 Section - INCREASED HEIGHT */
.hero {
    background-color: #111;
    position: relative;
    height: 590px; /* Increased from 300px to 450px */
    overflow: hidden;
}

.hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Info and Form Section */
.info-form-container {
    display: flex;
    padding: 0 10%;
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

/* Info Section */
.info-section {
    flex: 1;
    padding: 40px;
    background-color: #f5f5f5;
    border-radius: 5px 0 0 5px;
}

.info-section h2 {
    font-size: 26px;
    margin-bottom: 20px;
    color: #333;
    font-weight: 600;
    line-height: 1.3;
}

.info-section p {
    line-height: 1.6;
    color: #555;
    margin-bottom: 15px;
    font-size: 15px;
}

/* Service Form */
#service-form {
    flex: 1;
    background-color: white;
    padding: 30px;
    border-radius: 0 5px 5px 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    max-width: 500px;
}

.service-form h3 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 22px;
    color: #333;
    font-weight: 600;
}

.form-group {
    margin-bottom: 15px;
}

.form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    font-size: 14px;
    transition: all 0.3s;
}

.form-control:focus {
    border-color: #e75442;
    outline: none;
    box-shadow: 0 0 0 2px rgba(231, 84, 66, 0.2);
}

.btn {
    background-color: #e75442;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
}

.btn:hover {
    background-color: #d14836;
    transform: translateY(-2px);
    box-shadow: 0 5px 10px rgba(231, 84, 66, 0.3);
}

.required {
    text-align: right;
    color: #e75442;
    font-size: 14px;
    margin-top: 10px;
}

/* Services Section */
#services-section {
    padding: 60px 10%;
    text-align: center;
    margin-top: 30px;
}

.services-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #333;
    font-weight: 600;
    position: relative;
    padding-bottom: 15px;
}

.services-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #e75442;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background-color: #111;
    color: white;
    padding: 30px;
    border-radius: 10px;
    text-align: left;
    transition: all 0.3s;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

/* Updated image container with aspect ratio */
.service-image {
    width: 100%;
    position: relative;
    padding-top: 56.25%; /* 16:9 Aspect Ratio (height/width = 9/16 = 0.5625) */
    overflow: hidden;
    border-radius: 5px;
    margin-bottom: 20px;
}

.service-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-card h3 {
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 20px;
}

.service-card p {
    margin-bottom: 25px;
    line-height: 1.6;
    color: #ddd;
    font-size: 15px;
}

.service-card .btn {
    display: inline-block;
    text-decoration: none;
    padding: 10px 20px;
}

/* Why Choose Us Section */
#why-us {
    padding: 60px 10%;
    background-color: #f9f9f9;
    text-align: center;
}

.why-us h2 {
    font-size: 32px;
    margin-bottom: 10px;
    color: #333;
    font-weight: 600;
    position: relative;
    padding-bottom: 15px;
}

.why-us h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #e75442;
}

.why-us p {
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: #555;
    font-size: 16px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.feature-card {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background-color: #ffeeee;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon svg {
    width: 30px;
    height: 30px;
    color: #e75442;
}

.feature-card h3 {
    margin-bottom: 15px;
    color: #333;
    font-weight: 600;
    font-size: 18px;
}

.feature-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

/* Call to Action - Improved Design */
.cta {
    background: linear-gradient(135deg, #111 0%, #333 100%);
    padding: 70px 10%;
    color: white;
    position: relative;
    overflow: hidden;
    text-align: center;
    border-radius: 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
    z-index: 10;
}

.cta p {
    margin-bottom: 30px;
    font-size: 18px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 10;
    color: #ddd;
}

.cta .btn {
    display: inline-flex;
    text-decoration: none;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: 600;
    background-color: #e75442;
    border: none;
    border-radius: 50px;
    position: relative;
    z-index: 10;
    box-shadow: 0 5px 15px rgba(231, 84, 66, 0.4);
}

.cta .btn svg {
    margin-right: 8px;
}

.cta .btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(231, 84, 66, 0.5);
}

.cta-shape {
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    height: 100%;
    background-color: rgba(231, 84, 66, 0.3);
    clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
}

/* Footer */
footer {
    background-color: #111;
    color: white;
    padding: 60px 10% 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-logo {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    display: block;
    letter-spacing: 1px;
}

.footer-about p {
    color: #ccc;
    line-height: 1.7;
    margin-bottom: 15px;
    font-size: 14px;
}

.footer-links h3, .footer-services h3 {
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
}

.footer-links ul, .footer-services ul {
    list-style: none;
}

.footer-links li, .footer-services li {
    margin-bottom: 12px;
}

.footer-links a, .footer-services a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 14px;
}

.footer-links a:hover, .footer-services a:hover {
    color: #e75442;
}

.copyright {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #333;
    color: #888;
    display: flex;
    justify-content: space-between;
    font-size: 14px;
}

/* Fixed Phone Button */
.fixed-phone {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #e75442;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 5px 15px rgba(231, 84, 66, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.fixed-phone:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(231, 84, 66, 0.6);
}

.fixed-phone a {
    color: white;
    font-size: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.fixed-phone a:active {
    transform: scale(0.9);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(231, 84, 66, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(231, 84, 66, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(231, 84, 66, 0);
    }
}

/* Media Queries for Responsiveness */
@media (max-width: 992px) {
    .info-form-container {
        flex-direction: column;
    }
    
    .service-form {
        max-width: 100%;
        margin-top: 30px;
        border-radius: 5px;
    }
    
    .info-section {
        border-radius: 5px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    header {
        padding: 10px 5%;
        flex-direction: column;
    }
    
    nav {
        margin: 10px 0;
    }
    
    .phone-button {
        margin-top: 10px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .cta h2 {
        font-size: 28px;
    }
    
    .cta p {
        font-size: 16px;
    }
    
}
@media only screen and (max-width: 600px) {
 
    .copyright{
        display: block !important;
    }
    .hero{
        height:200px;
    }
    .info-form-container {
        margin-top: 0px;
    }
    .info-section{
        padding:0px;
    }
    .nav ul li a{
        font-size:12px;
    }
}
