/* Global Styles */
/* Fonts ab template <head> se ASYNC aati hain — @import ka render-blocking
   chain (styles.css -> css2 -> woff2, ~780ms) hata diya */

:root {
    --primary-color: #e70505;
    --secondary-color: #000000;
    --text-color: #54595f;
    --heading-color: #000000;
    --bg-light: #f4f4f4;
    --white: #ffffff;
    --container-width: 1140px;
}

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

body {
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
    padding-top: 80px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Roboto Slab', serif;
    color: var(--heading-color);
    margin-bottom: 15px;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 15px;
    border: none;
    cursor: pointer;
}

.btn i {
    margin-right: 8px;
}

.btn:hover {
    background-color: #e70505;
}

/* Header */
header {
    background: var(--white);
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 60px;
    width: auto;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-phone {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 18px;
    color: var(--heading-color);
}

.header-phone i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 24px;
}

.mobile-menu-btn {
    display: none;
    font-size: 24px;
    color: #cc0000;
    cursor: pointer;
}

/* Navigation */
nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
}

nav ul li a {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: var(--heading-color);
}

nav ul li a:hover {
    color: #cc0000;
}

/* Hero Section */
.hero-section {
    padding: 70px 0 80px;
    background: linear-gradient(135deg, #eceeffff 0%, #f4f5ffff 50%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 40px;
    align-items: center;
}

/* Hero image: rounded card + decorative grid behind + floating rating badge */
.hero-image-wrap {
    position: relative;
    display: inline-block;
    width: 100%;
}

.hero-image-wrap::before {
    content: '';
    position: absolute;
    top: -22px;
    right: -22px;
    width: 45%;
    height: 55%;
    z-index: 0;
    background-image:
        linear-gradient(var(--primary-color) 1px, transparent 1px),
        linear-gradient(90deg, var(--primary-color) 1px, transparent 1px);
    background-size: 22px 22px;
    opacity: 0.14;
    border-radius: 6px;
}

.hero-image-wrap img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 24px 50px rgba(30, 30, 80, 0.16);
    object-fit: cover;
}


.breadcrumbs {
    font-size: 14px;
    color: #888;
    margin-bottom: 20px;
}

.breadcrumbs a {
    color: var(--text-color);
}

.hero-content h1 {
    font-size: 44px;
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 22px;
}

.hero-subtitle {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.hero-content p {
    margin-bottom: 30px;
    font-size: 16px;
}

/* About & Form Split Section */
.about-form-section {
    padding: 80px 0;
    background-color: #FFFFFF;
}

.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    /* Form column lamba hota hai — center align se dono columns balanced dikhte hain */
    align-items: center;
}

/* About Column Styles */
.about-content h2 {
    font-size: 30px;
    margin-bottom: 20px;
    line-height: 1.4;
}

.about-tagline {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 25px;
    color: var(--text-color);
}

.about-content p {
    margin-bottom: 30px;
    font-size: 17px;
    line-height: 1.8;
}

.about-content .btn {
    padding: 14px 30px;
    font-size: 16px;
}

/* Form Column Styles */
.form-wrapper {
    background: var(--white);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #eee;
    /* Added border for better definition on white bg */
}

.form-wrapper h2 {
    text-align: center;
    margin-bottom: 14px;
    color: #cc0000;
    font-size: 20px;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 0;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-control {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    background-color: #f9f9f9;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    background-color: var(--white);
}

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

/* Features Section */
.features-section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.features-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: stretch;
}

.features-columns {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    gap: 0;
}

.feature-box {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.feature-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--white);
    background-color: var(--primary-color);
    /* Added background color */
    border-radius: 50%;
    /* Make it circular */
}

.features-image {
    display: flex;
    align-items: stretch;
}

.features-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

/* Services List Section */
.services-list-section {
    padding: 60px 0;
    background: linear-gradient(180deg, #FFFAF7 0%, #ECEDFF 100%);
}

.services-list-section h2 {
    color: var(--heading-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    font-size: 16px;
}

.service-item i {
    color: #FFFFFF;
    font-size: 14px;
    background: #e70505;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.load-more-container {
    text-align: center;
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
}

/* Accreditations Section */
.accreditations-section {
    padding: 60px 0 0;
    text-align: center;
    width: 100%;
    background: #DCDCDC;
}

.accreditations-section .container {
    /* Use default 1140px container width - image stays centered */
    width: 100%;
}

.accreditations-section .section-header {
    margin-bottom: 10px;
}

.accreditations-section h2 {
    margin-bottom: 10px;
    text-transform: uppercase;
}

.accreditations-section h2 b {
    color: #000;
    font-weight: 700;
}

.accreditations-image {
    background-color: #DCDCDC;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    padding-left: calc(50vw - 50%);
    padding-right: calc(50vw - 50%);
}

.accreditations-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Process Section */
.process-section {
    padding: 80px 0;
    background-color: #f4f0f3;
}

.process-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.process-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    /* Optional: smooth corners like reference often has */
}

.process-steps-wrapper {
    background: transparent;
    padding: 0;
}

.process-steps ul {
    list-style: none;
    padding-left: 0;
    counter-reset: step-counter;
}

.process-steps ul li {
    position: relative;
    padding-left: 56px;
    font-size: 18px;
    color: inherit;
    counter-increment: step-counter;
    display: flex;
    align-items: center;
    margin-bottom: 18px;
    min-height: 40px;
}

/* Numbered red circle badge (clean design — "Step 1:" label ki jagah) */
.process-steps ul li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    font-size: 17px;
    font-weight: 700;
}

