:root {
    --primary-color: #e61c25;
    --secondary-color: #4e4f52;
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --dark-gray: #333333;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
	background-color: #f5f5f5;
	-webkit-user-select: none; /* Safari */
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
  user-select: none; /* Standard syntax for Chrome, Edge, and modern browsers */

}

.logo img {
    height: 75px;  /* Adjust height as needed */
    width: auto;
}

/* General Navbar Styling */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: white; /* Solid white navbar */
    padding: 15px 20px;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: auto;
}

/* Desktop Navigation */
.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    text-decoration: none;
    color: black;
    font-weight: bold;
    font-size: 1.3rem;
    transition: color 0.3s;
}

.nav-links a:hover, .nav-links .active {
    color: #e61c25; /* Highlight color */
}

/* Mobile Menu Button */
.mobile-menu-btn {
    font-size: 1.8rem;
    color: black;
    display: none;
    cursor: pointer;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.mobile-nav-links {
    list-style: none;
    text-align: center;
}

.mobile-nav-links li {
    margin: 20px 0;
}

.mobile-nav-links a {
    color: white;
    font-size: 1.5rem;
    text-decoration: none;
    transition: color 0.3s;
}

.mobile-nav-links a:hover {
    color: #e61c25;
}

/* Close Button */
.close-menu {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 2rem;
    color: white;
    cursor: pointer;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .mobile-menu-btn {
        display: block;
    }
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
                url('images/hero.webp');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 2rem;
    margin-top: 60px;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: var(--white);
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
}

.hero h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1.2s ease;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1.4s ease;
}

/* Full-Width Auto-Scrolling Carousel */
.full-width-carousel {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin-top: 20px;
}
.carousel-heading {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.carousel-subtext {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #666;
}
.carousel-container {
    width: 90%;
    max-width: 1200px;
    position: relative;
    margin: auto;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3);
}

.carousel-track {
    display: flex;
    transition: transform 2.8s ease-in-out;
    animation: autoScroll 35s infinite linear;
}

.carousel-item {
    min-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel-item img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border: 5px solid #fff;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

@keyframes autoScroll {
    0% { transform: translateX(0); }
    33% { transform: translateX(-100%); }
    66% { transform: translateX(-200%); }
    100% { transform: translateX(0); }
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.cta-primary, .cta-secondary, .cta-whatsapp {
    padding: 1rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.cta-primary {
    background: var(--primary-color);
    color: var(--white);
}

.cta-secondary {
    background: var(--secondary-color);
    color: var(--white);
}

.cta-whatsapp {
    background: #25D366;
    color: var(--white);
}

.cta-primary:hover, .cta-secondary:hover, .cta-whatsapp:hover {
    transform: translateY(-3px);
}
/* Features Section */
.features {
    padding: 4rem 2rem;
    background: var(--light-gray);
}

.features h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--secondary-color);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-box {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
}

.feature-box i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Counter Section */
.counter-section {
    padding: 4rem 2rem;
    background: #002933;
    color: var(--white);
}

.counter-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.counter {
    text-align: center;
    margin: 1rem;
}

.count {
    font-size: 3rem;
    font-weight: bold;
}

/* Quote Calculator */
/* General Styles for Quote Calculator Section */
.quote-calculator {
    background-color: var(--light-gray);
    padding: 3rem;
    border: 2px solid #4e4f52; /* Border color */
    border-radius: 8px; /* Rounded corners */
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.1), -5px -5px 20px rgba(0, 0, 0, 0.2); /* Subtle shadow effect */
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Title Style */
.quote-calculator h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 600;
}

/* Form container */
.calculator-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Form Group */
.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 1rem;
    font-weight: 500;
    color: var(--dark-gray);
}

.form-group select,
.form-group input {
    padding: 0.8rem;
    font-size: 1rem;
    border-radius: 5px;
    border: 1px solid var(--secondary-color);
    background-color: var(--white);
    color: var(--dark-gray);
}

.form-group input[type="range"] {
    width: 100%;
    -webkit-appearance: none;
    background: #ddd;
    height: 8px;
    border-radius: 5px;
    outline: none;
}

.form-group input[type="range"]:focus {
    border: 2px solid var(--primary-color);
}

.slider-value {
    display: inline-block;
    font-weight: 600;
    font-size: 1rem;
    margin-top: 0.5rem;
}

/* Estimated Cost Section */
.estimate-result {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin-top: 2rem;
}

