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

        :root {
            --primary-blue: #4A90E2;
            --dark-blue: #2C5F8D;
            --light-blue: #E8F4FF;
            --accent-blue: #5BA3F5;
            --orange: #3E79BD;
            --dark-orange: #E55A2B;
            --text-dark: #1a1a1a;
            --text-gray: #666;
            --white: #ffffff;
            --light-gray: #f8f9fa;
            --shadow: rgba(0, 0, 0, 0.1);
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        /* Better Box Sizing */
        html {
            scroll-behavior: smooth;
            -webkit-tap-highlight-color: rgba(255, 107, 53, 0.2);
        }

        /* Accessibility: Focus Styles */
        *:focus {
            outline: 3px solid var(--orange);
            outline-offset: 2px;
        }

        *:focus:not(:focus-visible) {
            outline: none;
        }

        *:focus-visible {
            outline: 3px solid var(--orange);
            outline-offset: 2px;
        }

        /* Skip to Content Link for Screen Readers */
        .skip-to-content {
            position: absolute;
            top: -40px;
            left: 0;
            background: var(--orange);
            color: var(--white);
            padding: 8px;
            text-decoration: none;
            z-index: 100;
        }

        .skip-to-content:focus {
            top: 0;
        }

        /* Images Responsive by Default */
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        /* Remove List Styles by Default */
        ul, ol {
            list-style: none;
        }

        /* Better Link Styles */
        a {
            text-decoration: none;
            color: inherit;
        }

        /* Button Reset */
        button {
            background: none;
            border: none;
            padding: 0;
            font: inherit;
            cursor: pointer;
        }
       /* Top Bar */
        .top-bar {
            background: var(--text-dark);
            color: var(--white);
            padding: 0.75rem 1.5rem;
            font-size: 0.9rem;
        }

        .top-bar-content {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .top-bar-left {
            display: flex;
            gap: 2rem;
            align-items: center;
        }

        .top-bar-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .top-bar-item a {
            color: var(--white);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .top-bar-item a:hover {
            color: var(--orange);
        }

        .emergency-badge {
            background: var(--orange);
            padding: 0.5rem 1rem;
            border-radius: 5px;
            font-weight: 700;
            text-transform: uppercase;
            font-size: 0.85rem;
            letter-spacing: 0.5px;
        }

        /* Header & Navigation */
        header {
            background: var(--white);
            box-shadow: 0 2px 15px var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .header-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 1rem 1.5rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo-container {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .logo-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: var(--white);
            font-weight: 800;
        }

        .logo-text-container {
            display: flex;
            flex-direction: column;
        }

        .logo-text {
            font-size: 1.75rem;
            font-weight: 800;
            color: var(--primary-blue);
            letter-spacing: 2px;
            line-height: 1;
        }

        .tagline {
            font-size: 0.7rem;
            color: var(--text-gray);
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-top: 0.25rem;
        }

        .header-right {
            display: flex;
            gap: 1.5rem;
            align-items: center;
        }

        .header-phone {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
        }

        .phone-label {
            font-size: 0.75rem;
            color: #000;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-weight: 900;
        }

        .phone-number {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--orange);
            text-decoration: none;
            letter-spacing: 1px;
        }

        .phone-number:hover {
            color: #6594CA;
        }

        .cta-button {
            background: var(--orange);
            color: var(--white);
            padding: 1rem 2rem;
            border-radius: 10px;
            text-decoration: none;
            font-weight: 700;
            transition: all 0.3s ease;
            border: 2px solid var(--orange);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            box-shadow: 0 2px 5px rgb(74 144 226);
            cursor: pointer;
            font-family: inherit;
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            min-height: 48px; /* WCAG AA touch target size */
            position: relative;
            overflow: hidden;
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .cta-button:hover::before {
            width: 300px;
            height: 300px;
        }

        .cta-button:hover {
            background: #3e79bd
            border-color: #3e79bd
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgb(13 110 253 / 13%);
        }

        .cta-button:active {
            transform: translateY(0);
            box-shadow: 0 2px 10px rgba(255, 107, 53, 0.3);
        }

        .cta-button:disabled {
            opacity: 0.6;
            cursor: not-allowed;
            transform: none;
        }

        .cta-secondary {
            background: var(--primary-blue);
            border-color: var(--primary-blue);
            box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
        }

        .cta-secondary:hover {
            background: var(--dark-blue);
            border-color: var(--dark-blue);
        }

        /* Hero Section */
        .hero {
           background-image: url('assests/images/background.jpg');
           padding: 3rem 1.5rem 4rem;
           position: relative;
           background-size: cover;  
            background-position: center; 
            background-repeat: no-repeat; 
            color: #fff;
        }
        .hero::before {
        content: "";
        position: absolute;
        top: 0; left: 0;
        width: 100%; height: 100%;
        background: rgb(0 0 0 / 69%);
        z-index: 1;
    }

    .hero * {
        position: relative;
        z-index: 2;
    }
        .hero-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }

        .hero-left h1 {
            font-size: 3rem;
            font-weight: 900;
            color: var(--text-dark);
            line-height: 1.2;
            margin-bottom: 1.5rem;
        }

        .hero-highlight {
            color: var(--orange);
            display: block;
        }

        .hero-features {
            list-style: none;
            margin-bottom: 2rem;
        }

        .hero-features li {
            padding: 0.75rem 0;
            font-size: 1.125rem;
            display: flex;
            align-items: center;
            gap: 1rem;
            color: var(--text-white);
        }

        .feature-icon {
            width: 40px;
            height: 40px;
            background: var(--orange);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-weight: 700;
            flex-shrink: 0;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .cta-large {
            padding: 1.25rem 2.5rem;
            font-size: 1.1rem;
        }

        .hero-right {
            background: var(--white);
            padding: 2.5rem;
            border-radius: 20px;
            box-shadow: 0 10px 40px var(--shadow);
        }

        .hero-form-header {
            text-align: center;
            margin-bottom: 2rem;
        }

        .hero-form-header h2 {
            font-size: 1.75rem;
            font-weight: 800;
            color: var(--text-dark);
            margin-bottom: 0.5rem;
        }

        .hero-form-header p {
            color: var(--text-gray);
        }
        .logo-sec img {
                width: 65%;
                height: auto;
        }

       .scroll-strip {
  background: #0073ff;  /* blue background */
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 18px;
  white-space: nowrap;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 28px 0;
  margin: 0; /* remove white gap */
}

.scroll-content {
  display: inline-flex;
  gap: 3rem; /* spacing between items */
  animation: moveStrip 30s linear infinite;
}

.scroll-content span {
  display: inline-block;
}
.quote-section {
  background: #f7faff;
  padding: 3rem 1.5rem;
  text-align: center;
  border-radius: 12px;
  margin: 2rem auto;
  max-width: 900px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.quote-container h3 {
  font-size: 1.9rem;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.quote-container p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 1rem;
}

.quote-details {
  margin: 1.5rem 0;
}

.quote-details a {
  color: #2979ff;
  font-weight: 600;
  text-decoration: none;
}

.quote-details a:hover {
  text-decoration: underline;
}

.quote-footer {
  font-style: italic;
  color: #444;
  margin-bottom: 2rem;
}

.quote-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 0.9rem 1.8rem;
  font-weight: 700;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn.primary {
  background: #2979ff;
  color: #fff;
}

.btn.primary:hover {
  background: #1e5fd8;
  transform: translateY(-2px);
}

.btn.secondary {
  background: #111;
  color: #fff;
}

.btn.secondary:hover {
  background: #333;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
  .quote-container h3 {
    font-size: 1.6rem;
  }

  .quote-container p {
    font-size: 1rem;
  }

  .quote-buttons {
    flex-direction: column;
    gap: 0.8rem;
  }
}

@keyframes moveStrip {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

/* Intro Section */
        .intro-section {
            padding: 5rem 0;
            background: var(--white);
            text-align: center;
        }

        .intro-section h2 {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--text-dark);
            margin-bottom: 1.5rem;
        }

        .intro-section p {
            font-size: 1.125rem;
            color: var(--text-gray);
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }
.offer-section {
  padding: 4rem 1.5rem;
  background: #f9fafb;
}

.offer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.offer-card {
  flex: 1 1 300px;
  max-width: 360px;
  background: #fff;
  color: #333;
  border-radius: 20px;
  text-align: center;
  padding: 2.5rem 2rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.offer-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

.offer-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.offer-card h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.offer-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.offer-card p {
  font-size: 1rem;
  color: #f5f5f5;
  opacity: 0.95;
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* Button */
.offer-btn {
  background: #fff;
  color: #d64309;
  padding: 0.8rem 1.8rem;
  border-radius: 10px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.offer-btn:hover {
  background: #f0f0f0;
  transform: translateY(-3px);
}

/* Card color variations */
.offer-card.blue {
  background: linear-gradient(160deg, #2563eb, #1e3a8a);
  color: #fff;
}

.offer-card.orange {
  background: linear-gradient(160deg, #f97316, #ea580c);
  color: #fff;
}

/* Responsive layout */
@media (max-width: 900px) {
  .offer-container {
    flex-direction: column;
    align-items: center;
  }
}

        /* Services Section */
        .services {
            padding: 5rem 1.5rem;
            background: var(--white);
        }

        .section-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .section-header h2 {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--text-dark);
            margin-bottom: 1rem;
        }

        .section-header p {
            font-size: 1.125rem;
            color: var(--text-gray);
            max-width: 700px;
            margin: 0 auto;
        }

        .services-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }

        .service-card {
            background: var(--white);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 25px var(--shadow);
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(74, 144, 226, 0.2);
        }

        .service-image {
            width: 100%;
            height: 200px;
            background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4rem;
            position: relative;
            overflow: hidden;
        }

        .service-badge {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: var(--orange);
            color: var(--white);
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .service-content {
            padding: 2rem;
        }

        .service-card h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 1rem;
        }

        .service-card p {
            color: var(--text-gray);
            margin-bottom: 1.5rem;
            line-height: 1.7;
        }

        .service-link {
            color: var(--orange);
            text-decoration: none;
            font-weight: 700;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: gap 0.3s ease;
            text-transform: uppercase;
            font-size: 0.9rem;
            letter-spacing: 0.5px;
        }

        .service-link:hover {
            gap: 1rem;
        }

        /* Value Props Section */
        .value-props {
            padding: 4rem 1.5rem;
            background: var(--light-gray);
        }

        .value-props-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .value-prop-card {
            background: var(--white);
            padding: 3rem 2rem;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 5px 25px var(--shadow);
            transition: all 0.3s ease;
        }

        .value-prop-card:hover {
            transform: translateY(-5px);
        }

        .value-icon {
            width: 80px;
            height: 80px;
            background: var(--orange);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            margin: 0 auto 1.5rem;
            color: var(--white);
        }

        .value-prop-card h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 1rem;
        }

        .value-prop-card p {
            color: var(--text-gray);
            line-height: 1.7;
        }

        /* Special Offers */
        .offers {
            padding: 5rem 1.5rem;
            background: var(--white);
        }

        .offers-grid {
            max-width: 1400px;
            margin: 3rem auto 0;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
        }

        .offer-card {
            background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
            color: var(--white);
            border-radius: 20px;
            padding: 3rem 2.5rem;
            text-align: center;
            position: relative;
            overflow: hidden;
            box-shadow: 0 10px 30px var(--shadow);
        }

        .offer-card.orange {
            background: linear-gradient(135deg, var(--orange) 0%, var(--dark-orange) 100%);
        }

        .offer-icon {
            font-size: 4rem;
            margin-bottom: 1rem;
        }

        .offer-price {
            font-size: 3.5rem;
            font-weight: 900;
            margin: 1rem 0;
            line-height: 1;
        }

        .offer-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .offer-description {
            margin-bottom: 2rem;
            opacity: 0.95;
        }

        .offer-card .cta-button {
            background: var(--white);
            color: var(--primary-blue);
            border-color: var(--white);
        }

        .offer-card.orange .cta-button {
            color: var(--orange);
        }

        /* Brand Trust Section */
        .brand-trust {
            padding: 4rem 1.5rem;
            background: var(--light-gray);
        }

        .brand-trust-container {
            max-width: 1400px;
            margin: 0 auto;
            text-align: center;
        }

        .brand-trust h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 2rem;
        }

        .brand-logos {
            display: flex;
            justify-content: space-around;
            align-items: center;
            flex-wrap: wrap;
            gap: 3rem;
            opacity: 0.6;
        }

        .brand-logo {
            font-size: 2rem;
            font-weight: 700;
            color: var(--text-gray);
        }

        /* Why Choose Us */
        .why-choose {
            padding: 5rem 1.5rem;
            background: var(--text-dark);
            color: var(--white);
            background-image: url(assests/images/why-choose-bg.jpg);
            background-blend-mode: color-dodge;
            background-repeat: no-repeat;
           background-size: cover;
        }

        .why-choose-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            /*grid-template-columns: 1fr 1fr;*/
            gap: 4rem;
            align-items: center;
        }

        .why-choose-left h2 {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            text-align: center;
        }

        .why-choose-left p {
            font-size: 1.125rem;
            margin-bottom: 2rem;
            opacity: 0.9;
            line-height: 1.8;
        }

        .features-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
            margin-bottom: 2rem;
        }

        .feature-item {
            background: rgba(255, 255, 255, 0.1);
            padding: 1.5rem;
            border-radius: 10px;
            backdrop-filter: blur(10px);
        }

        .feature-item h4 {
            font-size: 1.125rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: #fff;
        }

        .feature-item p {
            font-size: 0.95rem;
            opacity: 0.9;
            margin: 0;
        }

        .why-choose-right {
            position: relative;
        }

        .experience-badge {
            background: var(--orange);
            color: var(--white);
            padding: 3rem;
            border-radius: 20px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
        }

        .experience-badge h3 {
            font-size: 5rem;
            font-weight: 900;
            margin-bottom: 0.5rem;
            line-height: 1;
        }

        .experience-badge p {
            font-size: 1.5rem;
            font-weight: 700;
        }

        /* FAQ Section */
        .faq {
            padding: 5rem 1.5rem;
            background: var(--white);
        }

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

        .faq-item {
            background: var(--white);
            border: 2px solid #e8e8e8;
            border-radius: 10px;
            margin-bottom: 1rem;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-item.active {
            border-color: var(--orange);
        }

        .faq-question {
            padding: 1.5rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 700;
            color: var(--text-dark);
            font-size: 1.125rem;
            transition: all 0.3s ease;
        }

        .faq-question:hover {
            color: var(--orange);
        }

        .faq-icon {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--orange);
            transition: transform 0.3s ease;
        }

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

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .faq-answer-content {
            padding: 0 1.5rem 1.5rem;
            color: var(--text-gray);
            line-height: 1.8;
        }

        .faq-item.active .faq-answer {
            max-height: 500px;
        }

        /* Testimonials */
        .testimonials {
            padding: 5rem 1.5rem;
            background: var(--light-gray);
        }

        .testimonials-grid {
            max-width: 1400px;
            margin: 3rem auto 0;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
        }

        .testimonial-card {
            background: var(--white);
            padding: 2.5rem;
            border-radius: 15px;
            box-shadow: 0 5px 25px var(--shadow);
            position: relative;
        }

        .quote-icon {
            font-size: 3rem;
            color: var(--orange);
            opacity: 0.3;
            position: absolute;
            top: 1rem;
            right: 1.5rem;
        }

        .testimonial-text {
            font-size: 1.05rem;
            color: var(--text-gray);
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .author-avatar {
            width: 50px;
            height: 50px;
            background: var(--primary-blue);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-weight: 700;
            font-size: 1.25rem;
        }

        .author-info h5 {
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 0.25rem;
        }

        .author-info p {
            font-size: 0.9rem;
            color: var(--text-gray);
        }

        .stars {
            color: #FFD700;
            margin-bottom: 1rem;
        }

        /* Final CTA */
        .final-cta {
            padding: 6rem 1.5rem;
            /*background:#000;*/
            color: var(--white);
            text-align: center;
            position: relative;
            overflow: hidden;
            background-image: url(assests/images/why-choose-bg.jpg);
            background-repeat: no-repeat;
            background-size: cover;
   
        }

        .final-cta::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: #00000096;
            animation: pulse-bg 15s ease-in-out infinite;
        }

        @keyframes pulse-bg {
            0%, 100% { transform: scale(1); opacity: 0.5; }
            50% { transform: scale(1.1); opacity: 0.3; }
        }

        .final-cta-content {
            max-width: 900px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .cta-icon-badge {
            width: 80px;
            height: 80px;
            background: #fff;
            backdrop-filter: blur(10px);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            margin: 0 auto 2rem;
            border: 3px solid rgba(255, 255, 255, 0.3);
            animation: float 3s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        .final-cta h2 {
            font-size: 3rem;
            font-weight: 900;
            margin-bottom: 1rem;
            line-height: 1.2;
        }

        .final-cta p {
            font-size: 1.25rem;
            margin-bottom: 3rem;
            opacity: 0.95;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .final-cta-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            margin-bottom: 2.5rem;
        }

        .cta-white {
            background: var(--white);
            color: var(--orange);
            border-color: var(--white);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
        }

        .cta-white:hover {
            background: var(--light-gray);
            border-color: var(--white);
            color: var(--dark-orange);
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
        }

        .cta-white .arrow {
            transition: transform 0.3s ease;
        }

        .cta-white:hover .arrow {
            transform: translateX(5px);
        }

        .cta-outline {
            background: transparent;
            color: var(--white);
            border-color: var(--white);
            border-width: 2px;
            backdrop-filter: blur(10px);
        }

        .cta-outline:hover {
            background: rgba(255, 255, 255, 0.15);
            border-color: var(--white);
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
        }

        .cta-trust-line {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
            flex-wrap: wrap;
            font-size: 1rem;
            opacity: 0.9;
        }

        .trust-item {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            font-weight: 600;
        }

        .trust-divider {
            opacity: 0.5;
            font-size: 1.2rem;
        }

        .final-cta-form {
            background: var(--white);
            padding: 2.5rem;
            border-radius: 20px;
            margin-top: 3rem;
        }

        /* Footer */
        .footer-section p strong {
    padding-right: 5px;
}
 
        footer {
            background: var(--text-dark);
            color: var(--white);
            padding: 3rem 1.5rem 1.5rem;
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 2rem;
        }

        .footer-section h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--orange);
        }

        .footer-section p,
        .footer-section a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            display: flex;
            margin-bottom: 0.75rem;
            transition: color 0.3s ease;
        }

        .footer-section a:hover {
            color: var(--orange);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.6);
        }

        /* Form Styles */
        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
        }

        .form-group.full-width {
            grid-column: 1 / -1;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: var(--text-dark);
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 1rem;
            border: 2px solid #e8e8e8;
            border-radius: 10px;
            font-size: 1rem;
            transition: all 0.3s ease;
            font-family: inherit;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--orange);
            box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.1);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        /* Modal Styles */
        .modal-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.7);
            backdrop-filter: blur(5px);
            z-index: 9999;
            align-items: center;
            justify-content: center;
            padding: 1rem;
            animation: fadeIn 0.3s ease;
        }

        .modal-overlay.active {
            display: flex;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(50px) scale(0.95);
            }
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        .modal-content {
            background: var(--white);
            border-radius: 25px;
            max-width: 600px;
            width: 100%;
            max-height: 90vh;
            overflow-y: auto;
            position: relative;
            animation: slideUp 0.4s ease;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        }

        .modal-header {
            background: #0D6EFD;
            color: var(--white);
            padding: 15px;
            border-radius: 25px 25px 0 0;
            position: relative;
            text-align: center;
    display: block;
        }

        .modal-close {
            position: absolute;
            top: 1rem;
            right: 1rem;
           /* background: rgba(255, 255, 255, 0.2);*/
            border: none;
            color: var(--white);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            font-size: 35px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .modal-close:hover {
            /*background: rgba(255, 255, 255, 0.3);
            transform: rotate(90deg);*/
        }

        .modal-header h2 {
            font-size: 2rem;
            font-weight: 800;
            margin-bottom: 0.5rem;
        }

        .modal-body {
            padding: 2rem;
        }

        .submit-btn {
            width: 100%;
            padding: 1.25rem;
            background: var(--orange);
            color: var(--white);
            border: none;
            border-radius: 10px;
            font-size: 1.1rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            min-height: 48px;
            position: relative;
        }

        .submit-btn:hover {
            background: var(--dark-orange);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
        }

        .submit-btn:active {
            transform: translateY(0);
        }

        .submit-btn:disabled {
            opacity: 0.6;
            cursor: not-allowed;
        }

        .submit-btn.loading::after {
            content: '';
            position: absolute;
            right: 1rem;
            width: 20px;
            height: 20px;
            border: 3px solid rgba(255, 255, 255, 0.3);
            border-top-color: var(--white);
            border-radius: 50%;
            animation: spin 0.6s linear infinite;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }

        /* Form Validation Styles */
        .form-group input.error,
        .form-group select.error,
        .form-group textarea.error {
            border-color: #dc3545;
            background-color: #fff5f5;
        }

        .form-group input.success,
        .form-group select.success,
        .form-group textarea.success {
            border-color: #28a745;
        }

        .error-message {
            color: #dc3545;
            font-size: 0.875rem;
            margin-top: 0.25rem;
            display: none;
        }

        .error-message.show {
            display: block;
        }

        /* Loading Overlay */
        .loading-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.7);
            z-index: 10000;
            align-items: center;
            justify-content: center;
        }

        .loading-overlay.active {
            display: flex;
        }

        .loader {
            width: 50px;
            height: 50px;
            border: 5px solid rgba(255, 255, 255, 0.3);
            border-top-color: var(--orange);
            border-radius: 50%;
            animation: spin 0.8s linear infinite;
        }
        ul.hero-features {
            padding-left: 0px;
        }
        .offer-banner {
  background: #2979ff;
  color: #fff;
  border-radius: 10px;
  padding: 1.5rem 2rem;
  margin: 1.5rem auto 4rem;
  max-width: 1200px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.offer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.offer-content h2 {
  font-size: 1.8rem;
  font-weight: 800;
  margin: 0;
  text-align: left;
}

.offer-buttons {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

.btn {
  display: inline-block;
  padding: 0.8rem 1.8rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.btn.black {
  background: #111;
  color: #fff;
}

.btn.black:hover {
  background: #333;
  transform: translateY(-2px);
}
.service-card img {
    width: 100%;
    height: auto;
}
/* Responsive design */
@media (max-width: 768px) {
  .offer-content {
    flex-direction: column;
    text-align: center;
  }

  .offer-content h2 {
    font-size: 1.5rem;
  }

  .offer-buttons {
    justify-content: center;
    width: 100%;
  }
}

        /* Mobile First Responsive Design */
        
        /* Extra Small Devices (phones, less than 576px) */
        @media (max-width: 575px) {
            /* Top Bar */
            .top-bar {
                padding: 0.5rem 1rem;
                font-size: 0.8rem;
            }

            .top-bar-content {
                flex-direction: column;
                gap: 0.5rem;
                text-align: center;
            }

            .top-bar-left {
                flex-direction: column;
                gap: 0.5rem;
                width: 100%;
            }

            .emergency-badge {
                padding: 0.4rem 0.8rem;
                font-size: 0.75rem;
            }

            /* Header */
            .header-content {
                flex-direction: column;
                padding: 0.75rem 1rem;
                gap: 0.75rem;
            }

            .logo-container {
                gap: 0.75rem;
            }

            .logo-icon {
                width: 40px;
                height: 40px;
                font-size: 1.2rem;
            }

            .logo-text {
                font-size: 1.3rem;
                letter-spacing: 1px;
            }

            .tagline {
                font-size: 0.6rem;
            }

            .header-right {
                /*flex-direction: column;*/
                width: 100%;
                gap: 0.75rem;
            }

            .header-phone {
                align-items: center;
                width: 100%;
            }

            .phone-number {
                font-size: 1.3rem;
            }

            .cta-button {
                width: 100%;
                justify-content: center;
                padding: 0.875rem 1.5rem;
                font-size: 0.9rem;
            }

            /* Hero Section */
            .hero {
                padding: 2rem 1rem 3rem;
            }

            .hero-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .hero-left h1 {
                font-size: 1.75rem;
                line-height: 1.3;
                margin-bottom: 1rem;
            }

            .hero-features li {
                font-size: 0.95rem;
                padding: 0.5rem 0;
            }

            .feature-icon {
                width: 32px;
                height: 32px;
                font-size: 0.9rem;
            }

            .hero-buttons {
                flex-direction: column;
                gap: 0.75rem;
            }

            .cta-large {
                width: 100%;
                padding: 1rem 1.5rem;
                font-size: 1rem;
                justify-content: center;
            }

            .hero-right {
                padding: 1.5rem;
                order: 2;
            }

            .hero-form-header h2 {
                font-size: 1.4rem;
            }

            .hero-form-header p {
                font-size: 0.9rem;
            }

            /* Service Strip */
            .service-strip {
                padding: 1rem;
            }

            .service-strip-content {
                flex-direction: column;
                gap: 0.75rem;
            }

            .strip-item {
                font-size: 0.8rem;
            }

            /* Sections */
            .services,
            .offers,
            .why-choose,
            .faq,
            .testimonials,
            .final-cta {
                padding: 3rem 1rem;
            }

            .value-props,
            .brand-trust {
                padding: 2.5rem 1rem;
            }

            .section-header {
                margin-bottom: 2rem;
            }

            .section-header h2 {
                font-size: 1.75rem;
                line-height: 1.3;
            }

            .section-header p {
                font-size: 1rem;
            }

            /* Service Cards */
            .services-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .service-content {
                padding: 1.5rem;
            }

            .service-card h3 {
                font-size: 1.3rem;
            }

            .service-card p {
                font-size: 0.95rem;
                margin-bottom: 1rem;
            }

            /* Value Props */
            .value-props-container {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .value-prop-card {
                padding: 2rem 1.5rem;
            }

            .value-icon {
                width: 70px;
                height: 70px;
                font-size: 2rem;
                margin-bottom: 1rem;
            }

            .value-prop-card h3 {
                font-size: 1.3rem;
            }

            /* Offers */
            .offers-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .offer-card {
                padding: 2rem 1.5rem;
            }

            .offer-icon {
                font-size: 3rem;
            }

            .offer-price {
                font-size: 2.5rem;
            }

            .offer-title {
                font-size: 1.2rem;
            }

            /* Brand Trust */
            .brand-logos {
                gap: 1.5rem;
                flex-wrap: wrap;
            }

            .brand-logo {
                font-size: 1.3rem;
            }

            /* Why Choose Us */
            .why-choose-content {
                grid-template-columns: 1fr;
                gap: 2.5rem;
            }

            .why-choose-left h2 {
                font-size: 1.75rem;
            }

            .why-choose-left p {
                font-size: 1rem;
            }

            .features-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            .feature-item {
                padding: 1.25rem;
            }

            .experience-badge {
                padding: 2rem;
            }

            .experience-badge h3 {
                font-size: 3.5rem;
            }

            .experience-badge p {
                font-size: 1.2rem;
            }

            /* FAQ */
            .faq-question {
                padding: 1.25rem;
                font-size: 1rem;
            }

            .faq-answer-content {
                padding: 0 1.25rem 1.25rem;
                font-size: 0.95rem;
            }

            /* Testimonials */
            .testimonials-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .testimonial-card {
                padding: 2rem 1.5rem;
            }

            .testimonial-text {
                font-size: 0.95rem;
            }

            /* Final CTA */
            .final-cta {
                padding: 4rem 1rem;
            }

            .cta-icon-badge {
                width: 60px;
                height: 60px;
                font-size: 2rem;
                margin-bottom: 1.5rem;
            }

            .final-cta h2 {
                font-size: 1.75rem;
                line-height: 1.3;
                margin-bottom: 0.75rem;
            }

            .final-cta p {
                font-size: 1rem;
                margin-bottom: 2rem;
            }

            .final-cta-buttons {
                flex-direction: column;
                gap: 1rem;
                margin-bottom: 2rem;
            }

            .final-cta-buttons .cta-button {
                width: 100%;
            }

            .cta-trust-line {
                flex-direction: column;
                gap: 0.5rem;
            }

            .trust-divider {
                display: none;
            }

            /* Footer */
            footer {
                padding: 2.5rem 1rem 1rem;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .footer-section h3 {
                font-size: 1.3rem;
            }

            /* Forms */
            .form-row {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            .form-group input,
            .form-group select,
            .form-group textarea {
                padding: 0.875rem;
                font-size: 1rem;
            }

            .submit-btn {
                padding: 1rem;
                font-size: 1rem;
            }

            /* Modal */
            .modal-overlay {
                padding: 0;
            }

            .modal-content {
                border-radius: 0;
                max-height: 100vh;
                margin: 0;
            }

            .modal-header {
                padding: 2rem 1.5rem 1.5rem;
                border-radius: 0;
            }

            .modal-header h2 {
                font-size: 1.5rem;
            }

            .modal-header p {
                font-size: 0.9rem;
            }

            .modal-body {
                padding: 1.5rem;
            }

            .modal-close {
                width: 36px;
                height: 36px;
                font-size: 1.3rem;
            }
            .logo-sec img {
    width: 65%;
    height: auto;
    margin: 0 auto;
}
    .phone-number {
        font-size: 18px;
    }
    .cta-button{
        padding: 10px;
        font-size: 16px;
    }
    .logo-sec1 img {
    width: 75%;
}
.sec-res {
    display: block !important;
    text-align: center;
}
        }

        /* Small Devices (landscape phones, 576px and up) */
        @media (min-width: 576px) and (max-width: 767px) {
                .phone-number {
        font-size: 18px;
    }
    .sec-res {
    display: block !important;
    text-align: center;
}
    .logo-sec1 img {
    width: 75%;
}
    .cta-button{
        padding: 10px;
        font-size: 16px;
    }
            .top-bar-content {
                flex-direction: row;
                flex-wrap: wrap;
            }

            .header-content {
                flex-wrap: wrap;
                justify-content: space-between;
            }

            .header-right {
                flex-direction: row;
                width: 100%;
                justify-content: space-between;
            }

            .hero-content {
                grid-template-columns: 1fr;
            }

            .hero-left h1 {
                font-size: 2rem;
            }

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

            .value-props-container {
                grid-template-columns: 1fr;
            }

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

            .why-choose-content {
                grid-template-columns: 1fr;
            }

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

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

            .form-row {
                grid-template-columns: 1fr 1fr;
            }

            .final-cta-buttons {
                flex-direction: row;
            }

            .final-cta-buttons .cta-button {
                width: auto;
                flex: 1;
            }
            .logo-sec img {
    width: 40%;
    height: auto;
    margin: 0 auto;
}
        }

        /* Medium Devices (tablets, 768px and up) */
        @media (min-width: 768px) and (max-width: 991px) {
            .hero-content {
                grid-template-columns: 1fr;
                gap: 2.5rem;
            }

            .hero-left h1 {
                font-size: 2.25rem;
            }

            .services-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.5rem;
            }

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

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

            .why-choose-content {
                grid-template-columns: 1fr;
            }

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

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

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

            .final-cta h2 {
                font-size: 2.5rem;
            }

            .final-cta-buttons {
                flex-direction: row;
            }

            .trust-divider {
                display: inline;
            }
        }

        /* Large Devices (desktops, 992px and up) */
        @media (min-width: 992px) and (max-width: 1199px) {
            .hero-content {
                grid-template-columns: 1fr 1fr;
                gap: 2.5rem;
            }

            .services-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .value-props-container {
                grid-template-columns: repeat(3, 1fr);
            }

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

            .why-choose-content {
                grid-template-columns: 1fr 1fr;
            }

            .testimonials-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        /* Extra Large Devices (large desktops, 1200px and up) */
        @media (min-width: 1200px) {
            .hero-content {
                grid-template-columns: 1.2fr 1fr;
            }

            .services-grid {
                grid-template-columns: repeat(4, 1fr);
            }

            .value-props-container {
                grid-template-columns: repeat(3, 1fr);
            }

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

            .testimonials-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        /* Touch Device Optimizations */
        @media (hover: none) and (pointer: coarse) {
            .cta-button,
            .submit-btn,
            .service-link,
            .faq-question {
                min-height: 44px; /* Apple's recommended touch target size */
                min-width: 44px;
            }

            .phone-number {
                padding: 0.5rem;
                min-height: 44px;
                display: flex;
                align-items: center;
            }
        }

        /* Landscape Orientation Fixes */
        @media (max-height: 600px) and (orientation: landscape) {
            .hero {
                padding: 1.5rem 1rem 2rem;
            }

            .hero-left h1 {
                font-size: 1.5rem;
                margin-bottom: 0.75rem;
            }

            .hero-features li {
                padding: 0.4rem 0;
            }

            .modal-content {
                max-height: 95vh;
            }
        }

        /* Print Styles */
        @media print {
            .top-bar,
            header,
            .modal-overlay,
            .cta-button,
            .submit-btn,
            footer {
                display: none;
            }

            body {
                font-size: 12pt;
            }

            .section-header h2 {
                page-break-after: avoid;
            }
        }

        /* Accessibility Improvements */
        @media (prefers-reduced-motion: reduce) {
            *,
            *::before,
            *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
        }

        /* High Contrast Mode */
        @media (prefers-contrast: high) {
            .cta-button,
            .submit-btn {
                border-width: 3px;
            }

            .service-card,
            .value-prop-card,
            .testimonial-card {
                border: 2px solid var(--text-dark);
            }
        }

        @media (min-width:992px) and (max-width:1399px){
            .sec-res {
    display: block !important;
    text-align: center;
}
.res-btn {
    margin-top: 29px;
}
        }
        input.wpcf7-form-control, select.wpcf7-form-control.wpcf7-select.form-select {
    position: relative;
    flex: 1 1 auto;
    width: 100%;
    padding: 1rem;
    border: 2px solid #e8e8e8;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}
textarea.form-control {
    max-height: 100px !important;
}
.wpcf7-spinner{
    display: none !important;
}
.drc-btn p {
    margin-bottom: 0px !important;
}
.wpcf7-response-output {
    color: #000 !important;
}
@media(max-width:767px){
	.modal-content{
		max-width:450px;
	}
	.input-group p{
		margin-bottom:0px !important;
	}
}