* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    scroll-behavior: smooth;
    background: #f4f7fb !important;
}

:root {
    --primary: #0029b0;
    --secondary: #dea804;
    --dark: #112540;
    --white: #fff;
    --black: #000;
}

li {
    list-style: none;
}

a {
    text-decoration: none !important;
}
/* =========sticky-buttons=========== */

.whatsapp i {
  color: var(--white);
  background: #0a9300;
  padding: 13px 15px;
  font-size: 2.5rem;
  position: fixed;
  bottom: 55px;
  z-index: 9999;
  right: 40px;
  border-radius: 50%;
  animation: zoomInOut 1s infinite alternate-reverse;
}
.scroll i {
  color: #fff;
  background: var(--primary);
  padding: 13px 15px;
  font-size: 1.5rem;
  position: fixed;
  bottom: 55px;
  z-index: 999;
  left: 40px;
  border-radius: 50%;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.scroll.hidden {
  opacity: 0;
  visibility: hidden;
}

.scroll.visible {
  opacity: 1;
  visibility: visible;
}

@keyframes zoomInOut {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}

/* ================ Header Styles ============== */
header {
    width: 100%;
    position: relative;
    z-index: 1000;
    background: #ffffff;
    box-shadow: -2px -4px 10px 2px #767676;
    position: fixed;
    top: 0;
}

.main-header {
    width: 100%;
    margin: 0 auto;
    padding: 10px 65px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    height: 100%;
}

.main-header-left {
    width: 20%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

.main-header-left-logo {
    width: 115px;
    transition: transform 0.3s ease;
}

.main-header-left-logo img {
    width: 100%;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.main-header-mid {
    width: 50%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-header-mid-cta {
    width: 100%;
    display: flex;
    gap: 40px;
    justify-content: center;
    align-items: center;
}

.phone-cta,
.whatsapp-cta {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    color: var(--white);
    transition: all 0.3s ease;
}

.phone-cta {
    background: var(--primary);
}

.whatsapp-cta {
    background: #0a9300;
    animation: zoomInOut 1s infinite alternate-reverse;
}

.phone-cta a,
.whatsapp-cta a {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    text-decoration: none;
    width: 100%;
}

.phone-cta i,
.whatsapp-cta i {
    font-size: 1.3rem;
    color: var(--white);
    animation: pulse 2s infinite;
}

.whatsapp-cta a {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.whatsapp-cta:hover {
    background: var(--dark);
    transform: translateY(-2px);
}

.main-header-right {
    width: 30%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    z-index: 2;
    margin-top: 20px;
}

.main-header-right-menu ul {
    display: flex;
    gap: 30px;
    align-items: center;
}

.main-header-right-menu a {
    color: var(--black);
    font-weight: 600;
    font-size: 1.05rem;
    position: relative;
    padding: 8px 0;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.main-header-right-menu a:hover {
    color: var(--primary);
}

.main-header-right-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-header-right-menu a:hover::after {
    width: 100%;
}

/* Animations */
@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

/* Scrolled State */
.scrolled header {
    margin-top: 0 !important;
}

.scrolled .main-header-left {
    padding: 5px 0;
}

.scrolled .main-header-left-logo {
    transform: scale(0.95);
}

/* ===================hero=============== */

#hero-banner {
    position: relative;
    height: 790px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-banner-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.hero-banner-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.796) 0%, rgba(255, 255, 255, 0.7) 50%, rgba(255, 255, 255, 0.662) 100%);
}

.hero-banner-content {
    width: 100%;
    display: flex;
    gap: 40px;
    height: 100%;
    align-items: center;
    position: relative;
    top: 4%;
    padding: 0 65px;
}

.hero-banner-left {
    width: 50%;
    transform: translateX(-20px);
    opacity: 0;
    animation: fadeInLeft 0.6s ease-out forwards;
    animation-delay: 0.3s;
    backdrop-filter: blur(5px);
}

.hero-banner-left h4 {
    background: var(--primary);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    padding: 5px 15px;
    color: #fff;
    border-radius: 15px;
}

.hero-banner-left h1 {
    color: var(--black);
    font-size: 2.9rem;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-banner-left p {
    color: #000;
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.hero-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.hero-features li {
    display: flex;
    align-items: center;
    color: #333;
    font-size: 0.95rem;
    font-weight: 500;
}

.hero-features svg {
    width: 18px;
    height: 18px;
    margin-right: 8px;
    flex-shrink: 0;
}

.offer{
    padding-top: 15px;
    font-weight: 700;
}
.offer span{
    color: var(--dark);
}

.hero-cta {
    margin-top: 40px;
    display: flex;
    gap: 20px;
}

.hero-cta a {
    display: inline-block;
    background: #0a9300;
    color: #fff;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    animation: zoomInOut 0.5s infinite alternate-reverse;
}
.hero-cta a:hover{
    color: #fff;
}

.hero-cta a:nth-child(2) {
    background: var(--primary);
    color: var(--white);
    animation: none;
}

.hero-cta a:hover {
    background: var(--dark);
    transform: translateY(-2px);
}


/* Estimate Card */
.hero-banner-right {
    width: 50%;
    transform: translateX(20px);
    opacity: 0;
    animation: fadeInRight 0.6s ease-out forwards;
    animation-delay: 0.5s;
    display: flex;
    justify-content: end;
}

.estimate-card {
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    padding: 10px 0 10px 0;
    width: 70%;
}

.card-header {
    background: var(--primary);
    color: var(--white);
    padding: 10px 20px !important;
    text-align: left;
}

.card-header h3 {
    font-weight: 700;
    text-align: center;
    font-size: 2rem;
    margin: 0 0 5px;
}

.compact-form {
    padding: 10px 20px;

}
.compact-form label{
    font-size: 1rem;
    font-weight: 600;
}
.compact-form label span{
    color: red;
}
#flag img{
    width: 30px;
    height: 30px;
    border-radius: 5px;
    margin-right: 10px;
    top: 205px;
    margin-left: -45px;
    position: absolute;
    z-index: 3;
}
.compact-form input, .compact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 0.95rem;
    margin-bottom: 15px;
    transition: border-color 0.3s ease;
}

.compact-form textarea{
    height: 50px;
    resize: none;
}

#aphone {
    padding-left: 55px;
    position: relative;
}
.submit-btn {
    width: 100%;
    padding: 14px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.submit-btn:hover {
    background: var(--dark);
    transform: translateY(-2px);
}

.submit-btn svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.submit-btn:hover svg {
    transform: translateX(3px);
}

.form-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 15px;
    font-size: 0.8rem;
    color: #666;
    text-align: center;
}

.form-note svg {
    width: 16px;
    height: 16px;
    fill: var(--primary);
}

/* Animations */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}


/* ==========================about============== */

#about {
    width: 100%;
    padding: 40px 0;
}

