/* ================= GLOBAL ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}
.success-msg {
    margin-top: 15px;
    color: #155724;
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    padding: 12px;
    border-radius: 5px;
    font-size: 14px;
}

h2 span{
    color: #da1a1f;
}

/* ================= HEADER / NAVBAR ================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    /*background: #28282833;*/
    /*background: transparent;*/
    /*background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);*/
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

/* solid on scroll */
.header.scrolled {
    /*background: #0f172a!important;*/
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

/* navbar layout */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

/* logo */
.logo img {
    height: 45px;
    transition: all 0.3s ease;
}

/* menu */
.nav-menu ul {
    list-style: none;
    display: flex;
    align-items: center;
}

.nav-menu ul li {
    position: relative;
    margin-left: 30px;
}

.nav-menu ul li a {
    text-decoration: none;
    color: #000;
    font-weight: 500;
    transition: color 0.3s ease;
}

/* change text color after scroll */
.header.scrolled .nav-menu ul li a {
    color: #000;
}
.header.scrolled .nav-menu ul li a:hover {
    color: #da1a1f;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
    letter-spacing: 0.4px;
    transition: 0.3s;
    font-weight: 700;
}

/* hover */
.nav-menu ul li a:hover {
    color: #da1a1f;
    letter-spacing: 0.4px;
    transition: 0.3s;
    /*text-shadow: 0 0 8px rgba(255, 255, 255, 0.6);*/
    font-weight: 700;
}

.menu-toggle {
    display: none;
}

/* ================= DROPDOWN ================= */
.dropdown-menu {
    display: none!important; /* MUST be hidden initially */
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    min-width: 260px;
    flex-direction: column;
    padding: 10px 0;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu li a {
    color: #111;
    padding: 12px 20px;
    display: block;
    font-size: 14px;
}

.dropdown-menu li a:hover {
    color: #da1a1f;
}

.dropdown.open .dropdown-menu {
    display: block!important;
    border-radius: 20px;
    background: #fff;
}
/*--------------------------------------------------------------------navbar style code--------------------------------------------------------------------------*/

/* ================= HERO SECTION ================= */
.hero {
    position: relative;
    width: 100%;
    height: 78vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    /*background: url(../images/banners/V1.mp4) no-repeat center center fixed;*/
    /*background-size: cover;*/
}
.about-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    /*background: url(../images/banners/V1.mp4) no-repeat center center fixed;*/
    /*background-size: cover;*/
}
.hero-container {
    position: relative;
    z-index: 10;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Pushes marquee to bottom */
    padding: 120px 0 40px 0; /* Space for Nav and bottom padding */
    text-align: center;
    justify-content: center;
    align-items: center;
}

.hero span{
    color: #da1a1f;
}

/* Fullscreen video */
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover; /* cover the whole area */
    transform: translate(-50%, -50%);
    z-index: 1;
}

/* Overlay with opacity for readable content */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*background: rgba(0, 0, 0, 0.2); /* black overlay with 50% opacity */*/
    z-index: 2;
}

/* Hero content centered */
.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #ffffff;
    max-width: 50%;
    padding: 0 20px;
    margin-top: auto;
    margin-bottom: auto; /* Keeps text perfectly centered */
}
@keyframes slideUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Headline */
.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    /*letter-spacing: 2px;*/
    /*text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9);*/
    font-family: 'Playfair Display', serif;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8), 
                 0 0 20px rgba(0, 0, 0, 0.9);
}

/* Subtext */
.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 10px;
    letter-spacing: 1px;
    color: #fff;
    font-weight: 800;
    font-family: 'Playfair Display', serif;
}

