/* @import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Raleway:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&family=Varela&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/*
font-family: "Varela", sans-serif;
font-family: "Raleway", sans-serif;
font-family: "Varela", sans-serif;
font-family: "Raleway", sans-serif;
*/
html{
scroll-padding-top: 60px;
    scroll-behavior: smooth;
}
body{
    background-color: #f9f1e5;
}
body::-webkit-scrollbar {
    width: 0.8em;
}
body::-webkit-scrollbar-track {
    background-color: #171B2D;
}
body::-webkit-scrollbar-thumb {
  background: #EBB455; 
  border-radius: 10px;
}
.navbar{
    background: transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 3%;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    position: fixed;
    z-index: 1000;
    transition: all 0.4s ease;
    
}
.navbar .logo img{
    width: 55%;
}
.navbar .menu img{
    cursor: pointer;
    width: 55%;
    padding-top: 7px;
    transition: width 0.8s ease;
}
.navbar.active{
    padding-block: 15px;
    background-color: #171b2de0;
    backdrop-filter: blur(5px);
}
.navbar.active .logo img{
    width: 42%;
}
/* Collapsible Menu (hidden by default) */
.collapse-menu {
  position: fixed;
  top: 0;
  right: -100%;
  height: 100vh;
  width: 30%;
  background: #0d1326;
  transition: right 0.4s ease;
  padding: 60px 40px;
  z-index: 999;
}

.collapse-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.collapse-menu ul li {
  margin: 20px 0;
}

.collapse-menu ul li a {
    text-transform: capitalize;
    text-decoration: none;
    color: #fff;
    font-size: 18px;
    transition: color 0.3s;
    font-family: "Raleway", sans-serif;
}

.collapse-menu ul li a:hover {
  color: #f39c12;
}
.drp{
    position: relative;
}
.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: #ebb455;
    backdrop-filter: blur(3px);
    min-width: 250px;
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    margin-top: 0px;
    z-index: 9;
}
.dropdown ul {
    display: block;
    padding: 0px 0;
}
.dropdown ul li {
    width: 100%;
    margin: 15px 20px;
}
.dropdown ul li a{
    color: #171B2D;
    font-size: 16px;
}
.dropdown ul li a:hover{
    color: #171b2db3;
}
.collapse-menu > ul > .drp:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Rotate icon when hovering */
.collapse-menu > ul > .drp:hover > a i {
    transform: rotate(180deg);
}

/* Active state for clicked items */
.collapse-menu > ul > li.active .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.collapse-menu > ul > li.active > a i {
    transform: rotate(180deg);
}

/* Close Button (hidden on desktop) */
.close-btn {
  /* display: none; */
  font-size: 28px;
  color: #fff;
  cursor: pointer;
  position: absolute;
  top: 20px;
  right: 25px;
}

/* Active State */
.collapse-menu.active {
  right: 0;
}

/* Mobile View */
@media (max-width: 900px) {
    .collapse-menu {
        width: 40%;
    }
    .collapse-menu ul li a {
        font-size: 22px;
    }
}
@media (max-width: 600px) {
    .navbar {
        padding: 25px 5%;
        align-items: flex-start;
    }
    .collapse-menu {
        width: 100%;
    }
    .close-btn {
        display: block;
    }
    .collapse-menu ul li a {
        font-size: 25px;
    }
    .navbar .logo img {
        width: 45%;
    }
}
@media(max-width: 600px){
    .navbar{
        padding: 25px 6%;
    }
    .collapse-menu ul li a {
        font-size: 18px;
    }
    .menu{
        display: flex;
        justify-content: flex-end;
    }
}
@media(min-width: 1500px){
    .navbar .logo img {
        width: 65%;
    }
    .navbar .menu img {
        width: 65%;
    }
}
.banner-section{
    padding: 40px 5%;
}

.banner-section{
    margin-top: 60px;
    padding: 0px 5%;
}
.heading h1{
    font-family: "Varela", sans-serif;
    font-size: 55px;
    font-weight: 500;
    line-height: 57px;
    color: #171B2D;
    text-transform: uppercase;
}
/* .p-cont{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
} */
.p-cont p{
    margin: 0 auto;
    text-align: center;
    color: #171B2D;
    font-family: "Raleway", sans-serif;
    width: 70%;
    letter-spacing: 1.1px;
    font-weight: 500;
    /* font-size: 15px; */
    padding-bottom: 10px;
}
button{
    font-size: 14px;
    padding: 8px 15px 8px 15px;
    text-transform: uppercase;
    background-color: #171B2D;
    outline: none;
    border: 0;
    color: #fff;
    border-radius: 5px;
    font-family: "Varela", sans-serif;
    margin-top: 5px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}
button:hover{
    /* background-color: #EBB455;
    color: #171B2D; */
    box-shadow: 8px 8px 8px 0px rgba(0,0,0,0.15);
}
.bann-img{
    width: 100%;
    border-radius: 20px;
}

.home-banner{
    margin-top: 20px;
    margin-bottom: 40px;
    padding: 0px 5%;
    border-radius: 15px;
    height: 90vh;
}

.swiper {
    width: 100%;
    height: 100%;
    /* border-radius: 15px; */
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    /* border-radius: 15px; */
    display: flex;
    justify-content: center;
    align-items: center;
}


@media(max-width: 768px){
    .heading h1{
        font-size: 60px;
        line-height: 60px;
    }
    .p-cont p{
        width: 85%;
    }
    .home-banner{
        height: 60vh;
    }
}
@media(max-width: 600px){
    .head-section{
        flex-direction: column;
        gap: 15px;
        padding-bottom: 10px;
    }
    .head-section .p-cont {
        flex-basis: 100%;
        align-items: center;
    }
    .heading h1 {
        font-size: 36px;
        line-height: 39px;
        text-align: center;
    }
    .p-cont p{
        width: 100%;
        text-align: center;
    }
    .home-banner{
        height: 45vh;
    }
    
}
@media(min-width: 1440px){
    .heading h1 {
        font-size: 70px;
        line-height: 71px;
    }
    .p-cont p{
        font-size: 20px;
    }
}


