/* Global Styles */
:root {
    --primary-color: #1a73e8;
    --secondary-color: #fbbc05;
    --dark-color: #202124;
    --light-color: #f8f9fa;
    --success-color: #34a853;
    --danger-color: #ea4335;
    --gray-color: #5f6368;
    --heading-color: darkred;
    --dark-red: #8B0000;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* HEADER */
header {
    background: #fff;
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
}
.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.logo img {
    height: 60px;
    width: auto;
}
nav ul {
    display: flex;
    list-style: none;
}
nav ul li {
    margin-left: 20px;
}
nav ul li a {
    text-decoration: none;
    color: var(--dark-color);
    font-weight: bold;
    padding: 10px 0;
    transition: color 0.3s ease;
    position: relative;
}
nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--dark-red);
    transition: width 0.3s ease;
}
nav ul li a:hover {
    color: var(--dark-red);
}
nav ul li a:hover::after {
    width: 100%;
}
.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 10px;
}

/* HERO SECTION */
/* HERO SECTION */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
    padding-bottom: 50px;
    overflow: hidden;
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    width: 100%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-subheading {
    font-size: 2rem;
    color: var(--dark-red);
    background-color: rgba(255, 255, 255, 0.5);
    padding: 5px 5px;
    border-radius: 5px;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero h1 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}

.hero-subheading-bottom {
    font-size: 1.5rem;
    color: var(--dark-red);
    background-color: rgba(255, 255, 255, 0.5);
    padding: 10px 20px;
    border-radius: 5px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.btn {
    background: var(--dark-red);
    color: #fff;
    padding: 2px 5px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}
.btn:hover {
    background: #6d0000;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}
/* ABOUT SECTION */
.about {
    padding: 100px 0;
}
.about h2 {
    font-size: 2.5rem;
    text-align: center;
    color: var(--heading-color);
    margin-bottom: 40px;
}
.about-content {
    display: flex;
    gap: 40px;
    align-items: center;
    margin-top: 40px;
    flex-wrap: wrap;
}
.about-text {
    flex: 1;
}
.about-image {
    flex: 1;
}
.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.address {
    margin-top: 20px;
    background: #f5f5f5;
    padding: 15px;
    border-radius: 5px;
}
.address p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0;
}

/* SERVICES SECTION */
.services {
    padding: 80px 0;
}
.services h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
    color: var(--heading-color);
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}
/* Make each service card a flex container so the button is at the bottom */
.service-card {
    background: #fff;
    border: 2px solid var(--dark-red);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}
/* Set each service gif image to width 200px and height 80px */
.service-icon img {
    width: 200px;
    height: 80px;
    object-fit: contain;
}
.service-card h3 {
    font-size: 1.5rem;
    margin: 15px 0;
}


/* PAYMENT SECTION */
.payment {
    background: #fff;
    padding: 80px 0;
}
.payment h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: var(--heading-color);
}
.payment-content {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    align-items: center;
    flex-wrap: wrap;
}
.bank-details {
    flex: 1;
    padding: 30px;
    background: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.details-box {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid #eee;
}
.details-box p {
    margin-bottom: 10px;
    font-size: 1.1rem;
}
.payment-instructions {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #eee;
}
.payment-instructions h4 {
    color: var(--heading-color);
    margin-bottom: 15px;
}
.payment-instructions ul {
    padding-left: 20px;
}
.payment-instructions li {
    margin-bottom: 10px;
}

/* CONTACT SECTION */
.contact {
    background: #f7f7f7;
    padding: 80px 0;
}
.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--heading-color);
}
.contact-content {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}
.contact-info {
    flex: 1;
}
.contact-form {
    flex: 1;
}
.contact-info-list {
    list-style: none;
}
.contact-info-list li {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
}
.contact-info-list a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}
.contact-info-list a:hover {
    color: var(--primary-color);
}
.contact-info-list i {
    font-size: 1.5rem;
    width: 30px;
    text-align: center;
    color: var(--dark-red);
}

.error-message {
    color: var(--danger-color);
    font-size: 0.9rem;
    margin-top: 5px;
    display: block;
  }
  
/* Social Media Links Styling */
.social-media {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-top: 20px;
  }
  
.social-media a {
    font-size: 1.5rem;
    color: var(--dark-red); 
    transition: color 0.3s ease;
  }
  
.social-media a:hover {
    color: var(--primary-color);
  }

.form-group {
    margin-bottom: 20px;
}
input,
textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}
input:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}
textarea {
    resize: vertical;
    min-height: 150px;
}

/* FOOTER */
footer {
    background: var(--dark-color);
    color: #fff;
    padding: 60px 0 0;
}
.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding-bottom: 20px;
}
.footer-section h3 {
    color: #fff;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}
.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--primary-color);
}
.footer-section ul {
    list-style: none;
}
.footer-section ul li {
    margin-bottom: 10px;
}
.footer-section ul li a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer-section ul li a:hover {
    color: #fff;
}
.footer-section p {
    color: #ddd;
    margin-bottom: 10px;
}
.footer-bottom {
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
    border-top: 1px solid #444;
}
.footer-logo img {
    height: 40px;
    width: auto;
    margin-bottom: 15px;
}

/* RESPONSIVE STYLES */
@media (max-width: 992px) {
    .services-grid,
    .testimonial-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    .footer-content {
      grid-template-columns: repeat(2, 1fr);
    }
    .footer-section:last-child {
      grid-column: 1 / span 2;
    }
    .payment-content,
    .about-content,
    .contact-content {
      flex-direction: column;
      align-items: center;
    }
}
@media (max-width: 768px) {
    .header-content {
      flex-direction: column;
      align-items: flex-start;
    }
    .mobile-menu-btn {
      display: block;
      position: absolute;
      right: 20px;
      top: 20px;
    }
    nav ul {
      flex-direction: column;
      position: absolute;
      top: 60px;
      right: 20px;
      background: #fff;
      display: none;
      padding: 20px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
      z-index: 999;
    }
    nav ul.show {
      display: flex;
    }
    nav ul li {
      margin: 10px 0;
    }
    .hero h1 {
      font-size: 2.5rem;
    }
    .hero p {
      font-size: 1.2rem;
    }
    section {
      padding: 60px 0;
    }
    h2 {
      font-size: 2rem;
    }
}
@media (max-width: 576px) {
    .services-grid,
    .testimonial-grid {
      grid-template-columns: 1fr;
    }
    .footer-content {
      grid-template-columns: 1fr;
    }
    .contact-info {
      flex-direction: column;
      gap: 10px;
    }
    input,
    textarea {
      padding: 12px;
    }
    .btn {
      padding: 10px 20px;
    }
    h2 {
      font-size: 1.8rem;
    }
    .qr-image img {
      width: 200px;
      height: 200px;
    }
}
