* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial;
}
/* Hidden by default before scroll */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: 0.8s ease;
}

/* When visible */
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}


/* NAVBAR */

.navbar {
    height: 15vh;
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 20px 8%;

    position: fixed;
    top: 0;
    width: 100%;

    background: rgba(255, 255, 255, 0.5);
    box-shadow: 0 2px 10px rgba(255, 255, 255, 0.5);

    z-index: 1000;
    border-bottom-left-radius: 80px;
    border-bottom-right-radius: 80px;
    /* border-top-right-radius: 10px;
    border-top-left-radius: 10px; */

}
.navbar.scrolled {
    background: white; /* light orange */
    box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}
.navbar.scrolled a{
    color: #1F1311;

}

nav img {
    margin-top: 10px;
    height: auto;
    width: 150px;
}

/* NAV LINKS */

.nav-links {

    display: flex;
    gap: 35px;
    list-style: none;

}

.nav-links a {

    text-decoration: none;
    color: #1F1311;
    font-size: 17px;
    border-radius: 5px;
    position: relative;

}
.nav-links a:hover{
     color: #1F1311;

    transition: 0.4s;
}
nav ul li a.active {
    color: #1F1311;
    border-bottom: 2px solid #1F1311;
}
/* HOVER LINE */

.nav-links a::after {

    content: "";
    position: absolute;

    left: 0;
    bottom: -5px;

    width: 0;
    height: 2px;

    background: #1F1311;

    transition: 0.4s;

}

.nav-links a:hover::after {
    width: 100%;
    

}

/* JOIN BUTTON */

.join-btn {
    background: #1F1311;
    color: white !important;
    padding: 8px 18px;
    border-radius: 5px !important;
}

.join-btn::after {
    display: none;
}

/* MENU ICON */

.menu-icon {

    font-size: 30px;
    cursor: pointer;

    display: none;

    z-index: 2000;
}

/* MOBILE */

@media(max-width:900px) {

    .menu-icon {
        display: block;
    }

    .nav-links {

        position: fixed;

        right: -100%;
        top: 0;

        width: 260px;
        height: 100vh;
        background: white;

        flex-direction: column;
        align-items: center;

        padding-top: 120px;
        gap: 30px;

        transition: 0.4s;

        z-index: 1500;

    }

    .nav-links.active {
        right: 0;
    }

}
/*--------------------------------*/

/* line  */

.scroll-line {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  width: 0%;
  background: #1F1311;
  z-index: 9999;
  transition: width 0.1s linear;
}



/* --------------------------- */
.hero-section {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

/* Background Images Layered for Fade */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    animation: fadeSlide 15s infinite;
}

/* Different delays for each image */
.hero-bg:nth-child(1) {
    background-image: url('./assets/images/pic6.jpeg');
    animation-delay: 0s;
}

.hero-bg:nth-child(2) {
    background-image: url('./assets/images/pic7.jpeg');
    animation-delay: 5s;
}

.hero-bg:nth-child(3) {
    background-image: url('./assets/images/pic8.jpeg');
    animation-delay: 10s;
}

/* Fade In → Hold → Fade Out */
@keyframes fadeSlide {
    0% {
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    /* Fade in */
    30% {
        opacity: 1;
    }

    /* Hold */
    40% {
        opacity: 0;
    }

    /* Fade out */
    100% {
        opacity: 0;
    }
}

/* Overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
}

/* Content */
.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 80%;
    color: #fff;
    z-index: 2;
}

.hero-content h1 {
    font-size: 40px;
    font-weight: 700;
}

.hero-content p {
    margin: 20px 0;
    font-size: 18px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

/* Button */
.hero-btn {
    display: inline-block;
    padding: 12px 26px;
    background: #fff !important;
    color: #1F1311 !important;
    font-weight: 600;
    border-radius: 5px;
    text-decoration: none;
    transition: 0.3s;
}

.hero-btn:hover {
     background:  #1F1311  !important;
    color: #fff !important;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 28px;
    }

    .hero-content p {
        font-size: 16px;
    }
}

