/* ===== Global Styles ===== */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* ===== Header ===== */
header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #c00000;
    text-decoration: none;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #c00000;
}

.cta-button {
    background: #c00000;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s;
}

.cta-button:hover {
    background: #0055aa;
}

.mobile-menu-btn {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* ===== Hero Section ===== */
.hero {
    background: ##FAFAFA; /* Solid black */
    color: black; /* Ensures text contrast */
    text-align: center;
    padding: 180px 0 100px;
    position: relative;
}

/* Animated grid lines (futuristic effect) */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(37, 150, 190, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(37, 150, 190, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.3;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    from { background-position: 0 0; }
    to { background-position: 20px 20px; }
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
}

/* ===== Services Section ===== */
.services {
    padding: 80px 0;
    text-align: center;
}

.services h2 {
    font-size: 36px;
    margin-bottom: 50px;
    color: #c00000;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-card i {
    font-size: 50px;
    color: #c00000;
    margin-bottom: 20px;
}

/* Service Categories */
.service-category {
  background: rgba(37, 150, 190, 0.05);
  border-left: 4px solid rgb(37, 150, 190);
  padding: 25px;
  margin-bottom: 30px;
}

.service-list li {
  padding: 8px 0;
  border-bottom: 1px solid #eee;
}

/* Vendor Grid */
.vendor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 40px;
  padding: 30px 0;
}

.vendor-grid img {
  max-height: 60px;
  width: auto;
  margin: 0 auto;
}

/* ===== Trust Signals ===== */
.trust-signals {
    background: #ffffff;
    padding: 60px 0;
    text-align: center;
}

.trust-signals h2 {
    font-size: 30px;
    margin-bottom: 40px;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.badge {
    background: white;
    padding: 15px 25px;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.badge i {
    margin-right: 10px;
    color: #c00000;
}

/* ===== Footer ===== */
footer {
    background: #000000;
    color: white;
    padding: 60px 0 20px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #c00000; /* Brand red remains for headings */
}

/* ... rest of existing footer styles ... */

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
}

/* ===== WhatsApp Float Button ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 100;
    transition: transform 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* ===== Mobile Responsiveness ===== */
@media (max-width: 768px) {
    nav ul {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 20px 0;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }

    nav ul.active {
        display: flex;
    }

    nav ul li {
        margin: 10px 0;
        text-align: center;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 18px;
    }
    /* === About Page Styles === */
.about-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/about-bg.jpg');
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.story-image img {
    width: 100%;
    border-radius: 10px;
}

.checklist li {
    margin-bottom: 10px;
    list-style: none;
}

.checklist i {
    color: #c00000;
    margin-right: 10px;
}

.partner-logos {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.partner-logos img {
    height: 50px;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.partner-logos img:hover {
    opacity: 1;
}

/* === Contact Page Styles === */
/* ===== Contact Form Styles ===== */
.contact-form-section {
    padding: 60px 0;
    background: #f9f9f9;
}

.contact-form-section h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #c00000;
}

form {
    max-width: 1080px;
    margin: 0 auto;
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 25px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

input[type="text"],
input[type="email"],
select,
textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
}

select {
    appearance: none;
    background: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c00000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e") no-repeat right 12px center;
    background-size: 16px;
}

input[type="file"] {
    padding: 8px;
    border: 1px dashed #c00000;
    width: 100%;
}

button[type="submit"] {
    width: 100%;
    padding: 15px;
    font-size: 18px;
    margin-top: 20px;
}

@media (max-width: 768px) {
    form {
        padding: 20px;
    }
}

/* ===== Logo Image Styling ===== */
.logo img {
  height: 40px; /* Adjust based on your logo's aspect ratio */
  width: auto;
  transition: opacity 0.3s;
}

.logo img:hover {
  opacity: 0.9;
}

/* Mobile Logo Sizing */
@media (max-width: 768px) {
  .logo img {
    height: 30px;
  }
}

/* ===== Footer Links ===== */
.footer .footer-col ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

footer .footer-col ul li a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.video-hero {
    position: relative;
    height: 100vh;
}

.video-hero video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}


/* Add to testimonial */
/* ===== Testimonial Slider ===== */
.testimonial-slider {
    padding: 80px 0;
    background: #f8f9fa;
}

.testimonial-container {
    position: relative;
    min-height: 300px; /* Increased for better spacing */
}

.testimonial {
    position: absolute;
    width: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    text-align: center;
    pointer-events: none;
}

.testimonial.active {
    opacity: 1;
    pointer-events: all;
    z-index: 1;
}

.blockquote {
    font-size: 1.4rem;
    max-width: 800px;
    margin: 0 auto 30px;
    padding: 20px;
    font-style: italic;
    color: #333;
    position: relative;
}

.blockquote::before {
    content: "“";
    font-size: 4rem;
    position: absolute;
    left: -30px;
    top: -20px;
    color: #c00000; /* Updated to brand red */
}

.client h4 {
    color: #c00000; /* Updated to brand red */
    margin-bottom: 5px;
}

/* ===== Locations Section ===== */
.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.location-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.location {
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid #c00000;
}

.location h3 {
    color: #c00000;
    margin-bottom: 10px;
}

.location p {
    color: #666;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .location-grid {
        grid-template-columns: 1fr;
    }

    .location-column {
        gap: 20px;
    }
}
