/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
}

/* Navigation Bar */
nav {
    background-color: #001f53;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
}

nav .logo {
    display: flex;
    align-items: center;
}

nav .logo img {
    height: 64px;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 30px;
}

nav ul li {
    position: relative;
    display: inline-block;
}

nav ul li a {
    position: relative;
    color: white;
    text-decoration: none;
    font-size: large;
    font-weight: bold;
    transition: color 0.3s ease;
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    display: block;
    margin-top: 5px;
    right: 0;
    background: #f19257;
    transition: width 0.3s ease;
}

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

nav ul li a:hover::after {
    width: 100%;
    left: 0;
    background: #f19257;
}

nav ul li a.current-page {
    color: #f19257;
    font-weight: bolder;
}

nav ul li a.current-page::after {
    width: 100%;
    left: 0;
    background: #f19257;
}

/* Dropdown Button */
.dropdown-toggle {
    display: none; /* Hidden by default (desktop view) */
    background: none;
    border: none;
    color: white;
    font-size: 16px;
    cursor: pointer;
    margin-left: 5px;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #ffffff;
    min-width: 200px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    border-radius: 8px;
    overflow: hidden;
}

.dropdown-content a {
    color: #333;
    padding: 8px 16px;
    text-decoration: none;
    font-size: 16px;
    display: block;
    text-align: left;
}

.dropdown-content a:hover {
    background-color: #f1f1f1;
}

.dropdown:hover .dropdown-content {
    display: block; /* Desktop hover behavior */
}

.invisible-container {
    display: none; /* Hides the container from the UI */
}

/* Hamburger Menu Styles */
.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: all 0.3s ease-in-out;
    background-color: #fff;
}
/* Slider Labels */
.slider-labels {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px; /* Add spacing between labels and the slider */
    position: relative;
    width: 100%;
}

.slider-label {
    font-size: 2rem;
    font-weight: bold;
    color: #003366;
    background-color: rgba(255, 255, 255, 0.8); /* Semi-transparent background */
    padding: 5px 10px;
    border-radius: 5px;
    z-index: 10;
}

.before-label {
    margin-left: 15%; /* Position the "Before" label on the left */
}

.after-label {
    margin-right: 15%; /* Position the "After" label on the right */
}

/* Testimonial Section */
.testimonial-section {
    margin: 0px auto;
    text-align: center;
    padding: 70px;
    background-color: #f9f9f9;
}

.testimonial-heading {
    font-size: 2rem;
    color: #003366;
    margin-bottom: 20px;
}

.testimonial-container {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 20px;
    padding: 10px;
}


.testimonial-card {
    flex: 0 0 500px;
    scroll-snap-align: center;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.testimonial-card p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 10px;
}

.testimonial-card h4 {
    font-size: 1.1rem;
    color: #003366;
    font-weight: bold;
    margin-top: 10px;
}

/* Star Rating Styles */
.star-rating {
    display: flex;
    justify-content: start; /* Align stars to the left */
    margin-bottom: 10px; /* Add spacing below the stars */
}

.star-rating span {
    font-size: 2rem; /* Adjust the size of the stars */
    color: #FFD700; /* Gold color for filled stars */
    margin-right: 5px; /* Add spacing between stars */
}

/* Add smooth scrolling for the container */
.testimonial-container::-webkit-scrollbar {
    height: 8px;
}

.testimonial-container::-webkit-scrollbar-thumb {
    background-color: #003366;
    border-radius: 4px;
}

.testimonial-container::-webkit-scrollbar-track {
    background-color: #f1f1f1;
}

/* Testimonial Navigation Buttons */
.testimonial-navigation {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.testimonial-prev,
.testimonial-next {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #003366;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 25px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.testimonial-prev span,
.testimonial-next span {
    font-size: 1.5rem;
    margin: 0 5px;
}

.testimonial-prev:hover,
.testimonial-next:hover {
    background-color: #00509e;
    transform: scale(1.05);
}

.testimonial-prev:active,
.testimonial-next:active {
    transform: scale(0.95);
}

.testimonial-prev:focus,
.testimonial-next:focus {
    outline: 2px solid #00509e;
    outline-offset: 2px;
}

.testimonial-full {
    display: none; /* Hide the full text */
}

.view-more-btn {
    background-color: #003366;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 5px 10px;
    font-size: 16px;
    cursor: pointer;
    margin-top: 8px;
    display: inline-block;
}

.view-more-btn:hover {
    background-color: #004d99;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    overflow: auto;
}

.modal-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 25px;
    border-radius: 8px;
    width: 80%;
    max-width: 600px;
    position: relative;
}

.close-modal {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    right: 15px;
    top: 10px;
}

.close-modal:hover {
    color: #000;
}

.modal-star-rating {
    color: #FFD700;
    margin-bottom: 15px;
    font-size: 20px;
}

#modalText {
    margin-bottom: 15px;
    line-height: 1.6;
}