/* --------------------------- */


/* HERO SECTION */

.hero {

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 120px 10% 60px;

    min-height: 90vh;

    /* background: linear-gradient(to right, #fff6f0, #ffeedd);
     */
    background-color: rgba(255, 255, 255, 0.5);


    flex-wrap: wrap;

    gap: 40px;

}


.hero-left {

    flex: 1 1 400px;

    animation: slideInLeft 1s ease;

}


.hero-left h1 {

    font-size: 42px;
    color: #1F1311;
    margin-bottom: 20px;

}


.hero-left p {

    font-size: 18px;
    color: #1F1311;
    margin-bottom: 25px;
    text-align: justify;

}


.hero-btn2 {

    display: inline-block;

    padding: 12px 28px;

    background: #1F1311;

    color: white;

    text-decoration: none;

    border-radius: 5px;

    transition: 0.3s;

}


.hero-btn2:hover {


    transform: scale(1.05);

}



/* IMAGE */

.hero-right {

    flex: 1 1 400px;

    display: flex;
    justify-content: center;

    animation: float 3s ease-in-out infinite;

}


.hero-right img {

    max-width: 90%;
    border-radius: 50%;

}



/* FLOAT ANIMATION */

@keyframes float {

    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0);
    }

}


/* TEXT ANIMATION */

@keyframes slideInLeft {

    0% {
        opacity: 0;
        transform: translateX(-50px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }

}



/* MOBILE HERO */

@media(max-width:768px) {

    .hero {

        flex-direction: column-reverse;
        text-align: center;

    }

    .hero-left h1 {

        font-size: 32px;

    }

}

/* ----------------------------------- */

/* SECTION */

.coffee-about {

    padding: 100px 10%;
    /* background: linear-gradient(135deg, #fff6f0, #ffeedd); */
       background: #000;
background: linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgba(196, 178, 164, 1) 50%, rgba(0, 0, 0, 1) 100%);

    overflow: hidden;

}


/* CONTAINER */

.coffee-container {

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 60px;

    flex-wrap: wrap;

}


/* TEXT AREA */

.coffee-text {

    flex: 1 1 450px;

    animation: slideLeft 1s ease;

}


/* TITLE */

.coffee-title {

    font-size: 38px;
    color: white;
    margin-bottom: 20px;

    animation: fadeDown 1s ease;

}


/* DESCRIPTION */

.coffee-desc {

    font-size: 17px;
    line-height: 1.7;
    color: white;

    margin-bottom: 25px;

    animation: fadeUp 1.2s ease;

}


/* LIST */

.coffee-list {

    list-style: none;

    margin-bottom: 25px;

}


.coffee-list li {

    font-size: 18px;

    margin-bottom: 12px;

    color: white;

    opacity: 0;

    transform: translateX(-30px);

    animation: featureAnim 0.6s forwards;

}

/* STAGGER ANIMATION */

.coffee-list li:nth-child(1) {
    animation-delay: 0.3s;
}

.coffee-list li:nth-child(2) {
    animation-delay: 0.5s;
}

.coffee-list li:nth-child(3) {
    animation-delay: 0.7s;
}

.coffee-list li:nth-child(4) {
    animation-delay: 0.9s;
}


/* END TEXT */

.coffee-end {

    margin-top: 10px;
    font-weight: 500;
    color: white;
    animation: fadeUp 1.3s ease;

}


/* BUTTON */

.coffee-btn {

    display: inline-block;

    margin-top: 20px;

    padding: 14px 30px;

    background: white;

    color: #1F1311;

    font-weight: 600;

    border-radius: 5px;

    text-decoration: none;

    font-size: 16px;

    transition: 0.3s;

    animation: fadeUp 1.4s ease;

}

.coffee-btn:hover {

    background: #1F1311;
    color: white;

    transform: translateY(-3px) scale(1.05);

    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);

}


/* IMAGE */

.coffee-image {

    flex: 1 1 400px;

    display: flex;
    justify-content: center;

    animation: slideRight 1s ease;

}


