html, body {
    overflow-x: hidden;
     margin: 0;
    padding: 0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial;
}

body {
    overflow-x: hidden;
    background: #000;
    margin: 0%;
    padding: 0px;
}

/* NAVBAR */
.navbar {
    width: 100%;
    height: 70px;
    background: #0a0a0a;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 30px;

    position: relative;   /* 🔥 IMPORTANT */
    top: 0;
    left: 0;

    z-index: 9999;
}



.normal-nav {
    position: static;   /* scroll with content */
}

/* LOGO LEFT */
.logo img{
    height: 60px;
    display: flex;
    align-items: center;
}

/* MENU CENTER */
.side-menu {
    display: flex;
    align-items: center;
    gap: 48px;   /* 🔥 spacing between items */
}

/* LINKS */
.side-menu a {
    color: rgb(255, 255, 255);
    text-decoration: none;
    font-size: 16px;
}

.side-menu a:hover {
    color: goldenrod;
}

/* DROPDOWN BASE */
.dropdown {
    position: relative;
}

/* BUTTON */
.drop-btn {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* DROPDOWN CONTENT */
.drop-content {
    position: absolute;
    top: 100%;
    left: 0;
    background: #000;          /* 🔥 BLACK BG */
    min-width: 220px;
    display: none;
    flex-direction: column;
      z-index: 2000;
}

/* 🔥 HOVER = OPEN */
.dropdown:hover > .drop-content {
    display: flex;
}

/* LINKS */
.drop-content a {
    color: white;              /* 🔥 GOLD TEXT */
    padding: 10px;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.drop-content a:hover {
    background: #111;
    color: goldenrod;
}

/* 🔥 SUB DROPDOWN (RIGHT SIDE OPEN) */
#SchoolMenu {
    top: 0;
    left: 100%;   /* 👉 side open hoga */
}

#SchoolMenu.show {
    display: flex;
}

/* ensure parent is relative */
.dropdown .dropdown {
    position: relative;
}

/* RIGHT BUTTON */
.quote-btn-box {
    display: flex;
    align-items: center;
}

.quote-btn {
    font-weight: 500;
    background: rgb(0, 0, 0);
    color: white;
    border: none;
    padding: 10px 18px;
    font-size: 15px;
    cursor: pointer;
    border: 2px solid white;
    border-radius: 8px;
   
}

.quote-btn:hover {
    color: rgb(212, 158, 22);
}

.show {
    display: flex !important;
}

/* MOBILE FIX */
@media (max-width: 768px){

    /* 🔥 STOP LEFT-RIGHT SCROLL */
    body {
        overflow-x: hidden;
    }

    /* NAVBAR */
    .navbar {
        height: 60px;
        padding: 0 15px;
    }

    /* 🔥 MENU ICON */
   .menu-icon {
        display: block !important;
        position: absolute;
        right: 15px;
        top: 50%;
        color: #fff;
        transform: translateY(-50%);
        z-index: 9999;
    }
    
     .dropdown:hover > .drop-content {
        display: none;
    }
    
 

    /* 🔥 SIDE MENU FIX */
    .side-menu {
        display: none;
        flex-direction: column;   /* 🔥 vertical */
        align-items: flex-start;

        width: 100%;
        background: #000;

        position: absolute;
        top: 60px;
        left: 0;

        padding: 10px 20px;
        gap: 0;   /* 🔥 gap hata */
    }

    .side-menu.active {
        display: flex;
    }

    /* 🔥 NAV ITEMS LINE BY LINE */
    .side-menu a {
        width: 100%;
        padding: 12px 0;
        border-bottom: 1px solid #222;
        font-size: 15px;
    }

    /* 🔥 DROPDOWN FIX */
    .drop-content {
        position: static;
        width: 100%;
    }

    

    .quote-btn-box {
        display: block;
        position: absolute;
        right: 60px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 9999;
    }
    
    .drop-content {
        display: none;
        flex-direction: column;
    }

    .show {
    display: flex !important;
}


}