#modalAuthor {
    text-align: right;
    margin-top: 10px;
}


/* Mobile Navigation Styles */
@media screen and (max-width: 768px) {
    /* Hamburger Icon */
    .hamburger {
        display: block;
    }

    /* Hamburger Animation */
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    /* Mobile Menu Slide-in */
    nav ul {
        position: fixed;
        right: -100%;
        top: 100px;
        gap: 0;
        flex-direction: column;
        background-color: #001f53;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 20px 0;
        z-index: 999;
    }

    nav ul.active {
        right: 0;
    }

    /* Dropdown Toggle Button */
    .dropdown-toggle {
        display: inline-block;
        background: none;
        border: none;
        color: white;
        font-size: 16px;
        padding: 5px;
        margin-left: 5px;
        cursor: pointer;
        transition: transform 0.3s;
    }

    .dropdown.active .dropdown-toggle {
        transform: rotate(180deg);
    }

    /* Dropdown Content */
    .dropdown-content {
        display: none;
        position: static;
        width: 100%;
        background-color: #001f53;
        box-shadow: none;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        opacity: 0;
        max-height: 0;
        overflow: hidden;
        transition: all 0.3s ease;
    }

    .dropdown.active .dropdown-content {
        display: block !important; /* Force override any hover styles */
        opacity: 1;
        max-height: 400px;
        padding: 10px 0;
    }

    .dropdown-content a {
        color: #fff;
        padding: 12px 20px;
        font-size: 16px;
        text-align: center;
        opacity: 0.8;
        transition: opacity 0.2s;
    }

    .dropdown-content a:hover {
        background-color: rgba(255, 255, 255, 0.1);
        opacity: 1;
    }

    /* Disable desktop hover behavior on mobile */
    .dropdown:hover .dropdown-content {
        display: none;
    }
}

.hero-slab {
    position: relative;
    height: 60vh; /* Adjust height as needed */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-slab-images {
    display: flex;
    width: 100%;
    height: 100%;
}

.hero-slab-images img {
    width: 50%; /* Each image takes up half the width */
    height: 100%;
    object-fit: cover; /* Ensure the images cover their container */
}

.hero-slab .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent black overlay */
    z-index: 1;
}

.hero-slab-content {
    position: absolute;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 20px;
}

.hero-slab-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
}

.hero-slab-content p {
    font-size: 1.2rem;
    font-weight: 400;
    color: #fff;
}

@media screen and (max-width: 768px) {
    .hero-slab {
        height: auto; /* Allow height to adjust based on content */
        flex-direction: column; /* Stack content vertically */
    }

    .hero-slab-images {
        flex-direction: column; /* Stack images vertically */
    }

    .hero-slab-images img {
        width: 100%; /* Make images take full width */
        height: auto; /* Adjust height automatically */
    }

    .hero-slab-content {
        padding: 10px;
    }

    .hero-slab .overlay {
        background: rgba(0, 0, 0, 0.644); /* Semi-transparent black overlay */
    }


}

