:root {
    --primary-red: #c62828;
    --primary-blue: #1565c0;
    --accent-blue: #1976d2;
    --light-blue: #e3f2fd;
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --dark-gray: #333333;
    --text-color: #444444;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;


}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}

/* Responsive Design */

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
    overflow-x: hidden;
    scroll-behavior: smooth;

}


.logo img {
    width: 120px;
    height: auto;
    margin: 10px 10px;

}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
    color: #183a6d;
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: var(--primary-blue);
    transition: var(--transition);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    display: inline-block;
    padding: 10px 15px;
    background-color: var(--primary-blue);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;

}

.btn:hover {
    background-color: var(--accent-blue);
    transform: translateY(-3px);
}

.btn-red {
    background-color: var(--primary-red);
}

.btn-red:hover {
    background-color: #b71c1c;
}

.text-center {
    text-align: center;
}

.section-padding {
    padding: 80px 0;
}

.section-title {
    margin-bottom: 50px;
    text-align: center;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--dark-gray);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-blue);
    border-radius: 2px;
}

.section-title p {
    color: #666;
    max-width: 700px;
    margin: 20px auto 0;
}


/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: var(--shadow);
    z-index: 1000;
    padding: 0px 0 7px 0;
    height: 70px;
    transition: var(--transition);
}

header.scrolled {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 8px;
    padding: 10px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}