/* Hero buttons */
.hero-buttons{
    margin-top: 20px;
}
.hero-buttons a {
    display: inline-block;
    margin: 0 10px;
    padding: 12px 28px;
    font-weight: 600;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.mobile-video {
    display: none;
}

.desktop-video {
    display: block;
}
.our-clients{
    height: 27vh;
}
/* --- Integrated Marquee Styling --- */
.hero-marquee-wrap {
    /*background: rgba(255, 255, 255, 0.05);*/
    /*backdrop-filter: blur(25px);*/
    background: #fff;
    padding: 20px 0;
    width: 100%;
    /*border-bottom: 2px dashed #da1a1f;*/
}

.hero-marquee-wrap p {
    color: #2b2b2b;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    opacity: 0.8;
    text-align: center;
}

.client-marquee {
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
}

.marquee-track {
    display: flex;
    align-items: center;
    gap: 80px;
    width: max-content;
    animation: marquee 25s linear infinite;
}

.marquee-track img {
    height: 80px;
    width: auto;
    opacity: 1;
    transition: 0.3s;
}

.marquee-track img:hover {
    filter: none; /* Shows original brand colors on hover */
}

/* --- Marquee Animation --- */
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-60%); }
}
.btn-primary {
    background: #da1a1f;
    color: #fff;
}

.btn-primary:hover {
    background: #fff;
    color: #da1a1f;
}

.btn-secondary {
    background: #fff;
    border: 2px solid #da1a1f;
    color: #da1a1f;
}

.btn-secondary:hover {
    background: #ffffff;
    color: #da1a1f;
}
/*-----------------------------------------------------------banner section-----------------------------------------------------------*/

/* ================= WHY THE ROOF SECTION ================= */
.why-roof {
    padding: 100px; /* spacing top & bottom */
    background: #f9f9f9; /* light background */
    color: #111;
    font-family: 'Poppins', sans-serif;
}

.why-roof h2 {
    text-align: left;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.why-roof p {
    text-align: left;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 20px auto;
    line-height: 1.6;
}

/* GRID LAYOUT FOR CONTENT + FORM */
.why-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10%; /* space between left and right */
    max-width: 1200px;
    margin: 0 auto;
}

/* LEFT CONTENT */
.why-content {
    flex: 1; /* takes half the space */
}

/* Points under description */
.why-points {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 0px;
    font-weight: 500;
}

.why-points div {
    position: relative;
    padding-left: 25px;
    font-size: 1rem;
}
.why-points div span{
    font-weight: 800;
}
.why-points div span strong{
    display: none;
}

.why-points div::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #da1a1f; /* gold check */
    font-weight: bold;
}

/* Know More button */
.why-content .btn-secondary {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 28px;
    font-weight: 600;
    border-radius: 5px;
    text-decoration: none;
    border: 2px solid #da1a1f;
    color: #da1a1f;
    transition: all 0.3s ease;
}

.why-content .btn-secondary:hover {
    background: #da1a1f;
    color: #fff;
    letter-spacing: 1px;
    transition: 0.3s;
}

/* COUNTERS */
.counters {
    display: flex;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.counter-box {
    flex: 1;
    min-width: 120px;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    cursor: pointer;
}

.counter-box h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: #da1a1f;
}

.counter-box span {
    font-size: 0.95rem;
    color: #555;
}

/* RIGHT FORM */
.why-form {
    flex: 1; /* takes half the space */
    background: #0f172a; /* dark form background */
    padding: 50px 50px;
    border-radius: 10px;
    color: #fff;
}

.why-form h3 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    font-weight: 700;
    text-align: center;
}

.why-form input,
.why-form select, textarea {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 15px;
    border: none;
    border-radius: 5px;
    outline: none;
    font-size: 1rem;
}

.why-form input::placeholder {
    color: #999;
}

.why-form select {
    color: #555;
}

