body {
    overflow-x: hidden;
}

.text{
    color: #c9a485;
}

.hero img{
    height: 100vh;
    width: 100%;
}

/* Hero Section */
.hero {
    position: relative;
    text-align: center;
    color: white;
}
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Adjust opacity here (0.5 for 50% opacity) */
    z-index: 1;
}

.hero img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    position: relative;
    z-index: 0; /* Ensures image stays behind the overlay */
}

/*hero section image preview with image size*/
.hero .mobile_img{
    display: none;
}

.hero .pc_img{
    display: block;
}

@media (max-width: 430px) {
    .hero .mobile_img{
        display: block;
    }
    
    .hero .pc_img{
        display: none;
    }
}



/* Centered Content */
.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
}

/* .hero-content .explore-btn{
    background-color: white;
    width: 50%;
    border-radius: 30px;
} */

.hero-content .explore-btn {
    display: inline-block;
    padding: 12px 24px;
    font-size: 16px;
    /* width: 30%; */
    border-radius: 30px;
    color: #ffffff;
    background-color: #c9a07e;
    border: 2px solid transparent;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

.hero-content .explore-btn:hover {
    background-color: white;
    color: black;
    border: 1px solid #c9a485;
}

.hero-content .explore-btn:hover::after {
    content: " →";
    transition: all 0.3s ease-in-out;
}

/* @media (max-width: 1576px){
    .hero-content .explore-btn{
        width: 40%;
    }
} */

/* @media (max-width: 1182px){
    .hero-content .explore-btn{
        width: 50%;
    }
} */

@media (max-width: 473px){
    .hero-content .explore-btn{
        width: 300px;
    }
}


/* Navbar Customization */
.navbar {
    /* background: rgba(0, 0, 0, 0.5); Semi-transparent background */
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1000;
}

/* Logo Customization */
.navbar-brand img {
    height: 60px;
    /* filter: drop-shadow(2px 2px 5px rgba(0,0,0,0.5)); Adding shadow */
}


/* why section css */

.icon-container img {
    /* transition: transform 0.3s ease-in-out; */
    width: 40px;
}

.why:hover .icon-container img {
    transform: scale(1.2);
}

.why-section{
    background-color: #f5f5f5;
}

/* interested button  */

.btn-interested {
    display: inline-block;
    padding: 12px 24px;
    font-size: 16px;
    /* width: 30%; */
    border-radius: 30px;
    color: #fff;
    background-color: #000;
    border: 2px solid transparent;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

.btn-interested:hover {
    background-color: transparent;
    color: #000;
    border: 1px solid #000;
}

.btn-interested:hover::after {
    content: " →";
    transition: all 0.3s ease-in-out;
}

@media (max-width: 473px){
    .btn-interested{
        width: 220px;
    }
}


/* swiper image css */

.swiper-container {
    width: 80%;
    padding: 50px 0;
}
.swiper-slide {
    text-align: center;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.5s ease;
}
.swiper-slide img {
    width: 100%;
    height: 33vh;
    border-radius: 10px;
    transition: transform 0.5s ease, filter 0.5s ease;
}
.swiper-slide-prev img,
.swiper-slide-next img {
    transform: scale(0.8);
    filter: blur(2px);
    opacity: 0.6;
}

ul.starting {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px; /* Adjust spacing between items */
}

ul.starting li {
    position: relative;
    
}

ul.starting li:not(:last-child)::after {
    content: " | ";
    position: absolute;
    right: -12px; /* Adjust spacing */
    color: #000; /* Adjust color if needed */
}

/* Founder Section */
/* Founder Section */
.founder-section {
    position: relative;
    width: 100%;
    overflow: hidden;
}

/* Desktop Image Styling */
.founder-img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

/* Desktop View: Text on Left */
.founder-text {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.8); /* Light transparent background */
    padding: 20px;
    max-width: 40%;
    border-radius: 8px;
}

/* Mobile Image */
.founder-mobimg {
    width: 100%;
    height: auto;
}

/* Mobile View: Text Inside Image */
.founder-text-mob {
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: white;
    width: 80%;
    background: rgba(0, 0, 0, 0.5); /* Dark overlay for readability */
    padding: 15px;
    border-radius: 8px;
}

.founder-desktop{
    display: block;
}

.founder-mobile{
    display: none;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    
    .founder-desktop{
        display: none;
    }
    
    .founder-mobile{
        display: block;
    }
    
    
}

@media (max-width: 413px) {
    
    
   
    .founder-text-mob {
        top: 0%;
        width: 100%;
        font-size: 13px;
    }
}



/* form css */
.form-head{
    font-size: 75px;
}

@media (max-width:992px){
    .form-head{
        font-size: 55px;
    }
}

/* footer css */
.footer {
    background: #ededed;
    color: #000;
    padding: 20px 0;
    font-size: 17px;
}

.footer .social-icons a {
    color: #000;
    font-size: 20px;
    margin: 0 8px;
    transition: 0.3s;
}

.footer .social-icons a:hover {
    color: #c9a485;
}

.footer .privacy-link {
    color: #000;
    text-decoration: none;
    /* font-weight: 500; */
    font-size: 17px;
    transition: 0.3s;
}

.footer .privacy-link:hover {
    text-decoration: underline;
    color: #c9a485;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer .row {
        flex-direction: column;
    }
    .footer .col-md-4 {
        text-align: center;
        margin-bottom: 10px;
    }
}

