body,
html {
    height: 100%;
    margin: 0;
    overflow: hidden;
    
  scroll-behavior: smooth;

}

* {

    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Inter", sans-serif;
    overflow: hidden;
   background: transparent;
}

/* NAVBAR */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    background: white;
    z-index: 100000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.logo-container img {
    height: 30px;
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #0088cc;
}

.btn-book {
    background: #000;
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s;
}

.btn-book:hover {
    background: #333;
}

/* MAIN CONTENT */
.hero {
    width: 100vw;
    height: 100vh;
    position: relative;
    overflow: hidden;
    margin-top: 70px;
}

/* FRAMES */
.frame {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.frame.active {
  
    z-index: 10;
}

/* FRAME 1 - HERO */
.frame-1 {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-wrapper {
    width: 100%;
    height: 100%;
}

.bg-image,
.bg-image-2 {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
   object-position: center;
    position: absolute;
    top: 0;
    left: 0;
}

/* FRAME 2 - CONTENT */
.frame-2 {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    opacity: 0;
      transition: none;
}


.bg-image-frame2 {
    position: absolute;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: 1;
    overflow: hidden;

}

.mountain-slide {
   position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    object-fit: cover;
    display: block;
   transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.frame-content {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.text-content {
    position: absolute;
    top: 67%;
    left: 80%;
    transform: translate(-50%, -50%);
    max-width: 600px;
    width: 100%;
    z-index: 10;
    text-align: left;
    color: #FFFFFF;
}

.subtitle {
    font-size: 20px;
    margin-bottom: 0px;
    text-align: center;
}

.title {
    font-size: 50px;
    line-height: 1.2;
    margin: 5px 0;
    text-align: center;
}

.description {
    font-size: 50px;
    margin-top: -10px;
    text-align: center;
}



@keyframes floating {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-5px);
    }

    /* 15px upar jayega */
    100% {
        transform: translateY(0px);
    }
}

.scroll-down .mountain-slide {
   transform-origin: 90% 38%;
     transform: scale(1.2); 
}


.text-content p,
.text-content h1 {
    transition: all 0.8s ease-out 0.8s;
    transform: translateY(30px);
    opacity: 0;
}

.frame-2.active .text-content p,
.frame-2.active .text-content h1 {
    transform: translateY(0);
    opacity: 1;
}


/* ANIMATIONS */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translate(90px);
    }

    to {
        opacity: 1;
        transform: translate(0);
    }
}



/* slide up */
.in-about .mountain-slide {
  transform-origin: 50% 30%; 
    transform: scale(1);
    
}

