/* Basic Styles */
body {
    box-sizing: border-box; /* Ensures padding and borders are included in width/height */
    font-family: "Lato", sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fdf4f4;
    color: #444;
    font-size: 16px; /* Set base font size */
    line-height: 1.6;
}
/* Navbar */
.navbar {
    display: flex;
    position: sticky;
    height: 90px;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    top: 0;
    z-index: 1000;
    background-color: #f7f7f7; 
}

.logo {
    position: absolute;
    top: 60%;
    left: 20px;
    transform: translateY(-50%);
    width: auto;
    max-height: 120px;
    z-index: 1;
}

.header-text {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    position: absolute;
    top: 15px;
    left: 120px;
    color: white;
    font-size: 1.2em;
    z-index: 6;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #9c2020; 
    margin: 4px;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 10px;
    
}

.nav-menu li {
    display: inline;
}

.nav-menu a {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #9c2020; 
    text-decoration: none;
    font-size: clamp(1rem, 1.3vw, 1.3rem);
}

.nav-menu li a {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding: 10px;
    display: block;
    color: #000;
    text-decoration: none;
    transition: background-color 0.3s ease;
    font-weight: bold;
    font-size: clamp(1rem, 1.3vw, 1.3rem);
}

.nav-menu li a:hover {
    background-color: #db9b9b;
    border-radius: 5px;
}


@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        right: 0;
        background-color: #7c7c7c; 
        width: 40%;
        text-align: center;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        margin: 10px 0;
    }
}

/* Hero Section (Home Page) */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background-color: #fcf3f3; 
}

.carousel {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start; 
    transition: transform 0.5s ease-in-out; 
}

.slide {
    flex: 0 0 100%; 
    height: 100%; 
    background-size: cover; 
    background-repeat: no-repeat; 
    background-position: center;
}

.carousel-controls {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1rem;
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.carousel-controls button {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1rem;
}

.carousel-controls button {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding: 3px 6px;
    background-color: #8a1919; /* Matches the logo's color */
    color: white;
    border: none;
    cursor: pointer;
}

.carousel-controls button:hover {
    background-color: #b22222; /* Slightly brighter red on hover */
}


/* Home Page Specific Sections */
section {
    padding: 60px 20px;
    text-align: center;
}

#our-mission {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    background-color: #fcf3f3;
}

.mission-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    max-width: 2000px;
    width: 100%;
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.mission-info {
    flex: 1;
    margin-right: 20px;
    text-align: left;
}

.mission-info h2 {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: clamp(1.5rem, 2.5vw, 2.5rem);
    margin-bottom: 10px;
}

.mission-info p {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: clamp(1rem, 1.3vw, 1.3rem);
    line-height: 1.6;
}

.mission-image {
    flex: 1;
}

.mission-image img {
    width: 100%;
    border-radius: 8px;
}

.request-quote {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin-top: 20px;
    padding: 12px 24px; /* Increased padding for better touch targets */
    background-color: #8a1919;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    cursor: pointer;
    display: inline-block;
    text-align: center;
    font-size: clamp(1rem, 1.5vw, 1.2rem); /* Responsive font size */
}

.request-quote:hover {
    background-color: #721515;
}

/* Media Query for smaller screens */
@media (max-width: 480px) {
    .request-quote {
        padding: 10px; /* Increased padding for better touch interaction */
        font-size: 1rem; /* Larger text for readability */
        width: auto; /* Auto width, constrained by the container */
    }
}


#security-markets {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    background-color: #fff;
}

.markets-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    width: 100%;
    padding: 20px;
}

.markets-image {
    flex: 1;
    margin-right: 60px;
}

.markets-image img {
    width: 100%;
    border-radius: 8px;
}

.markets-info {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    flex: 1;
    text-align: left;
    margin-left: 20px;
}

.markets-info h2 {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: clamp(1.5rem, 2.5vw, 2.5rem);
    margin-bottom: 10px;
}