.about-box {
    width: 100%;
    padding: 10px;
        height: 100%;
}

.about-box-image {
    width: 100%;
        height: 100%;
    overflow: hidden;
    border-radius: 10px;
}

.about-box-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.about-box-content h2 {
    font-size: 2.6rem;
    font-weight: 700;
}

.about-box-content h2 span {
    color: var(--primary);
}

.about-box-content p {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-top: 20px;
}

/* =======================services============ */

.services-section {
    padding: 40px 0;
    background-color: #fff;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-subtitle {
    color: var(--primary);
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
    display: inline-block;
}

.section-title {
    color: var(--dark);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-divider {
    width: 60px;
    height: 3px;
    background: var(--primary);
    margin: 0 auto 20px;
    position: relative;
}

.section-divider:after {
    content: '';
    position: absolute;
    width: 30px;
    height: 3px;
    background: var(--secondary);
    left: 15px;
    bottom: -6px;
}

.section-description {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0 auto;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    border-radius: 12px;
    padding: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1;
    display: flex;
    flex-direction: column;
    height: 520px;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.service-image {
    width: 100%;
    height: 250px;
    margin-bottom: 25px;
}

.service-image img {
    width: 100%;
    height: 100%;
}

.service-content {
    flex: 1;
}

.service-card h3 {
    color: var(--dark);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.service-card p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.service-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 25px;
    background: var(--primary);
    color: var(--white);
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-btn:hover {
    background: var(--dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(32, 136, 193, 0.3);
}

.service-btn svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.service-btn:hover svg {
    transform: translateX(5px);
}

.service-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--secondary);
    color: var(--black);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}
/* Tabs Styling */
.services-tabs {
  text-align: center;
  margin-bottom: 20px;
}
.tab-btn {
  padding: 10px 20px;
  margin: 0 5px;
  border: none;
  background: #f1f1f1;
  cursor: pointer;
  font-weight: 600;
  border-radius: 5px;
  transition: 0.3s;
}
.tab-btn.active {
  background: #007BFF;
  color: #fff;
}


/* =========================cta============== */

#cta {
    width: 100%;
    padding: 40px 0;
    background-image: url("../images/a-maintenance.webp");
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    position: relative;
}

#cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.468);
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
}