.estimate-result h3 {
    font-size: 1.4rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.estimate-result .price {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-color);
}

/* Disclaimer */
.disclaimer {
    font-size: 1.3rem;               /* Increased font size for better visibility */
    font-weight: bold;             /* Made text bold */
    color: var(--dark-gray);       /* Darker text color for higher contrast */
    margin-top: 1.5rem;            /* Space between the estimate result and disclaimer */
    text-align: center;            /* Center-aligned disclaimer */
    line-height: 1.5;              /* Improved readability */
    background-color: #f8f8f8;     /* Slight background color to make it stand out */
    padding: 1rem;                 /* Padding to make it more prominent */
    border-radius: 5px;            /* Rounded corners */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for separation */
    position: relative;            /* Positioning for the alert icon */
    animation: borderAnimation 3s infinite alternate; /* Border animation */
}

/* Animation for Border */
@keyframes borderAnimation {
    0% {
        border: 3px solid #e61c25; /* Initial red border */
    }
    100% {
        border: 3px solid #ff9800; /* Final orange border */
    }
}

/* Alert Icon */
.disclaimer::before {
    content: "\26A0"; /* Unicode for warning symbol */
    font-size: 1.5rem; /* Icon size */
    color: #e61c25; /* Red color for icon */
    position: absolute;
    top: 10%;
    left: 10px; /* Position it on the left */
    transform: translateY(-50%); /* Center it vertically */
    margin-right: 1rem; /* Space between icon and text */
    animation: iconAnimation 3s infinite alternate; /* Icon animation */
}

/* Icon animation for the alert icon */
@keyframes iconAnimation {
    0% {
        color: #e61c25; /* Red color */
    }
    100% {
        color: #ff9800; /* Orange color */
    }
}


/* Responsive Styles */
@media screen and (max-width: 768px) {
    .quote-calculator {
        padding: 2rem;
    }

    .calculator-form {
        gap: 1rem;
    }

    .estimate-result {
        margin-top: 1.5rem;
    }
}

/* Service Areas */
.service-areas {
    padding: 60px 20px;
    text-align: center;
}

.service-areas a {
    text-decoration: none; /* Removes underline */
    color: inherit; /* Keeps the text color same as normal text */
    display: block; /* Makes the entire list item clickable */
}

.service-areas h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #002933;
    text-transform: uppercase;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: auto;
}

