* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}


/* Header and Navigation  start*/

.header-cont{
    width: 100%;
    background-color: white;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

 header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
        background-color: white;
    position: sticky;
    top: 0;
    z-index: 100;
    /* box-shadow: 0 2px 5px rgba(0,0,0,0.1); */
    max-width: 1280px;
    margin: 0 auto;
}

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

.logo h2 {
    color: #0d3c61;
    font-weight: 700;
}

.logo span {
    color: #777;
    font-size: 14px;
    margin-left: 5px;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    font-weight: 600;
    font-size: 14px;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #0d3c61;
} 


/* Media query for smaller screens */
@media screen and (max-width: 768px) {
    header {
        padding: 20px 5%;
    }

    .logo img {
        width: 150px; /* Adjust logo size for smaller screens */
    }

    nav ul {
        display: none;
        flex-direction: column;
        background-color: white;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        text-align: center;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        z-index: 99;
    }

    nav ul.active {
        display: flex;
    }

    nav ul li {
        margin-left: 0;
        margin-bottom: 15px;
    }

  
}


/* Hamburger Menu Styles */
.hamburger-menu {
    display: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
}

.hamburger-menu .bar1,
.hamburger-menu .bar2,
.hamburger-menu .bar3 {
    width: 100%;
    height: 3px;
    background-color: #0d3c61;
    transition: 0.4s;
    border-radius: 3px;
}

/* Animation for hamburger to X */
.hamburger-menu.active .bar1 {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger-menu.active .bar2 {
    opacity: 0;
}

.hamburger-menu.active .bar3 {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Media query for smaller screens */
@media screen and (max-width: 768px) {
    .hamburger-menu {
        display: flex;
        z-index: 100;
    }

    nav ul {
        display: none;
        flex-direction: column;
        background-color: #FCFCFC;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        text-align: center;
        box-shadow: 0 8px 15px rgba(0,0,0,0.08);
        z-index: 99;
        padding: 5px 0 20px;
        opacity: 0;
        transform: translateY(-10px);
        transition: opacity 0.4s ease, transform 0.4s ease;
    }

    nav ul.active {
        display: flex;
        margin-top: -1rem;
        opacity: 1;
        transform: translateY(0);
    }

    nav ul li {
        margin-left: 0;
        margin-bottom: 0;
        position: relative;
        overflow: hidden;
    }
    
    nav ul li a {
        display: block;
        padding: 18px 0;
        font-weight: 500;
        color: #333;
        letter-spacing: 1px;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }
    
    /* Divider line with elegant gradient */
    nav ul li:not(:last-child)::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 15%;
        width: 70%;
        height: 1px;
        background: linear-gradient(to right, transparent, rgba(13, 60, 97, 0.2), transparent);
    }
    
    /* Styling for active navigation link */
    nav ul li a.active {
        color: #0d3c61;
        font-weight: 600;
    }
    
    /* nav ul li a.active::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        width: 4px;
        background-color: #0d3c61;
        transform: scaleY(0.4);
        transition: transform 0.3s ease;
    } */
    
    /* Elegant underline animation */
    nav ul li a::after {
        content: '';
        position: absolute;
        bottom: 15px;
        left: 50%;
        width: 0;
        height: 2px;
        background-color: #0d3c61;
        transition: width 0.3s ease, left 0.3s ease;
    }
    
    /* nav ul li a:hover::after,
    nav ul li a.active::after {
        width: 30px;
        left: calc(50% - 15px);
    } */
    
    /* Subtle hover animation */
    nav ul li a:hover {
        color: #0d3c61;
        transform: translateX(3px);
    }
    
    /* Individual link animation delays */
    /* nav.active ul li:nth-child(1) {animation: fadeInRight 2s ease forwards 0.2s;}
    nav.active ul li:nth-child(2) {animation: fadeInRight 2s ease forwards 0.3s;}
    nav.active ul li:nth-child(3) {animation: fadeInRight 2s ease forwards 0.4s;}
    nav.active ul li:nth-child(4) {animation: fadeInRight 2s ease forwards 0.5s;}
    nav.active ul li:nth-child(5) {animation: fadeInRight 2s ease forwards 0.6s;} */
    nav.active ul li {
        animation: fadeInRight 1s ease forwards;
    }
}

/* Animation keyframes */
@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translateX(-20px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.1);
    border-radius: 4px;
    z-index: 101;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 0;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    /* Add padding at the top to prevent dropdown from disappearing */
    padding-top: 15px;
    margin-top: -10px;
}
@media screen and (min-width: 769px) {
.dropdown:hover .dropdown-content {
    display: block;
    opacity: 1;
    transform: translateX(-50%) translateY(5px);
}
.dropdown.no-hover:hover .dropdown-content {
    display: none;
}
}

