* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #f4f4f4;
    color: #333;
}

header {
    background-color: #333;
    color: #fff;
    padding: 15px 0;
}

.nav-links {
    list-style: none;
    display: flex;
    justify-content: center;
}

.nav-links li {
    margin: 0 20px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
}

.cta {
    background-color: #007bff;
    padding: 10px 20px;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
}

/* Contact Us Page Styles */
.contact {
    padding: 50px;
    text-align: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 50%;
    margin: 0 auto;
}

.contact-form label {
    text-align: left;
}

.contact-form input, .contact-form textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 100%;
}

.contact-form button {
    padding: 10px 20px;
    background-color: #28a745;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.contact-details {
    margin-top: 20px;
}

.contact-details p {
    margin: 10px 0;
}

/* Services Page Styles */
/* Services Page Styles */
.services-container {
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 20px;
}

.services-header {
    text-align: center;
    margin-bottom: 50px;
}

.services-header h1 {
    font-size: 3rem;
    margin-bottom: 12px;
}

.tagline {
    font-size: 1.25rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.service-item {
    background: #fff;
    padding: 35px 30px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.service-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.service-item h3 {
    font-size: 1.6rem;
    margin-bottom: 18px;
    color: #222;
}

.service-item p {
    line-height: 1.65;
    color: #444;
}

/* Extra Benefits */
.services-extra {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 10px;
    margin-bottom: 50px;
    text-align: center;
}

.benefits-list {
    list-style: none;
    padding: 0;
    max-width: 700px;
    margin: 25px auto 0;
    text-align: left;
}

.benefits-list li {
    padding: 10px 0;
    font-size: 1.1rem;
    border-bottom: 1px solid #eee;
}

/* Reuse the same CTA button from About page */
.btn-primary {
    display: inline-block;
    background-color: #d32f2f;     /* Change to your brand color */
    color: white;
    padding: 14px 34px;
    font-size: 1.25rem;
    text-decoration: none;
    border-radius: 6px;
    margin-top: 10px;
    transition: all 0.3s;
}

.btn-primary:hover {
    background-color: #b71c1c;
    transform: translateY(-2px);
}
.services-cta {
	text-align: center;
}


/* About Us Page Styles */
.about {
    padding: 50px;
    background-color: #fff;
}

.about-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.about-content img {
    width: 45%;
    border-radius: 10px;
}



.about-text h2 {
    margin-bottom: 20px;
    font-size: 2rem;
    color: #007bff;
}

.about-text p {
    line-height: 1.6;
    margin-bottom: 15px;
}

.btn-secondary {
    background-color: #007bff;
    padding: 10px 20px;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
}

/* Footer */
.footer-content {
    background-color: #333;
    color: #fff;
    padding: 20px;
    text-align: center;
}
/* About Page Styles */
.about-container {
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 20px;
}

.about-header {
    text-align: center;
    margin-bottom: 40px;
}

.about-header h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.tagline {
    font-size: 1.3rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
}

.about-image {
    text-align: center;
    margin-bottom: 40px;
}

.about-img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.about-img:hover {
    transform: scale(1.03);
}

.about-text {
    line-height: 1.7;
    font-size: 1.1rem;
}

.about-text h2 {
    margin-top: 2.5rem;
    color: #333;
}

.equipment-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
    margin: 20px 0;
}

.equipment-list li {
    background: #f8f8f8;
    padding: 12px 18px;
    border-radius: 6px;
    font-weight: 500;
}

/* Why Us Section */
.why-us {
    margin: 60px 0 40px;
    text-align: center;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.why-item {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: left;
}
.about-cta {
	text-align: center;
}

/* CTA Button */
.btn-primary {
    display: inline-flex;
    background-color: #d32f2f;
    color: white;
    padding: 16px 32px;            /* Same vertical padding */
    font-size: 1.1rem;
    text-decoration: none;
    border-radius: 5px;
    line-height: 1.2;
    box-sizing: border-box;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-primary:hover {
    background-color: #b71c1c;
    transform: translateY(-2px);
}
/* Why Choose Us Section Styles */
.why-choose-us {
    padding: 50px;
    background-color: #fff;
    text-align: center;
}

.why-choose-us h2 {
    margin-bottom: 30px;
    font-size: 2rem;
    color: #007bff;
}

.reasons {
    display: flex;
    justify-content: center;
    gap: 20px; /* Space between the reasons */
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

.reason {
    background-color: #f9f9f9; /* Light background for contrast */
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    width: 220px; /* Set a fixed width for reason boxes */
    flex: 1; /* Allow flexibility */
}

.reason h3 {
    margin-bottom: 10px;
    color: #333;
}

.reason p {
    line-height: 1.6; /* Improved readability */
}
/* Welcome Section Styles */
/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('hero-background.jpg'); /* replace with your hero image */
    background-size: cover;
    background-position: center;
    height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.hero-content h1 {
    font-size: 3.8rem;
    margin-bottom: 15px;
}

.hero-subtitle {
    font-size: 1.5rem;
    max-width: 700px;
    margin: 0 auto 30px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;           /* This keeps them vertically centered */
}
.teaser-services {
	text-align: center;
}
.whatweoffer {
	text-align: center;
}
	

.btn-secondary {
    display: inline-flex;
	align-itmes: center;
    background-color: transparent;
    color: white;
    padding: 16px 32px;            /* Same padding as primary */
    font-size: 1.1rem;
    text-decoration: none;
    border-radius: 5px;
    line-height: 1.2;
    box-sizing: border-box;
    outline: 2px solid white;
    transition: all 0.3s ease;
    white-space: nowrap;
	
}

.btn-secondary:hover {
    background-color: white;
    color: #222;
    outline-color: white;
}

/* Why Choose Us & Teaser */
.section-container {
    max-width: 1100px;
    margin: 60px auto;
    padding: 0 20px;
}

.reasons-grid, .teaser-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.reason-card, .teaser-item {
    background: #fff;
    padding: 35px 25px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    text-align: center;
}

.reason-card h3, .teaser-item h3 {
    color: #222;
    margin-bottom: 18px;
}

/* CTA Banner */
.cta-banner {
    background-color: #d32f2f;
    color: white;
    text-align: center;
    padding: 70px 20px;
}

.cta-banner h2 {
    font-size: 2.4rem;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 25px;
}

/* Footer */
.footer-content {
    background: #222;
    color: #ddd;
    padding: 50px 20px 30px;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.footer-column h3 {
    color: #fff;
    margin-bottom: 15px;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #444;
    padding-top: 25px;
    font-size: 0.95rem;
}