.coffee-image img {

    max-width: 100%;

    border-radius: 20px;

    /* animation: float 3s ease-in-out infinite; */

}


/* FLOAT ANIMATION */

@keyframes float {

    0% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-15px)
    }

    100% {
        transform: translateY(0)
    }

}


/* LIST ANIMATION */

@keyframes featureAnim {

    to {
        opacity: 1;
        transform: translateX(0);
    }

}


/* TEXT ANIMATIONS */

@keyframes slideLeft {

    from {
        opacity: 0;
        transform: translateX(-60px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }

}


@keyframes slideRight {

    from {
        opacity: 0;
        transform: translateX(60px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }

}


@keyframes fadeUp {

    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


@keyframes fadeDown {

    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/* RESPONSIVE */

@media(max-width:900px) {

    .coffee-container {

        flex-direction: column;

        text-align: center;

    }

    .coffee-title {

        font-size: 32px;

    }

    .coffee-list li {

        font-size: 16px;

    }

}

/* ------------------------------------- */
.philosophy {

    padding: 100px 10%;
    /* background: linear-gradient(135deg, #fff6f0, #ffe9dc); */
    /* background-color: #c4b2a4; */
   background-color: rgba(255, 255, 255, 0.5);
    text-align: center;

}

.philosophy-container {

    max-width: 900px;
    margin: auto;

}

/* ICON */

.philosophy-icon {

    font-size: 60px;
    margin-bottom: 20px;

    animation: float 3s ease-in-out infinite;

}

/* TITLE */

.philosophy-title {

    font-size: 38px;
    color: #1F1311;
    margin-bottom: 20px;

    animation: fadeDown 1s ease;

}

/* TEXT */

.philosophy-text {

    font-size: 18px;
    line-height: 1.8;
    color: #1F1311;

    animation: fadeUp 1.2s ease;

}

/* FLOAT */

@keyframes float {

    0% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-12px)
    }

    100% {
        transform: translateY(0)
    }

}

/* FADE UP */

@keyframes fadeUp {

    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

/* FADE DOWN */

@keyframes fadeDown {

    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

/* RESPONSIVE */

@media(max-width:768px) {

    .philosophy-title {
        font-size: 30px;
    }

    .philosophy-text {
        font-size: 16px;
    }

}

/* ---------------------------------------- */
/* TAGLINE SECTION */

.tagline-section {

    /* background: white; */
    background: #000;
background: linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgba(196, 178, 164, 1) 50%, rgba(0, 0, 0, 1) 100%);

    padding: 100px 10%;

    text-align: center;

    overflow: hidden;

}


/* CONTAINER */

.tagline-container {

    max-width: 900px;
    margin: auto;

}


/* SMALL TITLE */

.tagline-small {

    font-size: 28px;

    letter-spacing: 3px;

    color: white;

    margin-bottom: 15px;

    animation: fadeUp 1s ease;

}


/* MAIN TITLE */

.tagline-main {

    font-size: 48px;

    color: #1F1311;

    font-weight: 700;

    margin-bottom: 20px;

    animation: fadeDown 1s ease;

}


/* HIGHLIGHT WORD */

.tagline-main span {

    color: white;

    position: relative;

}


/* UNDERLINE ANIMATION */

.tagline-main span::after {

    content: "";

    position: absolute;

    left: 0;
    bottom: -6px;

    width: 100%;
    height: 4px;

    background: #1F1311;

    animation: lineGrow 1.5s ease;

}


/* TEXT */

.tagline-text {

    font-size: 20px;

    color: white;

    animation: fadeUp 1.4s ease;

}


/* ANIMATIONS */

@keyframes fadeUp {

    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

@keyframes fadeDown {

    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

@keyframes lineGrow {

    from {
        width: 0;
    }

    to {
        width: 100%;
    }

}


/* RESPONSIVE */

@media(max-width:768px) {

    .tagline-main {
        font-size: 34px;
    }

    .tagline-text {
        font-size: 18px;
    }

}

/* -------------------------------------- */
/* PROGRAM SECTION */
.programs {
background-color: rgba(255, 255, 255, 0.5);

    padding: 100px 10%;
    text-align: center;
}

.program-title {
    color: #1F1311;
    font-size: 40px;
    margin-bottom: 60px;
    animation: fadeDown 1s;
}

/* GRID */
.program-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

/* CARD */
.program-card {
    background: white;
    padding: 20px 20px 40px;
    border-radius: 12px;
    color: #1F1311;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transition: 0.4s;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px #1F1311;
}

/* CARD IMAGE */
.program-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 12px 12px 0 0;
    margin-bottom: 20px;
}

/* CARD TEXT */
.program-card h3 {
    margin-bottom: 10px;
    font-size: 22px;
}

.program-card p {
    font-size: 15px;
    opacity: 0.8;
    margin-bottom: 20px;
}

/* JOIN BUTTON */
.join-btn {
    padding: 10px 25px;
    background: #1F1311;
    color: white;
    border: none;
    border-radius: 30px;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    transition: 0.3s;
}

.join-btn:hover {
    background: #1F1311;
    transform: scale(1.05);
}

/* LINE ANIMATION */
.program-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    width: 0;
    background: #1F1311;
    transition: 0.4s;
}

.program-card:hover::after {
    width: 100%;
}
/* COURSE DETAIL */

.course-detail {
    padding: 100px 10%;
    background: rgba(255, 255, 255, 0.5);
}

.course-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: wrap;
}

.course-text {
    flex: 1 1 500px;
    color: #1F1311;
    animation: fadeLeft 1s;
}

.course-text h1 {
    font-size: 38px;
    margin-bottom: 20px;
}

.course-text p {
    line-height: 1.7;
    margin-bottom: 15px;
    text-align: justify;
}

.course-text h3 {
    margin-top: 20px;
}

.course-text ul {
    padding-left: 20px;
    margin-top: 10px;
}

.course-text li {
    margin-bottom: 8px;
}

/* IMAGE */

.course-image {
    flex: 1 1 400px;
    text-align: center;
    animation: fadeRight 1s;
}

.course-image img {
    max-width: 100%;
    border-radius: 12px;
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2); */
    background-color: white;
    transition: 0.4s;
}

.course-image img:hover {
    transform: scale(1.05);
}

/* ANIMATIONS */

@keyframes fadeLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* MOBILE */

@media(max-width:900px) {

    .course-container {
        flex-direction: column;
        text-align: center;
    }

    .program-title {
        font-size: 30px;
    }

    .course-text h1 {
        font-size: 30px;
    }

}
/* ------------------ */
/* FOOTER */
footer {
    background: #000;
    background: linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgba(196, 178, 164, 1) 50%, rgba(0, 0, 0, 1) 100%);
    color: white;
    padding: 50px 7% 20px;
    border-top-left-radius: 80px;
    border-top-right-radius: 80px;
    /* border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px; */
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-logo {
    width: 250px;
}

footer div h4 {
    margin-bottom: 10px;
    text-decoration: underline;
    text-decoration-color: white;
    color: white;
    font-size: 20px;
    margin-bottom: 40px;
}

footer a {
    color: white;
    text-decoration: none;
    display: block;
    margin-bottom: 18px;
    font-size: 16px;
    transition: all 0.5s;

}

footer a:hover {
    color: #1F1311;

}

hr {
    border: none;           
    border-top: 2px solid white; 
}

.copy {
    text-align: center;
    color: white;
    margin-top: 20px;
}

.u1 {
    text-decoration: underline;
}
/* ------------------------------contact us ------------------------------ */

/* CONTACT SECTION */
.contact-section {
    padding: 120px 8%;
   background:rgba(255,255,255,0.5);
    display: flex;
    justify-content: center;
}

.dark .contact-section {
    background: #1F1311;
}

/* container */
.contact-container {
    width: 100%;
    max-width: 1100px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 50px;
    flex-wrap: wrap;
}

/* Left Info */
.contact-info h2 {
    font-size: 38px;
    font-weight: 700;
    color: #1F1311;
    margin-bottom: 10px;
}

.dark .contact-info h2 {
    color: #fff;
}

.contact-info p {
    color: #1F1311;
    margin-bottom: 20px;
}

.dark .contact-info p {
    color: #ddd;
}

.info-box {
    margin: 15px 0;
    padding: 15px 20px;
    border-left: 2px solid #1F1311;
    border-right: 2px solid #1F1311;
    background: #fff;
    border-radius: 8px;
    transition: 0.3s;
}

.dark .info-box {
    background: #1F1311;
    border-left: 4px solid #1F1311;
}

.info-box:hover {
    box-shadow: 2px 2px 10px #1F1311;
    transform: translateX(7px);
}
.info-box a{
    color: #1F1311;
    text-decoration: none;
}
/* FORM */
.contact-form {
    width: 100%;
    max-width: 450px;
    background: #fff;
    padding: 30px 25px;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.1);
    animation: floatUp 0.8s ease;
}