.markets-info p {
    font-size: clamp(1rem, 1.3vw, 1.3rem);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .mission-container, .markets-container {
        flex-direction: column;
        text-align: center;
    }

    .mission-info, .markets-info {
        margin: 0 0 20px 0;
    }

    .mission-image img, .markets-image img {
        margin-top: 20px;
    }
}

#why-choose-us {
    background-color: #fcf3f3; 
    color: rgb(0, 0, 0);
}
.why-choose-us h2 {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: clamp(1.5rem, 2.5vw, 2.5rem);
}

.why-choose-us p {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: clamp(1rem, 1.3vw, 1.3rem);
}


#our-services {
    background-color: #ffffff; 
    color: #333;
    padding: 20px;
}

#our-services .services-grid {
    display: flex;
    flex-wrap: wrap; /* Allows wrapping of items */
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.card, .service {
    background: linear-gradient(135deg, #f2e3e3, #ffffff);
    flex: 1 1 100%; /* Default to full width */
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.card:hover, .service:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.card h3, .service h3 {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: clamp(1.4rem, 1.7vw, 1.7rem);
    color: #1d1c1c;
    margin-bottom: 10px;
}

.card p, .service p {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: clamp(1rem, 1.3vw, 1.3rem);
    color: #3b3b3b;
}

.service h3 {
    color: #9c2020;
}

.servi h2 {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: clamp(1.5rem, 2.5vw, 2.5rem);
}

/* Media Query for larger screens */
@media (min-width: 600px) {
    .card, .service {
        flex: 1 1 30%; /* 3 items per row */
    }
}

/* Interested */
.interest {
    border-radius: 8px;
    display: inline-block;
    background-color: #8a1919; 
    color: #fff;
    padding: 18px; /* Increased padding for better spacing */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 100%; /* Full width by default */
    max-width: 450px; /* Max width for larger screens */
    height: auto; /* Auto height for better content fitting */
    margin: 10px auto; /* Center alignment and spacing */
}

.interest h3 {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: clamp(1.5rem, 1.8vw, 1.8rem);
    margin-bottom: 15px;
}

.interest p {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: clamp(1rem, 1.3vw, 1.3rem);
    margin-bottom: 20px;
}

.interest a {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: clamp(0.9rem, 1.2vw, 1.2rem);
    margin-bottom: 20px;
    color: #8a1919;
    text-decoration: none; /* Removing underline for better styling */
}

.interest a:hover {
    color: #8a1919; 
    text-decoration: underline; 
}



/* FAQ Section */
#faq {
    padding: 60px 20px;
    background-color: #fcf3f3; 
    text-align: center;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-container h2 {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: clamp(1.5rem, 2.5vw, 2.5rem);
    margin-bottom: 30px;
    color: #333; 
}

.faq-item {
    margin-bottom: 20px;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 15px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: clamp(1rem, 1.3vw, 1.3rem);
    color: #333;
    background-color: #e0e0e0; 
    border: none;
    cursor: pointer;
    border-radius: 5px;
    outline: none;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #d0d0d0; 
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 15px;
    background-color: white;
    border-left: 4px solid #8a1919; 
    margin-top: 10px;
    border-radius: 0 0 5px 5px;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 10px 0;
    font-size: clamp(0.9rem, 1.2vw, 1.2rem);
    color: #666; 
}

/* FAQ Item Active State */
.faq-item.active .faq-answer {
    max-height: 200px;
}

/* FAQ Item Active Button */
.faq-item.active .faq-question {
    background-color: #8a1919; 
    color: white;
}


#careers {
    background-color: #ffffff; 
    color: #000000; 
    /*display: flex;
    /*align-items: center;
    justify-content: center;
    padding: 0px; 
    margin: 0; 
    height: auto; 
    min-height: 100px; */
}

#careers p, a{
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: clamp(1rem, 1.3vw, 11.3rem);
} 

#careers .apply-button {
    display: inline-block;
    /*margin-top: 20px;*/ 
    padding: 10px 10px;
    background-color: #8a1919; 
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

#careers .apply-button:hover {
    background-color: #8a1919; 
}