.features-section{
    padding-bottom: 40px;
}
.features-section .line-p{
    text-align: center;
    font-family: 'Raleway', sans-serif;
    font-size: 12px;
    margin-top: 10px;
}
.features{
    /* position: absolute;
    bottom: 20px; */
    width: 70%;
    /* left: 50%;
    transform: translateX(-50%); */
    margin: 0 auto;
    display: flex;
    justify-content: center;
    padding: 18px 0px;
    color: #171B2D;
    backdrop-filter: blur(5px);
}
.features .feat{
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 0px 40px;
}
.feat div{
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.feat h5{
    font-family: "Varela", sans-serif;
    color: #171B2D;
}
.feat p{
    color: #171B2D;
    font-family: 'Raleway', sans-serif;
}
.feat img{
    width: 70px;
    height: 70px;
}
.feat:nth-child(2){
    border-left: 2px solid #171B2D;
    border-right: 2px solid #171B2D;
}
.feat h5{
    font-size: 22px;
    font-weight: 600;
}
.feat p{
    font-size: 16px;
}
@media(max-width: 768px){
    .feat img{
        width: 60px;
        height: 60px;
    }
    .feat h5{
        font-size: 18px;
        font-weight: 600;
    }
    .feat p{
        font-size: 14px;
    }
    .features .feat{
        padding: 0px 15px;
    }
    .line-p{
        padding: 0px 8%;
    }
}
@media(max-width: 600px){
    /* .features-section{
        padding-top: 58px;
        margin-top: -107px;
    } */
    .features{
        width: 80%;
        padding: 20px 0px;
        /* flex-direction: column; */
        gap: 2px;
        align-items: center;
    }
    .feat:nth-child(2){
        border-left: 0px solid #fff;
        border-right: 0px solid #fff;
    }
    .features .feat{
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
        img{
            width: 34px;
            height: 34px;
        }
        h5{
            font-size: 13px;
        }
        p{
            font-size: 11px;
        }
    }
    
}
@media(min-width: 1550px){
    .features .feat{
        padding: 15px 60px;
    }
}
.vision{
    padding: 0px 0%;
    
}
.vision .vision-box{
    background-color: #171B2D;
    padding: 50px 15%;
    text-align: center;
}
.vision-box h3{
    color: #fff;
    font-weight: 300;
    font-size: 30px;
    margin-bottom: 15px;
    text-align: center;
    font-family: 'Varela', sans-serif;
    font-weight: 500;
}

.vision-box p{
    font-size: 16px;
    font-weight: 300;
    color: #fff;
    font-family: "Raleway", sans-serif;
}
@media(max-width: 600px){
    .vision-box h3{
        font-size: 30px;
    }
    .vision-box p{
        font-size: 15px;
        line-height: 19px;
    }
    .vision .vision-box{
        padding: 50px 8%;
    }
}
@media(min-width: 1440px){
    .vision-box h3{
        font-size: 28px;
    }
    .vision-box p{
        font-size: 18px;
        line-height: 22px;
    }
}
.project-section{
    padding: 60px 5%;
    .swiper-button-next {
        right: 0!important; /* Position at the edge of padding */
        color: #171B2D!important;
        transition: all 0.3s ease-in-out;
        }
        .swiper-button-next:hover{
            color: #EBB455!important;
        }
        .swiper-button-prev:hover{
            color: #EBB455!important;
        }

        .swiper-button-prev {
        left: 0!important; /* Position at the edge of padding */
        color: #171B2D!important;
        transition: all 0.3s ease-in-out;
        }
        .swiper-button-next:after, .swiper-button-prev:after{
            font-size: 35px!important;
        }
}
.project-container{
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 0px 30px;
}
.project-img{
    width: 100%;
}
.project-content{
    flex-basis: 52%;
    color: #171B2D;
    text-align: right;

}
@media(min-width: 1440px){

}
.swiper {
  padding: 0 30px!important; /* Add space for arrows */
  
}



.pr-img{
    flex-basis: 45%;
}
.swiper-pagination-bullet-active{
    background-color: #171B2D!important;
}
.project-content h2{
    font-family: "Varela", sans-serif;
    font-size: 75px;
    font-weight: 400;
    line-height: 77px;
}
.project-content h5{
    font-size: 20px;
    font-family: "Varela", sans-serif;
    font-weight: 500;
    margin-bottom: 15px;
}
.project-content p{
    color: #171B2D;
    font-family: "Raleway", sans-serif;
    padding-bottom: 15px;
}
.project-content button{
    margin-top: 15px;
}
@media(max-width: 1024px){
    .project-content h2{
        line-height: 67px;
        font-size: 65px;
    }
}
@media(max-width: 768px){
    
    .project-container{
        flex-direction: column;
        gap: 20px;
    }
    .project-img{
        width: 100%;
        margin-top: -20px;
    }
    .project-content h2{
        line-height: 62px;
        font-size: 60px;
    }
}
@media(max-width: 600px){
    .project-content{
        text-align: center;
    }
    .project-content h2{
        line-height: 41px;
        font-size: 40px;
    }
    .project-content p{
        font-size: 16px;
    }
}
@media(max-width: 410px){
    .project-content h2{
        line-height: 34px;
        font-size: 30px;
    }
}
@media(min-width: 1550px){
    .project-content{
        padding-top: 40px;
    }
    .project-img {
        width: 100%;
    }
}
@media(min-width: 1440px){
    .project-section{
        padding-inline: 7%;
    }
}
.team-section{
    margin-top: 30px;
}
.team-legacy{
    background-image: url("teambg.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    /* background-color: #171B2D; */
    padding: 70px 5%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
    align-items: center;
    position: relative;
    &::before{
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        background-color: #171b2dc8;
        z-index: 99;
    }
}
.team-legacy h3{
    font-size: 35px;
    color: #fff;
    text-align: center;
    font-family: "Varela", sans-serif;
    font-weight: 400;
    padding-bottom: 8px;
    padding-left: 12px;
    padding-right: 12px;
    border-bottom: 2px solid #fff;
    position: relative;
    z-index: 999;
}
.team-legacy h4{
    font-size: 30px;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    font-family: "Varela", sans-serif;
    font-weight: 400;
    position: relative;
    z-index: 999;
}
.team-legacy p{
    color: #ffffff;
    font-family: "Raleway", sans-serif;
    font-weight: 300;
    width: 60%;
    text-align: center;
    position: relative;
    z-index: 999;
}
@media(max-width: 768px){
    .team-legacy h4{
        font-size: 25px;
    }
}
@media(max-width: 600px){
    .team-legacy p{
        width: 85%;
    }
    .team-legacy h4{
        font-size: 20px;
    }
}
@media(min-width: 1440px){
    .team-legacy h3{
        font-size: 40px;
    }
    .team-legacy h4{
        font-size: 35px;
    }
    .team-legacy p{
        font-size: 18px;
    }
}
/* .team-container{
    background-color: #171B2D;
    display: flex;
}
.team-img-box{
    display: flex;
    gap: 25px;
}
.team-img{
    width: 8%;
    height: auto;
}
.active{
    width: 15%;
} */
/* Team Section */
/* .team-container {
    background-color: #171B2D;
    width: 100%;
    padding-bottom: 40px;
    padding-left: 5%;
    padding-right: 5%;
    overflow-x: hidden;
     margin-top: -2px;
}

.team-box {
    position: absolute;
    text-align: left;
    left: 0;
    bottom: 0;
}

.team-box h2 {
    font-size: 7.5rem;
    font-weight: bold;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 8px;
    margin-bottom: 20px;
    font-family: "Varela", sans-serif;
    font-weight: 400;
}
.team-img-box {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.team-img {
    position: absolute;
    transition: all 0.7s ease-in-out;
    border-radius: 15px;
    object-fit: cover;
    cursor: pointer;
    filter: brightness(0.7) saturate(0.8);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.team-img.left {
    width: 150px;
    height: 230px;
    transform: translateX(-250px) scale(0.9);
    opacity: 0.6;
    z-index: 1;
}

.team-img.center {
    width: 270px;
    height: 370px;
    transform: translateX(0) scale(1.05);
    opacity: 1;
    filter: brightness(1) saturate(1);
    z-index: 10;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}
.team-img.right {
    width: 150px;
    height: 230px;
    transform: translateX(250px) scale(0.9);
    opacity: 0.6;
    z-index: 1;
}
.team-slider {
    position: relative;
    display: flex;
    align-items: center;
    gap: 60px;
}

.team-img-container {
    flex: 1;
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 35px;
   
} */

/* Updated Code */
.team-container {
    background-color: #171B2D;
    width: 100%;
    padding-bottom: 40px;
    padding-left: 5%;
    padding-right: 5%;
    overflow-x: hidden;
    margin-top: -2px;
}

.team-box {
    position: absolute;
    text-align: left;
    left: 0;
    bottom: 0;
}

.team-box h2 {
    font-size: 7.5rem;
    font-weight: bold;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 8px;
    margin-bottom: 20px;
    font-family: "Varela", sans-serif;
    font-weight: 400;
}

.team-img-box {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.team-img-wrapper {
    position: absolute;
    transition: all 0.7s ease-in-out;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    cursor: pointer;
}

.team-img {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    object-fit: cover;
    filter: brightness(0.7) saturate(0.8);
    transition: filter 0.7s ease-in-out;
}

.team-name-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 250px;
    background: linear-gradient(to top, #171B2D, transparent);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 8px;
    color: #fff;
    font-size: 14px;
    gap: 4px;
    font-family: "Raleway", sans-serif;
    pointer-events: none;
    border-radius: 0 0 15px 15px;
    i{
        transform: rotate(225deg);
    }
}

/* Left position */
.team-img-wrapper.left {
    width: 150px;
    height: 230px;
    transform: translateX(-250px) scale(0.9);
    opacity: 0.6;
    z-index: 1;
}

/* Center position */
.team-img-wrapper.center {
    width: 270px;
    height: 370px;
    transform: translateX(0) scale(1.05);
    opacity: 1;
    z-index: 10;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.team-img-wrapper.center .team-img {
    filter: brightness(1) saturate(1);
}

/* Right position */
.team-img-wrapper.right {
    width: 150px;
    height: 230px;
    transform: translateX(250px) scale(0.9);
    opacity: 0.6;
    z-index: 1;
}

.team-slider {
    position: relative;
    display: flex;
    align-items: center;
    gap: 60px;
}

.team-img-container {
    flex: 1;
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 35px;
}

/* 
.team-img-box {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 30px;
}

.team-img {
    border-radius: 15px;
    object-fit: cover;
    transition: all 1.1s ease-in-out;;
    cursor: pointer;
    filter: brightness(0.7) saturate(0.8);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
} */

/* .team-img:nth-child(1),
.team-img:nth-child(3) {
    width: 150px;
    height: 220px;
    transform: scale(0.9);
    opacity: 0.6;
}

.team-img:nth-child(2) {
    width: 280px;
    height: 390px;
    transform: scale(1.1);
    opacity: 1;
    filter: brightness(1) saturate(1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    z-index: 10;
} */

/* Side images */
/* .team-img.side {
    width: 150px;
    height: 230px;
    transform: scale(0.9);
    opacity: 0.6;
    filter: brightness(0.7) saturate(0.8);
    z-index: 1;
}

.team-img.center {
    width: 280px;
    height: 390px;
    transform: scale(1.05);
    opacity: 1;
    filter: brightness(1) saturate(1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    z-index: 10;
}

.team-img:hover {
    transform: scale(0.95);
} */

/* .team-img:nth-child(2):hover {
    transform: scale(1.02);
} */

.team-info-container {
    flex: 1;
    position: absolute;
    width: 350px;
    height: 300px;
    display: flex;
    align-items: center;
    right: 0;
    top: 0;
    
}

/* .team-info {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-info.active {
    opacity: 1;
    transform: translateY(0);
}

.team-info h3 {
    font-size: 2rem;
    font-family: "Varela", sans-serif;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #fff, #ccc);
    background-clip: text;
    font-weight: 400;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.team-info p {
    font-size: 1rem;
    line-height: 1.3;
    color: rgba(255, 255, 255, 0.8);
    max-width: 500px;
    font-family: "Varela", sans-serif;
    font-weight: 400;
} */

.nav-buttons {
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
    display: none;
}

.nav-btn {
    width: 30px;
    height: 30px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.nav-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.indicators {
    position: absolute;
    bottom: -120px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}
.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.5s ease-in-out;
}
.indicator.active {
    background: white;
    transform: scale(1.2);
}
/* .team-member-info{
    padding: 50px 5%;
    display: flex;
    justify-content: space-between;
    gap: 30px;
    background-color: #171B2D;
    color: #fff;
    .leader-img{
        flex-basis: 30%;
        img{
            width: 75%;
        }
    }
    .team-text{
        flex-basis: 67%;
        h2{
            font-family: "Varela", sans-serif;
            font-size: 35px;
            color: #fff;
        }
        h3{
            font-family: "Varela", sans-serif;
            font-size: 22px;
            color: #fff;
        }
        p{
            margin-top: 15px;
            font-size: 16px;
            font-family: "Raleway", sans-serif;
            line-height: 22px;
        }
    }
} */
@media (max-width: 768px) {
    .team-slider {
        /* flex-direction: column; */
        gap: 40px;
    }
    
    .team-box h2 {
         font-size: 2.5rem;
        text-align: center;
    }

    /* .team-img:nth-child(1),
    .team-img:nth-child(3) {
        width: 120px;
        height: 160px;
    } */

    /* .team-img:nth-child(2) {
        width: 180px;
        height: 240px;
    } */

    .team-info h3 {
        font-size: 2rem;
    }
    .team-img-container{
        margin-top: 16px;
    }
    .team-container{
        height: 450px;
    }
    
    .team-member-info{
        .leader-img{
            img{
                width: 100%;
                border-radius: 8px;
            }
        }
        .team-text{
            h2{
                font-size: 30px;
            }
            h3{
                font-size: 22px;
            }
        }
    }
}
@media(max-width: 600px){
    .team-section{
        height: auto;
        margin-top: 0px;
    }
    .team-img-container{
        width: 100%;
    }
    /* .team-img-box{
        overflow: hidden;
    } */
    .team-member-info{
        flex-direction: column;
        gap: 20px;
        .team-text{
            h2{
                font-size: 35px;
            }
            h3{
                font-size: 18px;
                margin-bottom: 10px;
            }
        }
    }
    
}

/* About Us */
.about-section{
    margin-top: 20px;
    padding: 30px 5%;
    display: flex;
    gap: 20px;
    justify-content: space-between;
    background-color: #f9f1e5;
}
.about-head{
    flex-basis: 58%;
    padding-top: 10px;
}
.about-head h1{
    font-size: 55px;
    font-family: "Varela", sans-serif;
    font-weight: 400;
    color: #171B2D;
}
.about-head p{
    margin-top: 25px;
    font-family: "Raleway", sans-serif;
    font-size: 16px;
}
.about-img{
    flex-basis: 40%;
    display: flex;
    place-content: center;
}
.about-img img{
    width: 70%;
}

.message-section{
    /* margin: 20px 0px; */
    padding: 0px 8%;
    display: flex;
    background-color: #171B2D;
}
.message-section .person{
    flex-basis: 30%;
}
.message-section .quotemsg{
    flex-basis: 70%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.person img{
    width: 105%;
    margin-top: -65px;
    margin-bottom: -4px;
}
.quotemsg h4{
    font-size: 40px;
    font-family: "Varela", sans-serif;
    font-weight: 400;
    text-align: center;
    line-height: 44px;
    color: #fff;
}

/*  */
.our-mission{
    padding: 40px 5%;
    background-color: #f9f1e5;
    display: flex;
    gap: 40px;
    .mission-text2{
        flex-basis: 62%;
    }
    .missn-img{
        flex-basis: 35%;
        display: flex;
        justify-content: end;
    }
    .mission-text{
        display: flex;
        flex-direction: column;
        justify-content: center;
        h4{
            font-family: "Varela", sans-serif;
            font-weight: 400;
            font-size: 55px;
            color: #171B2D;
            margin-bottom: 25px;
        }
        p{
            font-family: "Raleway", sans-serif;
            padding-bottom: 15px;
            color: #171B2D;
        }
    }
    .vision-head{
        text-align: right;
    }
    .vision-head-p{
        text-align: left;
    }
    img{
        width: 90%;
        border-radius: 10px;
        margin: 13px 0px;
    }
    .vision-img{
        width: 100%;
        display: flex;
        /* justify-content: flex-end; */
    }
}
.our-vision{
    padding: 70px 5%;
    background-color: #171B2D;
    display: flex;
    gap: 40px;
    .mission-text2{
        flex-basis: 62%;
    }
    .missn-img{
        flex-basis: 35%;
        display: flex;
        justify-content: end;
    }
    .vision-text{
        h4{
            font-family: "Varela", sans-serif;
            font-weight: 400;
            font-size: 55px;
            color: #fff;
            margin-bottom: 25px;
        }
        p{
            font-family: "Raleway", sans-serif;
            padding-bottom: 15px;
            color: #fff;
            text-align: right;
        }
    }
    .mission-text{
        display: flex;
        flex-direction: column;
        justify-content: center;
        h4{
            font-family: "Varela", sans-serif;
            font-weight: 400;
            font-size: 55px;
            color: #171B2D;
            margin-bottom: 25px;
        }
        p{
            font-family: "Raleway", sans-serif;
            padding-bottom: 15px;
            color: #171B2D;
        }
    }
    .vision-head{
        text-align: right;
    }
    /* .vision-head-p{
        text-align: right;
    } */
    img{
        width: 90%;
        border-radius: 10px;
        margin: 13px 0px;
    }
    .vision-img{
        width: 100%;
        display: flex;
        /* justify-content: flex-end; */
    }
}


.philosophy-section{
    padding: 50px 5%;
    /* margin-top: 20px; */
    display: flex;
    background-color: #f9f1e6;
    color: #fff;
    justify-content: space-between;
    h2{
        font-size: 45px;
        padding-bottom: 25px;
        font-family: "Varela", sans-serif;
        font-weight: 400;
        color: #171B2D;
    }
    .philo-content{
        flex-basis: 60%;
        font-family: "Raleway", sans-serif;
        text-align: left;
        display: flex;
        flex-direction: column;
        justify-content: center;
        color: #171B2D;
    }
    .philo-img{
        flex-basis: 38%;
        display: flex;
        justify-content: flex-end;
        img{
            width: 70%;
            border-radius: 10px;
        }
    }
}
.life-at-rubics-section{

    padding: 50px 5%;
    margin-top: 20px;
    display: flex;
    background-color: #171B2D;
    color: #fff;
    justify-content: space-between;
    h2{
        font-size: 45px;
        padding-bottom: 25px;
        font-family: "Varela", sans-serif;
        font-weight: 400;
    }
    .vision-head-p{
        padding-bottom: 15px;
    }
    .philo-content{
        flex-basis: 50%;
        font-family: "Raleway", sans-serif;
        text-align: right;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .philo-img{
        flex-basis: 48%;
        display: flex;
        /* justify-content: center; */
        img{
            width: 100%;
            border-radius: 10px;
        }
    }
}


.sustainability-section{
    padding: 50px 5%;
    background-color: #171B2D;
    
    h1{
        font-size: 55px;
        text-align: center;
        font-family: "Varela", sans-serif;
        font-weight: 400;
        color: #fff;
    }
    p{
        font-family: "Raleway", sans-serif;
        color: #171B2D;
    }
    h5{
        font-weight: 600;
        font-size: 20px;
        margin-top: 6px;
        font-family: "Raleway", sans-serif;
        color: #171B2D;
    }
    .principles-container{
        padding-top: 10px;
        .row-one{
            display: flex;
            justify-content: center;
            gap: 25px;
            padding: 20px 0px;
            
        }
        h4{
            font-size: 18px;
            font-family: "Varela", sans-serif;
            font-weight: 400;
            color: #171B2D;
        }
        .row-two{
            display: flex;
            justify-content: center;
            gap: 25px;
            padding: 20px 0px;
        }
        .bl-pne{
            flex-basis: 22%;
        }
        .blue-box{
            background-color: #f9f1e6;
            border-radius: 16px;
            padding: 25px 20px;
            color: #fff;
            height: 200px;
            width: 265px;
            position: relative;
            transition: all 0.3s ease-in-out;
            overflow: hidden;
            h4{
                text-align: left;
                width: 100%;
            }
            .box-one{
                /* background-image: url('Rubics\ Sustainability\ 1.png'); */
                background-position: center;
                background-size: cover;
                width: 100%;
                height: 100%;
                display: flex;
                flex-direction: column;
                justify-content: space-between;
                opacity: 1;
                transition: opacity 0.3s ease;
                position: relative;
                z-index: 2;
            }
            .read-more-box{
                position: absolute;
                bottom: 0;
                width: 100%;
                display: flex;
                justify-content: flex-end;
                align-items: center;
                /* padding: 10px; */
                /* background-color: #171B2D; */
                h4{
                    color: #fff;
                    font-weight: 600;
                    font-size: 16px;
                }
                a{
                    color: #171B2D;
                    text-decoration: none;
                    font-size: 14px;
                    font-family: "Raleway", sans-serif;
                }
                .arrow-btn {
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    width: 30px;
                    height: 30px;
                    background: #171B2D;
                    color: #EBB455;
                    border-radius: 50%;
                    cursor: pointer;
                }

                .arrow-btn i {
                    font-size: 10px;
                    rotate: 235deg;
                }
            }
            .box-two{
                opacity: 0;
                transition: opacity 0.3s ease;
                position: absolute;
                top: 0;
                left: 0;
                width: 90%;
                height: 90%;
                padding: 25px 20px;
                z-index: 1;
                display: flex;
                align-items: center;
                .content-box{
                    display: flex;
                    gap: 20px;
                    width: 100%;
                    height: 100%;
                    .text-box2{
                        flex-basis: 100%;
                        h4{
                            font-size: 18px;
                        }
                        p{
                            font-size: 14px;
                            margin-top: 7px;
                        }
                    }
                    .material-img{
                        flex-basis: 40%;
                        display: flex;
                        justify-content: center;
                        transition: all 0.3s ease-in-out;
                        img{
                            width: 180px;
                            height: auto;
                            
                        }
                    }
                }
            }
        }
        
    }
}

/* Hover states */
.sustainability-section .principles-container .blue-box:hover{
    width: 500px;
    background-color: #EBB455;
    color: #171B2D;
}

.sustainability-section .principles-container .blue-box:hover .box-one{
    opacity: 0;
    pointer-events: none;
}

.sustainability-section .principles-container .blue-box:hover .box-two{
    opacity: 1;
    z-index: 3;
}

.lifestyle-section{
    padding: 50px 5%;
    background-color: #171B2D;
    margin-top: 20px;
    h1{
        font-size: 55px;
        text-align: center;
        font-family: "Varela", sans-serif;
        font-weight: 400;
        color: #fff;
    }
    p{
        font-family: "Raleway", sans-serif;
        color: #171B2D;
    }
    h5{
        font-weight: 600;
        font-size: 20px;
        margin-top: 6px;
        font-family: "Raleway", sans-serif;
        color: #171B2D;
    }
    .principles-container{
        padding-top: 10px;
        .row-one{
            display: flex;
            justify-content: center;
            gap: 25px;
            padding: 20px 0px;
            
        }
        h4{
            font-size: 18px;
            font-family: "Varela", sans-serif;
            font-weight: 400;
            color: #171B2D;
        }
        .row-two{
            display: flex;
            justify-content: center;
            gap: 25px;
            padding: 20px 0px;
        }
        .bl-pne{
            flex-basis: 22%;
        }
        .blue-box{
            background-color: #f9f1e6;
            border-radius: 16px;
            padding: 25px 20px;
            color: #fff;
            height: 200px;
            width: 250px;
            position: relative;
            transition: all 0.3s ease-in-out;
            overflow: hidden;
            h4{
                text-align: left;
                width: 100%;
            }
            .box-one{
                width: 100%;
                height: 100%;
                display: flex;
                flex-direction: column;
                justify-content: space-between;
                opacity: 1;
                transition: opacity 0.3s ease;
                position: relative;
                z-index: 2;
            }
            .read-more-box{
                width: 100%;
                display: flex;
                justify-content: space-between;
                align-items: center;
                a{
                    color: #171B2D;
                    text-decoration: none;
                    font-size: 14px;
                    font-family: "Raleway", sans-serif;
                }
                .arrow-btn {
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    width: 30px;
                    height: 30px;
                    background: #fff;
                    color: #171B2D;
                    border-radius: 50%;
                    cursor: pointer;
                }

                .arrow-btn i {
                    font-size: 10px;
                    rotate: 235deg;
                }
            }
            .box-two{
                opacity: 0;
                transition: opacity 0.3s ease;
                position: absolute;
                top: 0;
                left: 0;
                width: 90%;
                height: 90%;
                padding: 25px 20px;
                z-index: 1;
                display: flex;
                align-items: center;
                .content-box{
                    display: flex;
                    gap: 20px;
                    width: 100%;
                    height: 100%;
                    .text-box2{
                        flex-basis: 100%;
                        h4{
                            font-size: 18px;
                        }
                        p{
                            font-size: 14px;
                            margin-top: 7px;
                        }
                    }
                    .material-img{
                        flex-basis: 40%;
                        display: flex;
                        justify-content: center;
                        transition: all 0.3s ease-in-out;
                        img{
                            width: 180px;
                            height: auto;
                            
                        }
                    }
                }
            }
        }
        
    }
}

/* Hover states */
.lifestyle-section .principles-container .blue-box:hover{
    width: 500px;
    background-color: #EBB455;
    color: #171B2D;
}

.lifestyle-section .principles-container .blue-box:hover .box-one{
    opacity: 0;
    pointer-events: none;
}

.lifestyle-section .principles-container .blue-box:hover .box-two{
    opacity: 1;
    z-index: 3;
}

.sustainability-section{
    .swiper-button-next {
        right: 0!important; /* Position at the edge of padding */
        color: #EBB455!important;
        transition: all 0.3s ease-in-out;
        }
        .swiper-slide{
            text-align: left;
        }

        .swiper-button-prev {
        left: 0!important; /* Position at the edge of padding */
        color: #EBB455!important;
        transition: all 0.3s ease-in-out;
        }
        .swiper-button-next:after, .swiper-button-prev:after{
            font-size: 35px!important;
        }
}



/* 
Chief Strategy & Marketing Officer
Bikram Basu serves as Chief Strategy & Marketing Officer
*/
@media(min-width: 769px) and (max-width: 1024px){
    .quotemsg h4{
        font-size: 32px;
        line-height: 36px;
    }
    .about-head h1{
        font-size: 45px;
        line-height: 47px;
    }
    .philosophy-section h2{
        font-size: 45px;
        line-height: 47px;
    }
    .life-at-rubics-section h2{
        font-size: 45px;
        line-height: 47px;
    }
    .our-mission .mission-text h4{
        font-size: 45px;
        line-height: 47px;
    }

    .sustainability-section h1{
        font-size: 45px;
        line-height: 47px;
    }

}

@media(min-width: 769px) and (max-width: 900px){
    .message-section .quotemsg {
        padding: 30px 0px;
    }
    .person img {
        margin-top: -29px;
    }
}
@media(min-width: 600px) and (max-width: 768px){
    .about-head h1{
        font-size: 45px;
    }
    .our-mission {
        gap: 20px;
        & .mission-text {
            p{
                padding-bottom: 10px;
            }
            h4 {
                font-size: 45px;
            }
        }
    }
    .our-vision {
        gap: 20px;
        & .vision-text {
            p{
                padding-bottom: 10px;
            }
            h4 {
                font-size: 45px;
            }
        }
    }
    .philosophy-section {
        & .philo-img {
            img {
                width: 90%;
            }
        }
    }
    .about-img img {
        width: 100%;
    }
    .section-heading{
        line-height: 47px;
    }
    .message-section .quotemsg {
        padding: 30px 0px;
        h4{
            font-size: 27px;
            line-height: 32px;
        }
    }
    .person img {
        width: 109%;
        margin-top: -35px;
    }
    .sustainability-section{
        padding: 50px 5%;
    }
    .sustainability-section .principles-container{
        /* .row-one{
            flex-wrap: wrap;
        } */
        h4{
            font-size: 18px;
        }
        /* .blue-box{
            flex-basis: 48%;

        } */
        /* .yellow-box{
            flex-basis: 100%;
            order: 3;
            .content-box{
                .material-img{
                    img{
                        width: 57%;
                    }
                }
                .text-box2{
                    h4{
                        font-size: 22px;
                    }
                    p{
                        font-size: 16px;
                    }
                }
            }
        } */
    }
}
@media(max-width: 600px){
    .about-img img {
        width: 70%;
    }
    .about-head h1 {
        text-align: center;
    }
    .about-head p{
        text-align: center;
    }
    .about-head{
        padding-top: 10px;
    }
    .life-at-rubics-section{
        flex-direction: column-reverse;
        gap: 20px;
        .philo-img{
            justify-content: center;
            img{
                width: 90%;
            }
        }
    }
    .philosophy-section{
        flex-direction: column-reverse;
        gap: 20px;
        .philo-img{
            justify-content: center;
            img{
                width: 90%;
            }
        }
    }
    .section-heading, .about-head h1, .sustainability-section h1, .philosophy-section h2, .life-at-rubics-section h2{
        font-size: 30px;
        line-height: 31px;
    }
    .philo-content h2{
        text-align: center;
    }
    .philo-content p{
        text-align: center;
    }
    
    .about-section{
        flex-direction: column;
    }
    .message-section{
        /* margin: 20px 0px; */
        flex-direction: column-reverse;
        gap: 30px;
        padding-bottom: 40px;
    }
    .person{
        display: flex;
        justify-content: center;
        img{
            width: 80%;
            margin-bottom: -37px;
        }
    }
    .our-vision{
        flex-direction: column;
        gap: 20px;
        .vision-img {
            justify-content: center;
        }
        .vision-head{
            text-align: center;
        }
        .vision-text p{
            text-align: center;
        }
    }
    .our-mission{
        flex-direction: column;
        gap: 0;
        
        .vision-head-p{
            text-align: center;
        }
        .missn-img{
            justify-content: center;
        }
    }
    .our-mission {
        padding: 50px 5%;
        .vision-img {
            display: flex;
            justify-content: center;
            img{
                width: 90%;
            }
            
        }
    }
    .missn-img{
        display: flex;
        justify-content: center;
        img{
            width: 90%;
        }
    }
    .our-mission .mission-text h4{
        line-height: 41px;
        font-size: 40px;
        text-align: center;
    }
    .our-vision .vision-text h4{
        line-height: 41px;
        font-size: 40px;
        text-align: center;
    }
    .our-mission .mission-text p{
        text-align: center;
    }
    
    .quotemsg{
        padding-top: 35px;
        padding-bottom: 60px;
    }
    .quotemsg h4{
        font-size: 26px;
        line-height: 32px;
    }
    .row-two{
        flex-direction: column;
        align-items: center;
    }
    .row-one{
        flex-direction: column;
        align-items: center;
    }
    .yellow-box .content-box{
        flex-direction: column;
        gap: 20px;
    }
    .sustainability-section{
        padding: 60px 5%;
    }
    .sustainability-section .principles-container{
        padding-top: 10px;
    }
    .sustainability-section .principles-container .blue-box{
        width: 100%;
        height: 260px;
        
        .box-two{
            width: 100%;
            height: 100%;
            .content-box{
                .text-box2{
                    h4{
                        font-size: 24px;
                        line-height: 24px;
                    }
                    p {
                        font-size: 16px;
                        margin-top: 10px;
                    }
                }
                .material-img{
                    img{
                        width: 130px;
                        height: 130px;
                    }
                }
            }
        }

    }
    .sustainability-section .principles-container .blue-box h4{
        font-size: 25px;
    }
    /* .sustainability-section .principles-container .yellow-box .content-box .text-box2 h4{
        font-size: 24px;
        line-height: 26px;
    } */
    .sustainability-section .principles-container .blue-box:hover{
        width: 100%;
        background-color: #e3c39a;
        color: #171B2D;
    }
}
@media(max-width: 400px){
    .section-heading, .about-head h1, .sustainability-section h1, .philosophy-section h2{
        font-size: 28px;
        line-height: 29px;
    }
    .our-mission .mission-text h4{
        font-size: 28px;
        line-height: 29px;
    }
    .sustainability-section .principles-container .blue-box{
        h4{
            font-size: 22px;
            line-height: 25px;
        }

    }
}
@media(min-width: 1440px){
    .about-section, .philosophy-section, .our-mission, .sustainability-section{
        padding-inline: 7%;
    }
    .about-head h1{
        font-size: 65px;
        line-height: 67px;
    }
    .about-head p{
        font-size: 18px;
        line-height: 24px;
    }
    .philosophy-section h2{
        font-size: 65px;
        line-height: 67px;
    }
    .life-at-rubics-section h2{
        font-size: 65px;
        line-height: 67px;
    }
    .philo-content p{
        font-size: 18px;
        line-height: 24px;
    }
    .philo-content p{
        font-size: 18px;
        line-height: 24px;
    }
    .our-mission .mission-text h4{
        font-size: 65px;
        line-height: 67px;
    }
    .our-mission .mission-text p{
        font-size: 18px;
        line-height: 24px;
    }
    .our-vision .vision-text h4{
        font-size: 65px;
        line-height: 67px;
    }
    .our-vision .vision-text p{
        font-size: 18px;
        line-height: 24px;
    }
    .quotemsg h4{
        font-size: 45px;
        line-height: 50px;
    }
    .sustainability-section h1{
        font-size: 65px;
        line-height: 67px;
    }
    .sustainability-section .principles-container .blue-box{
        width: 270px;
        h4{
            font-size: 20px;
        }
        .box-two .content-box .text-box2 p{
            font-size: 16px;
        }
        .box-two .content-box .text-box2 h4{
            font-size: 20px;
        }
    }
}


/* EBB455 */

/* team Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.505);
    backdrop-filter: blur(5px);
    overflow-y: hidden;   /* keep the overlay able to receive touch/wheel events */
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
}

.modal-content {
    position: relative;
    background: linear-gradient(145deg, #ffffff, #f0f0f0);
    margin: 5% auto;
    padding: 0;
    width: 90%;
    max-width: 1000px;
    max-height: 85vh;
    padding: 30px;
    /* Use calc to ensure it fits in viewport and becomes scrollable */
    max-height: calc(100vh - 80px);
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
    animation: modalSlideIn 0.4s ease-out;
    overflow-y: auto;   /* important: modal body scroll happens here */
}

/* make scrollbar styling apply to modal-content */
.modal-content::-webkit-scrollbar {
    width: 8px;
}
.modal-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}
.modal-content::-webkit-scrollbar-thumb {
    background: #EBB455;
    border-radius: 10px;
}
.modal-content::-webkit-scrollbar-thumb:hover {
    background: #EBB455;
}

/* when modal open, prevent background scroll via overflow hidden on body/html */
body.modal-open {
    overflow: hidden;
    /* remove position: fixed and width:100%; avoids layout jump */
}

/* rest of your styles unchanged */
.modal-header {
    background: transparent;
    padding: 0;
    margin-bottom: 20px;
}
.modal-header h2 {
    color: #171B2D;
    font-size: 2.3rem;
    margin-bottom: 5px;
    font-weight: 300;
    font-family: "Varela", sans-serif;
}

.modal-body {
    color: #333;
    line-height: 1.8;
}



.modal-body h3 {
    color: #171B2D;
    font-size: 1.1rem;
    margin-top: 8px;
    font-weight: 600;
    font-family: "Varela", sans-serif;
}

.modal-body h3:first-child {
    margin-top: 0;
}

.modal-body p {
    color: #555;
    margin-bottom: 7px;
    font-size: 0.9rem;
    line-height: 19px;
    font-family: "Raleway", sans-serif;
}

.modal-body ul {
    margin: 20px 0;
    padding-left: 20px;
}

.modal-body li {
    color: #555;
    margin-bottom: 7px;
    font-size: 0.8rem;
    line-height: 17px;
    font-family: "Raleway", sans-serif;
}
body.modal-open {
            overflow: hidden;
            position: fixed;
            width: 100%;
        }
.modal-body strong {
    color: #171B2D;
    font-weight: 600;
}


@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.close {
    position: absolute;
    right: 25px;
    top: 20px;
    color: #666;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
    transition: color 0.3s ease;
}

.close:hover {
    color: #000;
}
.close2 {
    position: absolute;
    right: 25px;
    top: 20px;
    color: #666;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
    transition: color 0.3s ease;
}

.close2:hover {
    color: #000;
}

.team-member-info {
    display: flex;
    align-items: center;
    /* padding: 40px; */
    gap: 40px;
}

.leader-img {
    flex-shrink: 0;
    width: 200px;
    height: auto;
    border-radius: 8px;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.leader-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.placeholder-avatar {
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
}

.team-text {
    flex: 1;
    text-align: left;
}

.team-text h2 {
    color: #171B2D;
    font-size: 2.5rem;
    margin-bottom: 5px;
    font-weight: 300;
    font-family: "Varela", sans-serif;
}


.team-text h3 {
    color: #171B2D;
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: 600;
    font-family: "Varela", sans-serif;
}

.team-text p {
    color: #555;
    margin-bottom: 7px;
    font-size: 0.9rem;
    line-height: 19px;
    font-family: "Raleway", sans-serif;
}

@media (max-width: 768px) {
    .team-member-info {
        flex-direction: column;
        text-align: center;
        /* padding: 30px 20px; */
        gap: 20px;
    }

    .team-text {
        text-align: center;
        
    }

    .buttons-container {
        flex-direction: column;
        align-items: center;
    }

    .team-button {
        width: 280px;
    }

    h1 {
        font-size: 2rem;
    }
}
@media (max-width: 608px) {
    .team-text{
        p{
            font-size: 0.7rem;
            line-height: 15px;
        }
    }
    .leader-img{
        width: 170px;
    }
}
@media(min-width: 1440px){
    .team-text{
        p{
            font-size: 1.1rem;
            line-height: 20px;
        }
    }
}

#enquire-now-modal{
    .modal-content{
        width: 30%;
    }
    h4{
        padding-top: 10px;
        font-family: "Varela", sans-serif;
        font-size: 16px;
    }
    small{
        font-family: "Raleway", sans-serif;
        font-size: 13px;
        color: #EBB455;
    }
    .form-box{
        padding-top: 15px;
        
        form{
            display: flex;
            gap: 20px;
            flex-direction: column;
            input{
                padding: 10px 16px;
                outline: none;
                border: 1px solid #171B2D;
                font-size: 16px;
                color: #171B2D;
                font-family: "Raleway", sans-serif;
            }
        }
    }
}
@media (max-width: 1100px) {
    #enquire-now-modal{
        .modal-content{
            width: 35%;
        }
    }
}
@media (max-width: 1000px) {
    #enquire-now-modal{
        .modal-content{
            width: 55%;
        }
    }
}
@media (max-width: 768px) {
    #enquire-now-modal{
        .modal-content{
            width: 75%;
        }
    }
}
@media (max-width: 508px) {
    #enquire-now-modal{
        .modal-content{
            width: 80%;
        }
    }
}
@media (max-width: 428px) {
    #enquire-now-modal{
        .modal-content{
            width: 90%;
        }
    }
}