.why-form button.btn-primary {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 5px;
    background: #da1a1f;
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.why-form button.btn-primary:hover {
    background: #fff;
    color: #da1a1f;
    letter-spacing: 2px;
    transition: 0.3s;
}

/* ================= DESKTOP FIRST LAYOUT ================= */
@media (max-width: 1200px) {
    .why-grid {
        gap: 30px;
    }
}

@media (max-width: 991px) {
    .why-grid {
        flex-direction: column;
    }

    .why-form {
        margin-top: 40px;
    }
}

/* ================= SLIDE IN ANIMATION ================= */
/* ========== INITIAL HIDDEN STATE ========== */
.slide-left {
    opacity: 0;
    transform: translateX(-50px);
}

.slide-right {
    opacity: 0;
    transform: translateX(50px);
}

/* ========== ANIMATION WHEN ACTIVE ========== */
.slide-left.active {
    animation: slideLeft 1s ease-out forwards;
}

.slide-right.active {
    animation: slideRight 1s ease-out forwards;
}

/* ========== KEYFRAMES ========== */
@keyframes slideLeft {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideRight {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}
/*-----------------------------------------------------------------why the roof section--------------------------------------------------------------------*/

/* MINIMAL SERVICES GRID */
.services-grid-section {
    padding: 80px 0;
    background: #fdfdfd;
}
.services-grid-section h2{
    font-size: 36px;
    text-align: center;
    margin-bottom: 10px;
}
.services-grid-section p {
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 25px;
    text-align: center;
}
.services-box-wrap {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}
.service-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-bottom: 3px solid transparent;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-card:hover {
    border-bottom: 3px solid #da1a1f;
    transform: translateY(-10px);
    cursor: pointer;
}
.service-card i {
    font-size: 40px;
    color: #da1a1f;
    margin-bottom: 20px;
}
.service-card h3 {
    margin-bottom: 15px;
    font-size: 20px;
}
.service-card a{
    display: inline-block;
    align-self: center;
    margin-top: auto;
    text-decoration: none;
    font-size: 16px;
    color: #da1a1f;
    font-weight: 700;
    letter-spacing: 1px;
    background: transparent;
    padding: 10px;
    border: 1px solid #da1a1f;
    border-radius: 10px;
}
.service-card a:hover{
    background: #da1a1f;
    color: #ffffff;
    font-weight: 700;
    transition: 0.3s;
}
/*---------------------------------------------------------service section-------------------------------------------------------------*/

/* slide up (for heading) */
.slide-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.slide-up.active {
    opacity: 1;
    transform: translateY(0);
}

/* slide left (for marquee) */
.slide-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease-out;
}

.slide-left.active {
    opacity: 1;
    transform: translateX(0);
}
/* zoom in (for button) */
.zoom-in {
    opacity: 0;
    transform: scale(0.85);
    transition: all 0.6s ease-out;
}

.zoom-in.active {
    opacity: 1;
    transform: scale(1);
}
/*------------------------------------------------------client section ------------------------------------------------------*/

.case-studies {
    padding: 100px 0;
    background: #e9e9e9;
    text-align: center;
}

.case-studies h2 {
    font-size: 40px;
    margin-bottom: 50px;
}

/* slider layout */
.case-slider {
    display: flex;
    gap: 30px;
    overflow-x: hidden;
    padding-bottom: 20px;
    scroll-behavior: smooth;
}

.case-slider::-webkit-scrollbar {
    display: none;
}

/* card */
.case-card {
    /*min-width: 320px;*/
    flex: 0 0 100%;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.case-card:hover {
    /*transform: translateY(-8px);*/
}

/* thumbnail */
.case-thumb {
    position: relative;
}

.case-thumb img {
    width: 100%;
    height: 200px;
    /*object-fit: cover;*/
    object-fit: scale-down;
    background: #fff;
}

/* play button */
.play-btn {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    color: #fff;
    background: rgba(0,0,0,0.4);
    opacity: 0;
    transition: 0.3s ease;
}

.case-card:hover .play-btn {
    opacity: 1;
}

/* info */
.case-info {
    padding: 20px;
    text-align: left;
}

.case-info h4 {
    margin-bottom: 10px;
}

.case-info p {
    font-size: 14px;
    color: #555;
}

/* CTA */
.center-btn {
    display: inline-block;
    margin-top: 40px;
}

/* ================= VIDEO MODAL ================= */
.video-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.video-modal.active {
    display: flex;
}

.video-content {
    position: relative;
    width: 70%;
    max-width: 900px;
}

.video-content video {
    width: 100%;
    border-radius: 10px;
}

/* close button */
.video-close {
    position: absolute;
    top: -40px;
    right: 0;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
}
.center-btn-two {
    display: inline-block;
    margin-top: 20px;
    padding: 15px 30px;
    background: transparent;
    border: 2px solid #000;
    color: #000;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 500;
}

.center-btn-two:hover{
    border: 2px solid #fff;
    background: #fff;
    letter-spacing: 2px;
    transition: 0.3s;
}

.slider-wrapper {
    position: relative;
    max-width: 1080px; /* 3 cards */
    margin: 0 auto;
}

.slide-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #da1a1f;
    color: #fff;
    border: none;
    font-size: 25px;
    padding: 10px 20px;
    cursor: pointer;
    z-index: 10;
    border-radius: 30px;
    font-weight: 700;
}

.slide-btn.prev {
    left: -50px;
}

.slide-btn.next {
    right: -50px;
}
/*-----------------------------------------------------------------testimonial section----------------------------------------------------------*/

.footer {
    background: #1f2937;
    color: #fff;
    padding-top: 70px;
    font-size: 14px;
}

/* layout */
.footer-wrap {
    display: flex;
    justify-content: space-between;
    gap: 60px;
}

/* LEFT */
.footer-left {
    max-width: 420px;
}

.footer-logo {
    width: 160px;
    margin-bottom: 20px;
}

.footer-desc {
    color: #cbd5e1;
    line-height: 1.7;
    margin-bottom: 25px;
}

/* socials */
.footer-socials {
    display: flex;
    gap: 15px;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #374151;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: 0.3s;
    text-decoration: none;
}

.footer-socials a:hover {
    background: #b8932f;
    transform: translateY(-4px);
}

/* RIGHT */
.footer-right h4 {
    font-size: 18px;
    margin-bottom: 25px;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    gap: 15px;
    margin-bottom: 18px;
    align-items: flex-start;
}

.footer-contact i {
    font-size: 18px;
    color: #da1a1f;
    margin-top: 3px;
}

.footer-contact span {
    color: #cbd5e1;
    line-height: 1.6;
}

/* bottom bar */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 60px;
    padding: 20px 0;
    text-align: center;
    color: #9ca3af;
}
/*=====================================================================HOME PAGE CSS ============================================================*/

