

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: #1a3a5f;
}

/* Top Bar */
.top-bar {
    background-color: #1a3a5f;
    color: white;
    padding: 10px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.company-name {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 1px;
    font-family: 'Poppins', sans-serif;
}

.company-name span {
    color: #4CAF50;
}

.phone-number {
    font-size: 18px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.phone-number i {
    color: #4CAF50;
}

/* Navbar */
.navbar {
    background-color: white;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 70px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: #1a3a5f;
}

.nav-links a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: #4CAF50;
    left: 0;
    bottom: -5px;
    transition: width 0.3s ease;
}

.nav-links a:hover:after {
    width: 100%;
}

/* Header Section */


.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.header-text {
    flex: 1;
    padding-right: 50px;
}

.header-text h1 {
    font-size: 48px;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
}

.header-text p {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 600px;
}

.cta-button {
    display: inline-block;
    background-color: #4CAF50;
    color: white;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    border: 2px solid #4CAF50;
}

.cta-button:hover {
    background-color: transparent;
    color: #4CAF50;
}

.header-image {
    flex: 1;
    text-align: right;
}

.header-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Counter Section */
.counter-section {
    background-color: #f8f9fa;
    padding: 80px 5%;
}

.counter-container {
    display: flex;
    justify-content: space-around;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 30px;
}

.counter-item {
    text-align: center;
    padding: 20px;
}

.counter-number {
    font-size: 48px;
    font-weight: 700;
    color: #1a3a5f;
    margin-bottom: 10px;
}

.counter-text {
    font-size: 18px;
    color: #555;
    font-weight: 500;
}

/* About Us Section */
.about-section {
    padding: 100px 5%;
    background-color: white;
}

.about-container {
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 60px;
}

.about-content {
    flex: 1;
}

.about-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
    position: relative;
}

.about-content h2:after {
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    background-color: #4CAF50;
    left: 0;
    bottom: -10px;
}

.about-content p {
    margin-bottom: 25px;
    font-size: 17px;
    color: #555;
}

.features {
    margin-top: 30px;
}

.features li {
    margin-bottom: 15px;
    list-style: none;
    display: flex;
    align-items: flex-start;
}

.features li i {
    color: #4CAF50;
    margin-right: 10px;
    margin-top: 5px;
}

.about-images {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.about-images img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.about-images img:hover {
    transform: translateY(-10px);
}

.img-1 {
    grid-column: 1;
    grid-row: 1;
}

.img-2 {
    grid-column: 2;
    grid-row: 1 / span 2;
    margin-top: 40px;
}

/* Services Section */
.services-section {
    padding: 100px 5%;
    background-color: #f8f9fa;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 36px;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title h2:after {
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    background-color: #4CAF50;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
}

.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    background-color: #1a3a5f;
    color: white;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
}

.service-content {
    padding: 30px;
}

.service-content h3 {
    margin-bottom: 15px;
    font-size: 22px;
}

.service-content p {
    color: #666;
    margin-bottom: 20px;
}

.emergency-service {
    border-top: 5px solid #e74c3c;
}

.emergency-service .service-icon {
    background-color: #e74c3c;
}

/* FAQ Section */
.faq-section {
    padding: 100px 5%;
    background-color: white;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    background-color: #f8f9fa;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
    font-size: 18px;
}

.faq-question:hover {
    background-color: #f1f1f1;
}

.faq-answer {
    padding: 20px;
    display: none;
    background-color: white;
    color: #555;
    border-top: 1px solid #eaeaea;
}

.faq-city {
    display: block;
    text-align: right;
    margin-top: 15px;
    font-style: italic;
    color: #1a3a5f;
    font-weight: 500;
}