/* ARROWS */
.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 25px;
    color: #fff;
    background: rgba(0, 0, 0, 0.5);
    padding: 10px;
    cursor: pointer;
    z-index: 10;
    border-radius: 50%;
}

.arrow.left {
    left: 15px;
}

.arrow.right {
    right: 15px;
}

.arrow:hover {
    background: #000;
}


.slides {
    display: flex;
    width: 100%;
    height: 100%;
    transition: 0.5s;
}

.slider {
    position: relative;
    width: 100%;
    height: 90vh;
     
    overflow: hidden;
    z-index: 1;
}

.slide {
    min-width: 100%;
    height: 100%;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width:768px){
    .slide img {
        object-fit: contain;
    }
}

/* SECTION */
.section {
    min-height: 500px;   /* ✅ FIX */
    height: auto;
    background: black;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 40px;
    padding-top: 10px;
    
}

.menu-icon {
    display: none;
}

/* STATS SECTION */
.stats-section{
display: grid;
grid-template-columns:repeat(3,1fr);
gap:20px;
background:linear-gradient(90deg,#000000,#b3b3b3);
color:#fff;
padding:40px 20px;
text-align:center;

margin:30px auto;
max-width:1400px;
}


.stat-box h2{
font-size:32px;
margin-bottom:5px;
}

.stat-box p{
font-size:14px;
}

@media(max-width:768px){
.stats-section{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:500px){
.stats-section{grid-template-columns:1fr}
}



/* BOTH BOX */
.left-box,
.right-box {
    width: 50%;
    height: auto;
}

/* LEFT IMAGE */
.left-box {
    position: relative;
}

.left-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

/* 🔥 OVERLAY TEXT (ONLY INSIDE IMAGE) */
.overlay-text {
    position: absolute;   /* 🔥 correct way */
    top: 30%;
    left: 8%;
    
    width: 80%;
    background: rgba(0,0,0,0.5);
    color: #fff;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
}

/* TEXT */
.overlay-text h1 {
    font-size: 22px;
}

.overlay-text p {
    font-size: 14px;
}

/* RIGHT BOX */
.right-box {
    background: #f5f5f5;
    padding: 30px;
    border-radius: 10px;
    margin-left: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 🔥 MOBILE FIX */
@media (max-width: 768px){

    .section {
        flex-direction: column;
    }

    .left-box,
    .right-box {
        width: 100%;
        height: auto;
    }

    .left-box img {
        height: 250px;
    }

    /* 🔥 overlay remove for mobile */
    .overlay-text {
        position: static;
        transform: none;
        width: 100%;
        margin-top: 10px;
    }

}

.collection {
    padding: 20px;
    border-radius: 4px;
}



.collection h1 {
    color: #000000;
    margin-bottom: 25px;
    text-align: center;
}

/* GRID */
.collection-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* ITEM BOX */
.item {
    position: relative; /* 🔥 IMPORTANT */
    height: 500px;
    overflow: hidden;
    border-radius: 10px;
}

/* IMAGE */
.item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

/* ZOOM EFFECT */
.item:hover img {
    transform: scale(1.1);
}

/* OVERLAY */
.overlay {
    position: absolute; /* 🔥 FIX */
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 20px;
}

/* TEXT */
.overlay h3 {
    color: white;
    font-size: 28px; /* 🔥 FIX (100px hata diya) */
    margin-bottom: 20px;
    text-align: center;
     transform: translateY(30px);
    transition: 0.4s;
}


.item:hover .overlay h3 {
    transform: translateY(0);
}

.why-us {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px;
    gap: 40px;
}

.head h1{
    margin-top: 30px;
}

/* LEFT SIDE */
.why-left {
    color: rgb(0, 0, 0);
    width: 50%;
}

.why-left h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.why-left p {
    font-size: 16px;
    line-height: 1.6;
    color: #000000;
}

/* RIGHT SIDE */
.why-right {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* BOXES */
.why-box {
    padding: 20px;
    color: #fff;
    font-weight: bold;
    border-radius: 8px;
    transition: 0.3s;
}

.why-box:hover {
    transform: translateX(10px);
}

/* DIFFERENT COLORS */
.why-box:nth-child(1) {
    background: #111;
}

.why-box:nth-child(2) {
    background: #333;
}

.why-box:nth-child(3) {
    background: #555;
}

.why-box:nth-child(4) {
    background: #777;
}

.why-box h4 {
    margin-bottom: 10px;
}

/* 🔥 FAQ SECTION */
.faq-section {
    background: #ffffff;
    padding: 80px 20px;
    text-align: center;
}

/* HEADING */
.faq-section h1 {
    color: #000000;
    font-size: 32px;
    margin-bottom: 40px;
}

/* CONTAINER */
.faq-container {
    max-width: 800px;
    margin: auto;
}

/* FAQ BOX */
.faq {
    background: white;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: 0.3s;
    cursor: pointer;
}

/* QUESTION */
.question {
    background-color: #000000;
    padding: 18px;
    color: #ffffff;
    font-size: 16px;
    text-align: left;
    position: relative;
}

/* + ICON */
.question::after {
    content: "+";
    position: absolute;
    right: 20px;
    font-size: 20px;
}

/* ANSWER */
.answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 18px;
    background-color: black;
    color: #ffffff;
    font-size: 14px;
    text-align: left;
    transition: 0.3s ease;
}

/* ACTIVE STATE */
.faq.active .answer {
    max-height: 200px;
    padding: 15px 18px;
}

/* CHANGE + TO - */
.faq.active .question::after {
    content: "-";
}




.contact-title {
    color: white;
    text-align: center;
    font-size: 34px;
    margin-bottom: 40px;
}



/* LEFT SIDE */
.contact-left {
    width: 40%;
}

.contact-left h1 {
    color: white2px;
    margin-bott;
    font-size: 3om: 15px;
}

.contact-left hr {
    border: 1px solid #333;
    margin: 20px 0;
}

.contact-info p {
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 5px;
    color: white;
}

.contact-info i {
    color: white;
}

.contact-info p:hover{
    color: rgb(212, 158, 22);
}

/* RIGHT SIDE */
.contact-right {
    width: 60%;
}

.contact-right form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* INPUTS */
.contact-right input,
.contact-right textarea {
    padding: 12px;
    border: none;
    outline: none;
    border-radius: 6px;
    background: #111;
    color: #fff;
}

/* TEXTAREA */
.contact-right textarea {
    height: 120px;
    resize: none;
}

/* BUTTON */
.contact-right button {
    padding: 12px;
    border: none;
    background: #fff;
    color: #000;
    font-weight: bold;
    cursor: pointer;
    border-radius: 6px;
    transition: 0.3s;
}

.contact-right button:hover {
    background: #ccc;
}

.footer {
    background: #000;
    color: #fff;
    padding: 70px 60px 20px;
}

/* CONTAINER */
.footer-container {
    display: flex;
    justify-content: space-between;
    gap: 80px;
}

/* COLUMN */
.footer-col {
    flex: 1;
}
.footer-col img{
    width: 200px;
}

/* LEFT SIDE */
.footer-col h2 {
    font-size: 20px;
    margin: 15px 0;
    letter-spacing: 1px;
}

.footer-col p {
    color: #aaa;
    font-size: 14px;
    margin: 6px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* CENTER ALIGN */
.center {
    text-align: center;
}

.center a {
    color: #aaa;
    text-decoration: none;
    font-size: 14px;
}

/* RIGHT ALIGN */
.right {
    text-align: left;
}

.right a {
    display: block;
    color: #aaa;
    text-decoration: none;
    margin: 8px 0;
    font-size: 14px;
    transition: 0.3s;
}

.right a:hover {
    color: #fff;
    transform: translateX(5px);
}

/* ICON */
.footer i {
    color: #fff;
}

/* IMAGE */
.made-india {
    width: 100px;
    margin-bottom: 10px;
}

/* BOTTOM */
.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 15px;
    border-top: 1px solid #222;
    color: #777;
    font-size: 13px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .right, .center {
        text-align: center;
    }
}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    transition: 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}


/* ABOUT PAGE */

/* HERO SECTION */
.about-hero {
     margin-top: 40px;
    width: 100%;
    height: 30vh;
    /* full screen */
    background: url('corporates-group.jpeg') no-repeat center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-hero h1 {
    color: #ffffff;
    font-size: clamp(28px, 5vw, 60px);
    letter-spacing: 5px;
    padding: 20px 40px;
    border-radius: 10px;
}

/* CONTENT */
.about-content {
    padding: 80px 100px;
    background: #000;
    color: #fff;
    text-align: center;
     position: relative;
    z-index: 1;
}

.about-content h1 {
    font-size: 36px;
    margin-bottom: 30px;
}

.about-content p {
    font-size: 18px;
    line-height: 1.0;
    margin-bottom: 20px;
    color: #ccc;
}

/* RESPONSIVE */
@media (max-width:768px) {

    .about-hero {
        height: 10vh;
    }

    .about-hero h1 {
        font-size: 40px;
        padding: 10px 20px;
    }

    .about-content {
        padding: 40px 20px;
    }

    .about-content h1 {
        font-size: 24px;
    }

    .about-content p {
        font-size: 14px;
    }
}

/* 🔥 overlay disable for about page */
.about-hero .overlay-text {
    position: static;
    transform: none;
    margin: 0;
}

/* OUR STORY SECTION */

.our-story {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 80px 100px;
    background:#3d3d3d;
    color: lab(100% 0.01 -0.01);
}

/* LEFT TEXT */
.story-left {
    width: 50%;
}

.story-left h1 {
    margin-bottom: 20px;
}

/* RIGHT IMAGE */
.story-right {
    width: 50%;
}

/* IMAGE */
.story-right img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.116);
}

/* HOVER EFFECT (premium look 🔥) */
.story-right img:hover {
    transform: scale(1.05);
}

/* RESPONSIVE */
@media (max-width:768px) {

    .our-story {
        flex-direction: column;
        padding: 40px 20px;
    }

    .story-left,
    .story-right {
        width: 100%;
    }

    .story-left h1 {
        font-size: 24px;
        text-align: center;
    }

    .story-left p {
        font-size: 14px;
        text-align: center;
    }
}

.box {
    position: relative;
    width: 300px;
}

.box img {
    width: 100%;
    display: block;
}

.slider-container {
    width: 100%;
    overflow: hidden;
    background: #3d3d3d;
    padding: 20px 0;
}

/* TRACK */
.slider-track {
    display: flex;
    gap: 25px;
    animation: scroll 20s linear infinite; /* 🔥 auto scroll */
}

/* 🔥 CIRCLE BOX */
.logo-box {
    width: 220px;
    height: 220px;
    
    border-radius: 50%;
    background: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

   overflow: hidden;

    flex: 0 0 auto;
}

/* 🔥 IMAGE FIX */
.logo-box img {
    width: 100%;
    height: 90%;

    object-fit: cover;   /* 🔥 NO CROP */

}
/* 🔥 SCROLL ANIMATION */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}