.dropdown-content a {
    color: #333;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: center;
    font-size: 13px;
    transition: all 0.2s ease;
}

.dropdown-content a:hover {
    background-color: #f8f8f8;
    color: #0d3c61;
}

/* Add a subtle arrow indicator */
.dropdown > a::after {
    content: '▼';
    font-size: 8px;
    margin-left: 5px;
    vertical-align: middle;
    transition: transform 0.3s ease;
}

.dropdown:hover > a::after {
    transform: rotate(180deg);
}

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

.dropdown-content a {
    animation: fadeInUp 0.3s ease forwards;
    animation-delay: calc(0.05s * var(--i));
}

@media screen and (max-width: 768px) {
    /* Make dropdown content position relative instead of absolute for mobile */
    .dropdown-content {
        position: static;
        box-shadow: none;
        opacity: 1;
        display: none;
        transform: none;
        margin-top: 0;
        padding-top: 0;
        background-color: #f8f8f8;
        width: 100%;
    }
    
    /* Override transformations for mobile */
    .dropdown:hover .dropdown-content {
        transform: none;
    }
    
    /* Style for dropdown items in mobile */
    .dropdown-content a {
        padding: 15px 0;
        font-size: 13px;
        color: #555;
        padding-left: 50px;
    }
    
    /* Add a class to show mobile dropdowns */
    .dropdown-content.mobile-active {
        display: block !important; 
    }
    
    /* Change the dropdown arrow style for mobile */
    .dropdown > a::after {
        font-family: 'Font Awesome 5 Free'; /* Load Font Awesome */
        content: '\f078'; /* Unicode for Font Awesome down arrow */
        font-weight: 900; /* Needed for solid icons */
        position: absolute;
        right: 20px;
        margin-left: 49px;
        top: 22px;
    }
    
    
    .dropdown.active > a::after {
        font-family: 'Font Awesome 5 Free'; /* Load Font Awesome */
        content: '\f078'; /* Unicode for Font Awesome down arrow */
        font-weight: 900; /* Needed for solid icons */
        position: absolute;
        right: 20px;
        margin-left: 49px;
        top: 22px;    }


        .dropdown:hover > a::after {
            transform: rotate(0deg);
        }
}


/* header end */




/* Hero Section */
/* .hero {
    height: 90vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
  } */
  
/* Video container */
.video-container {
    position: relative;
    height: 360px;
    width: 100%;
    overflow: hidden;
    top: 0;
  }
  
  /* Video styling */
  .video-container video {
    position: absolute;
    width: 100%;
    /* bottom: 35%; */
    left: 0;
  }
  
/* Hero Section */
.hero {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-bottom: 6rem;
  }
  
  .hero h1 {
    position: relative;
    text-align: center;
    color: rgb(255 255 255);
    z-index: 1;
    padding: 0 20px;
    font-size: 2.6rem;
    font-weight: 700;
    top: 9rem;
    /* padding-top: -23rem; */
  }

.img-fluid{
    max-width: 100%;
}

.hero p{
        color: rgb(0, 0, 0);
}


@media (max-width: 768px) {

    .hero h1 {
        font-size: 1.2rem;
        margin-top: -3rem;

}
.video-container video {
    position: absolute;
    width: 100%;
    bottom: 0%;
    left: 0;
}

.hero {
    margin-bottom: 14rem;}


    .video-container {
        position: relative;
        height: 234px;
        width: 100%;
        overflow: hidden;
        top: 0;
    }

    .benefitList {
        align-items: center !important;
        /* background-color: rgba(25, 51, 94, .7); */
        bottom: 5px !important;
        display: flex !important
    ;
        justify-content: center !important;
        list-style: none !important;
        padding-bottom: 15px !important;
        padding-top: 15px !important;
        position: absolute !important;
        width: 100% !important  ;
    }
    .benefitList li {
        color: #fff;
        font-size: 9px;
        font-weight: 500;
        position: relative;
        text-transform: uppercase;
    }
    .benefitList li+li:before {
        color: #fff !important;
        content: "|" !important;
        font-size: 1.1rem !important;
        font-weight: 500 !important;
        left: -30px !important;
        position: absolute !important;
        top: -7px !important;
        height: -15px !important;
    }
    .benefitList li {
        color: #fff;
        font-size: 9px !important;
        font-weight: 500 !important;
        position: relative !important;
        text-transform: uppercase !important;
    }
}
@media (max-width: 400px) {

    .benefitList {
display: none !important;
    }

}
/* About Section */
.about {
    padding: 80px 40px;
    display: grid
;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
    background-color: #fff;
    /* max-width: 1280px; */
    margin: 0 auto;
    margin-top: -11rem !important;
    max-width: 1280px;
    
}
.about-content{
    text-align: justify;
}

.about-content h2 {
    font-size: 26.4px;
    font-family: Poppins, sans-serif;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    display: none;
}

