/* Custom Styles */
body {
    background: black;
}
@font-face {
    font-family: 'Suisse Intl';
    src: url('fonts/fonnts.com-Suisse_Intl_Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}
.outfit {
    font-family: "Outfit", sans-serif;
    font-optical-sizing: auto;
    font-weight: normal;
    font-style: normal;
}
.test-text {
    font-family: 'Suisse Intl', sans-serif !important;
}
body a {
    font-family: 'Suisse Intl', sans-serif !important;

}
body p {
    font-size: 1.1rem !important;
    font-weight: 300;
    letter-spacing: 0.5px;
    font-family: "Outfit", sans-serif;
}
body h2,
h4,
h3,
h5,
h6 {
    font-family: 'Suisse Intl', sans-serif !important;

}

/* NAVIGATION STARTS  */
.logo-text {
    font-weight: bold;
    font-size: 30px;
}
nav.navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
}
/* Optional: Make the navbar background slightly transparent for a more seamless overlay */
.navbar {
    padding: 1rem;
}
.nav-design {
    background: #3c3c3c3d;
    border-radius: 30px !important;
}
.nav-link {
    color: #f5f5f5 !important;
    text-decoration: none; 
    padding: 1rem 2rem;
    border-radius: 30px !important;
}
.nav-link:hover {
    color: #ffffff; 
}
.btn-custom {
    background-color: #d9534f;
    color: white;
    border-radius: 30px;
    padding: 1rem 2rem;
    text-decoration: none;
    box-shadow: inset 5px 5px 12px rgb(255 255 255 / 37%);
}
.btn-custom:hover {
    background-color: #F7BE87;
    color: black;
    border-radius: 30px;
    padding: 1rem 2rem;
}
/* NAVIGATION ENDS  */

/* SECTION ONE STARTS  */
.sec-one {
    padding-top: 100px;
    background-image: url('../img/s1-bg.png');
    background-size: cover;
    background-position: center;
    color: white;
    padding-bottom: 80px;
    position: relative;
}

.sec-one::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.sec-one .container-fluid {
    position: relative;
    z-index: 2;
}

.sec-one {
    background-color: #1b1b1b;
    color: white;
}

/* Main title and subtitle */
.sec-one h2 {
    color: white;
}
.sec-one h4 {
    color: #F7BE87; /* Yellow for emphasis */
}
/* Circular background */

.bg-circle {
    width: 600px;
    height: 600px;
    background-color: #d5403e24;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-94%, -50%);
    z-index: -1;
    filter: blur(80px);
}
/* SECTION ONE ENDS  */

/* SECTION TWO STARTS  */
.sec-two {
    padding-top: 80px;
    height: 380px;
    background-image: url('../img/s2-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    padding-bottom: 10rem;
    position: relative;
}
.text-global-light {
    color: #F7BE87;
}
.outfit-text {
    font-family: "Outfit", sans-serif !important;
    letter-spacing: 0.5px;
}
/* SECTION TWO Ends  */

/* section three starts  */
.sec-three {
    padding-top: 100px; /* Adjust padding to give space for the overlapping navbar */
    background-image: url('../img/s3-bg.png');
    background-size: cover;
    background-position: center;
    color: white;
    padding-bottom: 80px;
    position: relative;
}

/* section three ends */
/* section four starts  */

.sec-bg-circle {
    width: 600px;
    height: 600px;
    background-color: #f7be872e;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-200%, -35%);
    z-index: -1;
    filter: blur(80px);
}
/* section four ends */

/* sections five starts  */
.box {
    border: 1px solid #F7BE87;
    border-radius: 20px;
    padding: 25px 20px 25px 24px;
    background: #ffffff30;
    /* background: #ffffff1a; */
}

.sec-five {
    position: relative; /* So that the circle aligns with the section, not the container */
    overflow: hidden; /* Prevents any overflow from causing scrollbars */
}

.secfive-bg-circle {
    width: 500px;
    height: 500px;
    background-color: #d5403e21;
    border-radius: 50%;
    position: absolute;
    top: 50%; /* Center vertically in the section */
    right: 0; /* Aligns with the right edge of the section */
    transform: translate(40%, -50%); /* Moves half outside the section */
    z-index: -1;
    filter: blur(80px);
}

/* sections five ends */
/* section six starts  */
.sec-six {
    padding-top: 80px;
    background-image: url('../img/s6-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    padding-bottom: 10rem;
    position: relative;
}
/* section six ends  */

/* section seven faq  */
.faq-section {
    padding: 115px 0;
    color: white;
    text-align: center;
}

.faq-section p {
    color: #cccccc;
    font-size: 1rem;
    margin-bottom: 30px;
}
.faq-card {
    background-color: #2c2c2c;
    border: none;
    border-radius: 20px;
    margin-bottom: 15px;
    overflow: hidden;
}
.faq-card-header {
    padding: 2rem;
    font-size: 1.4rem;
    color: white;
    font-weight: 500;
    font-family: "Outfit", sans-serif;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: left;
    transition: background-color 0.3s ease;
}
.faq-card-header:hover {
    background-color: #F7BE87;
    color: black;
}
.faq-card-body {
    background-color: #F7BE87;
    padding: 0 2rem 1.3rem;
    color: black;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 0.5px;
    font-family: "Outfit", sans-serif !important;
}

.faq-indicator {
    transition: transform 0.2s ease;
}
.faq-indicator.rotate {
    transform: rotate(180deg); /* Rotates the arrow to point up */
}
/* Background color when FAQ is opened */
.faq-card-header.open {
    background-color: #F7BE87;
    color: black;
}

.faq-section {
    position: relative; /* So that the circle aligns with the section, not the container */
    overflow: hidden; /* Prevents any overflow from causing scrollbars */
}
.sec7-bgright-circle {
    width: 500px;
    height: 500px;
    background-color: #d5403e21;
    border-radius: 50%;
    position: absolute;
    top: 50%; /* Center vertically in the section */
    right: 0; /* Aligns with the right edge of the section */
    transform: translate(20%, 7%); /* Moves half outside the section */
    z-index: -1;
    filter: blur(80px);
}
.sec7-bgleft-circle {
    width: 500px;
    height: 500px;
    background-color: #f7be872e;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(-225%, 7%);
    z-index: -1;
    filter: blur(80px);

}
/* section seven faq  */

/* Footer Styles */
.footer {
    background-color: #D5403E; /* Red background color */
    color: #f4f4f4;
    padding: 40px 0;
}
.footer .logo {
    /* font-size: 1.5rem; */
    font-weight: bold;
    margin-bottom: 20px;
}
.footer-links {
    margin-bottom: 4rem;
}
.footer .footer-links h6 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: white;
}
.footer .footer-links li {
    list-style: none;
    margin-bottom: 5px;
}
.footer .footer-links li a {
    color: #f4f4f4;
    text-decoration: none;
    font-family: "Outfit", sans-serif !important;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    margin-top: 5px;
    font-weight: 200;
}
.footer .footer-links li a:hover {
    text-decoration: underline;
}
.footer hr {
    border-color: rgba(255, 255, 255, 0.2);
    margin: 20px 0;
}
.footer .copyright {
    font-size: 1.1rem;
    color: #fff;
    font-family: "Outfit", sans-serif !important;
    margin-top: 10px;
}

/* Media querry  */
@media(max-width:768px){
    .mobile-view{
        background: black!important;
        /* height: 100vh; */
        padding-bottom: 10px;
    }
    .nav-design{
        background:black;
    }
}
@media(max-width:768px){
    .container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        --bs-gutter-x: 1.5rem;
        --bs-gutter-y: 0;
        width: 100%;
        padding-right: calc(var(--bs-gutter-x)* .5)!important;
        padding-left: calc(var(--bs-gutter-x)* .5)!important;
        margin-right: auto;
        margin-left: auto;
    }
    .sec-one{
        padding-top: 8rem;
    }
    .s1-image{
        margin-top: 40px;
    }
    /* ---------- 1 ----------- */
    .sec-two{
        height: 80vh;
    }
    .s3-image{
        margin-bottom: 40px;
    }
    .s4-image{
        margin-top: 40px;
    }
    .box{
        margin-top: 10px;
    }
    .s6-image{
        margin-bottom: 40px;
    }
    /* -------- 2 ----------  */

}