/* Hero Section */
.hero {
    position: relative;
    height: calc(80vh + 50px); /* Increase the height by 20px */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-image{
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-image-overlay{
    position: absolute;
    object-position: center 35%; /* Adjust this value to move image up/down */
    top: 0;
    left: 0; 
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-video {
    pointer-events: none;  /* This prevents clicking on the video */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    pointer-events: none; /* Disables all interactions with the video */
    user-select: none; /* Prevents text selection */
    -webkit-user-select: none; /* For Safari */
    -moz-user-select: none; /* For Firefox */
    -ms-user-select: none; /* For IE/Edge */
}

.hero .overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.305); /* Add a semi-transparent black overlay */
    z-index: 2;
}
.hero .overlay-2{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(107, 106, 106, 0.548); /* Add a semi-transparent black overlay */
    z-index: 2;
}
.hero-content {
    position: relative;
    z-index: 2;
    color: black; /* Set the text color to black */
}

.hero-content h1 {
    font-size: 3rem; /* Slightly smaller font size */
    font-weight: 700; /* Make the text thicker */
}

.hero-content .big-font p {
    font-size: 4rem; /* Slightly smaller font size */
    font-weight: 800; /* Make the text thicker */
}

.hero-content p {
    font-size: 2rem; /* Slightly smaller font size */
    font-weight: 500; /* Make the text thicker */
}

.hero-content .thick-font {
    font-size: 2rem; /* Slightly smaller font size */
    font-weight: 900; /* Make the text thicker */
    color: rgb(0, 0, 0);
}

/* .hero-buttons {
    display: flex;
    flex-direction: column; 
    align-items: flex-start; 
} 
*/

.hero-buttons button {
    background-color: #002454;
    border: none;
    padding: 10px 20px;
    margin: 10px;
    color: white;
    font-size: 18px;
    cursor: pointer;
    border-radius: 5px;
}

.hero-buttons button:hover {
    background-color: #0056b3;
}

.hero-side {
    position: relative;
    height: calc(80vh + 40px);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.hero-image-side {
    width: 65%;
    height: 100%;
    object-fit: cover;
}

.hero-content-side {
    width: 35%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: black;
}

.hero-content-side h1 {
    font-size: 3rem;
    font-weight: 700;
}

.hero-content-side p {
    font-size: 2rem;
    font-weight: 500;
}

/* Mobile view */
@media screen and (max-width: 767px) {
    .hero {
        height: calc(70vh + 50px); /* Slightly reduce height on mobile */
    }
    
    .hero-content h1 {
        font-size: 2rem; /* Smaller font size for mobile */
    }
    
    .hero-content p {
        font-size: 1.2rem; /* Smaller font size for mobile */
    }
    
    .hero-buttons button {
        width: 50%;
        padding: 8px 5px;
        margin: 8px 5px;
        font-size: 16px;
    }
    
    .hero-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    
    .hero-side {
        position: relative;
    }

    .hero-image-side {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .hero-content-side {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100%;
        height: 100%;
        padding: 20px;
        background-color: rgba(200, 191, 191, 0.644);
        text-align: center;
        z-index: 10;
    }

    .hero-content-side h1 {
        font-size: 2rem;
        color: black;
    }

    .hero-content-side p {
        font-size: 1.2rem;
        font-weight: bold;
        color: black;
    }
}

@media screen and (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
}

/* Desktop view */
@media screen and (min-width: 768px) {
    .hero-side {
        display: flex;
    }

    .hero-image-side {
        width: 60%;
    }

    .hero-content-side {
        width: 40%;
    }
}
/* Image Comparison Slider Styles */
.slider-container {
    position: relative;
    width: 99vw;
    height: 100vh;
    margin: 0;
    overflow: hidden;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.content-home {
    min-height: 100px;
}

.content-home-intro{
    text-align: justify;
    position: relative;
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.content-home-intro p {
    font-size: 1.5rem;
    line-height: 1.6;
    font-weight: 600;
    color: #555;
    margin-bottom: 2rem;
}

.slider-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-user-drag: none;
    user-drag: none;
    -webkit-touch-callout: none;
}

.image-before {
    z-index: 1;
    clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
}

.slider-handle {
    position: absolute;
    width: 40px;
    height: 40px;
    border: 3px solid white;
    border-radius: 50%;
    background: #2563eb;
    left: calc(50% - 20px);
    top: calc(50% - 20px);
    cursor: ew-resize;
    z-index: 3;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.slider-line {
    position: absolute;
    width: 2px;
    height: 100%;
    background: white;
    left: 50%;
    z-index: 2;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .content-home{
        min-height: 700px;
        position: relative;
    }

    .content-home-intro{
        text-align: left;
        font-size: 1rem;
    }

    nav ul {
        flex-direction: column;
        gap: 10px;
    }
    .hero {
        height: calc(60vh + 20px); /* Increase the height for smaller screens */
    }
}

@media screen and (max-width: 400px) {
    .content-home{
        min-height: 900px;
        position: relative;
    }

    .content-home-intro{
        text-align: left;
        font-size: 1rem;
    }

    nav ul {
        flex-direction: column;
        gap: 10px;
    }
    .hero {
        height: calc(60vh + 20px); /* Increase the height for smaller screens */
    }
}


/* Services Page */
/* Services Section */
.services {
    padding: 20px 20px;
    text-align: center;
    background-color: #ffffff;
}
.services h1 {
    color: #003366;
    font-size: 32px;
    margin-bottom: 20px;
}
.services p {
    color: #666;
    font-size: 18px;
    margin-bottom: 40px;
}

/* Row 1 - Two Boxes, Same Width as Row 2 */
.row-1 {
    display: flex;
    justify-content: center;
    gap: 20px;
    max-width: 800px; /* Controls width to match row 2 */
    margin: 0 auto 20px;
}

/* Row 2 - Three Boxes Spread Evenly */
.row-2 {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Responsive for smaller screens */
@media (max-width: 768px) {
    .row-1, .row-2 {
        flex-direction: column;
        align-items: center;
    }
}


.service-item {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    width:400px;
    height:200px;
    /* align-items: center; */
    /* justify-content: center; */
    /* text-align: center; */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.239);
    transition: transform 0.3s;
}
.service-item:hover {
    transform: scale(1.05);
}
.service-item h2 {
    color: #007bff;
}
.service-item p {
    color: #333;
}

/* SERVICE (v2) */
/* Services (v2) section */
.service-row{
    margin: 30px auto;
    height: 100%;
    width: 100%;
    border:0.1px solid black;
    background:url("earth.jpeg");
    background-size: cover;
    overflow: hidden;
}

/* Concrete Clay Roof Coating Services */

/* Title Section with Video Background */
.title-section {
    position: relative;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.title-section video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.title-section img{
    position: absolute;
    height: 100%;
    width: 100%;
    object-fit: cover;
    z-index: 1;
    top: 0;
    left: 0;
}

.title-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Add a semi-transparent black overlay */
    z-index: 2;
}

.title-section .overlay-lighter {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(71, 70, 70, 0.5); /* Add a semi-transparent black overlay */
    z-index: 2;
}

.title-section .title-content {
    position: relative;
    z-index: 3;
}

.title-section h1 {
    font-size: 4rem;
    font-weight: 800;
    margin: 0;
}

.title-section p {
    font-size: 1.5rem;
    font-weight: 500;
    margin: 10px 0 0;
}

.benefits {
    padding: 40px 20px;
    /* background-color: #f9f9f9; */
    text-align: center;
}

.benefits h2 {
    font-size: 32px;
    font-family: 'Montserrat', Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    margin-bottom: 40px;
    font-weight: 900; /* Increase the font-weight to make it thicker */
}

.benefits-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.benefit-item {
    background-color: white;
    border-radius: 8px;
    padding: 20px;
    width: 30%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: left;
    display: flex;
    align-items: center;
    gap: 20px;
}

.benefit-item .icon {
    background-color: #003366;
    border-radius: 50%;
    padding: 20px; /* Increased padding for larger icons */
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-item .icon img {
    width: 80px; /* Increased width for larger icons */
    height: 80px; /* Increased height for larger icons */
}

.benefit-item .zoom-40 img{
    transform: scale(1.4);
}

.benefit-item .zoom-30 img{
    transform: scale(1.3);
}

.benefit-item p {
    color: #333;
    font-size: 16px;
    margin: 0;
}

.benefit-item p strong {
    display: block;
    margin-bottom: 5px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .benefit-item {
        width: 100%;
    }
}

.concrete-process{
    background-color: #001f53;
}
.process-title {
    /* background-color: #f9f9f9; */
    padding-top: 20px;
    text-align: center;
    color: white;
}

.process-title h2 {
    font-size: 32px;
    letter-spacing: 3px;
    font-family: 'Montserrat', Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    font-weight: 900; /* Increase the font-weight to make it thicker */
}

.product-section {
    text-align: center;
    padding: 50px 10px;
}

.product-section h1 {
    color: #000;
    font-size: 32px;
    font-family: 'Montserrat', Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.product-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Default to 2 columns */
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto; /* Centers the grid */
    text-align: center;
}
.product {
    background: white;
    padding: 20px;
    text-align: left;

}
.product h2 {
    margin-bottom: 10px;
}
.product ul {
    padding-left: 20px;
}

/* Responsive Grid Layout */
/* For larger screens, switch to 4 columns */
@media (min-width: 1024px) {
    .product-container {
        grid-template-columns: repeat(4, 1fr); /* 4 items per row */
    }
}

/* Ensure items stay centered in mobile view */
@media (max-width: 599px) {

    .product-container {
        grid-template-columns: 1fr; /* 1 item per row */
    }
}


/* Process FlowChart */ 
.process {
    padding: 40px 10px;
    background: white;
    overflow-x: auto;
    background-color: #c9c0c095; /* Light gray background color */

}
.process-container {
    max-width: 100%;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    color: #000;
    line-height: 1.6;
}

.flowchart {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 50px auto;
    min-width: max-content;
    padding: 20px 0;

}


.flow-step {
    position: relative;
    width: 260px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-align: center;
    opacity: 0;
    transform: translateX(-20px);
}


.flow-step.active {
    opacity: 1;
    transform: translateX(0);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.flow-arrow {
    color: #2c5282;
    font-size: 24px;
    opacity: 0;
    transform: translateX(-20px);
    /* Remove the default animation */
}

.flow-arrow.active {
    opacity: 1;
    transform: translateX(0);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.thicker-arrow {
    font-size: 40px; /* Increase the font size */
    font-weight: 900;
    padding: 5px; /* Optional: Add padding to increase the size */
}

.coating-steps {
    background: white;
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
    opacity: 0;
    transform: translateX(-20px);
    animation: fadeIn 0.5s ease forwards;
    animation-delay: 1s;
}

.coating-step {
    margin: 10px 0;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 5px;
    text-align: left;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media screen and (max-width: 768px) {

    .title-section .overlay-lighter {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(70, 70, 70, 0.5); /* Add a semi-transparent black overlay */
        z-index: 2;
    }
    
    .title-section .title-content {
        position: relative;
        z-index: 3;
    }
    
    .title-section h1 {
        font-size: 3rem;
        font-weight: 800;
        margin: 0;
    }
    
    .title-section p {
        font-size: 1.2rem;
        font-weight: 500;
        margin: 10px 0 0;
    }

    .process {
        padding: 20px 10px;
        overflow-x: hidden; /* Remove horizontal scrolling */
    }

    .flowchart {
        flex-direction: column; /* Stack items vertically */
        align-items: center;
        gap: 20px; /* Increase gap between steps */
        margin: 30px auto;
        padding: 10px 0;
    }

    .flow-step {
        width: 90%; /* Make steps wider relative to screen */
        max-width: 300px; /* Set maximum width */
        margin: 0 auto;
        transform: translateY(-20px); /* Change animation direction */
    }

    .flow-step.active {
        transform: translateY(0); /* Update active animation */
    }

    .flow-arrow {
        transform: rotate(90deg); /* Rotate arrow downward */
        font-size: 20px; /* Slightly smaller arrow */
        transform: translateY(-20px); /* Change animation direction */
    }

    .flow-arrow.active {
        transform: translateY(0) rotate(90deg); /* Keep rotation in active state */
    }

    .thicker-arrow {
        font-size: 30px; /* Slightly smaller for mobile */
    }

    .section-title {
        font-size: 1.5em; /* Reduce title size */
        margin-bottom: 30px;
    }
}


.benefits-vertical {
    padding: 80px 20px;
    background: white;
}

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

.benefit-card {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-card h3 {
    color: #2c5282;
    margin-bottom: 15px;
}




/* ABOUT US PAGE */
/* About Hero Section */
.about-hero {
    height: 55vh;
    display: flex;
    align-items: center;
    justify-content: center; /* Center align content and statistics */
    text-align: center; /* Align text to the left */
    color: black;
    /* background: #002454; */
    position: relative;
    padding: 0 10px; /* Add padding for spacing */
}
.about-hero-content {
    color: black; /* Change font color to white */
    /* background-color: rgba(145, 129, 129, 0.5); Semi-transparent background */
    align-items: flex-start;
    padding: 10px;
    font-size: larger;
    max-width: 60%; /* Adjust width to fit content */
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Distribute space between child elements */
}

.about-hero-content p {
    text-align: justify; /* Justify paragraph text */
}
.statistics-board {
    display: flex;
    flex-direction: row; /* Change to row to make it horizontal */
    justify-content: space-around; /* Distribute space around items */
    align-items: center; /* Center align items vertically */
    gap: 0px; /* Reduce the gap between items */
    padding: 30px;
    background-color: rgba(145, 129, 129, 0.5); /* Semi-transparent background */
    /* border-radius: 10px; */
    max-width: 100%; /* Adjust width to fit content */
    /*margin: 20px auto; /* Center the board horizontally */
}
.stat-item {
    text-align: center; /* Center align text */

}
.stat-number {
    font-size: 70px; /* Increase font size */
    font-weight: bold;
    margin-bottom: 10px; /* Reduce the bottom margin */
    color: #003366; /* Change font color to white */
}
.stat-item p {
    font-size: 22px; /* Increase font size */
    color: #000; /* Change font color to white */
    margin-top: 0; /* Remove the top margin */

}

/* About Content */
.about-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 50px 20px;
    text-align: center;
}
.about-content h2 {
    color: #003366;
    font-size: 28px;
    margin-bottom: 10px;
}
.about-content p {
    color: #666;
    font-size: 18px;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-hero {
        flex-direction: column; /* Stack hero content and statistics vertically */
        height: auto; /* Adjust height */
    }
    
    .statistics-board {
        flex-direction: column; /* Change to column for mobile */
        gap: 20px; /* Add some spacing between stacked items */
    }
    
    .about-hero-content, .statistics-board {
        max-width: 100%; /* Full width for smaller screens */
        margin-bottom: 20px; /* Add margin for spacing */
    }
    .stat-number {
        font-size: 60px; /* Adjust font size for smaller screens */
    }
    .stat-item p {
        font-size: 24px; /* Adjust font size for smaller screens */
    }
}

/* WhatsApp */ 
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-float img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2); */
    transition: transform 0.3s;
}

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


/* Footer */
footer {
    background-color: #001f53;
    padding: 40px 20px; /* Increase padding to make the footer thicker */
    display: flex;
    justify-content: space-between;
    align-items: flex-start; /* Align items to the top */
    color: white;
}
footer .footer-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}
footer .footer-content p {
    margin: 5px 0;
}
footer .footer-content a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    position: relative;
}
footer .footer-content a::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: white;
    bottom: -2px;
    left: 0;
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
}
footer .footer-content a:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}
footer .logo {
    display: flex;
    align-items: flex-start; /* Align logo to the top */
}
footer .logo img {
    height: 60px;
}


/* Process FlowChart */
.process-flow {
    padding: 60px 20px;
    background-color: #fff;
    text-align: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
}

.process-flow h2 {
    font-size: 2rem;
    color: #000;
    margin-bottom: 40px;
}

/* Flowchart Container */
.flow-chart-vertical {
    position: relative;
    max-width: 700px; /* Narrower width to match the desired layout */
    margin: 0 auto;
}

/* Central Connecting Line */
.flow-chart-vertical::before {
    content: '';
    position: absolute;
    top: 40px; /* Start below the first number */
    bottom: 60px; /* End above the last number */
    left: 30px; /* Align with the center of the step number */
    width: 2px; /* Thinner line */
    background-color: #3498db; /* Blue line */
    z-index: 1;
}

/* Flow Step */
.flow-step-vertical {
    display: flex;
    align-items: anchor-center; /* Align items at the top */
    position: relative;
    margin-bottom: 60px; /* Spacing between steps */
    z-index: 2;
}

/* Contact button styles */
.contact-button-container {
    text-align: center;
    margin-bottom: 40px;
}

.contact-button-container h2 {
    color: #003366;
    font-size: 24px;
    margin-bottom: 10px;
}

.contact-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #001f53;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.contact-button:hover {
    background-color: #f19257;
}

/* Step Number */
.step-number {
    width: 60px; /* Size for desktop */
    height: 60px;
    background-color: #3498db;
    color: #fff;
    font-size: 1.5rem; /* Font size for desktop */
    font-weight: bold;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    flex-shrink: 0; /* Prevent shrinking */
}

/* Step Content */
.step-content {
    flex: 1;
    text-align: left;
    margin-left: 20px; /* Space between number and content */
}

/* Step Content Title */
.step-content h3 {
    font-size: 1.3rem;
    color: #222;
    margin-bottom: 5px;
    font-weight: 600;
}

/* Step Content Description */
.step-content p {
    font-size: 1rem;
    color: #666;
    line-height: 1.4;
}

/* Remove margin-bottom for the last step */
.flow-step-vertical:last-child {
    margin-bottom: 0;
}

/* Improved Mobile Styles for Flowchart */
@media (max-width: 768px) {

    .process-flow {
        padding: 40px 15px;
    }

    .process-flow h2 {
        font-size: 1.5rem; /* Smaller header for mobile */
        margin-bottom: 30px;
    }

    .flow-chart-vertical {
        max-width: 100%;
        padding: 0 10px; /* Add padding for better margins on mobile */
    }

    .flow-chart-vertical::before {
        left: 50%; /* Adjust for smaller screens */
    }

    .flow-step-vertical {
        display: flex;
        flex-direction: row; /* Keep the number and content side by side */
        align-items: center; /* Vertically center the number and content */
        margin-bottom: 30px; /* Reduced spacing for mobile */
        padding: 10px;
        background-color: #f9f9f9; /* Add a light background for each step */
        border-radius: 8px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05); /* Subtle shadow for depth */
    }

    .step-number {
        width: 40px; /* Smaller size for mobile */
        height: 40px;
        font-size: 1rem; /* Smaller font size */
        border-width: 2px; /* Thinner border */
    }

    .step-content {
        margin-left: 15px; /* Reduced spacing between number and content */
    }

    .step-content h3 {
        font-size: 1.1rem; /* Smaller font size for mobile */
        margin-bottom: 3px;
    }

    .step-content p {
        font-size: 0.95rem; /* Smaller font size for mobile */
        line-height: 1.3; /* Tighter line height for better fit */
    }
}

/* Base styles and reset */
:root {
    --primary-color: #4a4e89;
    --text-color: #333;
    --subtext-color: #555;
    --border-color: #f19257;
    --hover-color: #3d4172;
    --transition-speed: 0.3s;
    --spacing-sm: 10px;
    --spacing-md: 20px;
    --spacing-lg: 50px;
}

.contact-page {
    display: flex;
    flex-direction: row;
    height: 100vh; /* Full viewport height */
}

.contact-container {
    flex: 0 0 35%; /* 35% width */
    background-color: #f9f9f9; /* Optional: Add a background color */
    overflow-y: auto; /* Enable scrolling if content overflows */
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1); /* Optional: Add a shadow for separation */
}