.leadership-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #000;
    color: #fff;
    padding: 60px 80px;
    gap: 50px;
}

/* LEFT */
.leader-left {
    width: 35%;
    text-align: center;
}

.leader-left img {
    width: 100%;
    max-width: 300px;
    border-radius: 15px;
    margin-bottom: 15px;
}

.leader-left h3 {
    font-size: 20px;
    font-weight: 500;
}

/* RIGHT */
.leader-right {
    width: 60%;
}

.leader-right h1 {
    font-size: 40px;
    margin-bottom: 20px;
}

.leader-right p {
    font-size: 16px;
    line-height: 1.7;
    color: #ccc;
}
.read-more-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 28px;
    background: #fff;
    color: #000;
    text-decoration: none;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    transition: 0.3s;
}

/* 🔥 Hover Effect */
.read-more-btn:hover {
    background: #3d3d3d;
    color: #000;
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .leadership-section {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
    }

    .leader-left,
    .leader-right {
        width: 100%;
    }

    .leader-right h1 {
        font-size: 28px;
    }
}

.why-section{
    background-color: #3d3d3d;
}

.why-section h1{
    color: white;
    text-align: center;;
    margin-bottom: 50px;
    padding-top: 30px;
}

.why-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.why-section {
    background-color: #3d3d3d;
    padding: 60px 80px;   /* 👈 ye add karo */
}