.area {
    background: linear-gradient(135deg, #000000, #002933);
    color: white;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.area:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.area h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #f5f5f5;
    text-transform: uppercase;
}

.area ul {
    list-style: none;
    padding: 0;
    font-size: 1.1rem;
}

.area ul li {
    margin: 8px 0;
    padding: 5px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.area ul li:last-child {
    border-bottom: none;
}
@media screen and (max-width: 768px) {
    .areas-grid {
        display: grid;
        grid-template-columns: 1fr; /* Single column layout on mobile */
        gap: 20px; /* Adjust spacing between items */
		padding: 10px;
    }
}


.about-us {
    background-color: #f5f5f5;
    padding: 50px 0;
}

.about-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

.about-text {
    flex: 1;
    margin-right: 20px;
}

.about-text h2 {
    font-size: 2rem;
    color: #e61c25;
    margin-bottom: 20px;
}

.about-text p {
    font-size: 1.1rem;
    color: #333;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.buttons {
    margin-top: 20px;
    display: flex;
    gap: 15px;
}

.buttons1 {
    display: flex;
    justify-content: center; /* Aligns buttons to the center */
    gap: 20px; /* Adds space between the buttons */
}

.btn-learn-more, .btn-free-installation {
    padding: 10px 25px;
    font-size: 1rem;
    color: white;
    text-align: center;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.btn-learn-more {
    background-color: #002933; /* Dark primary color */
}

.btn-learn-more:hover {
    background-color: #e61c25; /* Hover effect */
}

.btn-free-installation {
    background-color: #e61c25; /* Red theme */
}

.btn-free-installation:hover {
    background-color: #002933; /* Hover effect */
}

@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .about-text {
        margin-right: 0;
        margin-bottom: 20px;
    }

    .about-text h2 {
        font-size: 1.6rem;
    }

    .about-text p {
        font-size: 1rem;
        margin-bottom: 15px;
    }

    .about-image {
        width: 100%;
        margin-bottom: 20px;
    }

    .buttons {
        flex-direction: column;
        gap: 10px;
    }

    .btn-learn-more, .btn-free-installation {
        width: 100%;
        padding: 12px 0;
        font-size: 1.1rem;
    }
}

/* Why Choose Us Section */
.why-choose-us {
    display: flex;
	width: 100%;
    justify-content: center;
    align-items: center;
    background-color: #f5f5f5; /* Light gray background */
    padding: 50px 20px;
    border-radius: 10px;
    margin-top: 30px;
}

.why-choose-us-content {
    width: 50%;
}

.why-choose-us h2 {
    font-size: 2rem;
    color: #002933; /* Theme color */
    margin-bottom: 20px;
}

.why-choose-us p {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 20px;
}

.reasons-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.reasons-list li {
    font-size: 1rem;
    color: #555;
    margin-bottom: 10px;
}

.reasons-list i {
    color: #e61c25; /* Red color for checkmark */
    margin-right: 10px;
}

.why-choose-us-image img {
    max-width: 100%;
    border-radius: 10px;
}

@media screen and (max-width: 768px) {
    .why-choose-us {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .why-choose-us-content {
        width: 100%;
        margin-bottom: 30px;
    }
}

/* Floating Action Buttons */
.floating-buttons {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 1000;
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--white);
    font-size: 1.5rem;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.float-btn:hover {
    transform: scale(1.1);
}

.whatsapp {
    background: #25D366;
}

.call {
    background: var(--primary-color);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero h2 {
        font-size: 1.5rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .counter-container {
        flex-direction: column;
    }
    
    .counter {
        margin: 1rem 0;
    }
}

/* Additional styles for new sections and pages */

/* Page Heroes */
.page-hero {
    height: 35vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5));
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    margin-top: 70px;
}

.products-hero {
    background: linear-gradient(135deg, #000000, #002933); /* Red to Dark Blue gradient */
}

.gallery-hero {
    background: linear-gradient(135deg, #000000, #002933); /* Red to Dark Blue gradient */
}

/* Gallery Filters */
.gallery-filters .filter-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.filter-btn {
    padding: 10px 20px;
    background-color: #e61c25; /* Red theme */
    color: black;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    font-size: 16px;
}

.filter-btn.active {
    background-color: #bf1620;
}

.filter-btn:hover {
    background-color: #bf1620;
}

/* Gallery Grid */
/* Gallery Filters */
.gallery-filters .filter-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.filter-btn {
    padding: 12px 20px;
    background-color: #e61c25; /* Red theme */
    color: black;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.filter-btn.active, .filter-btn:hover {
    background-color: #bf1620;
}

/* Gallery Grid */
.gallery-grid .masonry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Semi-transparent black background */
    color: white; /* Text color */
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    text-align: center;
    padding: 20px;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.gallery-overlay p {
    font-size: 1rem;
}

/* Before & After Section */
.before-after {
    background-color: #f5f5f5;
    padding: 40px 20px;
    text-align: center;
}

.before-after h2 {
    font-size: 2rem;
    color: #002933;
    margin-bottom: 20px;
}

/* Responsive Adjustments */
@media screen and (max-width: 768px) {
    .gallery-filters .filter-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .gallery-item {
        box-shadow: none;
    }

    .before-after h2 {
        font-size: 1.8rem;
    }
}



.about-hero {
    background: linear-gradient(135deg, #000000, #002933); /* Red to Dark Blue gradient */
}

/* Company Story Section */
.company-story {
    background: #f9f9f9;
    padding: 60px 20px;
}

.company-story .story-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.company-story .story-text {
    flex: 1;
    max-width: 50%;
}

.company-story .story-image img {
    max-width: auto;
    height: 400px;
    border-radius: 8px;
}

/* Mission & Vision Section */
.mission-vision {
    background: #4e4f52; /* Dark background to make text and icons pop */
    padding: 60px 20px;
    color: white;
    border-radius: 8px;
    margin: 40px 0;
}

.mission-vision .container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.mission-vision .mission, .mission-vision .vision {
    flex: 1;
    max-width: 45%;
    background: #002933; /* Subtle 002933 contrast for each box 002933*/
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.mission-vision .mission:hover, .mission-vision .vision:hover {
    background-color: #e61c25; /* Highlight color on hover */
}

.mission-vision h3 {
    font-size: 1.8rem;
    margin-top: 20px;
    margin-bottom: 15px;
    font-weight: 600;
}

.mission-vision p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Icon styling */
.icon-container {
    background-color: #000; /* Light blue to complement the red theme */
    color: #fff;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    border-radius: 50%;
    margin-bottom: 15px;
    font-size: 2rem;
}
/* Ensure one container per row on mobile */
@media screen and (max-width: 768px) {
    .mission-vision .container {
        flex-direction: column; /* Stack items vertically */
    }
    .mission-vision .mission, .mission-vision .vision {
        width: auto; /* Take up full width of the container */
        margin-bottom: 20px; /* Space between the containers */
    }
    .mission-vision h3 {
        font-size: 1.4rem;
    }
    .mission-vision p {
        font-size: 1rem;
    }
}

/* Team Section */
.team {
    padding: 60px 20px;
    background: #fff;
    text-align: center;
}

.team h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #002933;
}

.team-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.team-member {
    flex: 1 1 30%;
    background: #f2f2f2;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin-bottom: 30px;
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 20px;
}

.team-member h3 {
    font-size: 1.5rem;
    color: #002933;
}

.team-member p {
    font-size: 1.1rem;
    color: #4e4f52;
}

/* Certifications Section */
.certifications {
    background: #f9f9f9;
    padding: 60px 20px;
}

.certifications h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #002933;
    text-align: center;
}

.certification-grid {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.certification {
    flex: 1 1 30%;
    background: #002933;
    padding: 30px;
    border-radius: 10px;
    color: white;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.certification i {
    font-size: 4rem;
    margin-bottom: 20px;
}

.certification h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.certification p {
    font-size: 1.1rem;
}

/* Timeline Section */
.timeline {
    background-color: #f4f4f4;
    padding: 60px 15px;
    color: #333;
}

.timeline h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 40px;
    color: #002933; /* Dark blue */
}

.timeline-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;  /* Max width for large screens */
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 220px;
    text-align: center;
    position: relative;
    margin-bottom: 20px;  /* Spacing between items */
}

.timeline-item .year {
    background-color: #002933; /* Red to Dark Blue gradient */
    color: white;
    padding: 15px;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: bold;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.timeline-item .event {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 300px;  /* Adjust width of the event box */
    margin: 0 auto;
}

.timeline-item .event h3 {
    font-size: 1.2rem;
    color: #002933;
    margin-bottom: 10px;
}

.timeline-item .event p {
    font-size: 1rem;
    color: #4e4f52;
    line-height: 1.6;
}

/* Responsive Design for Mobile */
@media screen and (max-width: 768px) {
    .timeline-container {
        flex-direction: column;
        align-items: center;
    }

    .timeline-item {
        width: 90%;
        max-width: 350px;  /* Ensure items are not too wide on mobile */
    }

    .timeline-item .year {
        margin-bottom: 15px;
    }

    .timeline-item .event {
        width: 100%;
        margin: 0 auto;
    }
}



.contact-hero {
    background: linear-gradient(135deg, #000000, #e61c25); /* Red to Dark Blue gradient */
}

/* Contact Information Section */
.contact-info {
    background-color: #f4f4f4;
    padding: 60px 15px;
    color: #333;
}

.contact-info h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 40px;
    color: #002933; /* Dark blue */
}

/* Container */
.container1 {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
	justify-content: center;
}

/* Contact Grid */
.contact-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: center; /* Ensure content is centered */
}

/* Contact Card */
.contact-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 270px;
    text-align: center;
    flex: 1;
    min-width: 250px;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.contact-card i {
    font-size: 2rem;
    color: #00b0e9; /* Blue */
    margin-bottom: 20px;
}

.contact-card h3 {
    font-size: 1.2rem;
    color: #002933;
    margin-bottom: 10px;
}

.contact-card p {
    font-size: 1rem;
    color: #4e4f52;
    line-height: 1.5;
}

.contact-card a {
    color: #e61c25; /* Blue for links */
    text-decoration: none;
    font-weight: bold;
}

.contact-card a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .contact-grid {
        flex-direction: column;
        align-items: center; /* Centering contact cards on mobile */
    }

    .contact-card {
        width: 90%;
        max-width: 400px;
        margin-bottom: 20px;
    }
}



.faq-hero {
    background: linear-gradient(135deg, #000000, #e61c25); /* Red to Dark Blue gradient */
}

/* FAQ Section */
.faq-content {
    background-color: #f8f8f8;
    padding: 60px 15px;
}

.faq-categories {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
}

/* FAQ Category Styling */
.faq-category h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #002933;
}

/* Accordion Styling */
.accordion {
    border-top: 1px solid #ddd;
}

.accordion-item {
    padding: 15px 0;
    border-bottom: 1px solid #ddd;
}

.accordion-header {
    background-color: #fff;
    color: #4e4f52;
    font-size: 1.1rem;
    font-weight: bold;
    text-align: left;
    width: 100%;
    padding: 12px 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: none;
    transition: background-color 0.3s ease;
}

.accordion-header:hover {
    background-color: #e61c25; /* Blue */
    color: #fff;
}

.accordion-header i {
    transition: transform 0.3s ease;
}

/* Accordion Content */
.accordion-content {
    padding: 15px 20px;
    background-color: #fff;
    display: none;
    color: #333;
    font-size: 0.95rem;
}

/* Opened Accordion Item */
.accordion-item.active .accordion-content {
    display: block;
}

.accordion-item.active .accordion-header i {
    transform: rotate(180deg);
}

/* Mobile responsiveness */
@media screen and (max-width: 768px) {
    .faq-categories {
        grid-template-columns: 1fr; /* Single column on mobile */
    }

    .accordion-header {
        font-size: 1rem; /* Slightly smaller font */
    }

    .accordion-content {
        font-size: 0.9rem; /* Slightly smaller font */
    }
}

/* Popup modal styles */
.contact-popup {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.contact-popup .popup-content {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    max-width: 400px;
    text-align: center;
}

.contact-popup h3 {
    margin-bottom: 15px;
}

.contact-popup p {
    margin-bottom: 20px;
}

.contact-popup .cta-primary {
    padding: 10px 20px;
    background-color: #e61c25;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
}

.contact-popup .cta-primary:hover {
    background-color: #d1151d;
}

.contact-popup a {
    color: #00b0e9;
    text-decoration: none;
}

/* Still Have Questions Section */
.still-questions {
    background-color: #f9f9f9;
    padding: 40px 0;
    text-align: center;
}

.still-questions h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #002933;
}

.still-questions p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #4e4f52;
}

.contact-options {
    display: flex;
	justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.contact-options a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    width: 80%;
    max-width: 350px;
}

.contact-options a i {
    margin-right: 10px;
}

@media (min-width: 768px) {
    .contact-options {
        flex-direction: row;
    }
}

/* Product Grid */
  .products {
        padding: 3rem 2rem;
        text-align: center;
        background-color: var(--light-gray);
        max-width: 1500px; /* Limits the width of the section */
        margin: 0 auto;
    }

    .product-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr); /* 3 columns */
        gap: 2rem;
        width: 100%;
    }

    .product-card {
        background: var(--white);
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        padding: 1.5rem;
        height: 100%;
        position: relative;
    }

    .product-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
    }

    .product-card img {
        width: 100%;
        height: 200px;
        object-fit: cover;
        border-radius: 8px;
        transition: transform 0.3s ease;
    }

    .product-card:hover img {
        transform: scale(1.05);
    }

    .product-card h3 {
        font-size: 1.25rem;
        color: var(--dark-gray);
        margin: 1rem 0;
    }

    .product-card p {
        font-size: 1rem;
        color: var(--secondary-color);
        margin-bottom: 1.5rem;
    }

    .product-actions {
        display: flex;
        justify-content: space-between;
        gap: 1rem;
        margin-top: auto;
    }

    .btn-secondary, .btn-primary {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
        border-radius: 5px;
        text-decoration: none;
        transition: background-color 0.3s ease;
        display: inline-block; /* Ensure buttons stay within the product card */
    }

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

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

    .btn-secondary:hover {
        background-color: #c51a1f;
    }

    .btn-primary:hover {
        background-color: #3b4144;
    }
	
	 .view-all-btn-container {
        margin-top: 2rem;
        text-align: center;
    }

    .view-all-btn-container .btn-primary {
        padding: 1rem 2rem;
        font-size: 1.25rem;
        background-color: var(--primary-color);
        color: var(--white);
        text-decoration: none;
        border-radius: 5px;
        transition: background-color 0.3s ease;
    }

    .view-all-btn-container .btn-primary:hover {
        background-color: #c51a1f;
    }

    @media (max-width: 1024px) {
        .product-grid {
            grid-template-columns: repeat(2, 1fr); /* 2 columns for medium screens */
        }
    }

    @media (max-width: 768px) {
        .product-grid {
            grid-template-columns: 1fr; /* 1 column for smaller screens */
        }

        .product-card h3 {
            font-size: 1rem;
        }

        .product-card p {
            font-size: 0.9rem;
        }

        .product-actions {
            flex-direction: column;
            gap: 0.5rem;
        }
    }
	
	