.faq-toggle {
    color: #4CAF50;
    font-size: 20px;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

/* Footer */
.footer {
    background-color: #1a3a5f;
    color: white;
    padding: 60px 5% 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
    min-width: 250px;
}

.footer-column h3 {
    color: white;
    margin-bottom: 25px;
    font-size: 22px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3:after {
    content: '';
    position: absolute;
    width: 50px;
    height: 2px;
    background-color: #4CAF50;
    left: 0;
    bottom: 0;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #4CAF50;
}

.contact-info {
    list-style: none;
}

.contact-info li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.contact-info i {
    margin-right: 10px;
    color: #4CAF50;
    margin-top: 5px;
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #aaa;
    font-size: 14px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .header-content {
        flex-direction: column;
        text-align: center;
    }

    .header-text {
        padding-right: 0;
        margin-bottom: 50px;
    }

    .about-container {
        flex-direction: column;
    }

    .about-images {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .top-bar {
        flex-direction: column;
        gap: 10px;
        text-align: center;
        padding: 15px 5%;
    }

    .nav-container {
        height: auto;
        padding: 15px 20px;
    }

    .nav-links {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        text-align: center;
    }

    .header-text h1 {
        font-size: 36px;
    }

    .counter-container {
        flex-direction: column;
        gap: 40px;
    }
}




.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.header-text {
    flex: 1;
    padding-right: 50px;
}

.header-text h1 {
    font-size: 48px;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
}

.header-text p {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 600px;
}

.cta-button {
    display: inline-block;
    background-color: #4CAF50;
    color: white;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    border: 2px solid #4CAF50;
}

.cta-button:hover {
    background-color: transparent;
    color: #4CAF50;
}

.header-image {
    flex: 1;
    text-align: right;
}

.header-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Counter Section */
.counter-section {
    background-color: #f8f9fa;
    padding: 80px 5%;
}

.counter-container {
    display: flex;
    justify-content: space-around;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 30px;
}

.counter-item {
    text-align: center;
    padding: 20px;
}

.counter-number {
    font-size: 48px;
    font-weight: 700;
    color: #1a3a5f;
    margin-bottom: 10px;
}

.counter-text {
    font-size: 18px;
    color: #555;
    font-weight: 500;
}

/* Service Areas Section */
.service-areas-section {
    padding: 100px 5%;
    background-color: white;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 36px;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title h2:after {
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    background-color: #4CAF50;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
}

.areas-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 18px;
    color: #555;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.area-item {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    border-left: 4px solid #1a3a5f;
}

.area-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    background-color: #e9f7ef;
    border-left-color: #4CAF50;
}

.area-item i {
    color: #1a3a5f;
    font-size: 24px;
    margin-bottom: 10px;
}

.area-item h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.highlight {
    background-color: #e9f7ef;
    border-left-color: #4CAF50;
    font-weight: 600;
}

/* Additional Services Section */
.additional-services-section {
    padding: 100px 5%;
    background-color: #f8f9fa;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-detail-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-detail-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-image {
    flex: 0 0 40%;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-detail-card:hover .service-image img {
    transform: scale(1.05);
}

.service-detail-content {
    flex: 1;
    padding: 30px;
}

.service-detail-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a3a5f;
}

.service-detail-content p {
    color: #666;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    margin-top: 20px;
}

.service-features li {
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
}

.service-features li i {
    color: #4CAF50;
    margin-right: 10px;
    margin-top: 5px;
}

/* Contact Section */
.contact-section {
    padding: 100px 5%;
    background-color: white;
}

.contact-container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    gap: 50px;
}

.map-container {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 500px;
}

#map {
    width: 100%;
    height: 100%;
}

.contact-info {
    flex: 1;
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 10px;
}

.contact-info h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1a3a5f;
}

.contact-detail {
    margin-bottom: 25px;
    display: flex;
    align-items: flex-start;
}

.contact-detail i {
    color: #4CAF50;
    font-size: 20px;
    margin-right: 15px;
    margin-top: 5px;
}

.contact-detail h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.contact-detail p {
    color: #666;
}

/* Footer */
.footer {
    background-color: #1a3a5f;
    color: white;
    padding: 60px 5% 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
    min-width: 250px;
}