/* Navigation Styles - revert to original */
.nav-links {
    list-style: none;
    display: flex;
    gap: 24px;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-links li {
    display: inline-block;
}

.nav-links a {
    color: var(--primary-blue, #183a6d);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    padding: 8px 0;
    position: relative;
    transition: color 0.2s;
}

.nav-links a::after {
    content: '';
    display: block;
    width: 0;
    height: 3px;
    background: var(--primary-red, #e53935);
    position: absolute;
    left: 0;
    bottom: -2px;
    transition: width 0.3s;
    border-radius: 2px;
}

.nav-links a.active::after,
.nav-links a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    font-size: 2rem;
    color: var(--primary-blue, #183a6d);
    cursor: pointer;
    margin-left: 18px;
    transition: transform 0.3s;
}

.menu-toggle.open {
    transform: rotate(90deg) scale(1.2);
}

.menu-toggle.close {
    transform: rotate(0deg) scale(1);
}

@media (max-width: 900px) {
    .nav-links {
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: #fff;
        box-shadow: 0 4px 24px rgba(24, 58, 109, 0.08);
        gap: 0;
        display: none;
        z-index: 100;
        opacity: 0;
        transform: translateY(-20px);
        transition: opacity 0.3s, transform 0.3s;
    }

    .nav-links.active {
        display: flex;
        opacity: 1;
        transform: translateY(0);
    }

    .nav-links li {
        width: 35%;
        /* Adjust width for better spacing (area around li)*/
        text-align: center;
        margin: 0;
        padding: 3px 0;
    }

    .menu-toggle {
        display: block;
    }
}

/* header nav */

.nav-links .dropdown {
    position: relative;
}

.nav-links .dropdown-menu {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    background: #fff;
    min-width: 180px;
    box-shadow: 0 4px 16px rgba(24, 58, 109, 0.10);
    border-radius: 6px;
    z-index: 100;
    padding: 8px 0;
}

.nav-links .dropdown:hover .dropdown-menu,
.nav-links .dropdown:focus-within .dropdown-menu {
    display: block;
}

.nav-links .dropdown-menu li {
    width: 100%;
    text-align: center;
    padding: 2px 0;
}

.nav-links .dropdown-menu a {
    color: var(--primary-blue, #183a6d);
    padding: 3px 0px;
    display: block;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    border-radius: 4px;
}

.nav-links .dropdown-menu a:hover {

    color: var(--primary-blue);
}

/* Mobile dropdown */
@media (max-width: 900px) {
    .nav-links .dropdown-menu {
        position: static;
        box-shadow: none;
        background: #fff;
        min-width: unset;
        border-radius: 0;
        padding: 0;
    }

    .nav-links .dropdown-menu a {
        padding: 3px 2px;

    }
}

/* ...existing code... */

/* Hero Section */
.hero {
    height: 420px;
    background: linear-gradient(rgba(0, 0, 0, 0.416), rgba(0, 0, 0, 0.7)), url('project-img/header.avif') center/cover no-repeat;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--white);


}



.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--light-blue);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

/* Breadcrumbs nav */
.breadcrumb-nav {
    background: #f7f8fa;
    padding: 14px 0;
    font-size: 1rem;
    border-bottom: 1px solid #e3e7ee;
}

.breadcrumb-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.breadcrumb-list li {
    display: flex;
    align-items: center;
    color: var(--primary-blue, #183a6d);
    font-weight: 500;
}

.breadcrumb-list a {
    color: var(--primary-blue, #183a6d);
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb-list a:hover {
    color: var(--primary-red, #e53935);
    text-decoration: underline;
}

.breadcrumb-list .active {
    color: var(--primary-red, #e53935);
    font-weight: 700;
    pointer-events: none;
}

.breadcrumb-separator {
    color: #b0b8c1;
    margin: 0 2px;
    font-size: 1.1em;
}

.breadcrumb-list i {
    margin-right: 4px;
    font-size: 1em;
}

/* Responsive: stack on very small screens */
@media (max-width: 500px) {
    .breadcrumb-list {
        flex-wrap: wrap;
        font-size: 0.97rem;
        gap: 2px;
    }

    .breadcrumb-nav {
        padding: 10px 0;
    }
}

/* Services Section */
.services {
    background-color: var(--light-gray);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {

    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-img {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 3rem;


}

.service-content {
    padding: 25px;
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-blue);
}

.service-content ul {
    padding-left: 20px;
    margin: 15px 0;
}

.service-content li {
    margin-bottom: 8px;
}

/* service-btns */
.buttons-container {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.primary-btn {
    background: var(--primary-blue);
    color: var(--white);
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 6px;
}

.secondary-btn {
    background: transparent;
    color: var(--primary-red);
    border: 2px solid var(--primary-red);
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* slider */
.projects-slider-section {
    background: #f7f8fa;
    padding: 60px 0 40px 0;
}

.slider-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    width: 100%;
}

.slider-track {
    display: flex;
    gap: 12px;
    overflow: hidden;
    width: 100%;
    max-width: 1200px;
    scroll-behavior: smooth;
    justify-content: center;
}

.slider-item {
    min-width: 320px;
    max-height: 320px;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;

    transition: transform 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.slider-arrow {
    background: #fff;
    border: none;
    color: var(--primary-blue);
    font-size: 1.5rem;
    cursor: pointer;
    border-radius: 100%;
    box-shadow: 0 2px 8px rgba(24, 58, 109, 0.10);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    z-index: 2;
}

.slider-arrow:hover {
    background: var(--primary-blue);
    color: #fff;
}

.slider-arrows-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 22px;
    margin-top: 18px;
    width: 100%;
}

@media (max-width: 900px) {

    .slider-item {
        min-width: 260px;
        max-width: 260px;
    }

    .slider-track {
        gap: 12px;
    }

    .slider-item img {
        height: 140px;
    }
}

@media (max-width: 600px) {
    .slider-container {
        gap: 0;
        justify-content: center;
    }

    .slider-track {

        justify-content: center;
        width: 160px;
        max-width: 160px;
        overflow: hidden;
        scroll-behavior: smooth;
    }

    .slider-item {
        width: 160px;
        max-width: 160px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .slider-item img {
        height: 160px;
        width: 100%;
        object-fit: cover;
        border-radius: 8px;
    }

    .slider-arrow {
        font-size: 1.5rem;
        width: 36px;
        height: 36px;
    }
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h2 {
    margin-bottom: 20px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.value-card {
    background: var(--light-blue);
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.value-card i {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.value-card h3 {
    margin-bottom: 10px;
    color: var(--primary-blue);
}

/* Projects Section */
.projects {
    background-color: var(--light-gray);
}

.projects-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.filter-btn {
    padding: 8px 20px;
    background: var(--white);
    border: 1px solid #ddd;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--primary-blue);
    color: var(--white);
    border-color: var(--primary-blue);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.project-card {

    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.project-img {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin-top: 6px;
    border-radius: 8px;

}

.project-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    display: block;
}

.project-content {
    padding: 20px;
}

.project-content h3 {
    color: var(--primary-blue);
    margin-bottom: 10px;
}

/* Contact Section */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
    padding-top: 70px;
    /* To prevent content being hidden behind fixed header */
    scroll-behavior: smooth;
    padding-right: 3px;

}

.contact-info h4 {
    margin: 4px 0 15px 0;

}

.contact-info h3 {
    margin-bottom: 20px;
    color: var(--primary-blue);
}

.contact-info p {
    margin-left: 10px;
    color: #666;
}

.contact-details {
    margin-bottom: 30px;
}

.contact-details div {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.contact-details i {
    color: var(--primary-blue);
    font-size: 1.2rem;
    margin-right: 15px;
    min-width: 20px;
    margin-top: 3px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    border-color: var(--primary-blue);
    outline: none;
    box-shadow: 0 0 0 2px rgba(21, 101, 192, 0.1);
}

.contact-form textarea {
    height: 150px;
    resize: vertical;
}

/* Footer */
footer {
    background-color: var(--dark-gray);
    color: var(--white);
    padding: 60px 0 0;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--white);
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-blue);
}

.footer-col p {
    color: #bbb;
    margin-bottom: 20px;
}

.footer-links li {
    margin-bottom: 10px;
    list-style: none;
}

.footer-links a {
    color: #bbb;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-blue);
    padding-left: 5px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--primary-blue);
    transform: translateY(-5px);
}

.copyright {
    background-color: #222;
    padding: 6px 0;
    text-align: center;
    border-top: 1px solid #444;
}

.copyright p {
    color: #bbb;
    margin: 0;
    font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 992px) {

    .about-content,
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--white);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 40px;
        transition: var(--transition);
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        margin: 0 0 25px 0;
    }

    .hero-btns {
        flex-direction: column;
        gap: 15px;
    }

    .btn {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .section-padding {
        padding: 60px 0;
    }

    .section-title h2 {
        font-size: 2rem;
    }
}

.three-step-process {
    background: #f7f8fa;
    padding: 40px 0;
    font-family: 'Montserrat', 'Open Sans', sans-serif;
}

.process-header {
    text-align: center;
    margin-bottom: 32px;
}

.process-subtitle {
    color: #e53935;
    font-weight: 600;
    margin-bottom: 8px;
}

.process-title {
    color: #183a6d;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 0;
}

.process-content {
    display: flex;
    max-width: 950px;
    margin: 0 auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(24, 58, 109, 0.08);
    overflow: hidden;
    flex-wrap: wrap;
}

.steps-list {
    display: flex;
    flex-direction: column;
    background: #f7f8fa;
    min-width: 120px;
    align-items: stretch;
    justify-content: center;
    border-right: 2px solid #e3e7ee;
}

.step-tab {
    cursor: pointer;
    padding: 32px 0 32px 0;
    text-align: center;
    border-left: 6px solid transparent;
    transition: background 0.2s, border-color 0.2s;
}

.step-tab.active {
    background: #e53935;
    color: #fff;
    border-left: 6px solid #183a6d;
}

.step-tab-label {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 6px;
    letter-spacing: 1px;
}

.step-tab-number {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.step-details {
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: space-between;
    padding: 32px;
    gap: 32px;
}

.step-info {
    flex: 1;
    min-width: 220px;
}

.step-title {
    font-size: 1.5rem;
    color: #183a6d;
    font-weight: 700;
    margin-bottom: 12px;
}

.step-title span {
    color: #e53935;
    font-weight: 700;
    margin-right: 8px;
}

.step-desc {
    color: #183a6d;
    font-size: 1.05rem;
    margin-bottom: 18px;
}

.step-btn {
    background: #e53935;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 12px 28px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.step-btn:hover {
    background: #183a6d;
}

.step-img-container {
    min-width: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-img {
    max-width: 180px;
    width: 100%;
    height: auto;
    background: #ffffff;
    display: block;
}

@media (max-width: 900px) {
    .process-content {
        flex-direction: column;
    }

    .steps-list {
        flex-direction: row;
        border-right: none;
        border-bottom: 2px solid #e3e7ee;
        min-width: unset;
    }

    .step-tab {
        flex: 1;
        padding: 18px 0;
        border-left: none;
        border-bottom: 6px solid transparent;
    }

    .step-tab.active {
        border-bottom: 6px solid #183a6d;
        border-left: none;
    }

    .step-details {
        flex-direction: column;
        gap: 18px;
        padding: 24px;
    }

    .step-img-container {
        min-width: unset;
    }
}


/* Services Page */
/* Popular Services Section */

.popular-services-section {
    background: #f7f8fa;
    padding: 0;
    margin-bottom: 40px;
}

.popular-services-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    background: #fff;

    overflow: hidden;
    box-shadow: 0 4px 24px rgba(24, 58, 109, 0.08);
}

.popular-services-left {
    background: #183a6d;
    padding: 40px 12px;
    flex: 1 1 320px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 280px;
}

.popular-services-right {
    flex: 2 1 300px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 12px 16px;
    background: #f7f8fa;
    gap: 14px;
    flex-wrap: wrap;
}

.service-icon-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-width: 140px;
    margin: 6px 0;
}

.service-icon-block i {
    font-size: 3rem;
    color: #e53935;
    margin-bottom: 4px;
}

.service-icon-block p {
    color: #183a6d;
    font-weight: 600;
    font-size: 1.08rem;
    margin: 0;
    text-align: center;
}

@media (max-width: 900px) {
    .popular-services-container {
        flex-direction: column;
    }

    .popular-services-left,
    .popular-services-right {
        min-width: unset;
        width: 100%;
        padding: 28px 12px;
        text-align: center;
    }

    .popular-services-right {
        justify-content: center;
        gap: 18px;
    }

    .service-icon-block {
        min-width: 120px;
    }
}

.services-grid img {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin-top: 6px;
    border-radius: 8px;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    display: block;

}


/* FAQ Section */
:root {
    --bg: #0f1220;
    --card: #1a1f2a;
    --text: #e8eaf6;
    --muted: #a2a8b6;
    --primary: #4f8aff;
    --radius: 12px;
    --gap: 0.5rem;
}


/* Testimonials section */

.testimonials {
    width: 80%;
    margin: auto;
    padding-top: 100px;
    text-align: center;
}

.testimonial-col {
    flex-basis: 44%;
    border-radius: 10px;
    margin-bottom: 5%;
    text-align: left;
    background: #f7f8fa;
    padding: 25px;
    cursor: pointer;
    display: flex;

}

.testimonial-col img {
    height: 40px;
    border-radius: 50%;
    margin-left: 5px;
    margin-right: 30px;
}

.testimonial-col p {
    padding: 0;
}

.testimonial-col h3 {
    margin-top: 15px;
    text-align: left;
}

.testimonial-col .fa {
    color: #e53935;
}

@media(max-width:700px) {
    .testimonial-col img {
        margin-left: 0px;
        margin-right: 15px;

    }
}

@media(max-width:400px) {
    .testimonials {
        font-size: small;
    }
}

/* cta  */

.cta {
    margin: 100px auto;
    width: 80%;
    background: linear-gradient(rgba(0, 0, 0, 0.416), rgba(0, 0, 0, 0.7)), url('project-img/header.avif') center/cover no-repeat;
    border-radius: 10px;
    text-align: center;
    padding: 100px 0;
}

.cta h1 {
    color: #e3f2fd;
    margin-bottom: 40px;
    padding: 0;
}

.cta-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary-red);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    box-shadow: var(--shadow);
}

@media(max-width:700px) {
    .cta h1 {
        font-size: 24px;
    }

    .cta-btn {
        width: 80%;

    }

}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 25px;
    right: 25px;
    background-color: #25d366;
    color: white;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(18, 140, 126, 0.7);
}

.whatsapp-float i {
    margin-top: 3px;
}

/* Tooltip */
.whatsapp-tooltip {
    position: fixed;
    bottom: 90px;
    right: 25px;
    background-color: #075E54;
    color: white;
    padding: 10px 15px;
    border-radius: 12px;
    font-size: 14px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 99;
    width: 180px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.whatsapp-tooltip:after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 20px;
    border-width: 10px 10px 0;
    border-style: solid;
    border-color: #075E54 transparent;
}

.whatsapp-float:hover+.whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

/* Pulse animation */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Responsive styles */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 24px;
    }

    .whatsapp-tooltip {
        bottom: 75px;
        right: 20px;
    }

    h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .whatsapp-float {
        width: 45px;
        height: 45px;
        bottom: 15px;
        right: 15px;
        font-size: 22px;
    }

    .whatsapp-tooltip {
        bottom: 65px;
        right: 15px;
        width: 160px;
        font-size: 13px;
    }
}