@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

:root {
    --dark-green: #004C24;
    --golden-brown: #BD9B3A;
    --soft-yellow: #EFE092;
    --cream: #FFF3DB;

    /* Root Reset */
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
h1, ul, li {
    margin: 0;
    padding: 0;
    list-style: none;
}
h1{
    font-size: 50px;
}
p{
    font-size: 24px;
}
html {
    scroll-behavior: smooth;
}
body{
    margin: 0;
    padding: 0;
    background-color: var(--cream);
}
/* Header Section Start*/
.header-section {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    background-color: var(--cream);
}
.header {
    width: 1366px; /* Set your desired boxed width here */
    margin: 0 auto; /*Centers the container; */
    padding: 0;
    box-sizing: border-box;
}
/* Top Bar */
.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--cream);
    /* padding: 15px 50px; */
}
.location, .email, .golden-box {
    display: flex;
    gap: 10px;
    align-items: center;
}
.location p, .email p {
    font-size: 16px;
    color: #333;
}
.location b, .email b {
    color: var(--dark-green);
}
.golden-box {
    background: linear-gradient(90deg, #BA9735, #EFE092, #BD9B3A);
    padding: 10px 20px;
    border-radius: 2px;
    text-align: end;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
}
.golden-box p {
    color: var(--dark-green);
    font-size: 16px;
} 
.top-bar i{
    font-size: 34px;
    color: var(--dark-green);
}
.vertical-line {
    border-left: 1px solid var(--dark-green);
    height: 50px;
}
.icon-flip{
    transform: scaleX(-1);
}
/* Navigation Bar */
.navbar {
    background-color: var(--dark-green);
}
.navbar ul {
    width: 1366px;
    list-style: none;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    padding: 15px 0px;
}
.navbar a {
    text-decoration: none;
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    transition: color 0.3s;
    padding-right: 65px;
}
.navbar .border-right{
    border-right: 1px solid white;
}
/* .navbar a:hover {
    color: #d8b76e;
} */
/* Quote Button */
.quote a{
    background: linear-gradient(90deg, #BA9735, #EFE092, #BD9B3A);
    padding: 15px 34.5px;
    color: var(--dark-green);
    border-radius: 2px;
}
.quote i{
    font-size: 20px;
    vertical-align: middle;
}
.hamburger{
    display: none;
    cursor: pointer;
}
.bar{
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: var(--dark-green);
}
/* Header Section End */
/* Main Section start */
#home{
    position: relative;
    z-index: 1;
}
#home::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("https://videmainexso.com/assets/images/homepage/background.jpg") no-repeat center center;
    background-size: cover;
    z-index: -1;
}
/* Hero Section Start */
.hero {
    margin-top: 140px;
    position: relative; /* Make this the positioning context */
    background: url("https://videmainexso.com/assets/images/homepage/hero-section-image.jpg") no-repeat center;
    background-size: cover;
}
.content {
    width: 1366px;
    margin: 0 auto;
    height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.hero::before {
    width: 50%;
    content: ""; /* Mandatory for pseudo-elements */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3); /* Black with 50% opacity */
    z-index: 1; /* Ensure the overlay sits above the background */
}
.hero-content {
    width: 50%;
    position: relative; /* Bring content above the overlay */
    z-index: 1;
    color: var(--cream); /* Ensure text is visible */
}
.btn{
    display: inline-block;
    background-color: var(--cream);
    margin-top: 30px;
    padding: 10px 25px;
    text-decoration: none;
    color: var(--dark-green);
    border-radius: 5px;
    font-size: 18px;
}
.hero-content p {
    margin-top: 30px;
}
.btn i {
    font-size: 20px;
    vertical-align: middle;
}
/* Hero Section End */
/* Card Section Start */
.card-container {
    display: flex;
    justify-content: center;
    gap: 60px;
    /* padding: 20px; */
    margin-top: -100px;
}
.card-box{
    position: relative;
    overflow: hidden;
    width: 600px;
    height: 350px;
    border-radius: 8px;
    color: var(--dark-green);
    box-shadow: 0px 4px 6px rgb(238, 223, 144, 0.6);
    z-index: 1;
}
.residential {
    background: url('https://videmainexso.com//assets/images/homepage/residential.webp') no-repeat center;
    background-size: cover;
}
.commercial {
    background: url('https://videmainexso.com//assets/images/homepage/commercial.webp') no-repeat Center;
    background-size: cover;
}                                   
.card-box img {
    width: 100%;
    display: block;
    border-radius: 8px;
    /* rotate: 30deg; */
}
.card-box h2 {
    position: absolute;
    bottom: 10px;
    left: 10px;
    color: var(--dark-green);
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 1.5rem;
}
/* Card Section End */
/* What We Do Section Start */
.what-we-do {
    text-align: center;
    margin: 50px 0;
    padding: 20px;
}
.what-we-do h3 {
    font-size: 40px;
    margin-bottom: 20px;
    color: var(--cream);
}
.stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    /* color: #f2cb7f; */
    /* text-fill-color: transparent; */
}
.statistics{
    display: flex;
}
.stat h4 {
    font-size: 1.8rem;
    margin: 0;
    padding-top: 40px;
    padding-bottom: 20px;
    color: var(--cream);
}
.stat p {
    font-size: 1.4rem;
    margin-top: 5px;
    color: var(--cream);
    font-weight: 500;
}
.brackets {
    font-size: 125px;
    font-family: Arial, Helvetica, sans-serif;
    background: linear-gradient(45deg, #BA9735, #EFE092, #BD9B3A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.card-box i {
    font-size: 120px;
    padding-bottom: 50px;
}
/* What We Do Section End */
/* About Section Start */
.about-section {
    height: 700px;
    position: relative;
    /* background: linear-gradient(90deg, #BA9735, #EFE092, #BD9B3A); */
    overflow: hidden;
}
.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #BA9735, #EFE092, #BD9B3A);
    clip-path: polygon(0 0, 100% 0, 100% 70%, 0 100%);
    z-index: -1; /* Pushes the background behind content */
}
.about-container {
    width: 1366px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
}
.image-box, .about-content {
    width: 50%;
}
.image-box h3{
    font-size: 34px;
    padding: 50px 0px;
}
.image-box h3, .about-content p, .about-icons p{
    color: var(--dark-green);
    margin: 0;
}
#about-img-1 img, #about-img-2 img {
    border-radius: 5px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.5);
}
#about-img-1 img {
    width: 600px;
}
#about-img-2 img {
    width: 280px;
    margin-left: 400px;
    margin-top: -220px;
}
.about-content p {
    font-size: 24px;
    font-weight: 600;
    padding: 50px 0px;
}
.about-icons i {
    font-size: 50px;
    color: var(--dark-green);
}
.about-icons p {
    padding: 20px 0;
}
.about-details {
    display: grid;
    grid-template-columns: auto auto;
    gap: 50px;
}
#responsive-about-section {
    visibility: hidden;
    height: 0;
}
/* About Section End */
/* Latest Projects Section Start */
.project-heading, .projects-container, .project-btn {
    width: 1366px;
    margin: 0 auto;
}
.project-heading {
    display: flex;
    justify-content: flex-end;
}
.project-heading h3 {
    font-size: 38px;
    color: var(--cream);
}
.projects-container{
    display: flex;
    border-radius: 5px;
}
.project-image {
    width: 450px;
    height: 350px;
    position: relative; /* Allows overlay layering */
    overflow: hidden; /* Ensures the zoomed background stays within the container */
}
/* Apply background image via ID */
#project-image-1,
#project-image-2,
#project-image-3,
#project-image-4 {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease; /* Smooth zoom transition */
}
#project-image-1::before,
#project-image-2::before,
#project-image-3::before,
#project-image-4::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(44, 44, 44, 0.4); /* Semi-transparent overlay */
    z-index: 0; /* Places the overlay below the text */
}
#project-image-1::before{
    border-radius: 5px 0px 0px 5px ;
}
#project-image-4::before{
    border-radius: 0px 5px 5px 0px ;
}
#project-image-1 {
    background: url('https://videmainexso.com/assets/images/homepage/latest-project-1.jpg') no-repeat left;
    background-size: cover;
    border-radius: 5px 0px 0px 5px ;
}
#project-image-2 {
    background: url('https://videmainexso.com/assets/images/homepage/latest-project-2.jpg') no-repeat right;
    background-size: cover;
}
#project-image-3 {
    background: url('https://videmainexso.com/assets/images/homepage/latest-project-3.jpg') no-repeat center;
    background-size: cover;
}
#project-image-4 {
    background: url('https://videmainexso.com/assets/images/homepage/latest-project-4.jpg') no-repeat left;
    border-radius: 0px 5px 5px 0px;
    background-size: cover;
}
.project-detail {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.project-image p {
    font-size: 24px;
    color: var(--cream);
    padding-left: 25px;
    opacity: 1; /* Explicitly set the opacity to avoid inheritance */
    z-index: 1; /* Ensure the text remains on top of the background */
    position: relative;
    transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease; /* Smooth transition */
    opacity: 1; /* Fully visible initially */
    transform: translateY(0); /* Default position */
    visibility: visible; /* Ensure it is displayed */
}
.project-btn {
    padding: 40px 0px;
}
/* Zoom effect on hover using transform scale */
#project-image-1:hover,
#project-image-2:hover,
#project-image-3:hover,
#project-image-4:hover {
    transform: scale(1.1); /* Zoom in effect */
}
#project-image-1:hover::before,
#project-image-2:hover::before,
#project-image-3:hover::before,
#project-image-4:hover::before {
    background-color: transparent;
}
.project-image:hover p {
    opacity: 0; /* Fades out */
    transform: translateY(20px); /* Moves downward */
    visibility: hidden; /* Hides after the animation completes */
}
/* Latest Projects Section End */
/* Services Section Start */
.services-section{
    background: linear-gradient(90deg, #BA9735, #EFE092, #BD9B3A);
    padding: 50px 0px;
}
.services-container{
    width: 1366px;
    margin: 0 auto;
}
.services-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--dark-green);
}
.services-content h3 {
    margin: 0;
    font-size: 40px;
}
.services-content p {
    margin: 0;
    padding: 20px;
    font-size: 24px;
}
.services {
    padding: 40px 0px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    row-gap: 50px;
}
.service-container {
    width: 300px;
    height: 300px;
    position: relative; /* Allows overlay layering */
    border-radius: 7px;
    overflow: hidden; /* Ensures the zoomed background stays within the container */
}
.service-details{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.service-detail {
    color: var(--cream);
    opacity: 1; /* Explicitly set the opacity to avoid inheritance */
    z-index: 1; /* Ensure the text remains on top of the background */
    position: relative;
    transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease; /* Smooth transition */
    opacity: 1; /* Fully visible initially */
    transform: translateY(0); /* Default position */
    visibility: visible; /* Ensure it is displayed */
}
.service-detail i {
    font-size: 45px;
}
.service-detail p {
    font-size: 24px;
    letter-spacing: 0.15em;
}
#service-image-1,
#service-image-2,
#service-image-3,
#service-image-4,
#service-image-5,
#service-image-6,
#service-image-7,
#service-image-8,
#service-image-9,
#service-image-10,
#service-image-11,
#service-image-12,
#service-image-13,
#service-image-14,
#service-image-15,
#service-image-16 {
    width: 100%;
    height: 100%;
    border-radius: 7px;
    position: relative;
    transition: transform 0.3s ease; /* Smooth zoom transition */
}
#service-image-1 {
    background: url('https://videmainexso.com/assets/images/services-page/Civil Work.webp') no-repeat center;
    background-size: cover;
}
#service-image-2 {
    background: url('https://videmainexso.com/assets/images/homepage/carpenter-service.jpg') no-repeat center;
    background-size: cover;
}
#service-image-3 {
    background: url('https://videmainexso.com/assets/images/homepage/ceiling-service.jpg') no-repeat center;
    background-size: cover;
}
#service-image-4 {
    background: url('https://videmainexso.com/assets/images/homepage/electrical-service.jpg') no-repeat center;
    background-size: cover;
}
#service-image-5 {
    background: url('https://videmainexso.com/assets/images/homepage/plumbing-service.jpg') no-repeat center;
    background-size: cover;
}
#service-image-6 {
    background: url('https://videmainexso.com/assets/images/homepage/glass-doors-service.jpg') no-repeat center;
    background-size: cover;
}
#service-image-7 {
    background: url('https://videmainexso.com/assets/images/homepage/wooden-flooring-service.jpg') no-repeat center;
    background-size: cover;
}
#service-image-8 {
    background: url('https://videmainexso.com/assets/images/homepage/window-service.jpg') no-repeat center;
    background-size: cover;
}
#service-image-9 {
    background: url('https://videmainexso.com/assets/images/services-page/Fabrication.webp') no-repeat center;
    background-size: cover;
}
#service-image-10 {
    background: url('https://videmainexso.com/assets/images/services-page/painting.jpg') no-repeat center;
    background-size: cover;
}
#service-image-11 {
    background: url('https://videmainexso.com/assets/images/services-page/2D Plan.webp') no-repeat center;
    background-size: cover;
}
#service-image-12 {
    background: url('https://videmainexso.com/assets/images/services-page/3D Plan.webp') no-repeat center;
    background-size: cover;
}
#service-image-13 {
    background: url('https://videmainexso.com/assets/images/services-page/AC Work.webp') no-repeat center left;
    background-size: cover;
}
#service-image-14 {
    background: url('https://videmainexso.com/assets/images/services-page/Modular.webp') no-repeat center;
    background-size: cover;
}
#service-image-15 {
    background: url('https://videmainexso.com/assets/images/services-page/CC TV.webp') no-repeat center;
    background-size: cover;
}
#service-image-16 {
    background: url('https://videmainexso.com/assets/images/services-page/ACP-sheets.webp') no-repeat center;
    background-size: cover;
}
#service-image-1::before,
#service-image-2::before,
#service-image-3::before,
#service-image-4::before,
#service-image-5::before,
#service-image-6::before,
#service-image-7::before,
#service-image-8::before,
#service-image-9::before,
#service-image-10::before,
#service-image-11::before,
#service-image-12::before,
#service-image-13::before,
#service-image-14::before,
#service-image-15::before,
#service-image-16::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(36, 36, 36, 0.5); /* Semi-transparent 
    overlay */
    border-radius: 7px;
    z-index: 0; /* Places the overlay below the text */
}
#service-image-1:hover,
#service-image-2:hover,
#service-image-3:hover,
#service-image-4:hover,
#service-image-5:hover,
#service-image-6:hover,
#service-image-7:hover,
#service-image-8:hover,
#service-image-9:hover,
#service-image-10:hover,
#service-image-11:hover,
#service-image-12:hover,
#service-image-13:hover,
#service-image-14:hover,
#service-image-15:hover,
#service-image-16:hover {
    transform: scale(1.1); /* Zoom in effect */
}
#service-image-1:hover::before,
#service-image-2:hover::before,
#service-image-3:hover::before,
#service-image-4:hover::before,
#service-image-5:hover::before,
#service-image-6:hover::before,
#service-image-7:hover::before,
#service-image-8:hover::before,
#service-image-9:hover::before,
#service-image-10:hover::before,
#service-image-11:hover::before,
#service-image-12:hover::before,
#service-image-13:hover::before,
#service-image-14:hover::before,
#service-image-15:hover::before,
#service-image-16:hover::before {
    background-color: transparent;
}
.service-details:hover .service-detail {
    opacity: 0; /* Fades out */
    transform: translateY(20px); /* Moves downward */
    visibility: hidden; /* Hides after the animation completes */
}
.service-btn {
    display: flex;
    justify-content: flex-end;
    padding: 20px 0px;
}
.transparent-btn {
    margin: 0;
    border: 2px solid var(--dark-green);
    padding: 10px 15px;
    text-decoration: none;
    font-size: 20px;
    color: var(--dark-green);
    border-radius: 5px;
}
/* Services Section End */
/* Testonomials Section Start */
.testonomials-section{    
    padding: 50px 0px;
}
.testonomials-container{
    width: 1366px;
    margin: 0 auto;
}
.testonomials-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--cream);
}
.testonomials-content h3 {
    margin: 0;
    font-size: 40px;
}
.testonomials-content p {
    margin: 0;
    padding: 20px;
    font-size: 24px;
}
.card {
    margin: 10px 0px;
    height: 200px;
    background-color: white;
    border-radius: 5px;
    display: flex;
    flex-direction: row;
    border-radius: 7px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.5);
}
.card-image {
    width: 40%;
}
.card-image img {
    width: 100%;
    height: 100%;
    border-radius: 7px 0px 0px 7px;
    object-fit: cover;
}
.card-content {
    width: 60%;
    padding: 20px;
}
.client-name {
    font-size: 20px;
    margin: 0;
}
.client-name, .client-review p {
    color: var(--dark-green);
}
.client-star i {
    color: #F6BB06;
}
.client-review p {
    font-size: 18px;
    margin: 0;
}
.slide-container {
    padding: 25px 0px;
}
.slide-content {
    margin: 0 40px;
    overflow: hidden;
    border-radius: 7px;
}
.swipe-nav-btn {
    border: 2px solid var(--cream);
    border-radius: 7px;
    background-color: var(--cream);
    padding: 2px;
    transition: background-color 0.3s ease;
}
.swipe-nav-btn:hover{
    background-color: transparent;
}
.swipe-nav-btn::after,  
.swipe-nav-btn::before {
    font-size: 15px;
    font-weight: 600;
    color: var(--dark-green);
}
.swipe-nav-btn:hover::after,  
.swipe-nav-btn:hover::before {
    color: var(--cream);
}
.swiper-button-next {
    right: 0;
}
.swiper-button-prev {
    left: 0;
}
.swiper-pagination-bullet {
    background-color: var(--golden-brown);
    opacity: 1;
}
.swiper-pagination-bullet-active {
    background-color: var(--soft-yellow);
}
/* Testonomials Section End */
/* Why Choose Us Section Start */
.why-choose-us-container{
    width: 1366px;
    margin: 0 auto;
}
.why-choose-us-content {
    text-align: center;
    color: var(--cream);
}
.why-choose-us-content h3 {
    margin: 0;
    font-size: 40px;
}
.why-choose-us {
    display: flex;
    flex-direction: row;
    padding: 50px 0px;
}
.why-choose-us-card {
    margin: 10px;
    width: 300px;
    height: 300px;
    background-color: var(--cream);
    border-radius: 0 0 20px 0px;
    padding: 0 30px 0 30px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
}
.why-choose-us-icon {
    width: 100px;
    height: 80px;
    background: linear-gradient(145deg, #BA9735, #EFE092, #BD9B3A);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0 0 20px 0;
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.2);
}
.why-choose-us-icon i {
    font-size: 50px;
    color: var(--dark-green);
}
.why-choose-us-title, .why-choose-us-desc {
    color: var(--dark-green);
    padding-top: 30px;
}
.why-choose-us-title {
    font-size: 26px;
    font-weight: 600;
}
.why-choose-us-desc {
    font-size: 20px;
}
/* Why Choose Us Section End */
/*----------- About Page CSS Start ------------*/
/* About Page Section Start */
.about-page-section {
    margin-top: 140px;
    background-color: var(--cream);
}
.about-page-container {
    width: 1366px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    color: var(--dark-green);
    padding-top: 50px;
    margin-bottom: -160px;
}
.about-page-heading h3 {
    margin-top: 0;
    font-size: 40px;
}
.about-page-context {
    display: flex;
    gap: 5px;
}
.about-page-line {
    width: 150px;
    margin-top: 10px;
    border-top: 2px;
    border-left: 0;
    border-right: 0;
    border-bottom: 0;
    border-style: solid;
}
.about-page-desc {
    font-size: 24px;
}
.about-page-box {
    width: 175px;
    background: linear-gradient(90deg, #BA9735, #EFE092, #BD9B3A);
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.5);
}
.about-page-content-heading {
    font-size: 20px;
}
.about-page-contact-details p, .about-page-content-desc {
    font-size: 17px;
}
.about-page-image {
    height: 600px;
    background: url('https://videmainexso.com/assets/images/about-page/about-image.jpg') no-repeat bottom;
    background-size: cover;
}
.about-page-box-content hr {
    margin-top: 30px;
}
/* About Page Section End */
/* About Company Section Start */
.about-company-section {
    background-color: var(--cream);
}
.about-company-container {
    width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    color: var(--dark-green);
    padding: 50px 0 120px 0px;
}
.about-company-content {
    width: 60%;
}
.about-company-heading {
    font-size: 40px;
    font-weight: 600;
}
.about-company-desc {
    width: 90%;
    margin-top: 0;
    padding-top: 30px;
    font-size: 24px;
}
.about-company-feedbox {
    position: relative;
    margin: 50px -150px -65px 10px ;
    padding: 30px;
    background: linear-gradient(90deg, #BA9735, #EFE092, #BD9B3A);
    border-radius: 15px;
    display: flex;
    justify-content: space-between;
    z-index: 0;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.5);
}
.about-company-box-content {
    text-align: center;
}
.about-company-box-content h4 {
    font-size: 34px;
    margin-bottom: 0;
}
.about-company-box-content p {
    font-size: 24px;
}
.about-company-image {
    width: 35%;
    background: url('https://videmainexso.com/assets/images/about-page/about-company-image.jpg') no-repeat;
    background-size: cover;
}
/* About Company Section End */
/* Company Information Start */
.about-company-info-section {
    margin-bottom: -20px;
    position: relative;
    padding: 50px 0px;
    background: url("https://videmainexso.com/assets/images/about-page/about-company-image.jpg") no-repeat center center;
    background-size: cover;
}
.about-company-info-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(44, 44, 44, 0.7); /* Semi-transparent overlay */
    z-index: 0;
}
.about-company-info-container {
    width: 1366px;
    margin: 0 auto;
}
.about-company-info-content{
    text-align: center;
    color: var(--cream);
}
.about-company-info-content p {
    position: relative;
}
/* Company Information End */
/* Company Team Member Section Start */
.about-team-section {
    background-color: var(--cream);
}
.about-team-container {
    width: 1366px;
    margin: 0 auto;
    color: var(--dark-green);
    text-align: center;
    padding: 50px 0px 0px 0px;
}
.about-team-container h3 {
    font-size: 40px;
    margin: 0;
    padding-bottom: 50px;
}
.about-team-content {
    display: flex;
    justify-content: space-between;
}
.about-team-member-img {
    width: 400px;
    height: 500px;
    border-radius: 15px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.5);
}
.about-team-member-name {
    font-size: 34px;
    margin: 0;
    padding-top: 20px;
}
/* Company Team Member Section End */
/* About Testonomials Section Start */
.about {
    background-color: var(--cream);
}
.about-testonomials-content {
    margin: 0;
    color: var(--dark-green);
    text-align: center;
}
.about-testonomials-content h3 {
    margin: 0;
    font-size: 40px;
    padding-bottom: 20px;
}
.about-testonomials-content p {
    margin: 0;
    font-size: 24px;
    padding-bottom: 20px;
}
.about-swipe-nav-btn {
    border: 2px solid var(--dark-green);
    border-radius: 7px;
    background-color: var(--dark-green);
    padding: 2px;
    transition: background-color 0.3s ease;
}
.about-swipe-nav-btn:hover{
    background-color: transparent;
}
.about-swipe-nav-btn::after,  
.about-swipe-nav-btn::before {
    font-size: 15px;
    font-weight: 600;
    color: var(--cream);
}
.about-swipe-nav-btn:hover::after,  
.about-swipe-nav-btn:hover::before {
    color: var(--dark-green);
}
.about-swipe-pagination .swiper-pagination-bullet{
    background-color: var(--dark-green);
    opacity: 1;
}
/* About Testonomials Section End */
/* About Contact Section Start */
.contact-section {
    position: relative;
    padding: 70px 0;
    background-color: rgba(44, 44, 44, 0.4);
}
.contact-section::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("https://videmainexso.com/assets/images/about-page/about-contact-background.png") no-repeat center center;
    background-size: cover;
    z-index: -1;
}
.contact-container {
    position: relative;
    width: 700px;
    margin: 0 auto;
    padding: 30px;
}
.contact-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(44, 44, 44, 0.6); /* Semi-transparent overlay */
    z-index: 0;
}
.contact-content {
    position: relative;
    text-align: center;
}
.contact-content h3, .contact-content p {
    color: #fff;
    margin: 0;
}
.contact-content h3 {
    font-size: 40px;
    padding-bottom: 20px;
}
.contact-btn {
    background-color: #fff;
}
/* About Contact Section End */
/* ------------ About Page CSS End ------------- */
/* ------------ Services Page CSS Start ------------- */
/* Services Title Section Start */
/* Services Service Section Start */
.services-page-section {
    margin-top: 140px;
    position: relative;
    background: url('https://videmainexso.com/assets/images/about-page/about-contact-background.png') no-repeat center;
    background-size: cover;
    padding-top: 50px;
}
.services-page-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(44, 44, 44, 0.4); /* Semi-transparent overlay */
    z-index: 0;
}
.services-page-container, .services-page-box {
    width: 1366px;
    margin: 0 auto;
}
.services-page-container {
    display: flex;
    justify-content: center;
    align-items: center;
}
.services-page-column {
    width: 30%;
}
.services-page-column-content {
    position: relative;
    width: 550px;
    padding: 50px;
    z-index: 1;
}
.services-page-column-content h3, .services-page-column-content a {
    position: relative;
}
.services-page-column-content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(44, 44, 44, 0.6); /* Semi-transparent overlay */
    z-index: 0;
}
.services-page-column-img {
    position: relative;
    width: 70%;
    height: 400px;
    background: url('https://videmainexso.com/assets/images/about-page/about-contact-background.png') no-repeat center;
    background-size: cover;
    z-index: 0;
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.5);
}
.services-page-column-content h3{
    margin: 0;
    font-size: 40px;
    color: var(--cream);
}
.services-page-box {
    margin-top: -100px;
    display: flex;
    justify-content: end;
}
.services-page-box-content {
    position: relative;
    width: 200px;
    color: var(--dark-green);
    text-align: center;
    background: linear-gradient(90deg, #BA9735, #EFE092, #BD9B3A);
    border-radius: 8px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.5);
}
.services-page-box-content h4 {
    margin: 0;
    font-size: 28px;
    padding: 40px 0 0 0;
}
.services-page-box-content p {
    margin: 0;
    font-size: 22px;
    padding: 10px 0 40px 0;
}
.services-page-column-box {
    padding-top: 50px;
    position: relative;
    display: flex;
}
.services-page-column-box-1 {
    width: 50%;
    height: 50px;
    background-color: var(--cream);
    border-radius: 0 50px 0 0;
}
.services-page-column-box-2 {
    width: 50%;
    height: 50px;
    background-color: var(--cream);
    border-radius: 50px 0 0 0;
}
/* Services Title Section End */
#services-page-section {
    padding: 0;
    background: var(--cream);
}
/* Services Service Section End */
/* ------------ Services Page CSS End ------------- */
/* ------------ Projects Page CSS Start ------------- */
/* Project Page Section Start */
.project-page-section {
    margin-top: 140px;
    position: relative;
    padding: 100px 0;
    background: url('https://videmainexso.com/assets/images/projects-page/projects-background.jpg') no-repeat center;
    background-size: cover;
}
.project-page-container {
    position: relative;
    width: 700px;
    margin: 0 auto;
    padding: 30px;
}
.project-page-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(20, 20, 20, 0.6); /* Semi-transparent overlay */
    z-index: 0;
}
.project-page-content {
    position: relative;
    text-align: center;
}
.project-page-content h3, .project-page-content p {
    color: var(--cream);
    margin: 0;
}
.project-page-content h3 {
    font-size: 40px;
    padding-bottom: 20px ;
}
.project-page-btn {
    background-color: var(--cream);
}
/* Project Page Section End */
/* Project Page project Section Start */
.projects-page-section {
    padding: 50px 0;
    background-color: var(--cream);
}
.projects-page-container {
    width: 1366px;
    margin: 0 auto;
}
.projects-page-heading, .projects-page-desc {
    color: var(--dark-green);
    text-align: center;
}
.projects-page-heading {
    margin: 0;
    font-size: 40px;
}
.projects-page-desc {
    width: 500px;
    padding-top: 30px;
    margin: 0 auto;
    font-size: 24px;
}
.projects-page-column {
    padding-top: 40px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 30px;
}
.projects-page-content {
    width: 350px;
    height: 400px;
    position: relative; /* Allows overlay layering */
    border-radius: 15px;
    overflow: hidden; /* Ensures the zoomed background stays within the container */
    color: var(--cream);
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.5);
}
#projects-image-1,
#projects-image-2,
#projects-image-3,
#projects-image-4 {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    position: relative;
    transition: transform 0.3s ease; /* Smooth zoom transition */
}
#projects-image-1 {
    background: url('https://videmainexso.com/assets/images/homepage/latest-project-1.jpg') no-repeat center;
    background-size: cover;
}
#projects-image-2 {
    background: url('https://videmainexso.com/assets/images/homepage/latest-project-2.jpg') no-repeat right;
    background-size: cover;
}
#projects-image-3 {
    background: url('https://videmainexso.com/assets/images/homepage/latest-project-3.jpg') no-repeat center;
    background-size: cover;
}
#projects-image-4 {
    background: url('https://videmainexso.com/assets/images/homepage/latest-project-4.jpg') no-repeat left;
    background-size: cover;
}
#projects-image-1:hover,
#projects-image-2:hover, 
#projects-image-3:hover, 
#projects-image-4:hover {
    transform: scale(1.1); /* Zoom in effect */
}
#projects-image-1:hover::before,
#projects-image-2:hover::before,
#projects-image-3:hover::before,
#projects-image-4:hover::before {
    background-color: transparent;
}
#projects-image-1::before,
#projects-image-2::before,
#projects-image-3::before,
#projects-image-4::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(36, 36, 36, 0.5); /* Semi-transparent 
    overlay */
    border-radius: 15px;
    z-index: 0; /* Places the overlay below the text */
}
.projects-page-top-text p, .projects-page-end-text p {
    margin: 0;
    padding-left: 15px;
}
.projects-page-top-text p {
    padding-top: 15px;
}
.projects-page-end-text p {
    padding-bottom: 15px;
}
.projects-page-top-text {
    height: 50%;
    display: flex;
    flex-direction: column;
    justify-content: start;
}
.projects-page-end-text {
    height: 50%;
    display: flex;
    flex-direction: column;
    justify-content: end;
}
.projects-page-content p {
    transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease; /* Smooth transition */
    opacity: 1; /* Fully visible initially */
    transform: translateY(0); /* Default position */
    visibility: visible; /* Ensure it is displayed */
}
.projects-page-content:hover p {
    opacity: 0; /* Fades out */
    transform: translateY(20px); /* Moves downward */
    visibility: hidden; /* Hides after the animation completes */
}
/* Project Page project Section End */
/* Project Customer Satisfaction Start */
.project-customer-section {
    padding-bottom: 50px;
    background-color: var(--cream);
}
.project-customer-container {
    width: 1366px;
    margin: 0 auto;
    color: var(--dark-green);
}
.project-customer-container h3 {
    margin: 0;
    font-size: 40px;
    padding-bottom: 40px;
}
.project-customer-content {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}
.projects-customer-why-to-choose {
    text-align: center;
}
.projects-customer-icon {
    width: 45px;
    padding: 10px;
    border-radius: 100px;
    margin: 0 auto;
    background: linear-gradient(45deg, #BA9735, #EFE092, #BD9B3A);
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.5);
    margin-bottom: 20px;
}
.projects-customer-icon i {
    font-size: 40px;
}
.projects-customer-icon-heading {
    font-size: 34px;
    font-weight: 600;
    padding-bottom: 20px;
}
.projects-customer-icon-desc {
    font-size: 20px;
}
/* Project Customer Satisfaction End */
/* ------------ Projects Page CSS End ------------- */
/* ------------ Contact Page CSS Start ------------- */
/* Contact Page First Section Start */
.contact-page-section {
    margin-top: 140px;
    position: relative;
    padding: 70px 0 0 0;
    background: url('https://videmainexso.com/assets/images/homepage/residential.webp') no-repeat center;
    background-size: cover;
    height: 650px;
}
.contact-page-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(44, 44, 44, 0.7); /* Semi-transparent overlay */
    z-index: 0;
}
.contact-page-container {
    width: 1366px;
    margin: 0 auto;
    display: flex;
}
#contact-page-column-1 {
    padding-top: 70px;
    width: 68%;
}
.contact-page-main-heading, .contact-page-main-desc {
    width: 80%;
    color: var(--cream);
    position: relative;
}
.contact-page-main-heading {
    font-size: 40px;
    padding-bottom: 30px;
}
.contact-page-main-desc {
    font-size: 24px;
}
#contact-page-column-2 {
    position: relative;
    width: 30%;
    height: 600px;
    background: url('https://videmainexso.com/assets/images/contact-page/contact-background.jpg') no-repeat center;
    background-size: cover;
    border-radius: 200px 200px 0 0;
    z-index: 1;
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.5);
}
/* Contact Page First Section End */
/* Contact Details Section Start */
.contact-details-section {
    position: relative;
    padding: 25px;
    height: 330px;
    background-color: var(--cream);
    margin-top: -350px;
}
.contact-details-container {
    width: 1366px;
    margin: 0 auto;
    color: var(--dark-green);
}
.contact-details-content {
    width: 68%;
}
.contact-page-heading, .contact-page-desc {
    width: 80%;
}
.contact-page-heading {
    font-size: 40px;
    padding-bottom: 20px;
}
.contact-page-desc {
    font-size: 24px;
}
.contact-page-icon-details {
    padding-top: 30px;
    width: 80%;
    display: flex;
    justify-content: space-between;
    text-align: center;
}
.contact-page-icon {
    width: 45px;
    padding: 10px;
    border-radius: 100px;
    margin: 0 auto;
    background: linear-gradient(45deg, #BA9735, #EFE092, #BD9B3A);
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.5);
    margin-bottom: 20px;
}
.contact-page-icon i {
    font-size: 40px;
}
.contact-page-icon-heading {
    font-size: 20px;
    font-weight: 600;
    padding-bottom: 20px;
}
/* Contact Details Section End */
/* Contact Form Section Start */
.contact-form-section {
    position: relative;
    padding: 50px 0px;
}
.contact-form-section::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://videmainexso.com/assets/images/contact-page/contact-form-background.jpg') no-repeat center;
    background-size: cover;
    z-index: -1;
}
.contact-form-container {
    width: 1366px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}