.cta-content h2 {
    padding: 10px 0;
    font-size: 2.4rem;
    font-weight: 700;
}

.cta-content p {
     margin-bottom: 30px;
    font-weight: 600;
    font-size: 1.3rem;
}

.call-buttons {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.cta-content a {
    background: #0a9300;
    padding: 12px 30px;
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
}


/* ==================Pricing Section============ */

.pricing-section {
    padding: 40px 0;
    background: linear-gradient(to bottom, #f9fbfd 0%, #ffffff 100%);
    position: relative;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.pricing-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    height: 540px;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.service-image {
    height: 230px;
    position: relative;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.pricing-card:hover .service-image img {
    transform: scale(1.05);
}

.price-badge {
    position: absolute;
    bottom: 10px;
    right: 20px;
    background: var(--primary);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(32,136,193,0.3);
    z-index: 999;
}

.service-content {
    padding: 10px;
    font-size: 0.9rem;
}

.service-content h3 {
    color: var(--dark);
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.service-features li {
    padding: 8px 0;
    color: #555;
    position: relative;
    padding-left: 25px;
    font-size: 0.95rem;
}

.service-features li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 20px;
    width: 12px;
    height: 2px;
    background: var(--secondary);
}

.view-pricing-btn {
    width: 100%;
    padding: 14px;
    background: var(--white);
    color: var(--primary);
    border: 2px solid var(--primary);
    border-radius: 8px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-pricing-btn:hover {
    background: var(--primary);
    color: white;
}

.view-pricing-btn svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.view-pricing-btn:hover svg {
    transform: translateX(5px);
}

/* Modal Overlay & Container */
.pricing-modal {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0.3s, opacity 0.3s;
    font-family: 'Segoe UI', 'Roboto', sans-serif;
    padding: 20px;
}

.pricing-modal.active {
    visibility: visible;
    opacity: 1;
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(6px);
    z-index: 1;
}

/* Modal Content */
.modal-container {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    width: 92%;
    max-width: 640px;
    max-height: 90vh;
    overflow-y: auto;
    z-index: 2;
    position: relative;
    animation: slideUp 0.3s ease-out;
        padding: 20px;
}

/* Slide animation */
@keyframes slideUp {
    from {
        transform: translateY(40px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Close Button */
.close-modal {
    position: absolute;
    top: 16px;
    right: 16px;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
}

.close-modal svg {
    width: 24px;
    height: 24px;
    fill: #fff;
    background: #000;
}

.close-modal:hover {
    background: rgba(0,0,0,0.05);
    border-radius: 50%;
}

/* Header Section */
.modal-header {
    padding: 24px 30px 10px;
    text-align: center;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    width: 100% !important;
}

.modal-header h2 {
    font-size: 1.6rem;
    font-weight: 700;
    margin: 0;
    color: #222;
}

.starting-price {
    font-size: 1.1rem;
    background: var(--primary);
    color: #ffffff;
    font-weight: 600;
    margin-top: 6px;
    padding: 8px 16px;
    margin-left: 10px;
}

/* Modal Body */
.modal-body {
    padding: 20px 30px 30px;
}

/* Pricing Table */
.pricing-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
    font-size: 0.95rem;
    color: #333;
}

.pricing-table thead th {
    background: #dfdfdf;
    color: #000000;
    padding: 14px 16px;
    text-align: left;
    font-weight: 600;
    border-radius: 4px 4px 0 0;
}

.pricing-table td {
    padding: 12px 16px;
    border-bottom: 1px solid #e6e6e6;
}

.pricing-table tr:nth-child(even) td {
    background: #f9f9f9;
}

.pricing-table tr:hover td {
    background: #f0f0f0;
}

/* Modal Actions */
.modal-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.book-now-btn,
.whatsapp-btn {
    flex: 1 1 45%;
    padding: 14px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}


.book-now-btn a,
.whatsapp-btn a{
    color: #fff;
    text-decoration: none;
}

.book-now-btn {
    background: #0069d9;
    color: #fff;
    border: none;
}

.book-now-btn:hover {
    background: #004eac;
    transform: translateY(-2px);
}

.whatsapp-btn {
    background: #088537;
    color: #fff;
    border: none;
}

.whatsapp-btn:hover {
    background: #1ebf5f;
    transform: translateY(-2px);
}

.whatsapp-btn svg {
    width: 20px;
    height: 20px;
}

/* Mobile Responsive */
@media (max-width: 576px) {
    .modal-container {
        width: 95%;
        padding-bottom: 10px;
    }

    .modal-header {
        padding: 20px;
    }

    .modal-body {
        padding: 20px;
    }

    .modal-actions {
        flex-direction: column;
    }

    .book-now-btn,
    .whatsapp-btn {
        width: 100%;
    }
}


/* =======================service-sectors============= */

#service-sectors {
    /* background: #fff; */
    padding: 40px 0;
}

/* Tabs Container */
.tabs-container {
    max-width: 1200px;
    margin: 0 auto;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    overflow: hidden;
    background: var(--white);
}

.tabs-header {
    display: flex;
    border-bottom: 1px solid #eee;
}

.tab-button {
    flex: 1;
    padding: 20px;
    background: none;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.tab-button.active {
    color: var(--primary);
}

.tab-button.active:after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary);
}

.tab-button:hover:not(.active) {
    background: rgba(32, 136, 193, 0.05);
    color: var(--dark);
}

/* Tab Content */
.tab-panel {
    display: none;
    padding: 0;
}

.tab-panel.active {
    display: block;
}

.tab-content {
    display: flex;
    align-items: center;
    padding: 40px;
}

.tab-text {
    flex: 1;
    padding-right: 40px;
}

.tab-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.tab-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.tab-panel.active .tab-image img:hover {
    transform: scale(1.03);
}

.tab-text h3 {
    color: var(--dark);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.tab-text p {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.benefits-list li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 1rem;
    color: #444;
}

.benefits-list svg {
    width: 18px;
    height: 18px;
    margin-right: 10px;
    flex-shrink: 0;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 30px;
    background: var(--primary);
    color: var(--white);
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: var(--dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(32, 136, 193, 0.3);
}

.cta-button svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.cta-button:hover svg {
    transform: translateX(5px);
}

/* Client Logo Slider */
.client-logos {
    padding: 30px 0;
}

.logo-slider {
    overflow: hidden;
    position: relative;
    margin: 20px auto;
    max-width: 1300px;
}

.slider-track {
    display: flex;
    align-items: center;
    gap: 90px;
    animation: scroll 30s linear infinite;
    width: calc(250px * 8);
}

.slide {
    flex: 0 0 170px;
    height: 120px;
    display: flex;
    align-items: center;
    /* justify-content: center; */
    gap: 30px;
    opacity: 1;
    transition: all 0.3s ease;
    border: 1px solid #eee;
    padding: 10px 20px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.034);
}

.slide:hover {
    opacity: 1;
}

.slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 15px;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-250px * 4));
    }
}


/* ===============cities========== */

#above-footer {
    width: 100%;
    padding: 40px 0 0 0;
    /* background: #fff; */
}

.above-footer-heading {
    text-align: center;
    padding: 10px 0;
}

.above-footer-heading h3 {
    font-size: 2.5rem;
    font-weight: 600;
}

.above-footer-heading p {
    font-size: 1.1rem;
    margin-top: 10px;
}

.location-title {
    padding: 10px 0;
    text-align: center;
}

.location-title h4 {
    font-size: 1.8rem;
    font-weight: 600;
    margin: 15px 0;
    color: var(--white);
    background: var(--primary);
}

.locations {
    margin: 10px 20px;
    border-right: 1px solid #ccc;
}

.locations ul li {
    padding: 7px 0 0 25px;
    position: relative;

}
.locations ul li a{
    color: var(--black);
}

.locations ul li::before {
    left: 0;
    position: absolute;
    content: '\27A4';
    color: var(--primary);
}
.location-cta{
    margin: 15px 0 15px 35px;
    background: var(--primary);
    padding: 12px 16px;
    border-radius: 15px;
    width: fit-content;
}
.location-cta a{
    color: #fff;
    font-weight: 700;
}

/* ==============footer================ */

footer {
    width: 100%;
    padding: 10px 0 0 0;
    background: #0a2540;
    color: var(--white);
    margin-top: 50px;
    position: relative;
}

footer::before{
    content: '';
    position: absolute;
    background-image: url("../images/Residential.webp");
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
    top: 0;
    opacity: 0.06;
}

.footer-wrapper, .footer-below-wrapper {
    position: relative;
    text-align: center;
    padding: 20px 0;
    z-index: 99;
}

.footer-logo {
    width: 150px;
    margin: 0 auto;
}

.footer-logo img {
    width: 100%;
}

.footer-content {
    padding: 20px 0 15px 0;
    width: 80%;
    margin: 0 auto;
}

.footer-below-wrapper {
    padding: 0 70px;
    background: #00000022;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
}

.footer-social {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.footer-social h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: -10px;
    margin-left: 10px;
}

.social-links a {
    color: var(--white);
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--primary);
}