.map-container {
    flex: 0 0 65%; /* 65% width */
    height: 100%; /* Full height */
    overflow: hidden; /* Prevent overflow */
}

/* Container layout */
/* .contact-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--spacing-md);
    position: relative;
} */


/* Contact columns */
.contact-column {
    text-align: center;
    flex: 0 0 35%;
    padding: 10px;
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
}

/* Typography styles */
.contact-column h2{
    color: var(--primary-color);
    font-size: 1.7rem;
    letter-spacing: 3px;
    margin-bottom: var(--spacing-sm);
    font-weight: 700;
    text-transform: uppercase;
}

.contact-column h3 {
    color: var(--subtext-color);
    margin-bottom: var(--spacing-md);
    font-size: 1rem;
    font-weight: 300;
}

/* Divider with enhanced styling */
.contact-divider {
    width: 60%;
    height: 4px;
    background: #f19257;
    border: none;
    margin: var(--spacing-md) auto;
}

/* Contact information */
.contact-column p {
    font-size: 1.125rem;
    margin: var(--spacing-sm) 0;
    transition: color var(--transition-speed);
}

.contact-column p:hover {
    color: var(--primary-color);
}

/* Operating hours section */
.operating-hours {
    text-align: center;
    width: 100%;
    margin-top: var(--spacing-lg);
    padding: var(--spacing-md);
    position: relative;
}