.about-roof {
    padding: 100px 0;
    background: #f9f9f9;
}
.about-roof h2{
    text-align: left;
}
.about-roof p {
    text-align: left;
}

.about-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

/* LEFT : Text Content */
.about-content {
    flex: 1;
}

.about-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
}

.about-content h2 span {
    color: #da1a1f;
}

.about-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}

/* RIGHT : Video */
.about-video {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.testimonial-video {
    width: 100%;
    max-width: 550px;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}
/*-------------------------------------------about us section--------------------------------------------*/

.why-choose-us {
    padding: 100px 0;
    background: #ffffff;
}

.why-grid {
    display: flex;
    align-items: center;
    gap: 60px;
}

/* ===== RIGHT : CONTENT ===== */
.why-content {
    flex: 1;
}

.why-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.why-content h2 span {
    color: #da1a1f;
}

.why-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 25px;
}

.why-points {
    list-style: none;
    padding: 0;
}

.why-points li {
    font-size: 16px;
    margin-bottom: 15px;
    color: #1f2937;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .why-grid {
        flex-direction: column;
    }

    .why-content h2 {
        font-size: 30px;
    }
}
/*-------------------------------------------------------BOARD OF DIRECTOR SECTION-----------------------------------------------------------*/

.board-of-directors {
    padding: 100px 0;
    background: #f9f9f9;
    text-align: center;
}

.board-of-directors h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.board-of-directors h2 span {
    color: #da1a1f;
}

.board-of-directors p {
    font-size: 16px;
    color: #555;
    margin-bottom: 50px;
}

/* GRID OF DIRECTORS */
.board-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap; /* optional if you have many directors */
}

.board-member {
    flex: 0 0 220px; /* fixed width per member */
    text-align: center;
}

.board-member img {
    width: 220px;
    height: 220px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.board-member img:hover {
    transform: scale(1.05);
}

.board-member h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: #1f2937;
}

.board-member p {
    font-size: 14px;
    color: #777;
}