.footer-contact{
    width: 100%;
    margin: 0 auto;
}

.ftr-contact-wrapper{
    width: 100%;
    display: flex;
    gap: 10px;
    align-items: center;
    margin: 0 auto;
    justify-content: center;
}

.ftr-contact-box{
    width: 33.33%;
    display: flex;
    gap: 15px;
    text-align: center;
    background: #ffffff0f;
    padding: 10px 15px;
    border-radius: 5px;
    height: 70px;
    align-items: center;
}

.ftr-icon i{
    color: var(--secondary);
    font-size: 1.3rem;
}

.ftr-icon-content p{
    padding-top: 5px;
}

.ftr-icon-content p a{
    color: #fff;
}

.footer-copy {
    padding: 10px 0;
}

.footer-copy p {
    font-size: 1.1rem;
    font-weight: 600;
}

.footer-links {
    padding: 10px 0;
}

.footer-links .ftr-menu {
    display: flex;
    gap: 40px;
    justify-content: center;
}

.footer-links .ftr-menu li {
    list-style: disc;
}

.footer-links .ftr-menu li a {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    text-decoration: none;
}

.footer-links .ftr-menu li a:hover {
    color: #ffb405;
}

/* ==================privacy-policy========== */

#privacy-policy{
    width: 100%;
    padding: 150px 0 40px 0;
}