.operating-hours::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 2px;
}

.hours-heading {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
    font-weight: 600;
}

.operating-hours p {
    margin: 8px 0;
    font-size: 1.05rem;
}

.social-icon {
    border-radius: 50%;
    width: 60px;
    height: 60px;
    margin: 0px 10px;
}

.social-icon img {
    border-radius: 50%;
    width: 50px;
    height: 50px;
}

.social-icon:hover img {
    transform: scale(1.1);
}

.extra-circle-one {
    background-color: rgba(74, 78, 137, 0.1); /* Light version of primary color */
    top: 100px;
    left: 10%;
    transform: translate(-50%, -60px);
}

.extra-circle-two {
    background-color: rgba(95, 151, 200, 0.15); /* Light version of border color */
    top: 20%;
    right: 10%;
    transform: translate(20%, 0);
}

.extra-circle-three {
    background-color: rgba(200, 135, 95, 0.15); /* Light version of border color */
    top: 70%;
    right: 30%;
    transform: translate(50%, 40%);
}
.extra-circle-four {
    background-color: rgba(156, 124, 77, 0.15); /* Light version of border color */
    top: 50%;
    right: 80%;
    transform: translate(30%, 0);
}
.extra-circle-one,
.extra-circle-two,
.extra-circle-three,
.extra-circle-four {
    content: '';
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    z-index: -1;
}