.dark .contact-form {
    background: #1F1311;
    box-shadow: 0 5px 25px rgba(255,255,255,0.5);
}

.contact-form h3 {
    margin-bottom: 20px;
    color: #1F1311;
}

.dark .contact-form h3 {
    color: #fff;
}

/* Input Box with Animation */
.inputBox {
    position: relative;
    width: 100%;
    margin: 25px 0;
}

.inputBox input,
.inputBox textarea {
    width: 100%;
    padding: 12px 10px;
    background: transparent;
    border: none;
    border-bottom: 2px solid #1F1311;
    outline: none;
    color: #1F1311;
    font-size: 16px;
}

.dark .inputBox input,
.dark .inputBox textarea {
    color: #fff;
    border-bottom: 2px solid #c4a27e;
}

/* SEND BUTTON */
.send-btn {
    width: 100%;
    padding: 12px 0;
    background: #1F1311;
    color: #fff;
    font-size: 18px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.5s;
    font-weight: 600;

}

.send-btn:hover {
    background-color: #fff;
    border: 1px solid #1F1311;
    color: #1F1311;

}

/* Float animation */
@keyframes floatUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media(max-width: 900px) {
    .contact-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .info-box {
        text-align: left;
    }
}

/* ------------------------------------Join Now----------------------------------- */

