@font-face {
    font-family: 'Satoshi';
    src: url('../fonts/Satoshi-Regular.woff2') format('woff2'),
         url('../fonts/Satoshi-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Satoshi';
    src: url('../fonts/Satoshi-Bold.woff2') format('woff2'),
         url('../fonts/Satoshi-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Instrument Serif';
    src: url('../fonts/InstrumentSerif-Italic.woff2') format('woff2'),
         url('../fonts/InstrumentSerif-Italic.woff') format('woff');
    font-weight: normal;
    font-style: italic;
}

/* Apply italic font */
.italic-text {
    font-family: 'Instrument Serif', serif;
    font-style: italic;
}



* /* Hide scrollbar for Chrome, Safari and Opera */
::-webkit-scrollbar {
  display: none;
}

::selection {
    background-color: #ffcc00; /* Change background color */
    color: #000; /* Change text color */
}

/* Hide scrollbar for IE, Edge and Firefox */
html {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

html {
  scroll-behavior: smooth;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Satoshi', sans-serif;
}
body{
    height: auto;
    background: #0A0A0A !important;
}


.main-heading{
    font-size: clamp(2rem, 0.3333rem + 5.3333vw, 5rem);
    color: #ffffff;
    text-align: center;
    padding: 0 10rem 0 10rem !important;
    letter-spacing: -0.04em;
    margin: 3rem 3rem 3rem 3rem;
    cursor: default;
}
@media (max-width: 1110px) {
    .main-heading {
        font-size: 3.75rem !important; /* Set font size */
        text-align: center !important; /* Align text to the left */
        margin: 0 !important;
        margin-bottom: 24px !important;
    }
}
@media (max-width: 432px) {
    .main-heading {
        font-size: 2.375rem !important; /* Set font size */
        text-align: left !important; /* Align text to the left */
        margin: 0 !important;
        margin-bottom: 24px !important;
    }
}

@media (max-width: 400px) {
    .main-heading {
        font-size: 2.375rem !important; /* Set font size */
        text-align: left !important; /* Align text to the left */
        margin: 0 !important;
        margin-bottom: 24px !important;
    }
}




.sub-heading-1{
    font-size: clamp(0.9rem, 0.7056rem + 0.6222vw, 1.25rem);
    color: #AEA8A8;
    font-weight: 500;
    padding: 0 14rem 0 14rem !important;
    text-align: center;
    letter-spacing: -0.02em;
    cursor: default;
}


@media (max-width: 1200px) {
    .main-heading,
    .sub-heading-1 {
        padding: 0 !important; /* Removes left and right padding */
    }
}

@media (max-width: 1110px) {
    .sub-heading-1 {
        font-size: 1.125rem !important;
        text-align: center !important;
        margin: 0 4rem 0 4rem;
    }
}
@media (max-width: 432px) {
    .sub-heading-1 {
        font-size: 1rem !important;
        text-align: left !important;
        margin: 1.5rem 0 0 0 !important;
    }
}
@media (max-width: 400px) {
    .sub-heading-1 {
        font-size: 1rem !important; /* Set font size */
        text-align: left !important; /* Align text to the left */
    }
}



.sub-heading{
    font-size: clamp(0.9rem, 0.7056rem + 0.6222vw, 1.25rem);
    color: #AEA8A8;
    font-weight: 500;
    text-align: center;
    letter-spacing: -0.02em;
    max-width: 50rem;
    word-break: break-word;
    margin: 0 auto;
    display: block;
    max-width: 40rem;
    cursor: default;
}

@media (max-width: 1200px) {
    .main-heading,
    .sub-heading {
        padding: 0 !important; /* Removes left and right padding */
    }
}

.sub-heading-about{
    font-size: clamp(0.9rem, 0.7056rem + 0.6222vw, 1.25rem);
    color: #AEA8A8;
    font-weight: 500;
    text-align: center;
    letter-spacing: -0.02em;
    max-width: 62.5rem;
    word-break: break-word;
    margin: 0 auto;
    display: block;
    cursor: default;
}

@media (max-width: 1200px) {
    .sub-heading-about {
        padding: 0 !important; /* Removes left and right padding */
    }
}

/*.navbar {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.75rem;
    max-width: 40.125rem;
    width: 100%;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.5rem 4rem;
}*/

.navbar {
    background: rgba(0, 0, 0, 0); /* Light transparent background */
    backdrop-filter: blur(10px); /* Frosted glass effect */
    -webkit-backdrop-filter: blur(10px); /* For Safari */
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.75rem;
    max-width: 40.125rem;
    width: 100%;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: slideDown 0.8s ease-out forwards;
}
/* Navbar Slide Down Animation */
/*@keyframes slideDown {
    from {
        top: -80px;
        opacity: 0;
    }
    to {
        top: 0;
        opacity: 1;
    }
}*/

@media (max-width: 992px) {  /* Apply when screen width is below 992px */
    .navbar {
        margin-top: 0 !important;
        background-color: black !important;  /* Change background to black */
        border: none !important; /* Remove border */
        width: 100% !important;
        max-width: 100% !important;
        border-radius: 0 !important;
    }
}


.navbar .container {
    max-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.navbar-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.65rem;
}

/*@media (max-width: 990px) {
    .navbar-nav {
        gap: 0.65rem;
    }
}*/


/* Navbar Brand & Links */
.navbar .navbar-brand,
.navbar .nav-link {
    color: white !important;
    font-size: 0.875rem;
    font-weight: 500;
}

.navbar .nav-link:hover {
    color: #f8f9fa !important;
}

/* Navbar Toggler Icon */
.navbar-toggler {
    border: none;
}

.navbar-toggler-icon {
    filter: invert(1);
}
/*@media (max-width: 992px) {
    .navbar-nav {
        width: 100%;
        text-align: left !important;
        align-items: flex-start !important;
    }
}*/

@media (max-width: 991px) {
  .navbar-collapse .navbar-nav {
    align-items: flex-start !important;
    text-align: left;
    padding-left: 1.25rem;
  }
}

@media (max-width: 991px) {
  .navbar-collapse {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #101010;
    display: flex;
    transition: all 0.3s ease-in-out;
    z-index: 1050;
  }

  .navbar-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .navbar-nav .nav-link {
    font-size: 1.25rem;
    color: white !important;
    padding: 0.625rem;
    text-align: left;
  }

  .navbar-toggler {
    position: absolute;
    right: 20px;
    top: 15px;
    z-index: 1100;
  }

  .navbar-toggler-icon {
    filter: invert(1); /* Make the icon white */
  }
}


.logo{
    width: 3.14181rem;
    height: 3.14181rem;
}
.logo-mobile {
    display: none;
}
@media (max-width: 992px) {
    .logo {
        display: none;
    }
    .logo-mobile {
        display: block;
    }
}



.btn.book-navbtn{
    border-radius: 0.625rem;
    background-color: #FFFFFF;
    color: #000000;
    padding: 0.563rem 0.813rem;
    font-size: 0.875rem;
    font-weight: 700;
    transition: background-color 0.3s ease-in-out, box-shadow 0.31s ease-in-out;
}
.btn.book-navbtn:hover{
    background-color: #ffffff;
    color: #000000;
    box-shadow: 0 0 2px 3px rgba(174, 168, 168, 0.5);
}


.navbar-toggler{
    border: 0 !important;
    }
.navbar-toggler:focus,
.navbar-toggler:active {
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
}


.btn.book-btn{
    display: flex;
    height: 3.25rem;
    padding: 0.84781rem 2rem;
    justify-content: center;
    align-items: center;
    gap: 0.7065rem;
    color: #000000;
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    border-radius: 0.75rem;
    border: 1.13px solid #C9C9C9;
    background: #FFF;
    transition: background-color 0.3s ease-in-out, box-shadow 0.31s ease-in-out;
}
.btn.book-btn:hover{
    border-radius: 12px;
    background-color: #ffffff;
    color: #000000;
    box-shadow: 0 0 2px 3px rgba(174, 168, 168, 0.5);
}

@media (max-width: 432px) {
    .btn.book-btn,
    .btn.learn-btn {
        max-width: 100%;
        width: 20.938rem;
        height: 2.75rem;
        font-size: 0.938rem !important;
        padding: 0.75rem 1.5rem;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: auto;
    }
}
@media (max-width: 400px) {
    .btn.book-btn,
    .btn.learn-btn {
        max-width: 100%;
        width: 20.938rem;
        height: 2.75rem;
        font-size: 0.938rem !important;
        padding: 0.75rem 1.5rem;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: auto;
    }
}
@media (max-width: 375px) {
    .btn.book-btn,
    .btn.learn-btn {
        max-width: 100%;
        width: 20.938rem; /* Set fixed width */
        height: 2.75rem;  /* Make buttons full width */
        padding: 0.75rem 1.5rem; /* Adjust padding */
        font-size: 0.938rem !important;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: auto;
    }
}
@media (max-width: 475px) {
    .no-ml-475 {
        margin-left: 0 !important;
        width: 15rem !important;
    }
}



.btn.learn-btn{
    display: flex;
    height: 3.25rem;
    padding: 0.84781rem 2rem;
    justify-content: center;
    align-items: center;
    gap: 0.7065rem;
    border-radius: 0.75rem;
    border: 1.13px solid #FFF;
    background-color: transparent;
    color: #ffffff;
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 700;
    border-color: rgba(255,255,255, 0.5);
    transition: background-color 0.3s ease-in-out, box-shadow 0.31s ease-in-out, color 0.4s ease-in-out;
}

.btn.learn-btn:hover{
    background-color: #ffffff;
    color: #000000;
    border-color: rgba(255,255,255, 0.5);
    /*box-shadow: 0 0 2px 3px rgba(174, 168, 168, 0.5);*/
}


.image-container {
    position: absolute;
    width: 100%;
    display: flex;
    justify-content: center;
    top: 76%;
    z-index: -1;
    padding: 0 10%;
}

.floating-image {
    max-width: 100%;
    height: auto;
    padding:
}


@media (max-width: 1200px) {
    .card.home-card {
        margin-top: 5.25rem !important; /* Removes top margin */
    }
    .main-heading.m-5 {
        margin: 0 !important;
    }
}


.item.carousel-item-custom {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 50px; /* Adjust as needed */
}

/* Styles for the image */
.carousel-image-custom {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.section-container{
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 440px) {
    .section-container {
        justify-content: start !important;
    }
}

.btn.section-head{
    border-radius: 0.75rem;
    border: 0.5px solid rgba(255, 255, 255, 0.40);
    background-color: #0A0A0A;
    color: #ffffff;
    padding: 0.6rem 1rem;
    font-size: 1rem;
    font-weight: 500;
    cursor: default; /* Prevents pointer cursor */
    user-select: none; /* Prevents text selection */
    pointer-events: none; /* Disables all mouse interactions */
}

.btn.section-head:hover,
.btn.section-head:focus,
.btn.section-head:active {
    background-color: #0A0A0A !important; /* Prevent color change */
    color: #ffffff !important; /* Keep text color the same */
    border: 0.5px solid rgba(255, 255, 255, 0.40) !important;
}



.main-2-heading{
    font-size: clamp(2.375rem, 1.6111rem + 2.4444vw, 3.75rem);
    color: #ffffff;
    text-align: center;
    padding: 0 10rem 0 10rem !important;
    letter-spacing: -0.04em;
    max-width: 75rem;
    word-break: break-word;
    margin: 0 auto;
    display: block;
    cursor: default;
}

@media (max-width: 1200px) {
    .main-2-heading  {
        padding: 0 !important; /* Removes left and right padding */
    }
}
@media (max-width: 400px) {
    .main-2-heading{
        text-align: left;
    }
}
@media (max-width: 432px) {
    .main-2-heading{
        text-align: left;
    }
}

@media (max-width: 1110px) {
    .sub-heading,
    .sub-heading-about  {
        text-align: center !important;
        font-size: 1.125rem;
        margin: 0 auto !important;
    }
}
@media (max-width: 432px) {
    .sub-heading,
    .sub-heading-about {
        text-align: left !important;
        font-size: 1rem;
    }
}
@media (max-width: 400px) {
    .sub-heading,
    .sub-heading-about {
        text-align: left !important;
        font-size: 1rem;
    }
}




.slick-list {
    display: flex;
    justify-content: center; /* Centers the items horizontally */
    align-items: center; /* Centers items vertically */
    padding: 0 15px;
}

.heading-3{
    font-size: clamp(1.75rem, 1.0556rem + 2.2222vw, 3rem);
    color: #ffffff;
    text-align: center;
    padding: 0 2rem 0 2rem !important;
    cursor: default;
}
@media (max-width: 1200px) {
    .heading-3  {
        padding: 0 !important; /* Removes left and right padding */
    }
}
@media (max-width: 400px) {
    .heading-3  {
        text-align: center;

    }
}

@media (max-width: 432px) {
    .heading-3  {
        text-align: center;
    }
}



.card.client-card{
    background: #0D0D0D;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 2.125rem;
    padding: 0.625rem;
}
.video-frames {
    width: 100%;
    border-radius: 1.5rem !important;
    border: 1px solid rgba(255,255,255,0.2) !important;
}


@media (max-width: 990px) {
    .card.client-card {
        padding: 0.5rem !important;
        margin-top: 0 !important;
    }
}
@media (max-width: 1110px) {
    .card.client-card {
        padding: 0.5rem !important;
        margin-top: 0 !important;
    }
}


.card-title-2{
    color: #ffffff;
    font-size: 1.3rem;
}

.card-text-2{
    color: #AEA8A8 !important;
    font-size: 1rem;
}
.card-text-3{
    color: #AEA8A8 !important;
    font-size: 0.875rem;
}
.card-text-4{
    color: #AEA8A8 !important;
    font-size: 0.75rem;
}

.card.portfolio-card {
    width: 23.75rem;
    height: 25rem;
    position: relative;
    overflow: hidden;
    border-radius: 1.5rem;
    border: 0.5px solid rgba(255,255,255,0.2);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-end;
    background-color: transparent !important;
}


.card-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 1rem;
    color: white;
    background: linear-gradient(to top, rgba(0, 0, 0, 5.5), rgba(0, 0, 0, 0.6), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 40%;
}

@media (max-width: 1110px){
    .card.portfolio-card{
        margin-top: 0 !important;
    }
}


@media (max-width: 432px){
    .card.portfolio-card{
        margin-top: 0 !important;
    }
}
@media (max-width: 400px){
    .card.portfolio-card{
        margin-top: 0 !important;
    }
}


/*.portfolio-card-wrapper {
    border-radius: 1.5rem;
    overflow: hidden;
    width: 23.75rem;
    height: 25rem;
    border: 0.5px solid rgba(255, 255, 255, 0.20);
}

.card.portfolio-card {
    width: 100%;
    height: 100%;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-end;
}

.card-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 1.5rem;
    color: white;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 40%;
}*/


.portfolio-title {
    font-size: 1.75rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.portfolio-subtitle {
    font-size: 1rem;
    margin: 0;
}
.portfolio-card .card-overlay{
    border-radius: 1.5rem;
}

.card.team-card {
    width: 22.75rem;
    height: 24rem;
    position: relative;
    overflow: hidden;
    border-radius: 1.5rem;
    border: 0.5px solid rgba(255,255,255,0.2);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-end;
    background-color: transparent !important;
}

@media (max-width: 400px){
    .card.team-card{
        margin: 0 !important;
    }
}
@media (max-width: 432px){
    .card.team-card{
        margin: 0 !important;
    }
}

/* Overlay stays at the bottom */
.team-card .card-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 1.5rem;
    color: white;
    background: linear-gradient(to top, rgba(0, 0, 0, 6.5), rgba(0, 0, 0, 0.95), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 40%; /* Ensures the overlay covers a portion of the card */
}



.card.custom-card {
    border: 0.5px solid rgba(255, 255, 255, 0.20);
    border-radius: 1.5rem;
    text-align: center;
    padding: 3rem 1.5rem;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

@media (max-width: 475px){
    .section-2{
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
}

@media (max-width: 400px){
    .card.custom-card, .card.custom-card-3, .card.custom-card-2{
        margin: 0 !important;
    }
    .card.custom-card .card-body,
    .card.custom-card-2 .card-body,
    .card.custom-card-3 .card-body {
        padding: 0 !important;
    }
}
@media (max-width: 432px){
    .card.custom-card, .card.custom-card-3, .card.custom-card-2{
        margin: 0 !important;
    }
    .card.custom-card .card-body,
    .card.custom-card-2 .card-body,
    .card.custom-card-3 .card-body {
        padding: 0 !important;
    }
}

@media (max-width: 1110px){
    .card.custom-card, .card.custom-card-3, .card.custom-card-2{
        margin: 0 !important;
    }
    .card.custom-card .card-body,
    .card.custom-card-2 .card-body,
    .card.custom-card-3 .card-body {
        padding: 0 !important;
    }
}

.card-title-3{
    font-size: 2.625rem;
    color: #ffffff;
    cursor: default;
}

.card-subtitle-3{
    font-size: 0.875rem;
    color: #7E7676;
    font-weight: 700;
    cursor: default;
}

.card.custom-card-2 {
    border: 0.5px solid rgba(255, 255, 255, 0.20);
    border-radius: 1.5rem;
    text-align: center;
    padding: 3rem 1.5rem;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

@media (max-width: 1200px) {
    .section-2  {
        padding: 0.25rem !important; /* Removes left and right padding */
        margin: 0 2rem 0 2rem;!important;
    }
}
@media (max-width: 1200px) {
    .section-3  {
        padding: 0.25rem !important; /* Removes left and right padding */

    }
}



.card.custom-card-3 {
    border: 0.5px solid rgba(255, 255, 255, 0.20);
    border-radius: 1.5rem;
    text-align: center;
    padding: 3rem 1.5rem;
}

.title-4{
    font-size: 1.5rem;
    color:#4d4d4d;
    cursor: default;
}

.title-4, .home-section-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px; /* Adjust to match both elements */
    margin-bottom: 1rem; /* Same margin */
    padding: 0; /* Ensure no extra padding */
    text-align: center;
}


.home-section-logo {
    max-width: 150px; /* Adjust as needed */
    object-fit: contain;

}

.section-2{
    margin-top: 4rem;
}

.section-2 .row {
    align-items: center; /* Align content properly */
    justify-content: center;
}
/* Ensure the column content is centered */
.row-cols-md-2 > .col {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Ensure cards align properly under the headings */
.card.compare-card-1, .card.compare-card-2 {
    width: 100%;
    max-width: 32.5rem;
    text-align: left;
}

@media (max-width: 442px) {
    .title-4 {
        text-align: left;
        justify-content: flex-start;
    }

    .row-cols-md-2 > .col {
        align-items: flex-start;
        text-align: left;
    }
}
.card.compare-card-1{
    border: 0.5px solid rgba(255,255,255,0.2);
    border-radius: 1.5rem;
    padding: 2rem;
    max-width: 32.5rem;
    max-height: 20.5rem;
}
@media (max-width: 400px){
    .card.compare-card-1, .card.compare-card-2{
        margin: 0 !important;
    }
    .card.compare-card-1 .card-body,
    .card.compare-card-2 .card-body{
        padding: 0 !important;
    }
}
@media (max-width: 432px){
    .card.compare-card-1, .card.compare-card-2{
        margin: 0 !important;
    }
    .card.compare-card-1 .card-body,
    .card.compare-card-2 .card-body{
        padding: 0 !important;
    }
}
@media (max-width: 1110px){
    .card.compare-card-1, .card.compare-card-2{
        margin: 0 !important;
    }
    .card.compare-card-1 .card-body,
    .card.compare-card-2 .card-body{
        padding: 0 !important;
    }
}

.sub-2{
    color: #FFFFFF8F;
}

.card.compare-card-2{
    border: 0.5px solid rgba(255, 255, 255, 0.20);
    border-radius: 1.5rem;
    padding: 2rem;
    max-width: 32.5rem;
    max-height: 20.5rem;
}

.sub-3{
    color: #ffffff;
}

.check-item, .cross-item{
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0.5rem 0;
    cursor: default;
}
.checkmark {
    color: #ff4533;
    font-size: 1.2rem;
    flex-shrink: 0;
}
.crossmark {
    color: #FFFFFF8F;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.check-item p {
    margin: 0;
    color: white;
    flex: 1;
}
.cross-item p {
    margin: 0;
    color: #FFFFFF8F;
    flex: 1;
}


.lottie-title{
    font-size: 1.75rem;
    text-align: center;
    cursor: default;
}

.lottie-subtitle{
    font-size: 1.125rem;
    text-align: center;
    font-size: clamp(0.9rem, 0.7056rem + 0.6222vw, 1.25rem);
    color: #AEA8A8;
    font-weight: 500;
    text-align: center;
    letter-spacing: -0.02em;
    cursor: default;
}


@media (max-width: 1200px) {
    .footer-body {
        padding: 0 !important; /* Removes padding */
    }
}


.card.newsletter {
    background: transparent; /* Semi-transparent white */
    backdrop-filter: blur(10px); /* Blur effect */
    -webkit-backdrop-filter: blur(10px); /* Safari support */
    border-radius: 1.5rem; /* Rounded corners */
    border: 1px solid rgba(255, 255, 255, 0.2); /* Light border for depth */
    color: #ffffff; /* White text for contrast */
}

.sub-heading-footer{
    font-size: clamp(0.9rem, 0.7056rem + 0.6222vw, 1.25rem);
    color: #AEA8A8;
    font-weight: 500;
    padding: 0 1rem 0 1rem !important;
    text-align: center;
    max-width: 43.5rem;
    word-break: break-word;
    margin: 0 auto;
    display: block;
    cursor: default;
}

@media (max-width: 1200px) {
    .sub-heading-footer {
        padding: 0 !important; /* Removes left and right padding */
    }
}
@media (max-width: 432px) {
    .sub-heading-footer{
        text-align: left;
        margin: 0 1rem 0 1rem;
    }
}

.position-absolute{
    top: 65%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 50%;
    height: auto;
    z-index: -1;
}
@media (max-width: 850px) {
    .position-absolute{
        top: 54%;
        max-width: 60%;
    }
}
@media (max-width: 750px) {
    .position-absolute{
        top: 32%;
        max-width: 70%;
    }
}
@media (max-width: 520px) {
    .position-absolute{
        top: 37%;
        max-width: 90%;
    }
}
@media (max-width: 450px) {
    .position-absolute{
        top: 33%;
        max-width: 100%;
    }
}



.card.footer{
    background: rgba(0, 0, 0, 0.3); /* Semi-transparent white */
    backdrop-filter: blur(10px); /* Blur effect */
    -webkit-backdrop-filter: blur(10px); /* Safari support */
    border-top: 0.5px solid rgba(255, 255, 255, 0.20);
    border-bottom: 0.5px solid rgba(255, 255, 255, 0.20);
}

.footer-logotext{
    font-size: 2rem;
    color: #ffffff;
}

.footer-text{
    font-size: 1.125rem;
    color: #ffffff;
    cursor: default;
}

.footer-subtext{
    font-size: 1rem;
    color: #7E7676;
    font-weight: 700;
    max-width: 29.0625rem;
    cursor: default;
}

.btn.notify-btn{
    border-radius: 12px;
    background-color: #FFFFFF;
    color: #000000;
    padding: 0.563rem 0.813rem;
    font-size: 0.875rem;
    font-weight: 700;
    transition: background-color 0.3s ease-in-out, box-shadow 0.31s ease-in-out;
}
.btn.notify-btn:hover{
    background-color: #ffffff;
    color: #000000;
    box-shadow: 0 0 2px 3px rgba(174, 168, 168, 0.5);
}


.btn.notify-btn:focus{
    border-radius: 12px;
    background-color: #ff1600 !important;
    color: #ffffff !important;
    box-shadow: 0 0 2px 3px rgba(255,22,0, 0.5) !important;
}

.form-control.book-form {
    background-color: #1c1c1c !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    box-shadow: none !important;
    border-radius: 0.75rem !important;
    padding: 1rem !important;
}

.form-control.book-form::placeholder {
    color: rgba(126, 118, 118, 0.35) !important;
    font-weight: 700 !important;
}

.form-control.book-form:focus {
    background-color: #1c1c1c !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    box-shadow: none !important;
    border-radius: 0.75rem !important;
    padding: 1rem !important;
}

.form-check-input.book-check {
    width: 1.125rem;
    height: 1.125rem;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease-in-out;
}
/* When Checkbox is Checked */
.form-check-input.book-check:checked {
    background-color: #101010;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.form-check-input:checked[type=checkbox] {
    --bs-form-check-bg-image: none !important;
}
/* Change checkmark color */

.form-check-input:checked::after {
    content: "\2713";
    font-size: 1.2rem;
    color: #ff4533;
    font-weight: bold;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

/* Remove default focus outline */
.form-check-input.book-check:focus {
    box-shadow: none;
}
.form-check-input.book-check:checked::before {
    display: none !important;
}

.footer-sub{
    font-size; 1rem;
    font-weight: 700;
    color: #ffffff;
}
.footer-sub-2{
    font-size: 0.875rem;
    color: #7E7676;
    font-weight: 700;
}
.footer-link{
    text-decoration: none;
    color: #7E7676;
}
.footer-link:hover{
    text-decoration: none;
    color: #7E7676;
}

.footer-menu {
    display: flex;
    gap: 15px; /* Adjust spacing between items */
    flex-wrap: wrap; /* Ensures responsiveness */
}

.footer-navlinks{

}
@media (max-width: 500px){
    .card.footer-card{
    margin-top: 0 !important;
}

}


/*CURSOR DOT**/

/*.cursor-dot {
    width: 0.925rem;
    height: 0.925rem;
    background-color: #FF4533;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    transform: translate(-90%, -90%);
    z-index: 9999;
}*/



.portfolio-area {
    position: relative;
    overflow: hidden;
    background: #0A0A0A; /* Matches body background */
}

/* Gradient overlay (left and right) */
.gradient-overlay {
    position: absolute;
    top: 0;
    width: 15%; /* Adjust for more/less gradient coverage */
    height: 100%;
    pointer-events: none; /* Ensure carousel is clickable */
    z-index: 2;
}

.gradient-overlay.left {
    left: 0;
    background: linear-gradient(to right, #0A0A0A, rgba(10, 10, 10, 0));
}

.gradient-overlay.right {
    right: 0;
    background: linear-gradient(to left, #0A0A0A, rgba(10, 10, 10, 0));
}

@media (max-width: 768px) {
    .gradient-overlay {
        display: none;
    }
}

.mask-group-img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.card.land-image{
    overflow: visible;
    min-height: unset; /* Remove fixed height */
    height: auto; /* Let the image determine the height */
    position: relative; /* Keep it within the section */
}

.header {
    position: relative;
    text-align: center;
}

.underlay-img {
    position: absolute;
    bottom: -12rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 38.375rem;
    /*max-width: 34.375rem;*/
    opacity: 0.9;
    z-index: -1;
}

@media (max-width: 950px) {
    .underlay-img {
        width: 100% !important; /* Increase width */
        bottom: -7rem !important; /* Adjust position */
    }
}
@media (max-width: 432px) {
    .underlay-img {
        width: 110% !important; /* Increase width */
        bottom: -1rem !important; /* Adjust position */
    }
}

.container.innovation-container{
    margin-top: 12rem;
}
@media (max-width: 400px) {
    .innovation-container{
        margin-top: 5rem !important;
    }
}

@media (max-width: 432px) {
    .innovation-container{
        margin-top: 5rem !important;
    }
}

.container.container-2{
    margin-top: 10rem;
}
@media (max-width: 400px) {
    .container.container-2{
        margin-top: 5rem;

    }
}
@media (max-width: 432px) {
    .container.container-2{
        margin-top: 5rem;

    }
}
.container.here-container{
    margin-top: 14rem;
}

@media (max-width: 400px){
    .container.here-container{
        margin-top: 7rem;
    }
}
@media (max-width: 432px){
    .container.here-container{
        margin-top: 7rem;
    }
}

.container.container-3{
    margin-top: 12rem;
}
@media (max-width: 400px){
    .container.container-3{
        margin-top: 6rem;

    }
}
@media (max-width: 432px){
    .container.container-3{
        margin-top: 6rem;

    }
}

.lottie-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-bottom: 15px; /* Add spacing between the animation and the text */
}


.card.process-card{
     background: #0A0A0A; color: #FFFFFF;
     border: 0 !important;
     width: 23.75rem;
     height: 25rem;
     padding: 3rem;
}

@media (max-width: 750px){
    .card.process-card{
        margin-top: 0 !important;
    }
}

@media (max-width: 432px){
    .card.process-card{
        margin-top: 0 !important;
        padding: 0 !important;
    }
}
@media (max-width: 400px){
    .card.process-card{
        margin-top: 0 !important;
        padding: 0 !important;
    }
}



.testimonials-container {
    display: flex;
    gap: 20px;
    overflow: hidden;
    width: 90%;
    max-width: 1000px;
    justify-content: center;
}

/* Ensure the columns are flexible */
.testimonial-column {
    width: 30%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    overflow: hidden;
    height: 300px;
    position: relative;
}

/* Style for individual testimonials */
.testimonial {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    animation-duration: 8s;
    animation-iteration-count: infinite;
}

/* Animations */
.scroll-top-bottom .testimonial {
    animation-name: scrollTopBottom;
    animation-timing-function: linear;
}

.scroll-bottom-top .testimonial {
    animation-name: scrollBottomTop;
    animation-timing-function: linear;
}

/* Keyframes */
@keyframes scrollTopBottom {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100%); }
}

@keyframes scrollBottomTop {
    0% { transform: translateY(100%); }
    100% { transform: translateY(-100%); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .testimonials-container {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .testimonial-column {
        width: 90%;
        height: 200px;
    }

    .testimonial {
        padding: 15px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .testimonial-column {
        width: 100%;
        height: 180px;
    }

    .testimonial {
        padding: 10px;
        font-size: 12px;
    }
}
}

.card.review-card{
    background-color: #0D0D0D !important;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 1.5rem;
    width: 23.75rem;
    height: 25rem;
}
@media (max-width: 400px){
    .card.review-card{
        margin: 0 !important;
    }
}
@media (max-width: 432px){
    .card.review-card{
        margin: 0 !important;
    }
}

.review-text{
    font-size: 1rem;
    color: #AEA8A8;
    font-weight: 500;
    letter-spacing: -0.02em;
}

.card-body.review-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.image-background {
    background-size: cover;
    height: 200px; /* Adjust height as needed */
    width: 100%;
    transform: translateX(-50%);
}


@keyframes blurFadeIn {
    from {
        filter: blur(20px);
        opacity: 0;
    }
    to {
        filter: blur(0);
        opacity: 1;
    }
}

/*.main-heading, .sub-heading-1, .animate-blur {
    animation: blurFadeIn 2.5s ease-out forwards;
}
.animate-blur {
    animation: blurFadeIn 2s ease-out forwards;
}*/


.blur-text {
    opacity: 0;
    filter: blur(10px);
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, filter 0.8s ease-out, transform 0.8s ease-out;
}


.blur-text.visible {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
}



/* Default cursor hidden */
/*body {
    cursor: none;
}*/

/* Custom Cursor Styling */
.custom-cursor {
    position: fixed;
    width: 8.5rem;
    height: 8.5rem;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px); /* Glass effect */
    -webkit-backdrop-filter: blur(10px); /* Safari support */
    color: white;
    border: 0.5px solid rgba(255, 255, 255, 0.4); /* Thin glass border */
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    text-align: center;
    pointer-events: none; /* Prevents it from blocking clicks */
    transform: translate(-50%, -50%) scale(0); /* Initially hidden */
    transition: transform 0.2s ease-out, background 0.3s ease-in-out;
    z-index: 9999; /* Ensure it stays on top */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}


/* Cursor Text Styling */
.custom-cursor span {
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    font-size: 1rem;
    font-weight: 500;
}

.custom-cursor strong {
    font-size: 1.5rem;
    font-weight: 500;
}

/* Ensure team-card has a lower z-index */
.team-card {
    position: relative; /* Ensure it's positioned but below cursor */
    z-index: 1;
}

/* Show cursor when hovering over team card */
.team-card:hover ~ .custom-cursor {
    transform: translate(-50%, -50%) scale(1);
}



/**resposniveness from top*/

@media (max-width: 1199px) {
    .container.main-container {
        margin-top: 10rem !important;
    }
}

@media (max-width: 768px) {
    .card.custom-card-3 {
        background-size: 75% auto, 75% auto !important; /* Bigger images on small screens */
    }
}

@media (max-width: 480px) {
    .card.custom-card-3 {
        background-size: 75% auto, 75% auto !important; /* Further increase for mobile */
    }
}


.accordion-container {
    max-width: 50rem;
    margin: auto;
}

.accordion {
    margin: auto !important;
}

.accordion-item {
    background-color: #111 !important;
    border: none !important;
    margin-bottom: 8px !important;
    border-radius: 6px !important;
}

.accordion-button {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    width: 100%;
    padding: 1.25rem !important;
    padding-right: 3rem !important;
    background-color: #0A0A0A  !important;
    color: white !important;
    border-radius: 0.75rem !important;
    border: 0.5px solid rgba(255, 255, 255, 0.20) !important;
    font-size: 1.125rem !important;
    font-weight: 500 !important;
    justify-content: space-between !important;
    position: relative;
    transition: background 0.3s ease-in-out, color 0.2s ease-in-out;
}

.button-text {
    width: 100%; /* Ensure full width */
    text-align: left; /* Left align the text */
}

.accordion-button:focus {
    box-shadow: none !important;
}

/* Custom '+' and '-' icon for expansion */
.accordion-button::after {
    content: "+" !important;
    font-size: 24px !important;
    font-weight: 500 !important;
    color: white !important;
    transition: transform 0.3s ease-in-out !important;
    background-image: none !important;
    position: absolute;
    right: 30px;
    transform: translateY(0%);
     display: flex;
    align-items: center;
    justify-content: center;
    width: 24px; /* Ensures '+' and '-' occupy the same space */

}

.accordion-button:not(.collapsed)::after {
    content: "-" !important;
    transform: translateY(-18%);
    transform: rotate(0deg) !important;
}

/* Hide the body content initially */
.accordion-body {
    font-size: 1.25rem !important;
    font-style: normal;
    font-weight: 500 !important;
    color: #7E7676; !important;
    display: none; /* Initially hidden */
    padding: 1.5rem 0 0 0 !important;
}

/* Show the body text inside the button when expanded */
.accordion-button[aria-expanded="true"] .accordion-body {
    display: block;
    padding-top: 8px;
}



/* Hide the body content initially */
.accordion-body {
    font-size: 1.25rem !important;
    font-style: normal;
    font-weight: 500 !important;
    color: #7E7676; !important;
    display: none; /* Initially hidden */
    padding: 1.5rem 0 0 0 !important;
}

/* Show the body text inside the button when expanded */
.accordion-button[aria-expanded="true"] .accordion-body {
    display: block;
    padding-top: 8px;
}




/***ABOUT PAGE**/



.main-heading-about{
    font-size: clamp(2rem, 0.3333rem + 5.3333vw, 5rem);
    color: #ffffff;
    text-align: center;
    padding: 0 10rem 0 10rem !important;
    letter-spacing: -0.04em;
    margin: 3rem 3rem 3rem 3rem;
    cursor: default;
}

@media (max-width: 1200px) {
    .main-heading-about,
    .sub-heading-1 {
        padding: 0 !important; /* Removes left and right padding */
    }
}
@media (max-width: 1110px) {
    .main-heading-about {
        font-size: 3.75rem !important; /* Set font size */
        text-align: center !important; /* Align text to the left */
        margin: 0 !important;
        margin-bottom: 1.5rem !important;
    }
}
@media (max-width: 432px) {
    .main-heading-about {
        font-size: 2.375rem !important; /* Set font size */
        text-align: left !important; /* Align text to the left */
        margin: 0 !important;
        margin-bottom: 1.5rem !important;
    }
}

@media (max-width: 400px) {
    .main-heading-about {
        font-size: 2.375rem !important; /* Set font size */
        text-align: left !important; /* Align text to the left */
        margin: 0 !important;
        margin-bottom: 1.5rem !important;
    }
}

.main-heading-works{
    font-size: clamp(2rem, 0.3333rem + 5.3333vw, 5rem);
    color: #ffffff;
    text-align: center;
    padding: 0 10rem 0 10rem !important;
    letter-spacing: -0.04em;
    margin: 3rem 0rem 3rem 0rem;
    cursor: default;
}

@media (max-width: 1200px) {
    .main-heading-works,
    .sub-heading-1 {
        padding: 0 !important; /* Removes left and right padding */
    }
}
@media (max-width: 1110px) {
    .main-heading-works {
        font-size: 3.75rem !important; /* Set font size */
        text-align: center !important; /* Align text to the left */
        margin: 0 !important;
        margin-bottom: 1.5rem !important;
    }
}
@media (max-width: 432px) {
    .main-heading-works {
        font-size: 2.375rem !important; /* Set font size */
        text-align: left !important; /* Align text to the left */
        margin: 0 !important;
        margin-bottom: 1.5rem !important;
    }
}

@media (max-width: 400px) {
    .main-heading-works {
        font-size: 2.375rem !important; /* Set font size */
        text-align: left !important; /* Align text to the left */
        margin: 0 !important;
        margin-bottom: 1.5rem !important;
    }
}

.sub-heading-2{
    font-size: clamp(0.9rem, 0.7056rem + 0.6222vw, 1.25rem);
    color: #AEA8A8;
    font-weight: 500;
    text-align: center;
    cursor: default;
}



@media (max-width: 1200px) {
    .card {
        margin-top: 5.25rem !important; /* Removes top margin */
    }
}


.card.rotated-image-card {
    overflow: visible;
    min-height: unset; /* Remove fixed height */
    height: auto; /* Let the image determine the height */
    position: relative; /* Keep it within the section */
}

.rotated-img {
    position: absolute;
    top: -3.5rem; /* Adjust positioning */
    left: 50%;
    transform: translateX(-50%) rotate(180deg); /* Rotate the image */
    width: 80%; /* Adjust size */
    max-width: 600px;
    opacity: 0.9;
    z-index: -1; /* Push the image behind the text */
}

@media (max-width: 1200px) {
    .rotated-img {
        top: -8.5rem; /* Adjust position for smaller screens */
    }
}

@media (max-width: 600px) {
    .rotated-img {
        top: -3.5rem; /* Adjust position for smaller screens */
    }
}



.sub-heading-3{
    font-size: 1rem;
    color: #AEA8A8;
    font-weight: 500;
    cursor: default;

}


.main-heading-3{
    font-size: 3rem;
    color: #ffffff;
    letter-spacing: -0.04em;
    text-align: left;
}

.subtext-1{
    color: #ffffff;
    font-size: 1.8rem;
    text-align: left;
}
.subtext-2{
    font-size: 1rem;
    color: #7E7676;
    font-weight: 500;
    text-align: left;
    color: #ffffff;
    list-style: disc;
    padding-left: 1.25rem;
}
.subtext-2 li {
    margin-bottom: 1.25rem;
}

.subtext-3{
    font-size: 1.125rem;
    color: #7E7676;
    font-weight: 700;
    text-align: left;
}
.subtext-4{
    font-size: 1rem;
    color: #7E7676;
    font-weight: 700;
    text-align: left;
}

.card.career-card{
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.75rem;
    margin: 0;
}
.job-card {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 2rem;
    border-radius: 0.75rem;;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    margin: 0;
}

.job-card div {
    flex: 1;
    min-width: 150px; /* Ensures elements don't shrink too much */
    text-align: left;
}
.apply-btn {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}
.apply-btn:hover {
    text-decoration: underline;
}

.job-list-head{
    color: #CCC;
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    cursor: default;
}

.section-career{
    max-width: 70rem;
    padding: 2rem;
    margin: 0 auto; /* Centers the section */
}

@media (max-width: 1200px) {
    .section-career {
        padding: 0;
    }
    }

.section-book{
    max-width: 50rem;
    padding: 2rem;
    margin: 0 auto; /* Centers the section */
}

@media (max-width: 1200px) {
    .section-book {
        padding: 0;
    }
    }


.container.about-innovation-container{
    margin-top: 6rem;
}
@media (max-width: 432px) {
    .about-innovation-container{
        margin-top: 5rem !important;
    }
}
@media (max-width: 400px) {
    .about-innovation-container{
        margin-top: 5rem !important;
    }
}

.about-img-cover {
    width: 100%;
    max-width: 78.1rem;
     aspect-ratio: 78.1 / 37.6;
    border-radius: 1.875rem;
    background-position: center;
    background-repeat: no-repeat;
    background-position: 50% 0% !important;
    margin-bottom: 4.5rem;
}

@media (max-width: 460px) {
    .about-img-cover {
        margin-bottom: 2.5rem !important;
    }
}

.about-heading-2{
    color: #FFF;
    font-family: Satoshi;
    font-size: 3rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    max-width: 35rem;
    margin-bottom: 3.75rem;
}

@media (max-width: 460px) {
    .about-heading-2 {
        margin-bottom: 0 !important;
    }
}

.card.about-contents{
    border : 0;
    background: transparent;
}

@media (max-width: 750px) {
    .card.about-contents {
        margin: 1rem !important;
    }
}

.about-phase{
    max-width: 78.0625rem;
    cursor: default;
}

.icon8 {
    filter: invert(1);
}

.about-content-head{
    color: #FFF;
    font-family: Satoshi;
    font-size: 1.875rem;
    font-style: normal;
    font-weight: 500;
    line-height: 2.5rem;
    letter-spacing: -0.05rem;
    max-width: 13.36rem;
    margin-bottom: 1.5rem;
}

.about-content-heada{
    color: #FFF;
    font-family: Satoshi;
    font-size: 1.875rem;
    font-style: normal;
    font-weight: 500;
    line-height: 2.5rem;
    letter-spacing: -0.05rem;
    max-width: 14.36rem;
    margin-bottom: 1.5rem;
}

.about-content-text{
    color: #CCC;
    leading-trim: both;
    text-edge: cap;
    font-family: Satoshi;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.75rem; /* 175% */
    letter-spacing: 0.0025rem;
}

.card.service-card{
    background: transparent;
}

.service-title{
    color: #FFF;
    font-family: Satoshi;
    font-size: 3.4375rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    cursor: default;
}

.service-text{
    color: #7E7676;
    font-family: Satoshi;
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    cursor: default;
}

a.btn.service-btn{
    display: flex;
    height: 2.68rem;
    width: 9.125rem;
    padding: 1.25rem 1.5rem;
    justify-content: center;
    align-items: center;
    gap: 0.7065rem;
    color: #ffffff;
    font-size: 1rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    border-radius: 0.5rem;
    border: 1px solid #FF4533;
    background: #FF4533;
    transition: background-color 0.3s ease-in-out, box-shadow 0.31s ease-in-out;
}
a.btn.service-btn:hover{
    border-radius: 0.5rem;
    background-color: #FF4533;
    color: #ffffff;
    box-shadow: 0 0 2px 3px rgba(255,69,51,0.5);
}

@media (max-width: 432px) {
    a.btn.service-btn,
    {
        max-width: 100%;
        width: 20.938rem;
        height: 2.75rem;
        font-size: 0.938rem !important;
        padding: 0.75rem 1.5rem;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: auto;
    }
}
@media (max-width: 400px) {
    a.btn.service-btn,
   {
        max-width: 100%;
        width: 20.938rem;
        height: 2.75rem;
        font-size: 0.938rem !important;
        padding: 0.75rem 1.5rem;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: auto;
    }
}
@media (max-width: 375px) {
    a.btn.service-btn,
    {
        max-width: 100%;
        width: 20.938rem; /* Set fixed width */
        height: 2.75rem;  /* Make buttons full width */
        padding: 0.75rem 1.5rem; /* Adjust padding */
        font-size: 0.938rem !important;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: auto;
    }
}



.service-img-cover {
    width: 100%;
    max-width: 35.5rem;
    height: 100%;
    max-height: 35.5rem;
    aspect-ratio: 1/1;
    border-radius: 1.5rem;
    background-position: 50% 0% !important;
}

@media (max-width: 460px) {
    .service-img-cover {
        margin-bottom: 2.5rem !important;
    }
}

.card-body.service-body > * {
    margin-bottom: 2rem;
}
.card-body.service-body > *:last-child {
    margin-bottom: 0;
}


.gap-div{
    margin-bottom: 7.5rem;
}

.service-features{
    padding: 0.75rem;
    cursor: default;
}

.card.service-contents{
    border : 0;
    background: transparent;
    max-width: 19.5rem;
}

@media (max-width: 750px) {
    .card.service-contents {
        margin: 1rem !important;
    }
}

.service-content-head{
    color: #FFF;
    font-family: Satoshi;
    font-size: 1.875rem;
    font-style: normal;
    font-weight: 500;
    line-height: 2.5rem;
    letter-spacing: -0.05rem;
    margin-bottom: 1.5rem;
}

.service-container{
    margin-bottom: 12.5rem;
}

@media (max-width: 750px) {
    .service-container {
       margin-bottom: 7.5rem;
    }
}

.career-heading{
    color: #FFF;
    font-family: Satoshi;
    font-size: 3rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    cursor: default;
}

.section-career{
    max-width: 78.3rem;
     margin: 0 auto; /* Centers the section */
}

@media (max-width: 1200px) {
    .section-career {
        padding: 0;
    }
    }

.btn.career-btn-selector{
    color: #CCC;
    font-family: Satoshi;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    pointer-events: none;
}
.btn.career-btn-selector:hover{
    color: #CCC;
    font-family: Satoshi;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.btn.career-btn-selector:focus{
    color: #CCC;
    font-family: Satoshi;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.btn-secondary.dropdown-career {
    color: white !important;
    background: transparent !important;
    border: none !important;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.btn-secondary.dropdown-career:hover {
    color: white !important;
    background: transparent !important;
    border: none !important;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.btn-secondary.dropdown-career::after {
    border-top-color: white !important;
    border-bottom-color: white !important;
}

.custom-flex {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    padding: 2rem;
    padding-inline: 2rem;
}

.custom-flex .col {
    text-align: left;
    padding-inline: 1rem;
}

@media (max-width: 768px) {
    .custom-flex {
        flex-direction: column;
        padding: 1rem;
        padding-inline: 1rem;
    }

    .custom-flex .col {
        width: 100%;
        text-align: left;
        padding-inline: 0.5rem;
    }
}

.career-text-1{
    color: #FFF;
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    letter-spacing: -0.01125rem;
    text-align: left;
    cursor: default;
}

.career-text-2{
    color: #FFF;
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: -0.01125rem;
    cursor: default;
}

.career-text{
    color: #CCC;
    font-family: Satoshi;
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
}
.orange-pointer {
    position: fixed;
    width: 1.25rem;
    height: 1.25rem;
    background-color: #FF4533 !important;
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-40%, -50%);
    transition: width 0.2s ease, height 0.2s ease;
    z-index: 9999;
}

.orange-pointer.is-hovering {
    width: 1.8rem; /* Slightly larger */
    height: 1.8rem; /* Slightly larger */
    opacity: 0.7; /* Slightly transparent */
}

@media (max-width: 768px) { /* Adjust breakpoint as needed */
    .orange-pointer {
        display: none;
    }
}


#departmentFilter, #locationFilter {
    background: none;
    border: none !important;
    color: #FFF;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 1.5rem;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white' width='16px' height='16px'%3E%3Cpath d='M7 10l5 5 5-5H7z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 1.1rem;
}

#departmentFilter:focus, #locationFilter:focus {
    border: none !important;
    box-shadow: none !important;
}



/* Dropdown wrapper styling */
.dropdown {
    position: relative;
}

/* Style dropdown options */
#departmentFilter option {
    background: #101010;
    color: #ffffff;
    padding: 10px;
}

/* Change dropdown option hover background */
#departmentFilter option:hover {
    background: orange !important;
    color: white !important;
}
/* Style dropdown options */
#locationFilter option {
    background: #101010;
    color: #ffffff;
    padding: 10px;
}

/* Change dropdown option hover background */
#locationFilter option:hover {
    background: orange !important;
    color: white !important;
}

.alert {
    border-radius: 12px !important;
    background: transparent !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    max-width: 50rem !important;
    margin: 0 auto !important;
}

.g-recaptcha {
    transform: scale(0.8);
    transform-origin: center;
}
.g-recaptcha {
    display: block; /* Ensures it behaves as a block element */
    width: fit-content; /* Prevents unnecessary stretching */
}
.g-recaptcha {
    margin-left: 0 !important;
}

.form-control.newsletter-email {
    background-color: #1c1c1c !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    box-shadow: none !important;
    border-radius: 0.75rem !important;
    max-width: 23.875rem;
    min-width: 19rem;
    width: 100%;
}

.form-control.newsletter-email::placeholder {
    color: rgba(126, 118, 118, 0.35) !important;
    font-weight: 700 !important;
}

.form-control.newsletter-email:focus {
    background-color: #1c1c1c !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    box-shadow: none !important;
    border-radius: 0.75rem !important;
}

.container.privacy-container{
    max-width: 62.5rem;
}

/* Reduce size of pagination dots */
.owl-dots .owl-dot span {
    width: 6px !important;  /* Adjust the width */
    height: 6px !important; /* Adjust the height */
}

/* Optional: Reduce active dot size */
.owl-dots .owl-dot.active span {
    width: 6px !important;
    height: 6px !important;
}

/**HOMEPAGE DELAY HEADING**/

.word {
    opacity: 0;
    transform: translateY(10px);
    display: inline-block;
    animation: fadeInUp 0.5s ease-in-out forwards;
}

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