.privacy-policy-content{
    width: 100%;
}
.privacy-policy-content h2{
    font-size: 1.6rem;
    color: var(--primary-dark);
    padding: 10px 0;
}
.privacy-policy-content h3{
    font-size: 1.3rem;
    color: var(--primary-dark);
    padding-top: 15px;
}
.privacy-policy-content p{
    padding: 10px 0 5px 0;
}
.privacy-policy-content ul li{
    list-style: disc;
}



/* ===================media================ */
@media (max-width: 1350px) {
    .main-header-left {
    width: 15%;
}
    .main-header {
    padding: 10px 45px;
}
.main-header-mid-cta {
        gap: 19px;
    }
    .pricing-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}
.service-content h3 {
    font-size: 1.1rem;
}
.service-image {
    height: 180px;
}
.pricing-card {
    height: 490px;
}
#flag img {
    top: 241px;
}

}

@media (max-width: 1200px) {
    .main-header {
        padding: 0 30px;
    }
    .main-header-mid {
    width: 55%;
    }
        .pricing-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
}
.service-content h3 {
    font-size: 1rem;
}
.service-image {
    height: 270px;
}
.pricing-card {
    height: 470px;
}
.service-features li {
    font-size: 0.8rem;
}
.ftr-icon-content p {
    font-size: 0.8rem;
}

}

@media (max-width: 1100px){
        .main-header-right {
        display: none;
    }
    .main-header-mid {
    width: 85%;
    }
    .main-header-mid-cta{
       justify-content: flex-end !important;
       gap: 35px;
    }
    
}
@media (max-width: 1024px) {
    

    .main-header-mid {
        width: 70%;
    }

    .main-header-left {
        width: 30%;
    }

    .main-header-mid-cta {
        gap: 59px;
    }

    .estimate-card {
        width: 100%;
    }

    .hero-cta a {
        padding: 12px 14px;
    }

    .main-header {
        width: 100%;
        margin: 0 auto;
        /* padding: 0 65px; */
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: relative;
    }

    .main-header-mid-cta {
        width: 100%;
        display: flex;
        gap: 20px;
        justify-content: center;
        padding: 20px 10px 20px;
        align-items: center;
    }

    .whatsapp-cta a {
        display: inline-flex;
        align-items: center;
        gap: 5px;
        color: white;
        padding: 8px 12px;
        border-radius: 50px;
        font-weight: 600;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
}

@media (max-width: 850px) {
    .service-card {

    height: auto;
}
    .main-header-mid {
        width: 70%;
        left: 27%;
    }

    .main-header-left {
        width: 30%;
    }

    .main-header-mid-cta {
        gap: 28px;
    }

    .phone-cta a, .email-cta a {
        font-size: 0.8rem;
    }

    #hero-banner {
        height: auto;
        padding: 40px 0;
    }

    .hero-banner-content {
        flex-wrap: wrap;
        top: 25%;
        padding: 90px 30px 30px 30px;
    }

    .hero-banner-left, .hero-banner-right {
        width: 100%;
        transform: translateX(0);
        opacity: 1;
        animation: none;
    }

    .email-cta {
        display: none;
    }

    .tab-content {

        flex-direction: column-reverse;
        align-items: center;
        padding: 40px;
    }

    .tab-text h3 {
        padding-top: 20px;
        margin-bottom: 0;
    }

    .tab-text {
        padding: 0;
    }

    .cta-button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 7px 18px;
        background: var(--primary);
        color: var(--white);
        border-radius: 6px;
        font-size: 1rem;
        font-weight: 500;
        text-decoration: none;
        transition: all 0.3s ease;
    }
    .ftr-contact-wrapper {
        flex-wrap: wrap;
    }
    .ftr-contact-box {
        width: 80%;
    }
}