/* Wrapper */
.join-wrapper{
    width:100%;
    max-width: 1400px;
    margin:0 auto;
    padding:60px 5%;
    display:flex;
    align-items: center;
    justify-content:space-between;
    gap:40px;
    flex-wrap:wrap;
    color:#1F1311;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
}

/* Left Section */
.join-left{
    flex:1;
    min-width:300px;
    max-width:600px;
}

.join-title{
    font-size:38px;
    font-weight:700;
    margin-bottom:15px;
    color:#1F1311;
}

.join-desc{
    font-size:16px;
    line-height:1.7;
    margin-bottom:25px;
    color:#1F1311;
}

.join-highlights{
    display:grid;
    gap:15px;
    grid-template-columns:repeat(auto-fit, minmax(120px, 1fr));
}

.jh-box{
    background: rgba(255, 255, 255, 0.3);
    padding:12px 18px;
    border-radius:10px;
    border-left: 2px solid #1F1311;
    border-right: 2px solid #1F1311;
    font-size:15px;
    color:#1F1311;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.jh-box:hover{
    box-shadow: 0 4px 20px rgba(31,19,17,0.4);
    transform: translateY(-5px);
}

/* Form Section */
.join-form-box{
    flex:1;
    min-width:300px;
    max-width:450px;
    background:white;
    padding:30px;
    border-radius:15px;
    box-shadow:0 6px 25px rgba(0,0,0,0.15);
}

.join-form-box h3{
    font-size:24px;
    text-align:center;
    margin-bottom:20px;
    color:#1F1311;
}