.board-of-directors a{
    border: 2px solid #da1a1f;
    background: transparent;
    color: #da1a1f;
}

.board-of-directors a:hover{
    border: 2px solid #da1a1f;
    background: #da1a1f;
    letter-spacing: 2px;
    transition: 0.3s;
    color: fff;
    font-weight: 700;
}
/*==============================================================about page css=======================================================================*/

/* Optional Hero */
.services-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),url('../images/banners/our-services-banner.webp') no-repeat center center;
    background-size: 100% 100%; /* Forces the image to stretch to the container edges */
    color: #fff;
    
    /* Use aspect-ratio instead of fixed padding to keep the image shape */
    aspect-ratio: 1920 / 400; 
    
    /* Flexbox helps center the text perfectly regardless of the height */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px; 
}

.services-hero h1 {
    font-size: 50px;
    letter-spacing: 5px;
}

.services-hero h1 span{
    color: #da1a1f;
}

.services-hero p {
    font-size: 18px;
    letter-spacing: 2px;
    color: #fff;
    margin-top: 10px;
}

/* Service Section Two Columns */
.service-section {
    padding: 80px 20px;
    border-bottom: 1px solid #eee;
    text-align: center;
}

.even-section{
    background: #f1f1f1;
}

.service-section h2 {
    font-size: 35px;
    letter-spacing: 2px;
    margin-bottom: 40px;
    color: #1f2937;
}

.service-section h2 span {
    color: #da1a1f;
}

/* Two-column layout */
.service-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 30px;
    text-align: left;
}

.service-content .text-content {
    flex: 1;
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.service-content .image-content {
    flex: 1;
}

.service-content .image-content img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
}

/* CTA Button */
.service-section .cta-btn {
    display: inline-block;
    padding: 12px 25px;
    background: #da1a1f;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 1rem;
    transition: background 0.3s ease;
}

.service-section .cta-btn:hover {
    background: #fff;
    color: #da1a1f;
    font-size: 1.2rem;
    letter-spacing: 1px;
    transition: 0.3s;
    font-weight: 700;
    border: 2px solid #da1a1f;
}

/* Premium Client Area Styling */
.client-trust-area {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 2px dashed #ddd;
}

.trust-label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #999;
    font-weight: 700;
    margin-bottom: 5px;
}

.client-logo-grid {
    display: flex;
    gap: 30px;
    align-items: center;
    flex-wrap: wrap;
}

