* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9fafb;
	 overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    background-color: #dc2626;
    color: white;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    font-size: 2rem;
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: bold;
}

.logo p {
    font-size: 0.875rem;
    color: #fecaca;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

nav a:hover {
    color: #fecaca;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: linear-gradient(to right, #111827, #1f2937);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.hero h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: bold;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #d1d5db;
    margin-bottom: 40px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.stat-box {
    background-color: #dc2626;
    padding: 30px 40px;
    border-radius: 10px;
}

.stat-box.secondary {
    background-color: #374151;
}

.stat-label {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 10px;
}

.stat-value {
    font-size: 2rem;
    font-weight: bold;
}

.stat-value a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
}

.stat-value a:hover {
    opacity: 0.8;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 35px;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    font-size: 1rem;
    display: inline-block;
}

.btn-primary {
    background-color: #dc2626;
    color: white;
}

.btn-primary:hover {
    background-color: #b91c1c;
    transform: scale(1.05);
}

.btn-secondary {
    background-color: white;
    color: #111827;
}

.btn-secondary:hover {
    background-color: #f3f4f6;
    transform: scale(1.05);
}

/* Services Section */
.services {
    padding: 80px 0;
    background-color: white;
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 60px;
    color: #111827;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: #f9fafb;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    transition: all 0.3s;
    border: 2px solid transparent;
}

.service-card:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    border-color: #dc2626;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.service-card h4 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: #111827;
}

.service-card p {
    color: #6b7280;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
}

.service-features li {
    color: #374151;
    font-size: 0.875rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.service-features li::before {
    content: "✓";
    color: #16a34a;
    font-weight: bold;
    margin-right: 10px;
}

/* Vehicle Types Section */
.vehicles {
    padding: 80px 0;
    background-color: #f3f4f6;
}

.vehicles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.vehicle-item {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 15px;
}

.vehicle-check {
    font-size: 1.5rem;
}

.vehicle-item span {
    font-weight: 600;
    color: #1f2937;
}

/* Coverage Section */
.coverage {
    padding: 80px 0;
    background-color: white;
}

.coverage-content {
    max-width: 900px;
    margin: 0 auto;
}

.coverage-banner {
    background: linear-gradient(to bottom right, #dc2626, #991b1b);
    color: white;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    margin-bottom: 40px;
}

.coverage-banner h4 {
    font-size: 1.75rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
}

.coverage-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    text-align: center;
}

.coverage-stat-value {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.coverage-stat-label {
    color: #fecaca;
}

.coverage-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.coverage-box {
    background-color: #f9fafb;
    padding: 30px;
    border-radius: 8px;
}

.coverage-box h5 {
    font-weight: bold;
    font-size: 1.125rem;
    margin-bottom: 20px;
    color: #111827;
}

.coverage-box ul {
    list-style: none;
}

.coverage-box li {
    color: #374151;
    margin-bottom: 10px;
}

/* About Section */
.about {
    padding: 80px 0;
    background-color: #f3f4f6;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    font-size: 1.125rem;
    color: #374151;
    margin-bottom: 20px;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background-color: #dc2626;
    color: white;
}

.contact-grid {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item h4 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.contact-item p {
    margin-bottom: 5px;
}

.contact-number {
    font-size: 2rem;
    font-weight: bold;
}

.contact-number a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
}

.contact-number a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.contact-subtext {
    color: #fecaca;
}

/*.contact-form {
    background-color: white;
    color: #111827;
    padding: 30px;
    border-radius: 8px;
}*/
.contact-form {
	color: #111827;
	min-height: 670px;
  background:#fff; border-radius:14px; padding:20px;

  box-shadow:0 4px 12px rgba(0,0,0,0.3);

}

.contact-form h4 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid #d1d5db;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
}

.form-control:focus {
    outline: none;
    border-color: #dc2626;
}

textarea.form-control {
    resize: vertical;
}

/* Footer */
footer {
    background-color: #111827;
    color: white;
    padding: 40px 0;
    text-align: center;
}

footer p {
    margin-bottom: 10px;
}

.footer-subtext {
    color: #9ca3af;
    font-size: 0.875rem;
}

/* Floating Emergency Button */
.floating-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #dc2626;
    color: white;
    padding: 20px 30px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s;
    z-index: 999;
    animation: pulse 2s infinite;
}

.floating-btn:hover {
    background-color: #b91c1c;
    transform: scale(1.1);
    animation: none;
}

.floating-btn-icon {
    font-size: 1.5rem;
    animation: ring 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 10px 30px rgba(220, 38, 38, 0.4);
    }
    50% {
        box-shadow: 0 10px 40px rgba(220, 38, 38, 0.7);
    }
}

@keyframes ring {
    0%, 100% {
        transform: rotate(0deg);
    }
    10%, 30% {
        transform: rotate(-15deg);
    }
    20%, 40% {
        transform: rotate(15deg);
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Responsive Design */
@media (max-width: 768px) {
    nav {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero h2 {
        font-size: 2rem;
    }

    .hero-stats {
        flex-direction: column;
        align-items: center;
    }

    .coverage-stats {
        grid-template-columns: 1fr;
    }

    .coverage-details {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
    }

    .floating-btn {
        padding: 15px 20px;
        font-size: 0.9rem;
        bottom: 20px;
        right: 20px;
    }

    .floating-btn span:last-child {
        font-size: 0.85rem;
    }
}
.hero-keyword-area {
  margin-top: 10px;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  color: #ffe66b; /* soft yellow like screenshot */
  letter-spacing: 0.5px;
}

.hero-keyword,
.hero-area {
  white-space: nowrap;
  font-size: 2.6rem;
  color: #000; /* black */
}
    .contact-card {

      background:#fff; border-radius:14px; padding:20px;

      box-shadow:0 4px 12px rgba(0,0,0,0.3);

    }

    .contact-card label {

      display:block; font-weight:700; margin-bottom:4px; font-size:13px;

    }

    .contact-card input, .contact-card textarea {

      width:100%; padding:9px 10px; margin-bottom:12px;

      border-radius:8px; border:2px solid #ddd; font-size:14px;

    }

    .contact-card input:focus, .contact-card textarea:focus {

      outline:none; border-color:#e10600;

    }

    .btn-submit {

      width:100%; padding:11px; border:none; border-radius:990px;

      background:#e10600; color:#fff; font-size:15px; font-weight:800;

      cursor:pointer;

    }

    .btn-submit:hover { background:#b70000; }
	iframe {
    border: none; /* Removes the iframe border */
    max-width: 100%; /* Makes the iframe width fit the container */
    height: 100%; /* Makes the iframe height fit the container */
    display: block; /* Ensures there are no extra spaces around the iframe */
}
.contact-form iframe {
    border: none; /* Removes the iframe border */
    width: 100%; /* Makes the iframe width fit the container */
    height: 93%; /* Makes the iframe height fit the container */
    display: block; /* Ensures there are no extra spaces around the iframe */
}
@media only screen and (max-width: 767px) {
    /* Ensure the form and its elements are visible */
    .request-callback-form {
        display: block !important; /* Ensure it's not hidden */
    }
}