/* Input */
.j-input{
    position:relative;
    margin-bottom:18px;
}

.j-input input{
    width:100%;
    padding:12px;
    border:none;
    border-bottom: 1px solid #1F1311;
    outline:none;
    font-size:15px;
    background:white;
}

.j-input label{
    position:absolute;
    top:50%;
    left:12px;
    transform:translateY(-50%);
    color:#8d7b70;
    pointer-events:none;
    transition:.3s;
}

.j-input input:focus + label,
.j-input input:not(:placeholder-shown) + label{
    top:-7px;
    font-size:12px;
    background:white;
    padding:0 4px;
    color:#1F1311;
}

/* Select */
.j-select select{
    width:100%;
    padding:12px;
    border:none;
    border-bottom:1px solid #1F1311;
    font-size:15px;
    background:white;
    margin-bottom:20px;
}

/* Button */
.join-btn{
    width:100%;
    padding:12px;
    background:#1F1311;
    border:none;
    color:white;
    font-size:16px;
    border-radius:8px;
    cursor:pointer;
    transition: all 0.3s ease;
}

.join-btn:hover{
    background:#2a1f19;
}

/* Scroll Reveal */
.reveal{
    opacity:0;
    transform:translateY(30px);
    animation:revealAnim .8s ease forwards;
}

@keyframes revealAnim{
    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* Responsive */
@media(max-width:1200px){
    .join-wrapper{
        padding:50px 4%;
        gap:30px;
    }
}

@media(max-width:900px){
    .join-wrapper{
        flex-direction:column;
        align-items:center;
        gap:30px;
    }
    .join-title{
        font-size:32px;
        text-align:center;
    }
    .join-desc{
        font-size:15px;
        text-align:center;
    }
    .join-form-box{
        width:100%;
        max-width:400px;
    }
}

@media(max-width:600px){
    .join-title{
        font-size:28px;
    }
    .join-desc{
        font-size:14px;
    }
    .jh-box{
        font-size:14px;
        padding:10px 12px;
    }
}
/* ---------------------------------------------- */

/* PROGRAM SECTION - NEW STYLE */
.courses-section{
    padding:70px 7%;
    text-align:center;
    color:white;
}

.courses-heading{
    font-size:38px;
    font-weight:700;
    margin-bottom:40px;
    color:white;
}

/* GRID */
.courses-wrapper{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(280px, 1fr));
    gap:30px;
}

/* CARD STYLE */
.course-box{
    background:rgba(255,255,255,0.5);
    padding:25px;
    border-radius:18px;
    box-shadow:0 8px 25px rgba(0,0,0,0.2);
    border:1px solid rgba(255,255,255,0.5);
    transition:0.3s ease;
    position:relative;
}

.course-box:hover{
    transform:translateY(-10px);
    box-shadow:0 12px 30px rgba(0,0,0,0.25);
}

/* IMAGE */
.course-img{
    width:90px;
    height:90px;
    margin:auto;
    margin-bottom:20px;
    display:flex;
    justify-content:center;
    align-items:center;
    background:#fff;
    border-radius:50%;
    box-shadow:0 5px 15px rgba(0,0,0,0.15);
}
.course-img img{
    width:60px;
}

/* TEXT */
.course-box h3{
    color:#1F1311;
    font-size:22px;
    font-weight:700;
    margin-bottom:8px;
}

.course-box p{
    color:#1F1311;
    font-size:15px;
    margin-bottom:18px;
}

/* BUTTON */
.course-btn{
    display:inline-block;
    padding:10px 22px;
    background:#1F1311;
    color:white;
    text-decoration:none;
    border-radius:8px;
    font-size:14px;
    transition:0.3s;
}

.course-btn:hover{
    background:#1F1311;
}

/* Scroll Reveal Animation */
.reveal{
    opacity:0;
    transform:translateY(30px);
    animation:showUp 0.8s forwards ease;
}

@keyframes showUp{
    to{
        opacity:1;
        transform:translateY(0);
    }
}
/* ------------------------------------ */
/* -------------------------------------- */
/*        PARTNERS SECTION (FINAL)        */
/* -------------------------------------- */