.client-logo-grid img {
    height: 100px; /* Keeps logos uniform */
    width: auto;
    /*filter: grayscale(100%);*/
    /*opacity: 0.6;*/
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.client-logo-grid img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

/* Contact Form */
.contact-form-section {
    padding: 80px 20px;
    background: #f9f9f9;
    text-align: center;
}

.contact-form-section h2 {
    font-size: 35px;
    margin-bottom: 30px;
}

.contact-form-section h2 span{
    color: #da1a1f;
}

.contact-form-section form {
    max-width: 500px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form-section input,textarea,select {
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
    width: 100%;
    font-size: 16px;
}

.contact-form-section button {
    padding: 12px;
    background: #da1a1f;
    color: #fff;
    border: none;
    border-radius: 20px;
    font-size: 18px;
    cursor: pointer;
}

.contact-form-section button:hover {
    background: #fff;
    border: 2px solid #da1a1f;
    color: #da1a1f;
    letter-spacing: 2px;
    transition: 0.3s;
    font-weight: 700;
}
/*-------------------------------------------------------service page css-------------------------------------------------------*/

/* Careers Hero */
.careers-hero {
    background: #1f2937;
    color: #fff;
    padding: 90px 20px;
    text-align: center;
}

.careers-hero h1 span {
    color: #da1a1f;
}

/* Why Work With Us */
.careers-why {
    padding: 100px;
    text-align: center;
}

.why-grid-careers {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.why-item {
    background: #da1a1f;
    padding: 20px;
    border-radius: 10px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 1px;
    font-size: 0.9rem;
    cursor: pointer;
}
.why-item:hover{
    background: #fff;
    color: #da1a1f;
    border: 2px solid #da1a1f;
    letter-spacing: 2px;
    transition: 0.3s;
}

/* Job Openings */
.careers-openings {
    padding: 100px;
    background: #f9f9f9;
}
.careers-openings h2{
    font-size: 2rem;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.job-card {
    background: #fff;
    padding: 50px;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.job-card h3{
    color: #da1a1f;
    font-size: 1.2rem;
    margin-bottom: 10px;
    letter-spacing: 1px;
}
.job-card p{
    font-size: 1rem;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

/* Apply Form */
.career-form {
    padding: 100px;
    text-align: center;
}
.career-form h2{
    font-size: 2rem;
    letter-spacing: 1px;
    color: #da1a1f;
    margin-bottom: 20px;
}

.career-form form {
    max-width: 500px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.career-form input,
.career-form select,
.career-form textarea {
    padding: 12px;
    border-radius: 6px;
    border: 1px solid #ccc;
}
.career-form button{
    color: #da1a1f;
    font-size: 1rem;
    letter-spacing: 1px;
    font-weight: 500;
    background: transparent;
    border: 2px solid #da1a1f;
    padding: 15px;
    border-radius: 30px;
}
.career-form button:hover{
    background: #da1a1f;
    color: #fff;
    font-weight: 800;
    letter-spacing: 2px;
    transition: 0.3s;
}
/* PARALLAX HERO */
.careers-hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;

    background: url('../images/careerbanner.webp') no-repeat center center fixed;
    background-size: cover;
}

/* Parallax effect */
.parallax {
    background-attachment: fixed;
}

/* Dark overlay for readability */
.careers-hero .hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.careers-hero .container {
    position: relative;
    z-index: 2;
}

/* Text Styling */
.careers-hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.careers-hero p {
    font-size: 18px;
    max-width: 650px;
    margin: auto;
    margin-bottom: 30px;
}
.careers-why h2{
    font-size: 2rem;
}
/* Modal Overlay */
.career-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

/* Modal Box */
.modal-content {
    background: #fff;
    padding: 30px;
    max-width: 450px;
    width: 90%;
    border-radius: 12px;
    text-align: center;
    position: relative;
    animation: scaleIn 0.3s ease;
}

/* Close Button */
.modal-close {
    position: absolute;
    top: 12px;
    right: 15px;
    font-size: 22px;
    cursor: pointer;
}

/* Animation */
@keyframes scaleIn {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}
.career-modal h3{
    font-size: 1.7rem;
    color: #da1a1f;
    margin-bottom: 5%;
}
.career-modal p{
    font-size: 15px;
    margin-bottom: 5%;
    letter-spacing: 1px;
}
.cta-btn{
    text-decoration: none;
    color: #fff;
    font-size: 15px;
    background: red;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: 700;
}
.cta-btn:hover{
    background: #fff;
    border: 2px solid #da1a1f;
    color: #da1a1f;
    letter-spacing: 2px;
    font-weight: 900;
    transition: 0.3s;
}
/*---------------------------------------------CAREERS PAGE CSS-------------------------------------------*/

/* ==============================
   BLOG PAGE – DESKTOP (100%)
   ============================== */

.blog-hero {
    background: url('../images/About-Roof.webp') no-repeat center center fixed;
    color: #fff;
    padding: 100px;
    text-align: center;
    height: 60vh;
}

.blog-hero h2 {
    font-size: 42px;
    margin-bottom: 10px;
}

.blog-hero p {
    font-size: 18px;
    opacity: 0.9;
}

/* Blog Section */
.blog-section {
    padding: 100px;
}
.blog-section h2{
    font-size: 35px;
    text-align: center;
    margin-bottom: 5px;
}
.blog-section p {
    text-align: center;
    margin-bottom: 8%;
}

/* Full width blog list */
.blog-list.full-width {
    width: 100%;
}

/* Blog Card */
.blog-card {
    display: flex;
    background: #fff;
    margin-bottom: 50px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.15);
}

.blog-card img {
    width: 320px;
    object-fit: cover;
}

/* Blog Content */
.blog-content {
    padding: 80px 60px;
}
.blog-content h2{
    text-align: left;
}
.blog-content p{
    text-align: left;
}

.blog-category {
    font-size: 1.3rem;
    color: #da1a1f;
    font-weight: 600;
    text-transform: uppercase;
}

.blog-content h2 {
    font-size: 26px;
    margin: 12px 0;
    color: #1f2937;
}

.blog-content p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 18px;
}

.blog-content a {
    color: #da1a1f;
    font-weight: 600;
    text-decoration: none;
}
/* ==============================
   BLOG MODAL
   ============================== */

.blog-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.75);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.blog-modal.active {
    display: flex;
}

.blog-modal-content {
    background: #fff;
    width: 70%;
    max-height: 85vh;
    overflow-y: auto;
    border-radius: 18px;
    padding: 40px;
    position: relative;
    animation: scaleIn 0.3s ease;
}

@keyframes scaleIn {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.blog-modal-content img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 25px;
}

.blog-modal-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1f2937;
}

.blog-modal-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 15px;
}

/* Close Button */
.close-modal {
    position: absolute;
    top: 18px;
    right: 25px;
    font-size: 34px;
    cursor: pointer;
    color: #333;
}
/*-----------------------------------------------blog section css-------------------------------------------------*/

/* ==============================
   CONTACT HERO
   ============================== */
.contact-hero {
    background: url('../images/banners/contact-us-banner.webp') no-repeat center center fixed;
    background-size: cover;
    color: #fff;
    padding: 100px;
    text-align: center;
    height: 100vh;
    display: flex;
    align-items: center;        /* vertical center */
    justify-content: center;    /* horizontal center */
    text-align: center;
}

.contact-hero h2 {
    font-size: 50px;
    margin-bottom: 12px;
    letter-spacing: 1px;
    /*margin-top: 20px;*/
}

.contact-hero p {
    font-size: 18px;
    opacity: 0.9;
}

/* ==============================
   CONTACT SECTION
   ============================== */
.contact-section {
    padding: 80px 20px;
    background: #f9f9f9;
}

.contact-layout {
    display: flex;
    gap: 40px;
}

/* CONTACT FORM */
.contact-form {
    width: 65%;
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.08);
}