/* About Us Section */
main {
    padding: 40px 0;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    overflow: hidden;
}

.intros {
    text-align: center;
    background: #ffffff;
    padding: 40px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.intros h2 {
    font-size: clamp(1.5rem, 2.5vw, 2.5rem);
    color: #9c2020;
    margin-bottom: 20px;
}

.intros p {
    font-size: clamp(1rem, 1.3vw, 1.3rem);
    color: #3b3b3b;
}

.info-sections {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .info-sections {
        grid-template-columns:repeat(3, 1fr); /* Switch to one column on mobile */
    }
}

.info-block {
    background: white;
    flex: 1;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    margin-bottom: 20px;
}

.info-block:hover {
    transform: translateY(-10px);
}

.info-block h3 {
    color: #9c2020;
    font-size: clamp(1.5rem, 1.8vw, 1.8rem);
    margin-bottom: 10px;
}

.info-block p {
    color: #3b3b3b;
    font-size: clamp(1rem, 1.3vw, 1.3rem);
    line-height: 1.5;
}

.about-us {
    background-color: white;
    padding: 60px 20px;
    text-align: center;
}

/* Company Overview Section */
.company-overview {
    background-color: #e0e0e0;
    padding: 60px 20px;
    text-align: center;
}

.company-overview h2 {
    font-weight: bold;
}

/* Mission & Vision Section */
#mission-vision {
    background-color: #fff;
    padding: 40px 20px; /* Added padding for consistency */
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Default to 3 columns */
    gap: 20px;
    margin-top: 20px;
}

/* Cards Styling */
.mission, .vision {
    background-color: #e0e0e0;
    padding: 20px;
    border-radius: 5px;
    text-align: left;
    border: 2px solid #333;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .mission-vision-grid {
        grid-template-columns: repeat(2, 1fr); /* Ensure two columns on mobile */
        gap: 10px; /* Reduced gap for better fit on small screens */
    }

    .mission, .vision {
        width: 100%; /* Ensures items use full available width */
    }
}



/* Team Section (About Us Page) */
.team-container {
    text-align: center;
    padding: 50px 20px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Two columns on medium screens */
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.small-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Three columns for specific section */
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.team-member {
    text-align: center;
}

.team-member img {
    width: 80%;
    height: auto;
    border-radius: 50%;
}

.team-member h3 {
    margin: 10px 0 5px;
    font-size: 1.2em; /* Adjusted for readability on smaller screens */
}

.team-member p {
    font-size: 1em;
    color: #666;
}

/* Specific styling for smaller images in the last row */
.team-member.small img {
    width: 150px;
    height: 150px;
    object-fit: cover;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .team-grid, .small-grid {
        grid-template-columns: 1fr; /* Single column on small screens */
        gap: 15px; /* Reduced gap for smaller screens */
    }

    .team-member h3 {
        font-size: 1.1em; /* Further adjustment for smaller screens */
    }

    .team-member p {
        font-size: 0.9em; /* Smaller font size for better fit */
    }

    .team-member.small img {
        width: 100px;
        height: 100px; /* Smaller size for mobile */
    }
}

/* Contact Page Styling */
#contact {
    
    padding: 60px 20px;
    background-color: #f9f9f9; 
    text-align: center;
}

.contact-container {
    
    max-width: 1000px;
    margin: 0 auto;
}

.contact-container h2 {
    font-size: clamp(1.5rem, 2.5vw, 2.5rem);
    margin-bottom: 20px;
    color: #333; 
}

.contact-container p {
    font-size: clamp(0.8rem, 1.1vw, 1.1rem);
    color: #666; 
    margin-bottom: 40px;
}