/* Testimonials Section */
.testimonials {
    padding: 50px 0;
    background-color: #f5f5f5;
    text-align: center;
}

.testimonial-carousel {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Two columns */
    gap: 30px;
    justify-items: center;
    padding: 20px;
}

.testimonial {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 700px;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-content {
    margin-bottom: 15px;
}

.testimonial-author {
    font-weight: bold;
}

.stars {
    color: gold;
}

/* Responsive Design: Adjust for smaller screens */
@media (max-width: 768px) {
    .testimonial-carousel {
        grid-template-columns: 1fr; /* One column on smaller screens */
    }
}


/* FAQ Section */
.faq {
    padding: 50px;
    background-color: #f5f5f5;
    text-align: center;
}

.faq h2 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #333;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.faq-item {
    margin-bottom: 15px;
}

.faq-question {
    background-color: #002933;
    color: white;
    padding: 15px;
    width: 100%;
    border: none;
    text-align: left;
    font-size: 1.1em;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover {
    background-color: #b3131d;
}

.faq-answer {
    padding: 15px;
    background-color: #f0f0f0;
    border-radius: 5px;
    display: none;
    margin-top: 10px;
}

.arrow {
    font-size: 1.5em;
    transform: rotate(0deg);
    transition: transform 0.3s ease;
}

/* Rotate arrow when the question is expanded */
.faq-item.active .arrow {
    transform: rotate(90deg);
}

/* Active class for showing the answer */
.faq-item.active .faq-answer {
    display: block;
}

/* Responsive Design */
@media (max-width: 768px) {
    .faq-container {
        padding: 20px;
    }
}



/* Footer */
.footer {
    background: var(--secondary-color);
    color: var(--white);
    padding: 4rem 2rem 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: var(--white);
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.social-link:hover {
    background: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.footer-bottom a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: var(--primary-color);
}

/* Contact Page */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.contact-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.contact-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

/* Gallery Page */
.gallery-filters {
    padding: 2rem;
    background: var(--white);
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.5rem 1.5rem;
    border: none;
    border-radius: 25px;
    background: var(--light-gray);
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--primary-color);
    color: var(--white);
}

.masonry-grid {
    columns: 3;
    column-gap: 2rem;
    padding: 2rem;
}

.gallery-item {
    break-inside: avoid;
    margin-bottom: 2rem;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    display: block;
    border-radius: 10px;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    padding: 1rem;
    color: var(--white);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.call-quote-section {
    background-color: #f5f5f5;
    padding: 50px 20px;
    text-align: center;
}

.call-quote-section h2 {
    font-size: 30px;
    margin-bottom: 20px;
    color: #002933;
}

.call-quote-section p {
    font-size: 16px;
    margin-bottom: 30px;
    color: #4e4f52;
}

.btn-call-now, .btn-get-quote {
    background-color: #e61c25; /* Theme red */
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s, transform 0.3s;
}

.btn-call-now:hover, .btn-get-quote:hover {
    background-color: #bf1620; /* Darker red on hover */
    transform: scale(1.05);
}

.btn-call-now:active, .btn-get-quote:active {
    transform: scale(1);
}


/* FAQ Page */
.faq-search {
    padding: 2rem;
}

.search-box {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.search-box input {
    width: 100%;
    padding: 1rem 3rem 1rem 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.search-box i {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--secondary-color);
}

.accordion {
    margin-bottom: 2rem;
}

.accordion-item {
    border: 1px solid #ddd;
    margin-bottom: 0.5rem;
    border-radius: 5px;
    overflow: hidden;
}

.accordion-header {
    width: 100%;
    padding: 1rem;
    background: var(--white);
    border: none;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.accordion-content {
    padding: 1rem;
    background: var(--light-gray);
    display: none;
}

.accordion-item.active .accordion-content {
    display: block;
}

/* Products Page */
.product-category {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.product-category.reverse {
    direction: rtl;
}

.product-category.reverse .product-info {
    direction: ltr;
}

.product-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.features-list li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.features-list i {
    color: var(--primary-color);
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .product-category {
        grid-template-columns: 1fr;
    }
    
    .masonry-grid {
        columns: 2;
    }
    
    .product-category.reverse {
        direction: ltr;
    }
}

@media (max-width: 480px) {
    .masonry-grid {
        columns: 1;
    }
    
    .filter-buttons {
        flex-direction: column;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}