.text-content {
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.in-about .text-content {
    transform: translate(-60%, -10%) scale(0.8) !important;

}

.about-full .frame-2 {
    filter: blur(5px);
    opacity: 0 ;
    pointer-events: none;
    transition: opacity 1.2s ease-in-out;
}

.about-full .mountain-slide {
    transform: translate(0%, -60%) scale(1.15) !important;
    transition: transform 1.2s ease-in-out !important;
}


.text-content {
    transition: all 1s ease-in-out;
}

.about-full .text-content {
    transform: translateY(-300px) scale(0.75) !important;
}
.about-section, .partners-section, .mountain-slide {
     transition: transform 1.2s ease-in-out, opacity 1.2s ease-in-out, filter 1.2s ease-in-out
}

/* .image-content { transition: opacity 0.8s ease-in-out; } */

.about-full .image-content {
    opacity: 0;
}

.about-section {
    padding: 30px 0;
    position: fixed;
    left: 0;
    top: 70px;
    width: 100%;
    height: calc(100vh - 70px);
    z-index: 999;
    background: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(100vh);
    pointer-events: none;
    opacity: 1;
     overflow: hidden;
}

.about-section.visible {
    transform: translateY(0);
    pointer-events: all;
}


.about-container {
    max-width: 1100px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0 60px;
}

.about-left {
    flex: 1.4;
    display: flex;
    flex-direction: column;

}

.about-left h2 {
    font-size: 25px;
    font-weight: 500;
    color: #fff;
}

.about-image img {
    width: 300px;
    height: auto;
    margin-top: -40px;
    filter: drop-shadow(0 20px 60px rgba(168, 162, 162, 0.9));
}

.about-section{
    will-change: transform, opacity;
    backface-visibility: hidden;
    transform-style: preserve-3d;
    z-index: 1000;
}

.smoke-layer3 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 300px;
    background: linear-gradient(to top,
            rgb(0, 0, 0) 0%,
            rgba(0, 0, 0, 0) 100%);
    z-index: 100;
    pointer-events: none;
}
.about-right {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.about-right p {
    font-size: 13px;
    color: #888;
    line-height: 1.8;
    margin-bottom: 20px;
}

.contact-btn {
    background: #fff;
    color: #000;
    border: none;
    padding: 10px 28px;
    border-radius: 25px;
    cursor: pointer;
    margin-bottom: 30px;
    font-weight: 600;
    font-size: 13px;
    width: fit-content;
}

.features {
    display: flex;
    flex-direction: column;
    font-size: 13px;
}

.features div {
    padding: 14px 0;
    border-bottom: 1px solid #222;
    color: #ffffff;
}

.feat-title {
    color:#d9c5c5;
    font-weight: 700;
    font-size: 15px;
}

.feat-sub {
    color: #666;
    font-size: 13px;
}

.red {
    color: #ff3b30;
}


 .partners-section {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 50vh;
    background: #f3f3f3;
    z-index: 2000;
    display: flex;
    overflow: hidden;
    align-items: center;
    justify-content: center;
    transform: translateY(100vh);
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.partners-wrapper {
    width: 100%;
    max-width: 900px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* GRID */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(5, 90px);
    gap: 10px;
} 

/* LOGO BOX */
.logo-item {
  
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.logo-item:hover {
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

/* IMAGE */
.logo-item img {
    width: 100%;
    height: auto;
    object-fit: contain;
}
.logo-item:nth-child(1) { background: #000000;height: 80px; }
.logo-item:nth-child(2) { background: #1a8ab5; }
.logo-item:nth-child(3) { background: #cc2222; }
.logo-item:nth-child(4) { background: #a0aee8; }
.logo-item:nth-child(5) { background: #b3aea3; }

/* Row 2 */
.logo-item:nth-child(6) { background: #b0c8f0; } /* LASCO - tall */
.logo-item:nth-child(7) { background: #000000; }
.logo-item:nth-child(8) { background: #f5c518; } /* VIKRAM - wide */
.logo-item:nth-child(9) { background: #1a6e7a; }
.logo-item:nth-child(10){ background: #00d4d4; }

.partners-content {
    max-width: 350px;
    display: flex;
    flex-direction: column;
    justify-content: center;

}

.txt-serving {
    font-size: 40px;
    margin: 0;
}

.txt-year {
    font-size: 40px;
    text-align: right;
    color: #e53935;
}

.txt-year span {
    color: #e53935;
}

.txt-tagline {
    font-size: 14px;
    color: #777;

}

/* BUTTON */
.btn-visit {
    display: inline-block;
    padding: 10px 22px;
    background: #000;
    color: #fff;
    border-radius: 25px;
    text-decoration: none;
    font-size: 10px;
    transition: 0.3s;
    width: fit-content;
    margin-top: 10px;
}

.btn-book:hover {
    background: #333;

}
.grid-fade-left {
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 100%;
    background: linear-gradient(to right, #f3f3f3 0, rgba(243,243,243,0) 100%);
    z-index: 2;
    pointer-events: none;
}

.grid-fade-right {
    position: absolute;
    right: 0;
    top: 0;
    width: 20px;
    height: 100%;
    background: linear-gradient(to left, #f3f3f3 0, rgba(243,243,243,0) 100%);
    z-index: 2;
    pointer-events: none;
}

.partners-grid {
    position: relative;
}
/* SECTION */
.engine-section,
.engine-section2,
.engine-section3,
.engine-section4,
.engine-section5,
.engine-section6,
.engine-section7,
.engine-section8,
.engine-section9,
.engine-section10 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 300;
    opacity: 0;
    pointer-events: none;
}

.red-shape {
    position: absolute;
    width:650px;
    height: 300px;
    background: #ED3237;
    border-radius: 0 90px 300px 0;
    z-index: 1;
    left: -50px;

}

.smoke-layer {
    position: absolute;
    left: -100px;
    width: 350px;
    height: 500px;
    background: linear-gradient(to right,
            rgb(255, 255, 255) 20%,
            rgba(255, 255, 255, 0) 100%);
    filter: blur(-50px);
    z-index: 2;
    pointer-events: none;/
}

.engine-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0px;
}

.engine-visual {
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 600px;
}

.engine-visual img {
    position: relative;
    width: 100%;
    z-index: 2;
    animation: float 3s ease-in-out infinite;
}
.right-side .engine-content {
    flex: 1;
    max-width: 420px;
   margin-right:-30px; 
}
.left-side .engine-content {
    flex: 1;
    max-width: 420px;
    margin-left: 20px;
}
.engine-content h1 {
    font-size: 64px;
    font-weight: 700;
    margin: 0;
    line-height: 1.1;
}
.engine-content p {
    font-size: 16px;
    color: #666;
    margin: 20px 0 30px;
    line-height: 1.6;
}

.btn-primary {
    display: inline-block;
    padding: 12px 26px;
    background: #222;
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    font-size: 14px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.red-shape2 {
    position: absolute;
    width: 600px;
    height: 300px;
    background: #ED3237;
    border-radius: 90px 0px 0px 250px;
    z-index: 1;
    right: -40px;

}

.smoke-layer2 {
    position: absolute;
    right: -100px;
    width: 350px;
    height: 500px;
    background: linear-gradient(to left,
            rgb(255, 255, 255) 20%,
            rgba(255, 255, 255, 0) 100%);
    filter: blur(-50px);
    z-index: 2;
    pointer-events: none;
}
 

.engine-section .engine-visual img {
    position: relative;
    width: 80%;
    z-index: 2;
    left:50px;
}


.double .image-group {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.double .first-img {
    width: 80%;
    position: relative;
    z-index: 2;
    top: 20px;
    margin-right: -100px;
}

.double .second-img {
    width: 80%;
    position: relative;
    z-index: 3;
    margin-left: -90px;
}
.engine-section7 .engine-visual {
    overflow: visible;
}
.double1 .image-group {
  position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-left: 0px;
}
.double1 .first-img {
    position: absolute;
    width: 50%;
    left: 0px;
    z-index: 2;
    height: auto;
    right: -10px;
}

.double1 .second-img {
    width: 50%;
    height: auto;
    position: relative;
    left: 0px;
    z-index: 4;
}
@keyframes float {
    0%   { transform: translateY(0px); }
    50%  { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.choose {
    display: block;
    width: 100vw;
    min-height: 100vh;
    background-color: #ffffff !important;
    margin: 0;
    padding-top:60px;
    visibility: visible !important;
    opacity: 1 !important;
     overflow-y: hidden;
}


.choose h2 {
    text-align: center;
    font-size: 2rem;
    margin-top: 20px;
    margin-bottom: 10px;
}

.choose p {
    text-align: center;
    margin-bottom: 30px;
    color: #666;
}
.grid2{
    padding-top: 50px;
}
.grid-container {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
    width: 100%;
    margin: 0 auto;
    padding: 20px 30px;
}


.card {
    position: relative;
    height: 350px;
    border-radius: 10px;
    overflow: hidden;
    background: #f9f9f9;
    width: 100%;
    display: flex;
    flex-direction: column;
    object-fit: cover;
    box-shadow: 0 10px 15px #020101(190, 173, 173, 0.05);
    transition: all 0.4s ease;
    cursor: pointer;
   
}

.card:hover {
    transform: scale(1.03);
    /* 12% zoom */

}

.card-2 p {
    order: 1;
}

.card-2 image {
    order: 2;
}

.card-1,
.card-2,
.card-3 {
    grid-column: span 2;
}

.card-4,
.card-5 {
    grid-column: span 3;
}

.card img {
    width: 100%;
    object-fit: cover;
    flex-grow: 1;
    top: 0;
    left: 0;
    z-index: 2;
}


.card p {
    position: relative;
    z-index: 4;
    font-size: 13px;
    font-weight: bolder;
    justify-content: center;
    align-items: center;
}

.grid-container2{
     display: flex;
    flex-direction: row;
    gap: 20px;
    width: 100%;
    max-width: 650px;
    margin: 0 auto;
    padding-bottom: 50px;
    padding-top: 20px;
}


.grid-container2 .card {
    position: relative; 
    border-radius: 10px;
    overflow: hidden;       
}

.grid-container2 .card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.overlay {
    text-align: left;
    position: absolute; 
    bottom: -2px;
    left: 0;
    right: 0;
    padding: 5px 10px;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.85) 0%,
        rgba(0, 0, 0, 0.4) 60%,
        transparent 100%
    );
    
}

.overlay .quote {
    font-size: 10px;
    color: #ffffff;
    line-height: 1.5;
    margin-bottom: 8px;
    text-align: left;
}

.overlay .name {
    font-size: 10px;
    color: #cccccc;
    text-transform: uppercase;
    text-align: left;
}

/* Container Fixes */
.footer-wrapper {
    width: 100%;
     background: #0a0a0a;
    
    font-family: 'Inter', sans-serif;
}


.cta-section {
    position: relative;
    background: radial-gradient(circle at center, #e31e24 0%, #7a0b0e 100%);
    padding: 60px 20px;
    text-align: center;
    color: white;
    overflow: hidden;
}

.cta-content {
    overflow: hidden;
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta-section h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-section p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 30px;
    line-height: 1.6;
    color:#DDD0D0;
}

.contact-btn {
    display: inline-block;
    background: white;
    color: #333;
    padding: 12px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.contact-btn:hover {
    transform: scale(1.05);
}

.circles::before,
.circles::after,
.circles span {
    content: '';
    position: absolute;
    top: 110%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: transparent;
}

.circles::before { width: 500px; height: 500px;  background-color: rgba(255,255,255,0.1);}
.circles::after  { width: 600px; height: 600px; background-color:  rgba(255,255,255,0.06); }
.circles span    { width: 700px; height: 700px; background-color:  rgba(255,255,255,0.07); }

.footer-bottom {
    background: linear-gradient(to bottom, 
        rgba(10,10,10,0) 0%,
        rgba(10,10,10,0.8) 20%,
        #0a0a0a 50%
    );
        padding: 20px 17px;
    
}

.flex{
    display: flex;
    flex-direction: row;
    gap: 60px;
    margin-bottom: 10px;
  
}
.footer-logo img {
    margin-top: 10px;
    height: 30px; /* Adjust based on logo */
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    margin-right: 20px;
    font-size: 0.9rem;
}
.social-icons{
    position: absolute;
    right: 18px;
}
.social-icons img{
    width: 20px;
}
.social-icons a {
    color: white;
    margin-left: 15px;
   
    opacity: 0.8;
}

.footer-divider {
    border: 0;
    border-top: 1px solid #222;
    margin-bottom: 10px;
}

.footer-legal {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
}

.legal-links a {
    color: #999;
    text-decoration: none;
    margin-left: 20px;
}
.cta-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to bottom, transparent 0%, #0a0a0a 100%);
    z-index: 1;
}