.why-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

@media (max-width: 768px){
    .why-section {
        padding: 40px 20px;   /* 👈 side gap mobile ke liye */
    }

    .why-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px){
    .why-container {
        grid-template-columns: 1fr;
    }
}

.process-section {
    background: #000;
    color: #fff;
    padding: 80px 60px;
    text-align: center;
}

.process-section h1 {
    margin-bottom: 50px;
    font-size: 36px;
}

.process-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    justify-items: center;  /* 👈 add kiya */
}

/* BOX */
.process-box {
    background: #111;
    padding: 25px;
    border-radius: 12px;
    transition: 0.3s;

    width: 100%;          /* 👈 add */
    max-width: 250px;     /* 👈 add */
}

.process-box h2 {
    font-size: 30px;
    color: gold;
}

.process-box h3 {
    margin: 10px 0;
    font-size: 18px;
}

.process-box p {
    font-size: 14px;
    color: #ccc;
}

/* 🔥 Hover Effect */
.process-box:hover {
    transform: translateY(-8px);
    background: #1a1a1a;
}

/* Tablet */
@media(max-width: 992px){
    .process-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media(max-width: 576px){
    .process-container {
        grid-template-columns: 1fr;
    }
}

/* FOOTER SECTION */
.footer-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #000;
    color: #fff;
    padding: 60px 80px;
    gap: 40px;
}