.partners-section {
    padding: 60px 0;
    text-align: center;
    /* background: #ffffff; */
    
}

.partners-section h2 {
    font-size: 40px;
    font-weight: 700;
    color: #1F1311;
    margin-bottom: 35px;
}

/* Slider Container */
.partners-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 10px 0;
}

/* Moving Track */
.partners-track {
    display: flex;
    align-items: center;
    gap: 60px;
    /* Distance between logos */
    animation: slideLeft 25s linear infinite;
    width: max-content;
}

/* Logo Styling */
.partners-track img {
    height: 80px;
    /* All logos same height */
    width: auto;
    /* No stretching */
    object-fit: contain;
    /* Crop nahi hoga */
    filter: grayscale(60%);
    transition: 5s ease;
    padding: 5px 20px;
    /* Balanced spacing */
}

.partners-track img:hover {
    filter: grayscale(0%);
    transform: scale(1.08);
}

/* Animation */
@keyframes slideLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}


/* ----------------------------- */
/*          RESPONSIVE           */
/* ----------------------------- */

@media (max-width: 768px) {
    .partners-track img {
        height: 65px;
        padding: 5px 15px;
    }

    .partners-section h2 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .partners-track img {
        height: 55px;
        padding: 5px 10px;
    }

    .partners-section h2 {
        font-size: 24px;
    }
}

/* -------------------------------------- */
/* WHATSAPP FIXED BUTTON */
.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 58px;
    height: 58px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 30px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    z-index: 999999;
    transition: 0.3s ease-in-out;
    cursor: pointer;
}

.whatsapp-btn:hover {
    transform: scale(1.12);
    background: #1ebe5d;
}

/* Responsive */
@media(max-width: 480px) {
    .whatsapp-btn {
        width: 50px;
        height: 50px;
        font-size: 28px;
        bottom: 15px;
        right: 15px;
    }
}

/* -----------------------about----------------------- */

/* ABOUT SECTION */
.about-section{
    padding: 80px 10%;
    height: 80vh;
    background-color: rgba(255, 255, 255, 0.5);
}

.about-container{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    flex-wrap: wrap;
}

.about-text{
    flex: 1;
    min-width: 300px;
    color: #1F1311;
}

.about-text h2{
    font-size: 38px;
    margin-top: 20px ;
    margin-bottom: 20px;
    font-weight: 700;
}

.about-text p{
    font-size: 16px;
    line-height: 1.2;
    margin-bottom: 18px;
    text-align: justify;
}

.about-text ul{
    margin-bottom: 20px;
    padding-left: 20px;
}

.about-text ul li{
    margin-bottom: 8px;
    font-size: 16px;
}

.about-btn{
    display: inline-block;
    padding: 12px 30px;
    background: #1F1311;
    color: white;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: .3s;
}

.about-btn:hover{
    background: #1F1311;
    transform: scale(1.05);
}

/* IMAGE */
.about-image{
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
}

.about-image img{
    width: 100%;
    max-width: 450px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* RESPONSIVE */
@media (max-width: 768px){
    .about-container{
        flex-direction: column;
        text-align: center;
    }
    .about-text h2{
        font-size: 30px;
    }
    .about-image img{
        max-width: 350px;
    }
}

/* ---------------------------------------------- */

.courses-banner{
    height:50vh;
    min-height:250px; /* mobile ke liye */
    background: #000;
    background: linear-gradient(
        180deg, 
        rgba(0,0,0,1) 0%, 
        rgba(196,178,164,1) 50%, 
        rgba(0,0,0,1) 100%
    );
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
}

.courses-banner h2{
    color:#fff;
    font-size:48px;
    font-weight:700;
    letter-spacing:2px;
}

/* Responsive text size */
@media(max-width:900px){
    .courses-banner h2{
        font-size:38px;
    }
}

@media(max-width:600px){
    .courses-banner h2{
        font-size:28px;
    }
}