.about-content p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #555;
    font-size: 11px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #506172;
    font-size: 11.2px;
    line-height: 15px;
    margin-bottom: 15px;
    font-weight: normal;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}



/* Footer */

/* .footer-cont{
    width: 100%;
    background-color: #0d3c61;
} */

footer {
    background-color: #0d3c61;
    color: white;
    padding: 10px 10% 20px;


    /* color: #0b2944; */
    padding: 25px 10% 20px;
    /* background: linear-gradient(180deg, rgba(233, 229, 255, 1) 0%, rgb(255 255 255) 100%); */
    /* background: linear-gradient(180deg,rgb(255 255 255) ,rgba(233, 229, 255, 1) 100% 0%); */
    max-height: 49rem;
    /* max-width: 1280px;
    margin: 0 auto; */
}

.footer-content {
    display: grid
;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 5px;
    max-width: 1280px;
    margin: 0 auto;
    margin-bottom: 5px;
}
/* @media (max-width: 768px) {

    .footer-content {
        margin-bottom: 15px;

    }
    .footer-section h3::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 50px;
        height: 2px;
        background-color: #fff;
    }

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

    .footer-section h3::after {
        left: 50% !important;
        transform: translateX(-50%);
    }
}

.footer-section h3 {
    font-size: .8rem;
    margin-bottom: 10px;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: #fff;
}
.footer-section p,.footer-section h3{
    color: #fff !important;
}

.footer-section p, 
.footer-section a {
    display: block;
    margin-bottom: 0px;
    font-size: .7rem;
    
}



.social-icons {
    display: flex;
    gap: 5px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgb(139 117 117 / 10%);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s;
}

.social-icons a:hover {
    background-color: rgba(255,255,255,0.3);
}

.copyright {
    text-align: center;
    padding-top: 5px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 14px;
}
@media (max-width: 768px) {

    .copyright {
    
        padding-top: 10px;
    
    }
    
}
.copyright p{
    font-size: .7rem;
    /* color:#fff; */
    color:#a7a4a4;
}

.copyright a {
    color: #7fc0f3;
}
.container {
    display: flex;
    max-width: 1200px;
    margin: 20px auto;
    flex-wrap: wrap;
    gap: 20px;
    padding: 0 15px;
}