/* LEFT SIDE */
.footer-left {
    width: 80%;
}

.footer-left h1 {
    font-size: 52px;
    margin-bottom: 10px;
}

.footer-left h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #ccc;
}

.footer-left p {
    width: 100%;
    font-size: 16px;
    margin-bottom: 20px;
    color: #fffefe;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-left p a{
    color: white;
}

.footer-left p a:hover{
    color: #25D366;
}

/* RIGHT SIDE (MAP) */
.footer-right {
    width: 50%;
}

.footer-right iframe {
    width: 100%;
    height: 250px;
    border: 0;
    border-radius: 10px;
}

/* MOBILE RESPONSIVE */
@media(max-width: 768px){
    .footer-section {
        flex-direction: column;
        padding: 40px 20px;
        text-align: center;
    }

    .footer-left,
    .footer-right {
        width: 100%;
    }
}

/* CONTACT HERO */
.contact-hero {
    height: 30vh;
    width: 100%;
    background: url('hero5.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-hero h1 {
    color: white;
    font-size: 80px;
    letter-spacing: 5px;
    padding: 20px 40px;
    border-radius: 10px;
}

/* RIGHT */

.contact-section {
    color: white;
    text-align: center;
     padding: 60px 20px;
}

.contact-container {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    gap: 50px;
}

.contact-right {
    width: 100%;
    max-width: 600px;
}

.office-container {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    padding: 40px;
}

.office-right iframe {
    width: 100%;
    height: 400px;
    border-radius: 10px;
}

/* OFFICE SECTION */
.office-section {
    background: #000;
    color: #fff;
    padding: 80px 60px;
}

/* HEADING */
.office-section h1 {
    font-size: 32px;
    margin-left: 50px;
}

/* LEFT */
.office-left {
    width: 50%;
}

.office-left h3 {
    margin-bottom: 15px;
}

.office-left p {
    margin-bottom: 10px;
    color: #ccc;
    align-items: center;
    gap: 10px;
}


/* MAP BOX */
.office-right {
    width: 100%;
    margin: auto;   /* 👈 center */
}

/* INPUT */
.contact-right input,
.contact-right textarea {
    width: 100%;
    margin-bottom: 12px;
    height: 50px;
    padding: 12px;
    border: none;
    outline: none;
    border-radius: 6px;
    background: #dbdada;
    color: #000000;
}

/* TEXTAREA */
.contact-right textarea {
    height: 160px;
    resize: none;
}



/* BUTTON */
.contact-right button {
    width: 100px;
    padding: 12px;
    background: #3d3d3d;
    color: #b3afaf;
    border: none;
    cursor: pointer;
    font-weight: bold;
    border-radius: 6px;
    transition: 0.3s;
}

.contact-right button:hover {
    background: #ccc;
}

@media (max-width: 768px){

    /* HERO FIX */
    .contact-hero {
        margin-top: 70px;
        height: 40vh;   /* 👈 200% bahut bada hai mobile me */
    }

    .contact-hero h1 {
        font-size: 40px;
        padding: 10px 20px;
        text-align: center;
    }

    /* SECTION FIX */
    .contact-section {
        margin-left: 0;   /* ❌ remove side push */
        padding: 20px;
        text-align: center;
        font-size: 16px;
    }

    /* FORM CENTER */
    .contact-container {
        flex-direction: column;
        align-items: center;
    }

    .contact-right {
        width: 100%;
        max-width: 100%;
    }

    /* INPUT FULL WIDTH */
    .contact-right input,
    .contact-right textarea {
        width: 100%;
        font-size: 14px;
    }

    /* BUTTON CENTER */
    .contact-right button {
        width: 100%;
        font-size: 14px;
    }
}





/* 🔥 BLACK BANNER */
.school-banner {
    width: 100%;
    height: 300px;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 90px; /* navbar ke niche gap */
}

.school-banner h1 {
    color: #fff;
    font-size: 40px;
    letter-spacing: 2px;
}

/* 🔥 CARDS SECTION */
.school-cards {
    padding: 100px 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* CARD */
.card {
    background: #f5f5f5;
    border-radius: 10px;
    
    text-align: center;
    padding-bottom: 15px;
    
    overflow: hidden; /* 🔥 IMPORTANT */
    position: relative;
}

.card img {
    background-size: cover;
    width: 100%;
    height: 250px;
   object-fit: contain;
   background: #fff;
   padding: 10px;
   
   transition: transform 0.4s ease;
   position: relative;
   z-index: 1;
}

.card h3 {
    margin: 10px 0;
}

.card p {
    font-size: 14px;
    color: #555;
}

.card span {
    font-weight: bold;
}

.card:hover img {
      transform: scale(1.1); 
    z-index: 10;
}

/* 🔥 RESPONSIVE */
@media (max-width: 768px){
    .school-cards {
        grid-template-columns: repeat(2, 1fr);
        padding: 40px 20px;
    }
}

@media (max-width: 480px){
    .school-cards {
        grid-template-columns: 1fr;
    }
}

/* SECTION */
.hotel-section {
    color: #ffffff;
    background: #000000;
    padding: 80px 20px;
    text-align: center;
}

/* HEADER */
.hotel-header h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.hotel-header p {
    color: #ffffff;
    font-size: 16px;
}

/* INTRO */
.hotel-intro {
    max-width: 800px;
    margin: 30px auto;
    color: #ffffff;
    line-height: 1.6;
}

.book-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 28px;
    background: gold;
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
    font-size: 16px;
    transition: 0.3s;
}

.book-btn:hover {
    background: goldenrod;
}

/* TITLE */
.section-title {
    text-align: center;
    margin: 50px 0 30px;
    font-size: 28px;
}

/* ICON BOX */
.icon-box {
    width: 60px;
    height: 60px;
    background: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.hotel{
    background: whitesmoke;
}

/* ICON */
.icon-box i {
    color: #fff;
    font-size: 22px;
}

/* GRID */
.hotel-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* BOX */
.hotel-box {
    text-align: center;
    background: #f5f5f5;
    padding: 25px;
    border-radius: 10px;
    transition: 0.3s;
}

.hotel-box h3 {
    margin-bottom: 10px;
}

.hotel-box p {
    font-size: 14px;
    color: #555;
}

/* HOVER */
.hotel-box:hover {
    transform: translateY(-8px);
    background: #eaeaea;
}

/* RESPONSIVE */
@media (max-width: 768px){
    .hotel-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hotel-section {
        padding: 40px 20px;
    }
}

@media (max-width: 480px){
    .hotel-grid {
        grid-template-columns: 1fr;
    }
}

.image-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #000;
    padding: 20px 0;
}

/* TRACK */
.slider-track {
    display: flex;
    gap: 5px;
    transition: 0.5s;
}

/* 4 IMAGES */
.slider-track img {
    width: 150px;
    height: 220px;
    object-fit: cover;
    border-radius: 10px;
    flex-shrink: 0;
    transition: 0.3s;
}

/* HOVER */
.slider-track img:hover {
    transform: scale(1.08);
}

/* BUTTON */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.6);
    color: #fff;
    font-size: 22px;
    padding: 10px;
    cursor: pointer;
    border-radius: 50%;
    z-index: 10;
}