/* Service Description Section */
.service-intro {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 2rem;
    text-align: center;
}

.service-intro p {
    font-size: 1.5rem;
    line-height: 1.6;
    font-weight: 600;
    color: #555;
    margin-bottom: 2rem;
}

  /* Service Options */
  .service-options {
    display: flex;
    flex-direction: row; /* Display cards side by side */
    justify-content: space-between; /* Space evenly between cards */
    margin: 2rem 0 4rem;
    gap: 2rem;
}

.option-card {
    background: #cad8e7;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    padding: 2rem;
    width: calc(50% - 1rem); /* Take up half the width minus gap */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.option-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.option-card h3 {
    color: #003366;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.option-card p {
    color: #555;
    line-height: 1.5;
}

/* Benefits Section */
.benefits-section-rc {
    background-color: #f1f5f9;
    padding: 4rem 0;
}

.benefits-container-rc {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.benefits-container-rc h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #003366;
    font-size: 2rem;
}

.benefits-grid-rc {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.benefit-card-rc {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    padding: 2rem;
    width: calc(50% - 1rem);
    max-width: 500px;
    min-width: 280px;
    position: relative;
    overflow: hidden;
    text-align: left;
}

.benefit-card-rc h2 {
    font-size: 1.8rem;
    color: #003366;
    margin-bottom: 1.5rem;
    text-align: center;
}

.benefit-card-rc ul {
    list-style: none;
    padding: 0;
}

.benefit-card-rc li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    color: #444;
    line-height: 1.6;
}

.benefit-card-rc li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #00a651;
    font-weight: bold;
}