.contact-form h2 {
    margin-bottom: 25px;
    font-size: 28px;
    color: #1f2937;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 15px;
    margin-bottom: 15px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 15px;
    outline: none;
    transition: border-color 0.3s ease;
}

.contact-form textarea {
    min-height: 140px;
    resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #f97316;
}

.contact-form button {
    padding: 14px;
    width: 100%;
    background: #f97316;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

.contact-form button:hover {
    background: #ea580c;
    transform: translateY(-2px);
}

/* CONTACT INFO */
.contact-info {
    width: 35%;
    padding: 25px;
}

.contact-info h2 {
    font-size: 26px;
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 16px;
    margin-bottom: 12px;
    color: #555;
}

.contact-info h3 {
    margin-top: 25px;
    font-size: 20px;
    margin-bottom: 12px;
}

.social-icons a {
    display: inline-block;
    margin-right: 12px;
}

.social-icons img {
    width: 28px;
    height: 28px;
}



.reviews-section {
    padding: 100px 0;
    background: #fdfdfd;
}
.reviews-section h2{
    font-size: 35px;
    text-align: center;
}
.reviews-section p{
    text-align: center;
}

.review-slider {
    padding: 40px 10px !important;
}

.review-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    text-align: center;
    border: 1px solid #eee;
    height: 346px;
}

.stars {
    color: #f1c40f; /* Gold for stars */
    font-size: 30px;
    margin-bottom: 15px;
}

.review-card p {
    font-style: italic;
    color: #555;
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.6;
}

.client-info strong {
    display: block;
    color: #222;
    font-size: 18px;
}

.client-info span {
    color: #da1a1f; /* Your brand red */
    font-size: 14px;
    font-weight: 600;
}

/* Pagination Color */
.swiper-pagination-bullet-active {
    background: #da1a1f !important;
}