.left { left: 10px; }
.right { right: 10px; }


.query-btn {
    margin-top: 10px;
    padding: 10px;
    width: 100%;
    border: none;
    background: #28a745; /* GREEN */
    color: #ffffff; /* WHITE TEXT */
    font-size: 15px;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
    font-weight: 500;
}

.query-btn:hover {
    background: #218838;
}


/* ============================= */
/* 🔥 GLOBAL MOBILE MASTER FIX */
/* ============================= */

@media (max-width: 768px){

    /* ✅ CONTAINER SIDE SPACE FIX */
    section,
    .section,
    .about-content,
    .contact-section,
    .hotel-section,
    .office-section {
        padding: 30px 15px !important;
    }

    /* ✅ GRID FIX (ALL PAGES) */
    .collection-grid,
    .hotel-grid,
    .school-cards,
    .why-container,
    .process-container {
        grid-template-columns: 1fr !important;
    }

    /* ✅ FLEX TO COLUMN (ALL SECTIONS) */
    .why-us,
    .contact-container,
    .footer-container,
    .footer-section,
    .our-story,
    .leadership-section,
    .office-container {
        flex-direction: column !important;
        text-align: center;
    }

    /* ✅ WIDTH FULL */
    .why-left,
    .why-right,
    .contact-left,
    .contact-right,
    .leader-left,
    .leader-right,
    .story-left,
    .story-right,
    .office-left,
    .office-right {
        width: 100% !important;
    }

    /* ✅ HERO FIX (ALL PAGES) */
    .about-hero,
    .contact-hero {
        height: 35vh !important;
    }

    .about-hero h1,
    .contact-hero h1 {
        font-size: 32px !important;
        text-align: center;
    }

    /* ✅ SLIDER FIX */
    .slider {
        height: 60vh !important;
    }

    /* ✅ COLLECTION IMAGE FIX */
    .item {
        height: 300px !important;
    }

    /* ✅ CARD IMAGE ZOOM FIX */
    .card:hover img {
        transform: scale(1.1) !important;
    }

    /* ✅ TEXT SIZE GLOBAL */
    h1 { font-size: 24px !important; }
    h2 { font-size: 20px !important; }
    h3 { font-size: 18px !important; }
    p  { font-size: 14px !important; }

    /* ✅ BUTTON FULL WIDTH */
    button,
    .quote-btn,
    .query-btn {
        width: 100% !important;
    }

    /* ✅ MAP FIX */
    iframe {
        height: 250px !important;
    }

    /* ✅ WHATSAPP SIZE */
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 26px;
    }

}