@media (max-width: 520px) {
    .main-header-mid {
        width: 60%;
        left: 38%;
    }

    .main-header-left {
        width: 40%;
        padding: 0;
    }
    .hide-text {
      display: none;
    }
    .hero-cta {
        margin-top: 40px;
        display: block;
        /* gap: 10px; */
    }

    .hero-cta a:nth-child(2) {
        margin-top: 20px;
    }
        .pricing-card {
        height: 585px;
    }

    .about-box-content h2 {
        font-size: 2rem;
        font-weight: 700;
    }

    .section-title {
        font-size: 2rem;
    }

    .features-grid {
        display: grid;
        place-items: center;
    }

    .feature-card {
        width: 90%;
    }

    .features-cta a {
        display: inline-block;
        background: var(--primary);
        color: var(--white);
        padding: 8px 15px;
        border-radius: 50px;
        font-weight: 500;
        transition: all 0.3s ease;
        font-size: 1rem;
    }

    .footer-content {
        width: 80%;
    }

    .footer-logo {
        width: 130px;
        margin: 0 auto;
    }

    .footer-copy p {
        font-size: 0.8rem;
    }

    .footer-links ul li a {
        font-size: 0.8rem !important;
    }

    .footer-below-wrapper {
        padding: 0 20px !important;
    }
    .main-header-mid-cta {
            justify-content: end !important;
    }
    .cta-content a {
    padding: 12px 15px;
}
        .footer-below-wrapper {
            flex-wrap: wrap;
        }
        
        .hero-banner-left p, .hero-features{
            display: none;
        }
        .modal-header {
            flex-wrap: wrap;
            text-align: center;
            justify-content: center;
        }
        .modal-header p{
            margin-top: 15px;
        }
        .modal-container {
            padding: 35px 20px 20px 20px;
        }
        .service-content h3 {
            font-size: 1.5rem;
        }
        .service-features li {
            font-size: 1rem;
        }
        .ftr-contact-box {
        width: 100%;
    }
    .whatsapp-cta {
    padding: 12px 15px;
    background: var(--secondary);
    animation: zoomInOut 1s infinite alternate-reverse;
}
#flag img {
    top: 242px;
}
.hero-cta a:nth-child(2){
    margin-left: 15px;
}
}

@media (max-width: 400px) {
    .features-grid {
        display: grid;
        place-items: center;
    }

    .feature-card {
        width: 100% !important;
    }
    .hero-banner-left h1 {
    font-size: 2.6rem;
    }
    .main-header {
         padding: 0 5px; 
    }
    .cta-content a {
        padding: 12px 9px;
    }
    .pricing-table td {
    padding: 10px 8px;
    border-bottom: 1px solid #e6e6e6;
}

}
@media (max-width: 350px){
        #flag img {
    top: 241px;
}
}
#scrollTopBtn {
    display: none;
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 1000;
    background-color: #084A79;
    color: white;
    border: none;
    outline: none;
    padding: 16px 18px;
    border-radius: 50%;
    font-size: 22px;
    cursor: pointer;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    animation: bounceIn 0.4s ease-in-out;
}

#scrollTopBtn:hover {
    background-color: #2088C1;

    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.3);
}

@keyframes bounceIn {
    0% {
        transform: scale(0.5) translateY(100px);
        opacity: 0;
    }

    100% {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}