#success-popup{
    .modal-content{
        width: 30%;
        p{
            font-size: 18px;
            color: #171B2D;
            font-family: "Raleway", sans-serif;
            text-align: center;
        }
    }
}
@media (max-width: 1000px) {
    #success-popup{
        .modal-content{
            width: 50%;
        }
    }
}
@media (max-width: 600px) {
    #success-popup{
        .modal-content{
            width: 80%;
        }
    }
}



footer{
    background-color: #f9f1e5;
    padding: 50px 5% 30px;
    color: #171B2D;
    font-family: "Raleway", sans-serif;
}
.footer-about{
    background-color: #171B2D;
    color: #fff;
}
.footer-content .comp-inf{
    width: 45%;
}
.footer-content h5{
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 5px;
    letter-spacing: 2.0px;
}
.footer-content p{
    font-size: 14px;
    line-height: 18px;
}
.footer-content hr{
    margin: 25px 0px;
    border-color: #EBB455;
}
.footer-content .copyright{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.social a{
    margin-inline: 2px;
}
.social i{
    color: #171B2D;
    transition: all 0.3s ease-in-out;
}
.social i:hover{
    color: #EBB455;
}
.footer-about .social i{
    color: #fff;
}
.footer-content .copyright .copyright-text{
    display: flex;
    gap: 20px;
}   

.copyright-text a{
    cursor: pointer;
}
@media(max-width: 768px){
    .footer-content .comp-inf{
        width: 65%;
    }
    .footer-content .copyright .copyright-text{
        flex-direction: column;
        gap: 3px;
    }
}
@media(max-width: 600px){
    .footer-content .comp-inf{
        width: 100%;
    }
    .footer-content .copyright{
        gap:10px;
    }
    .social{
        display:flex;
    }
}
@media(min-width: 1500px){
    .social a i{
        font-size: 20px;
    }
}
@media(min-width: 1440px){
    .footer-content h5{
        font-size: 24px;
    }
    .footer-content p{
        font-size: 18px;
        line-height: 23px;
    }
    footer{
        padding-inline: 7%;
    }
}

.video-banner {
        position: relative;
        height: 100dvh; /* Full screen initially */
        overflow: hidden;
}
.video-banner .content{
    position: absolute;
    width: 100%;
    top: 49%;
    transform: translateY(-50%);
    left: 50%;
    transform: translateX(-50%);
    /* background-color: #0000003a; */
    padding: 20px;
    text-align: center;
    /* backdrop-filter: blur(5px); */
}
.content h3{
    font-family: "Varela", sans-serif;
    font-size: 40px;
    color: #fff;
    text-transform: uppercase;
}
.content p{
    color: #fff;
    font-family: "Raleway", sans-serif;
    font-size: 14px;
    padding: 4px 0px;
    
}


.video-banner video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.video-banner::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0000009a;
}
@media(max-width: 600px){
    .video-banner .content{
        border-radius: 0px;
        top: 47%;
        h3{
            font-size: 25px;
        }
        p{
            font-size: 12px;
        }
    }
}

@media(min-width: 800px){
    .video-banner .content{
        p{
            font-size: 15px;
            width: 65%;
            margin: 0 auto;
        }
    }
}
@media(min-width: 1440px){
    .video-banner .content{
        h3{
            font-size: 45px;
        }
        p{
            font-size: 15px;
        }
    }
}