.footer-column h3 {
    color: white;
    margin-bottom: 25px;
    font-size: 22px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3:after {
    content: '';
    position: absolute;
    width: 50px;
    height: 2px;
    background-color: #4CAF50;
    left: 0;
    bottom: 0;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #4CAF50;
}

.contact-info-list {
    list-style: none;
}

.contact-info-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.contact-info-list i {
    margin-right: 10px;
    color: #4CAF50;
    margin-top: 5px;
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #aaa;
    font-size: 14px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .header-content {
        flex-direction: column;
        text-align: center;
    }

    .header-text {
        padding-right: 0;
        margin-bottom: 50px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .contact-container {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .top-bar {
        flex-direction: column;
        gap: 10px;
        text-align: center;
        padding: 15px 5%;
    }

    .nav-container {
        height: auto;
        padding: 15px 20px;
    }

    .nav-links {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        text-align: center;
    }

    .header-text h1 {
        font-size: 36px;
    }

    .counter-container {
        flex-direction: column;
        gap: 40px;
    }

    .areas-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-detail-card {
        flex-direction: column;
    }

    .service-image {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .areas-grid {
        grid-template-columns: 1fr;
    }
}




* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: #1a3a5f;
}

/* Top Bar */
.top-bar {
    background-color: #1a3a5f;
    color: white;
    padding: 10px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.company-name {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 1px;
    font-family: 'Poppins', sans-serif;
}

.company-name span {
    color: #4CAF50;
}

.phone-number {
    font-size: 18px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.phone-number i {
    color: #4CAF50;
}

/* Navbar */
.navbar {
    background-color: white;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 70px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: #1a3a5f;
}

.nav-links a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: #4CAF50;
    left: 0;
    bottom: -5px;
    transition: width 0.3s ease;
}

.nav-links a:hover:after {
    width: 100%;
}

/* Premium Services Section */
.premium-services-section {
    padding: 100px 5%;
    background-color: white;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 36px;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title h2:after {
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    background-color: #4CAF50;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
}

/* Premium Service - Layout 1: Content Left, Features Right */
.premium-service-1 {
    display: flex;
    max-width: 1200px;
    margin: 0 auto 80px;
    gap: 60px;
    align-items: center;
}

.service-content-left {
    flex: 1;
}

.service-content-left h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a3a5f;
}

.service-content-left p {
    color: #555;
    margin-bottom: 25px;
    font-size: 17px;
    line-height: 1.7;
}

.features-box-right {
    flex: 0 0 45%;
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-top: 5px solid #4CAF50;
}

.features-box-right h4 {
    font-size: 24px;
    margin-bottom: 25px;
    text-align: center;
    color: #1a3a5f;
}

.features-list {
    list-style: none;
}

.features-list li {
    margin-bottom: 18px;
    padding-left: 30px;
    position: relative;
}

.features-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: bold;
    font-size: 18px;
}

/* Premium Service - Layout 2: Image Left, Content Right */
.premium-service-2 {
    display: flex;
    max-width: 1200px;
    margin: 0 auto 80px;
    gap: 60px;
    align-items: center;
}

.service-image-left {
    flex: 0 0 50%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-image-left img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.service-image-left:hover img {
    transform: scale(1.05);
}

.service-content-right {
    flex: 1;
}

.service-content-right h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a3a5f;
}

.service-content-right p {
    color: #555;
    margin-bottom: 25px;
    font-size: 17px;
    line-height: 1.7;
}

.benefits-list {
    list-style: none;
    margin-top: 25px;
}

.benefits-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.benefits-list i {
    color: #4CAF50;
    margin-right: 12px;
    margin-top: 5px;
    font-size: 18px;
}

/* Service Areas Section */
.service-areas-section {
    padding: 100px 5%;
    background-color: #f8f9fa;
}

.areas-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 18px;
    color: #555;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.area-item {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    border-left: 4px solid #1a3a5f;
}

.area-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    background-color: #e9f7ef;
    border-left-color: #4CAF50;
}

.area-item i {
    color: #1a3a5f;
    font-size: 24px;
    margin-bottom: 10px;
}

.area-item h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.highlight {
    background-color: #e9f7ef;
    border-left-color: #4CAF50;
    font-weight: 600;
}

/* Contact Section */
.contact-section {
    padding: 100px 5%;
    background-color: white;
}

.contact-container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    gap: 50px;
}

.map-container {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 500px;
}

#map {
    width: 100%;
    height: 100%;
}

.contact-info {
    flex: 1;
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 10px;
}

.contact-info h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1a3a5f;
}

.contact-detail {
    margin-bottom: 25px;
    display: flex;
    align-items: flex-start;
}

.contact-detail i {
    color: #4CAF50;
    font-size: 20px;
    margin-right: 15px;
    margin-top: 5px;
}

.contact-detail h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.contact-detail p {
    color: #666;
}

/* Footer */
.footer {
    background-color: #1a3a5f;
    color: white;
    padding: 60px 5% 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
    min-width: 250px;
}

.footer-column h3 {
    color: white;
    margin-bottom: 25px;
    font-size: 22px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3:after {
    content: '';
    position: absolute;
    width: 50px;
    height: 2px;
    background-color: #4CAF50;
    left: 0;
    bottom: 0;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #4CAF50;
}

.contact-info-list {
    list-style: none;
}

.contact-info-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.contact-info-list i {
    margin-right: 10px;
    color: #4CAF50;
    margin-top: 5px;
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #aaa;
    font-size: 14px;
    max-width: 1200px;
    margin: 0 auto;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    background-color: #4CAF50;
    color: white;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid #4CAF50;
    margin-top: 20px;
}

.cta-button:hover {
    background-color: transparent;
    color: #4CAF50;
}

/* Responsive Styles */
@media (max-width: 992px) {

    .premium-service-1,
    .premium-service-2 {
        flex-direction: column;
        gap: 40px;
    }

    .features-box-right {
        width: 100%;
    }

    .service-image-left {
        width: 100%;
    }

    .contact-container {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .top-bar {
        flex-direction: column;
        gap: 10px;
        text-align: center;
        padding: 15px 5%;
    }

    .nav-container {
        height: auto;
        padding: 15px 20px;
    }

    .nav-links {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        text-align: center;
    }

    .areas-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .areas-grid {
        grid-template-columns: 1fr;
    }

    .features-box-right {
        padding: 25px;
    }
}