#contact-form-column-1 {
    position: relative;
    width: 50%;
    height: 50%;
    padding: 25px 20px;
}
#contact-form-column-1::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px 0px 0px 10px;
    background-color: rgba(20, 20, 20, 0.6); /* Semi-transparent overlay */
    z-index: 0;
}
.contact-form-content {
    position: relative;
    color: var(--cream);
}
.contact-form-content h3 {
    margin: 0;
    font-size: 40px;
}
.contact-form-icon-details {
    position: relative;
    padding-top: 30px;
    display: flex;
    text-align: center;
    gap: 30px;
}
.contact-page-icon a {
    text-decoration: none;
    color: var(--dark-green);
}
.contact-form-icon-details .contact-page-icon {
    width: 30px;
    margin-bottom: 0;
}
.contact-form-icon-details .contact-page-icon i {
    font-size: 25px;
}
#contact-form-column-2 {
    background-color: var(--dark-green);
    width: 50%;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    margin: 0;
}
.form-container {
    padding: 25px 0 40px 0;
    border-radius: 10px;
    width: 550px;
}
.form-container h3 {
    font-size: 40px;
    text-align: center;
    margin: 0 0 30px 0;
    color: var(--cream);
}
.form-container form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.form-row {
    display: flex;
    gap: 38px;
}
.input-field {
    width: 44.5%;
}
.form-container input, textarea {
    width: 100%;
    padding: 10px;
    border: 2px solid var(--cream);
    border-radius: 5px;
    background-color: var(--dark-green);
    color: var(--cream);
    font-size: 18px;
}
.form-container textarea {
    width: 95.5%;
}
.form-container input::placeholder, 
.form-container textarea::placeholder {
    color: var(--cream);
    font-size: 18px;
}
#submit-btn {
    width: 160px;
    padding: 10px 25px;
    background-color: var(--cream);
    color: var(--dark-green);
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
    border: 2px solid var(--cream);
    text-align: center;
}  
#submit-btn:hover {
    background-color: var(--dark-green);
    color: var(--cream);
}
#submit-btn:active {
    background-color: var(--golden-brown);
}
/* Select2 Customization */
.form-container .select2-container--default .select2-selection--multiple {
    background-color: var(--dark-green);
    border: 2px solid var(--cream);
    border-radius: 5px;
    color: var(--cream);
    padding: 10px;
}
#submit-btn i {
    font-size: 20px;
    vertical-align: middle;
}
.form-container .select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: var(--cream);
    color: var(--dark-green);
    border: 1px solid var(--cream);
    font-size: 18px;
}
.select2-container--default .select2-selection--multiple .select2-selection__clear {
    color: var(--cream);
    font-size: 18px;
}
.select2-results {
    background-color: var(--cream);
}
.select2-results li {
    color: var(--dark-green);
    font-size: 18px;
}
.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: var(--golden-brown);
}
/* Contact Form Section End */
/* -----------  Contact Page CSS End ------------- */
/* Footer Section Start */
.footer-section {
    position: relative;
    padding: 30px 0 10px 0;
    background-color: var(--dark-green);
    z-index: 1;
}
.footer-container {
    width: 1366px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
}
.footer-column {
    width: 25%;
    color: var(--cream);
}
.footer-icon-details {
    display: flex;
    gap: 10px;
}
.footer-icon, .footer-icon-detail, .footer-follow-icons {
    padding: 25px 0 8px 0;
}
.footer-icon i, .footer-follow-icons i {
    font-size: 24px;
}
.footer-icon-title {
    font-size: 20px;
    font-weight: 600;
}
.footer-icon-desc {
    font-size: 17px;
}
.footer-heading {
    font-size: 25px;
    font-weight: 600;
}
.footer-useful-links, .footer-quick-links {
    padding: 25px 0;
}
.footer-useful-links li, .footer-quick-links li {
    padding-bottom: 15px;
    font-size: 17px;
}
.footer-follow-icons a,
.footer-useful-links li a,
.footer-quick-links li a  {
    text-decoration: none;
    color: var(--cream);
    transition: color 0.3s ease; /* Smooth transition */
}
.footer-follow-icons a:hover,
.footer-useful-links li a:hover,
.footer-quick-links li a:hover {
    color: var(--soft-yellow)
}
.footer-section hr {
    margin-top: 30px;
    height: 1px;
    background-color: var(--cream);
    border: none;
}
.footer-copyright{
    width: 1366px;
    margin: 0 auto;
    text-align: center;
    color: var(--cream);
    font-size: 17px;
}
/* Footer Section End */
/* Privacy Policy Page */
/* Privacy Policy Page CSS Start*/
.container {
    max-width: 900px;
    margin: 180px auto 50px auto;
    background: var(--cream);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.container h1, .container h2 {
    color: var(--dark-green);
}
.container p {
    line-height: 1.6;
    color: #3a3a3a;
}
@media (max-width: 768px) {
    .container {
        margin: 130px 30px 50px 30px;
        padding: 15px;
    }
    .container h1, .container h2 {
        font-size: 28px;
    }
    .container p {
        font-size: 18px;
    }    
}
/* Privacy Policy Page CSS End*/
/* Whatsapp Button Widget CSS Start */
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 2;
}
.whatsapp-button img {
    width: 50px;
    height: 50px;
}
/* Whatsapp Button Widget CSS End */
/* Contact Form Validation CSS Start */
.error {
    color: var(--soft-yellow);
    font-size: 16px;
    font-weight: 300;
    display: none;
}
.success {
    color: var(--cream);
    font-size: 16px;
    display: none;
}
#loadingMessage {
    font-weight: bold;
    font-size: 16px;
}
/* Contact Form Validation CSS End */