.contact-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.contact-item {
    background: linear-gradient(135deg, #f2e3e3, #ffffff);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.contact-item h3 {
    font-size: clamp(1.1rem, 1.5vw, 1.5rem);
    color: #8a1919; 
    margin-bottom: 15px;
}

.contact-item p {
    margin: 5px 0;
    font-size: clamp(0.8rem, 1.1vw, 1.1rem);
}

.contact-item a {
    font-size: clamp(0.9rem, 1.2vw, 1.2rem);
    color: #8a1919; 
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline; 
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .contact-details {
        grid-template-columns: 1fr;
    }
}

/* Services Section Styling */
.services {
    padding: 60px 20px;
    background-color: #fff;
    max-width: 1500px;
    margin: auto;
    text-align: left;
}

.services h1 {
    font-size: clamp(2rem, 5vw, 2.25rem); /* Responsive font size */
    color: #9c2020;
    margin-bottom: 40px;
    text-align: center;
}

.service-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 30px;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: linear-gradient(135deg, #f2e3e3, #ffffff);
}

.service-container:nth-child(even) {
    flex-direction: row-reverse;
}

.service-container img {
    width: 100%; /* Make images responsive */
    max-width: 250px;
    height: auto; /* Maintain aspect ratio */
    object-fit: cover;
    margin-right: 20px;
    border-radius: 8px;
}

.service-container:nth-child(even) img {
    margin-right: 0;
    margin-left: 20px;
}

/* Service Content Styling */
.service-content h2 {
    font-size: clamp(1.7rem, 2vw, 2rem);
    color: #333;
    margin-bottom: 10px;
    text-align: left;
}

.service-content p {
    color: #666;
    font-size: clamp(1rem, 1.3vw, 1.3rem);
    line-height: 1.6;
    text-align: left;
}



/* Services and Choose Us Sections */
.services, .choose-us {
    background: #ffffff;
    padding: 40px 20px;
    border-radius: 8px;
    margin-bottom: 40px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.services h2, .choose-us h2 {
    text-align: center;
    color: #9c2020;
    font-size: clamp(1.5rem, 2.5vw, 2.5rem);
    margin-bottom: 30px;
}

.service-cards, .choose-cards {
    display: flex;
    flex-direction: column; /* Stack the cards by default */
    gap: 20px;
}

.card {
    background: linear-gradient(135deg, #f2e3e3, #ffffff);
    flex: 1 1 100%; /* Full width on small screens */
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
    .service-cards, .choose-cards {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between; /* Align cards side by side */
    }

    .card {
        flex: 1 1 calc(33.333% - 20px); /* 3 cards per row */
    }
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.card h3 {
    font-size: clamp(1.2rem, 1.5vw, 1.5rem);
    color: #9c2020;
    margin-bottom: 10px;
}

.card p {
    font-size: clamp(1rem, 1.3vw, 1.3rem);
    color: #3b3b3b;
}

/* Download Profile Section */
.download-profile {
    text-align: center;
    padding: 40px 20px;
}

.download-profile .btn {
    background: #9c2020;
    color: white;
    padding: 15px 30px;
    font-size: clamp(1rem, 1.3vw, 1.3rem);
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.3s ease, transform 0.3s ease;
}

.download-profile .btn:hover {
    background: #802d2d;
    transform: translateY(-5px);
}
/*
footer {
    background: #9c2020;
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 20px;
}

footer p {
    margin: 0;
    font-size: clamp(0.7rem, 1vw, 1rem);
}

.clients-section {
    padding: 50px 0;
    background-color: #fffafa;
    text-align: center;
  }

  .section-title {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #9c2020;
  }

  .section-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    color: #666;
  }

  .clients-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .client-logo img {
    max-width: 150px;
    transition: transform 0.3s ease;
  }

  .client-logo img:hover {
    transform: scale(1.1);
  }
*/
/* Footer Styles */
.footer {
    background-color: #222;
    color: #fff;
    padding: 5px 0px;
    font-family: Arial, sans-serif;
    
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-container > div {
    flex: 1;
    min-width: 250px;
    margin: 10px 20px;
}

.footer h3 {
    font-size: clamp(0.7rem, 1vw, 1rem);
    margin-bottom: 15px;
}

.footer p, .footer li {
    font-size: clamp(0.8rem, 1vw, 1rem);
    margin-bottom: 10px;
}

.footer a {
    color: #fff;
    text-decoration: none;
    font-size: clamp(0.9rem, 1.1vw, 1.1rem);
}

.footer a:hover {
    text-decoration: underline;
}

/* CTA Section Styles */
.footer-cta {
    background-color: #8a1919;
    color: #fff;
    padding: 15px;
    border-radius: 5px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.footer-cta h3 {
    font-size: clamp(1rem, 2vw, 2rem); /* Fluid sizing for the heading */
    margin-bottom: 1rem; /* Spacing below the heading */
}

.footer-cta p {
    font-size: clamp(0.9rem, 1.2vw, 1rem); /* Fluid sizing for paragraph text */
    margin-bottom: 1.25rem; /* Spacing below the paragraph */
    max-width: 600px; /* Limit paragraph width for better readability */
}

.footer-cta a {
    font-size: clamp(1rem, 1.5vw, 1.1rem); /* Fluid sizing for links */
    color: #8a1919;
    background-color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    margin-top: 20px; /* Margin above the button */
    transition: background-color 0.3s ease;
}

.footer-cta a:hover {
    background-color: #f2f2f2;
}

.request-quote-button {
    padding: 10px 20px;
    background-color: white;
    color: #8a1919;
    text-decoration: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: clamp(1rem, 1.5vw, 1.25rem); /* Fluid sizing for button text */
}

@media (max-width: 768px) {
    .footer-cta {
        padding: 15px;
    }

    .footer-cta h3 {
        font-size: clamp(1.2rem, 2vw, 1.8rem); /* Slightly smaller on mobile */
    }

    .footer-cta p {
        font-size: clamp(0.9rem, 1.3vw, 1.1rem); /* Slightly smaller paragraph text */
    }

    .footer-cta a {
        font-size: clamp(1rem, 1.5vw, 1.25rem); /* Adjusted link size */
    }

    .request-quote-button {
        font-size: clamp(0.9rem, 1.3vw, 1.1rem); /* Slightly smaller button text */
    }
}


.request-quote-button:hover {
    background-color: white;
}

.footer-social {
    text-align: center;
    margin-top: 20px;
}

.footer-social a {
    margin: 0 10px;
    color: #fff;
    font-size: clamp(1.25rem, 2vw, 1.5rem); 
    text-decoration: none;
}

.footer-bottom {
    text-align: center;
    justify-content: center;
    display: flex;
    margin-top: 0px;
    font-size: clamp(1rem, 1.4vw, 1.2rem)
}

.footer-bottom p {
    margin: 0;
    font-size: 14px;
}

/* FontAwesome Icons */
.main-container {
    display: flex;
    max-width: 1200px;
    margin: 50px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.form-container {
    flex: 1;
    padding-right: 20px;
}

.form-container h2 {
    font-size: clamp(1.5rem, 2vw + 1rem, 2.25rem);
    margin-bottom: 20px;
}

.form-container form {
    display: flex;
    flex-direction: column;
}

.form-container form label {
    margin-top: 10px;
    font-size: clamp(0.9rem, 1vw + 0.8rem, 1.2rem);
    font-weight: bold;
}

.form-container form input,
.form-container form select,
.form-container form textarea {
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: clamp(1rem, 1.5vw + 1rem, 1.5rem);
    margin-bottom: 15px;
}

.form-container form textarea {
    resize: vertical;
    min-height: 100px;
}

.form-container form button {
    padding: 15px;
    background-color: #8a1919;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.1em;
    transition: background-color 0.3s ease;
}

.form-container form button:hover {
    background-color: #bb2828;
}

.contact-info {
    flex: 0.5;
    padding-left: 20px;
    border-left: 2px solid #ddd;
}

.contact-info h2 {
    font-size: clamp(1.5rem, 2vw + 1rem, 2.25rem);
    margin-bottom: 20px;
}

.contact-info p {
    line-height: 1.6;
    font-size: clamp(0.9rem, 1vw + 0.8rem, 1.2rem);
    margin-bottom: 15px;
}

.contact-image img {
    width: 100%;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .quote-container {
        flex-direction: column;
    }

    .quote-form {
        margin-left: 0;
        margin-top: 20px;
    }
}

/* Responsive Footer Layout */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
    .cta-form input[type="email"] {
        width: 100%;
        margin-bottom: 10px;
    }

    .cta-form button {
        width: 100%;
    }

}
/* Intro Section Styling */
.intro {
    background: linear-gradient(to right, #f5e5e5, #f3e8e8);
    color: #fff;
    padding: 60px 20px;
    text-align: center;
    border-bottom: 4px solid #e0e0e0;
}

.intro-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    background-color: #8a1919;
    border-radius: 10px;
    box-shadow: 0px 4px 15px #cc6565;
}

.intro h1 {
    font-size: clamp(24px, 4vw, 40px);
    color: #dddada;
    margin-bottom: 25px;
    font-weight: 700;
    text-transform: uppercase;
}

.intro p {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    color: #ddd;
    line-height: 1.8;
    margin-bottom: 0;
    padding: 0 15px;
    font-weight: 300;
}

.fab {
    color: #ce2c2c; 
    transition: color 0.3s ease;
  }

  .fab:hover {
    color: #ce2c2c;
  }

@media (max-width: 768px) {
    .intro h1 {
        font-size: 32px;
    }
    .intro p {
        font-size: 18px;
    }
}


/*CAREERS PAGE*/
/* Hero Section */
.hero-section {
    background-image: url('hero-image.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 20px;
    color: #ffffff;
    text-align: center;
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-section h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.hero-section p {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.cta-button {
    background-color: #8a1919;
    color: #fff;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1.2rem;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
    background-color: #721515;
    transform: translateY(-5px);
}

/* Current Openings Section */
.openings-section {
    padding: 60px 20px;
    background-color: #f7f7f7;
    text-align: center;
}

.openings-section h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #333;
}

.job-listings {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.job-card {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.job-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.job-card h3 {
    font-size: 1.8rem;
    color: #9c2020;
    margin-bottom: 10px;
}

.job-card p {
    font-size: 1.2rem;
    color: #666;
}

.apply-button {
    background-color: #8a1919;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1rem;
    margin-top: 10px;
    display: inline-block;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.apply-button:hover {
    background-color: #721515;
    transform: translateY(-5px);
}

/* Why Work With Us Section */
.why-work-with-us {
    background-image: url('why-work-with-us-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 80px 20px;
    color: #000000;
    text-align: center;
}

.why-work-with-us h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.features {
    display: flex;
    justify-content: space-around;
    gap: 20px;
}

.feature {
    text-align: center;
    flex: 1;
    background-color: rgba(160, 156, 156, 0.938);
    padding: 20px;
    border-radius: 8px;
}

.feature i {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #8a1919;
}

.feature h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.feature p {
    font-size: 1.2rem;
}

/* Application Form Section */
.application-form-section {
    background-color: #ffffff;
    padding: 60px 20px;
    text-align: center;
}

.application-form-section h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #333;
}

.application-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.form-group {
    text-align: left;
}

.form-group label {
    font-size: 1.2rem;
    margin-bottom: 5px;
    display: block;
    color: #333;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 10px;
    font-size: 1rem;
    border-radius: 5px;
    border: 1px solid #ccc;
    margin-bottom: 20px;
}

.form-group input[type="file"] {
    padding: 5px;
}

.submit-button {
    grid-column: span 2;
    background-color: #8a1919;
    color: #fff;
    padding: 15px;
    font-size: 1.2rem;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.submit-button:hover {
    background-color: #721515;
    transform: translateY(-5px);
}


/* Responsive Design */
@media (max-width: 1024px) {
    .job-listings {
        grid-template-columns: repeat(2, 1fr);
    }

    .application-form {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }

    .hero-section p {
        font-size: 1.2rem;
    }

    .features {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .job-listings {
        grid-template-columns: 1fr;
    }

    .cta-button {
        font-size: 1rem;
        padding: 10px 20px;
    }
}