.process-steps ul li::after {
    content: none;
}

.text-left {
    text-align: left !important;
}

@media (max-width: 991px) {
    .process-content {
        grid-template-columns: 1fr;
        padding: 20px;
    }
}

/* Guide Section */
.guide-section {
    padding: 60px 0;
    background-color: var(--white);
}

.guide-section .section-header {
    text-align: left;
    max-width: 900px;
    margin: 0 auto 50px;
}

.guide-list ul {
    list-style: none;
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 40px;
}

@media (max-width: 768px) {
    .guide-list ul {
        grid-template-columns: 1fr;
    }
}

.guide-list ul li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 18px;
}

.guide-list ul li i {
    color: var(--primary-color);
    font-size: 20px;
    margin-top: 5px;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background:
        linear-gradient(to right, #FFFAF7, #FFFAF8),
        linear-gradient(to bottom, transparent, #EDEEFF);
    background-blend-mode: multiply;
}

.testimonials-header h2,
.testimonials-header p {
    color: var(--heading-color);
    text-align: center;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.testimonial-card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    color: #333;
}

.testimonial-card.highlight {
    background: #e70505;
    color: #fff;
}

.testimonial-card.highlight .author-name {
    color: #fff;
}

.testimonial-author {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
}

.stars {
    color: #FFD700;
}

.call-cta-center {
    text-align: center;
}

/* Complete Services Section */
.complete-services-section {
    padding: 60px 0;
    background: linear-gradient(225deg, #FCE4E4 0%, #F2F4F7 100%);
}

.complete-services-list ul {
    list-style: none;
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 40px;
}

@media (max-width: 768px) {
    .complete-services-list ul {
        grid-template-columns: 1fr;
    }
}

.complete-services-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 18px;
    position: relative;
}

.complete-services-list li::before {
    font-family: 'Font Awesome 5 Free';
    content: "\f0a4";
    font-weight: 900;
    color: var(--primary-color);
    font-size: 28px;
    line-height: 1.3;
}

/* Emergency Section */
.emergency-section {
    padding: 80px 0;
    background: #E5DBE3;
}

.emergency-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.emergency-content h2 {
    color: #e70505;
}

.emergency-content h3 {
    color: #000;
}

.emergency-content p {
    color: #54595f;
}

.btn-large {
    font-size: 18px;
    padding: 18px 24px;
    margin-top: 20px;
    background: #e70505;
    color: #fff;
    border-radius: 5px;
}

.btn-large:hover {
    background: #e70505;
    color: #fff;
}

/* Tips Section */
.tips-section {
    padding: 60px 0;
}

.tips-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

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

.tips-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 18px;
}

.check-item {
    font-weight: 700;
    font-size: 22px !important;
    margin-bottom: 25px !important;
}

.check-item .icon {
    color: #28a745;
}

.check-item.warn .icon {
    color: #dc3545;
}

.tips-list .icon {
    font-size: 24px;
    color: var(--primary-color);
}

.mt-30 {
    margin-top: 30px;
}

.text-center {
    text-align: center;
}

/* Nearby Areas Section */
.nearby-areas-section {
    padding: 60px 0;
}

.nearby-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.nearby-item {
    background: #f4f4f4;
    padding: 20px;
    text-align: center;
    font-weight: 600;
    border-radius: 4px;
    transition: 0.3s;
}

.nearby-item:hover {
    background: var(--primary-color);
    color: #fff;
}

/* Map Section */
.map-section {
    padding-top: 40px;
    background: #f4f4f4;
}

.map-container {
    line-height: 0;
}

.map-container iframe {
    width: 100%;
    display: block;
}

/* Footer Section */
footer {
    background-color: #FFFFFF;
    color: #54595f;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo img {
    max-width: 200px;
    margin-bottom: 20px;
}

.footer-col h4 {
    color: #000;
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

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

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

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact i {
    color: var(--primary-color);
}

.footer-disclaimer {
    border-top: 1px solid #ddd;
    padding-top: 20px;
    font-size: 13px;
    color: #54595f;
    text-align: center;
}

.footer-disclaimer p {
    margin-bottom: 10px;
}

.copyright {
    color: #000;
    font-weight: 500;
}

/* Authority Badges */
.authority-badges-container {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  -webkit-overflow-scrolling: touch;
}

.authority-badges-container span {
  font-weight: 700;
  color: #111;
}

.authority-badges span {
  font-weight: 700;
  color: #111;
}

.authority-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
    align-items: center;
}

.authority-badges a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.authority-badges a:hover {
    transform: scale(1.1);
    opacity: 0.9;
}

/* Real uploaded logo — uniform clean WHITE card (sab consistent dikhte hain) */
.authority-badges a.badge-logo {
    background: #ffffff !important;
    width: 56px;
    height: 56px;
    border-radius: 10px;
    padding: 7px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}

.authority-badges a.badge-logo:hover {
    transform: scale(1.08);
    opacity: 1;
}

.authority-badges a.badge-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.authority-badges a span {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

/* Yellow Pages */
.badge-yp {
    background-color: #FFE600;
    color: #000;
}

/* BBB */
.badge-bbb { background: #005a8c; color: #fff;}
.badge-bbb span { color: #ffffff !important; }

/* Yelp */
.badge-yelp {
    background-color: #D32323;
    color: #fff;
}

/* Facebook */
.badge-facebook {
    background-color: #1877F2;
    color: #fff;
}

/* Angi */
.badge-angi {
    background-color: #FF6153;
    color: #fff;
}

.badge-angi span {
    font-size: 10px;
}

/* HomeAdvisor */
.badge-homeadvisor {
    background-color: #F68315;
    color: #fff;
}

/* Houzz */
.badge-houzz {
    background-color: #4DBC15;
    color: #fff;
}

/* Google */
.badge-google {
    background-color: #4285F4;
    color: #fff;
}

/* Instagram */
.badge-instagram {
    background-color: #E4405F;
    color: #fff;
}

/* LinkedIn */
.badge-linkedin {
    background-color: #0A66C2;
    color: #fff;
}

/* Yahoo Local */
.badge-yahoo {
    background-color: #6001D2;
    color: #fff;
}

/* Nextdoor */
.badge-nextdoor {
    background-color: #64A626;
    color: #fff;
}

/* MapQuest */
.badge-mapquest {
    background-color: #178287;
    color: #fff;
}

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

    .hero-grid,
    .features-container,
    .process-content,
    .emergency-grid,
    .tips-grid,
    .split-layout {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 34px;
    }

    .hero-image-wrap {
        max-width: 560px;
        margin: 10px auto 0;
        display: block;
    }

    .mobile-menu-btn {
        display: block;
    }

    nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        display: none;
        /* Hidden by default */
        padding: 20px;
    }

    nav.active {
        display: block;
    }

    nav ul {
        flex-direction: column;
        gap: 15px;
    }

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

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

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

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

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

    .features-columns {
        flex-direction: column;
        gap: 20px;
    }

    .header-actions .btn {
        display: none;
        /* Hide call button on smaller screens if needed, or adjust */
    }

    /* Ensure call button stays visible if key for mobile UX */
    .header-actions .btn {
        display: inline-flex;
        padding: 8px 12px;
        font-size: 13px;
    }

    .hero-content h1 {
        font-size: 28px;
    }
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background-color: #04296E;
}

.faq-section .section-header h2 {
    color: #fff;
}

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

.faq-item {
    margin-bottom: 20px;
    border: none;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 20px 25px;
    background: #182E4D;
    border: none;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    font-family: 'Roboto Slab', serif;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: #fff;
    background-color: #1a3a5c;
}

.faq-question i {
    color: #fff;
    transition: transform 0.3s ease;
}

.faq-question.active i {
    transform: rotate(90deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background-color: #fff;
}

.faq-answer p {
    padding: 0 25px 25px;
    color: var(--text-color);
    margin-bottom: 0;
}

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* Staggered animation delays */
.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Form validation styles */
.form-error {
    border-color: #e74c3c !important;
}

.error-message {
    color: #e74c3c;
    font-size: 12px;
    margin-top: 5px;
    display: none;
}

.form-error+.error-message {
    display: block;
}

/* Video Section */
.video-section {
    padding: 60px 0;
    background-color: #f4f4f4;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

/* Template ka video section .video-container use karta hai — 16:9, centered, na chhota na bada */
.video-container {
    position: relative;
    max-width: 720px;
    margin: 0 auto;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 768px) {
    .video-section {
        padding: 40px 0;
    }
}