/* Company Info Section */
.company-info {
    flex: 1;
    min-width: 300px;
    background-color: white;
    padding: 30px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.company-name h1 {
    font-size: 26.4px;
    font-family: Poppins, sans-serif;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

.company-description p{
    margin-bottom:     10px;
    text-align: justify;
    line-height: 1.4;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        color: #506172;
    font-size: 11.2px;
    line-height: 15px;
    margin-bottom: 15px;
    font-weight: normal;
}

/* Certifications Section */
.certifications {
    flex: 1;
    min-width: 300px;
    background-color: white;
    padding: 30px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.cert-heading h2 {
    font-size: 26.4px;
    font-family: Poppins, sans-serif;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

.cert-description p {
    margin-bottom: 30px;
    text-align: justify;
    line-height: 1.4;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #506172;
    font-size: 11.2px;
    line-height: 15px;
    margin-bottom: 0px;
    font-weight: normal;
}

.cert-icons {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    /* margin-top: 60px; */
}

.cert-item {
    text-align: center;
    margin: 10px;
}

.cert-icon {
    width: 120px;
    height: 120px;
    margin-bottom: 10px;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        padding-bottom: 2rem !important;
    }
    
    .company-info, 
    .certifications {
        min-width: 100%;
    }
    
    .company-name h1,
    .cert-heading h2 {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .cert-icons {
        margin-top: 40px;
    }
    
    .cert-item {
        margin: 15px;
    }
}

@media (max-width: 480px) {
    .company-name h1,
    .cert-heading h2 {
        font-size: 1.75rem;
        margin-bottom: 20px;
    }
    
    .company-info,
    .certifications {
        padding: 20px;
    }
    
    .cert-icon {
        width: 80px;
        height: 80px;
    }
}
/* Responsive Design */
@media (max-width: 992px) {
    .services-grid,
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    header {
        display: flex;
        justify-content: space-between;
        padding: 20px 40px;
    }
    
    nav ul {
        margin-top: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    nav ul li {
        margin: 5px 15px;
    }
    
 
    
    .services-grid,
    .footer-content {
        grid-template-columns: 1fr;
    }
    .about{
        gap:0px
    }
    .about,
    .services {
        padding: 0px 40px;
        
    }
}

@media (max-width: 480px) {

    
    .about-content h2 {
        font-size: 20.5px;
    }
}

/* Animation helper classes */
.fade-in {
    opacity: 0;
    transition: opacity 1s ease-in;
}

.fade-in.active {
    opacity: 1;
}

/* AOS fallback */
[data-aos] {
    opacity: 0;
    transition: opacity 0.3s;
}

[data-aos].aos-animate {
    opacity: 1;
}

/* Services Section */
.services {
    padding: 20px 40px;
    max-width: 1280px;
    margin: 0 auto;
    /* background-color: #f9f9f9; */
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding-top: 3rem;
    padding-bottom: 2rem;
}

/* .service-card {
    background-color: white;
    border-radius: 3px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
} */

.service-card:hover {
    transform: translateY(-10px);
}

.service-image {
    display: flex;
    justify-content: center;
}

.service-image img {
    width: 22%;
    height: 50%;
    object-fit: fill;
    transition: transform 0.5s;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    padding: 20px;
}

.service-content h3 {
    font-size: .75rem;
    margin-bottom: 30px;
    color: #0d3c61;
    text-align: center;
}

.service-content p {
    color: #666;
    font-size: 12px;
}


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


    .services-grid {

        display: block;


    }
}



/*********** project pages ***********/

.interior-creations {
    padding: 50px 0;
    max-width: 1280px;
    margin: 0 auto;
    margin-top: -7rem ;

}

/* .project-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 30px;
    margin: 0px 50px;
}

.project-item {
    position: relative;
    text-align: center;
    overflow: hidden;
} */
.project-grid {
    display: flex;
    flex-wrap: wrap; /* Allows items to wrap */
    justify-content: center;
    gap: 30px; /* Space between items */
    margin: 0 50px;
}

.project-item {
    min-width: 270px;
    box-sizing: border-box; /* Ensures padding and border are included in the width */
}

.project-item img {
    width: 100%;
    height: 200px !important;
    margin-bottom: 15px;
    border-radius: 5px;
    transition: transform 0.3s ease-in-out; 
}
.project-item:hover img {
    transform: scale(1.1); /* Enlarges the image without affecting layout */
}

.project-item h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

.project-item p {
    font-size: 14px;
    margin-bottom: 10px;
    color: #666;
}

.project-details {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.3s ease, max-height 0.4s ease;
    text-transform: uppercase;

}

.project-item:hover .project-details {
    opacity: 1;
    max-height: 100px; /* Adjust based on your content height */
    font-size: 12px;
    color: #999;
    text-transform: uppercase;
}
/* Happy Customers Section */
.happy-customers {
    padding: 50px 0;
    background-color: white;
}

.client-logos {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-row {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 30px;
}

.logo-row img {
    max-width: 120px;
    height: auto;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.logo-row img:hover {
    opacity: 1;
}
/* Section Titles */
.section-title {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: #000000;
}
.hero-project{
    max-height: 1200px!important;

}
.container{
    max-width: 1200px;
    max-height: 1200px;
    overflow: hidden;
    margin: 0px 100px !important;
}
/* Happy Customers Section */
.happy-customers {
    padding: 50px 0 !important;
    background-color: white;
}


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

        margin-top: -15rem;

    }

    .project-item{
        width: 100%;
    }

    .section-title{
        font-size: 23px !important;
        margin-bottom: 20px !important;
    }
}



/******* index.html *******/


.client-logos {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 80px;
}
@media screen and (max-width: 768px) {
    .client-logos {
        padding: 20px;

    }
}
.customer-logo{
    max-width: 1280px;
}
.customer-logo img{
    width: 100%;
}

.logo-row {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 30px;
}

.logo-row img {
    max-width: 120px;
    height: auto;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.logo-row img:hover {
    opacity: 1;
}
/* Section Titles */
.section-title {
    font-size: 26.4px;
    font-family: Poppins, sans-serif;
    font-weight: 600;
    color: #333;
    margin-bottom: 40px;
}
.hero-project{
    max-height: 1200px!important;

}
.container{
    max-width: 1280px;
    overflow: hidden;
    margin: 0px auto !important;
    padding-bottom: 4rem;
}
/* Happy Customers Section */
.happy-customers {
    padding: 50px 0 !important;
    background-color: white;
}



.video-container video {
    /* position: absolute; */
    width: 100%;
    height: 100%;
    object-fit: fill;
    }


 .benefitList {
    align-items: center;
    /* background-color: rgba(25, 51, 94, .7); */
    bottom: 5px;
    display: flex
;
    justify-content: center;
    list-style: none;
    padding-bottom: 15px;
    padding-top: 15px;
    position: absolute;
    width: 100%;
    }
.benefitList li {
    color: #fff;
    font-size: 19px;
    font-weight: 500;
    position: relative;
    text-transform: uppercase;
    }
 .benefitList li+li {
        margin-left: 60px;
    }
   .benefitList li+li:before {
    color: #fff;
    content: "|";
    font-size: 1.1rem;
    font-weight: 500;
    left: -30px;
    position: absolute;
    top: 1px;
    height: -15px;
    }