/* Call to action section */
.cta-section {
    background-color: #003366;
    color: white;
    text-align: center;
    padding: 4rem 2rem;
}

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.cta-section p {
    max-width: 800px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    background-color: #00a651;
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #008f45;
}
        


        
/* Media queries for responsiveness */
@media screen and (max-width: 768px) {
    .contact-column {
        flex: auto;
    }

    .mobile-width{
    width: 60% !important;
    }

    .extra-circle-one {
        background-color: rgba(74, 78, 137, 0.1); /* Light version of primary color */
        top: 10px;
        left: 10%;
        transform: translate(-50%, 0);
    }
    
    .extra-circle-two {
        background-color: rgba(241, 146, 87, 0.15); /* Light version of border color */
        top: 90%;
        right: 60%;
        transform: translate(30%, 0);
    }

    .extra-circle-three {
        background-color: rgba(128, 149, 182, 0.239); /* Light version of border color */
        top: 40%;
        right: 0%;
        transform: translate(0, 0);
    }


    .extra-circle-one,
    .extra-circle-two,
    .extra-circle-three {
        content: '';
        position: absolute;
        width: 200px;
        height: 200px;
        border-radius: 50%;
        z-index: -1;
    }

    .benefits-grid-rc {
        width: 100%;
    }
    
    .benefits-grid-rc {
        flex-direction: column;
        align-items: center;
    }

    .service-options {
        flex-direction: column;
        align-items: center;
    }
    
    .option-card {
        width: 80%;
    }

    .contact-page {
        flex-direction: column; /* Stack columns vertically */
        height: auto; /* Allow page to grow with content */
        min-height: 100vh; /* Ensure it fills at least full viewport */

    }
    
    .contact-container {
        flex: 0 0 auto; /* Don't flex grow */
        width: 100%; /* Full width */
        order: 1; /* Display contact info at the top */
        box-shadow: none;
    }
    
    .map-container {
        flex: 1;
        width: 100%; /* Full width */
        min-height: 40vh; /* Minimum 60% of viewport height */

        height: 400px; /* Fallback fixed height */
        order: 2; /* Display map below contact info */
    }
    .map-container iframe {
        position: absolute !important;
        width: 100% !important;
        height: 40vh !important;
        min-height: 40vh !important;
        border: 0 !important;
    }
    .contact-column {
        padding: var(--spacing-md);
        margin-bottom: var(--spacing-md);
    }
    
    
    .contact-column h2 {
        font-size: 1.4rem;
        margin-bottom: 5px;
    }
    
    .contact-column h3 {
        font-size: 1rem;
    }
    
    .contact-info {
        font-size: 1.1rem;
    }
    
    .social-icon img {
        width: 32px; /* Smaller icons for mobile */
        height: auto;
    }

    /* Footer Styles */
    footer {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px;
        background-color: #001f53;
        width: 100%;
        box-sizing: border-box; 
    }

    .footer-content {
        margin-bottom: 20px; 
    }

    .footer-content p {
        margin: 5px 0; 
        font-size: 0.9rem;
        color: #ffffff;
    }

    .logo img {
        width: auto; 
        height: auto;
        margin-top: 10px;
    }

    .slider-labels {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 10px; /* Add spacing between labels and the slider */
        position: relative;
        width: 100%;
    }

    .slider-label {
        font-size: 2rem;
        font-weight: bold;
        color: #003366;
        background-color: rgba(255, 255, 255, 0.8); /* Semi-transparent background */
        padding: 5px 10px;
        border-radius: 5px;
        z-index: 10;
    }

    .before-label {
        margin-left: 15%; /* Position the "Before" label on the left */
    }

    .after-label {
        margin-right: 15%; /* Position the "After" label on the right */
    }

    /* Testimonial Section */
    .testimonial-section {
        margin: 0px auto;
        text-align: center;
        padding: 50px 0px;
        background-color: #f9f9f9;
    }

    .testimonial-heading {
        font-size: 2rem;
        color: #003366;
        margin-bottom: 20px;
    }

    .testimonial-container {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 20px; /* Remove gaps between cards */
        padding: 10px; /* Remove padding to avoid extra space */
    }

    .testimonial-card {
        flex: 0 0 90%; /* Allow the card to adjust its size automatically */
        scroll-snap-align: center;
        background-color: #fff;
        border: 1px solid #cacaca;
        border-radius: 8px;
        padding: 20px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        text-align: left;
    }

    .testimonial-card p {
        font-size: 1.2rem;
        color: #555;
        margin-bottom: 10px;
    }

    .testimonial-card h4 {
        font-size: 1.3rem;
        color: #003366;
        font-weight: bold;
        margin-top: 10px;
    }

}


