/* ================= GLOBAL ================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins', sans-serif;
}

body{
    background:#ffffff;
    color:#222;
}

/* ================= TOP HEADER ================= */

.top-header{
    width:100%;
    background:#111;
    color:#fff;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:8px 80px;
    font-size:14px;
}

.top-left i{
    margin-right:6px;
    color:#ff7a00;
}

.divider{
    margin:0 10px;
    color:#666;
}

.top-right a{
    color:#fff;
    margin-left:15px;
    font-size:14px;
    transition:0.3s;
}

.top-right a:hover{
    color:#ff7a00;
}
/* ================= ORANGE STRIP BELOW TOP HEADER ================= */

.header-strip{
    width:100%;
    height:5px;
    background:#ff7a00;
}

/* ================= MAIN HEADER ================= */

.main-header{
    width:100%;
    background:#ffffff;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:15px 80px;
    box-shadow:0px 5px 20px rgba(0,0,0,0.05);
    position:sticky;
    top:0;
    z-index:999;
}

.logo-left img,
.logo-right img{
    height:55px;
}
/* LEFT LOGO ORANGE BOX */

.logo-box{
    background:#ff7a00;
    padding:10px 25px;
    border-radius:50px;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0px 10px 25px rgba(255,122,0,0.35);
    transition:0.3s ease;
}

.logo-box img{
    height:45px;
    width:auto;
    display:block;
    border-radius:10px;
}

.logo-box:hover{
    transform:translateY(-3px);
    box-shadow:0px 15px 35px rgba(255,122,0,0.45);
}
/* ================= NAVBAR ================= */

.navbar ul{
    list-style:none;
    display:flex;
    gap:40px;
}

.navbar ul li a{
    text-decoration:none;
    color:#222;
    font-size:16px;
    font-weight:500;
    padding:10px 18px;
    border-radius:6px;
    position:relative;
    transition:0.3s;
}

/* Hover Box Effect */
.navbar ul li a:hover{
    background:#ff7a00;
    color:#fff;
    box-shadow:0px 8px 20px rgba(255,122,0,0.4);
}
/* ================= RIGHT LOGO HIGHLIGHT BOX ================= */

.logo-right{
    background:linear-gradient(135deg,#ff7a00,#ff9a3c);
    padding:10px 20px;
    border-radius:50px;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0px 8px 25px rgba(255,122,0,0.35);
    transition:0.4s;
}

.logo-right img{
    height:45px;
    background:#fff;
    padding:6px 12px;
    border-radius:30px;
}

.logo-right:hover{
    transform:translateY(-3px);
    box-shadow:0px 12px 30px rgba(255,122,0,0.5);
}

/* ================= MARQUEE ================= */

.marquee-section{
    width:100%;
    background:#ff7a00;
    overflow:hidden;
    position:relative;
}

.marquee-content{
    white-space:nowrap;
    display:inline-block;
    padding:12px 0;
    font-size:16px;
    font-weight:500;
    color:#fff;
    animation:marquee 18s linear infinite;
    position:relative;
}

/* Shine Effect */
.marquee-content::after{
    content:'';
    position:absolute;
    top:0;
    left:-150px;
    width:100px;
    height:100%;
    background:linear-gradient(120deg, transparent, rgba(255,255,255,0.5), transparent);
    animation:shine 3s infinite;
}

@keyframes marquee{
    0%{ transform:translateX(100%); }
    100%{ transform:translateX(-100%); }
}

@keyframes shine{
    0%{ left:-150px; }
    100%{ left:100%; }
}

/* ================= MOBILE VIEW ================= */

@media(max-width:991px){

    .top-header{
        padding:8px 20px;
        flex-direction:column;
        gap:5px;
        text-align:center;
    }

    .main-header{
        padding:15px 20px;
        flex-direction:column;
        gap:15px;
    }

    .navbar ul{
        gap:15px;
        flex-wrap:wrap;
        justify-content:center;
    }

    .navbar ul li a{
        font-size:14px;
        padding:8px 14px;
    }

    .logo-left img,
    .logo-right img{
        height:45px;
    }

    .marquee-content{
        font-size:14px;
    }

}

/* ================= SLIDER ================= */

.hero-slider{
    width:100%;
    height:480px;   /* Reduced height */
    position:relative;
    overflow:hidden;
}

.slide{
    position:absolute;
    width:100%;
    height:100%;
    opacity:0;
    transition:0.8s ease-in-out;
}

.slide.active{
    opacity:1;
    z-index:1;
}

/* First 3 Slides - Image Only */
.slide img{
    width:100%;
    height:480px;
    object-fit:contain;   /* Shows full image */
    background:#f5f5f5;   /* Clean background */
}
/* Fourth Slide Layout */

.slide-content-layout{
    background:#f5f5f5;
}

.fourth-slide{
    width:100%;
    height:480px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:0px 100px;
}

.left-content{
    width:50%;
}

.left-content h1{
    font-size:60px;
    font-weight:700;
    color:#000;
    margin-bottom:20px;
}

.left-content p{
    font-size:20px;
    margin-bottom:30px;
    color:#444;
}

.buttons{
    display:flex;
    gap:20px;
}

.btn-primary{
    background:#ff7a00;
    color:#fff;
    padding:15px 35px;
    text-decoration:none;
    border-radius:40px;
    font-size:16px;
    transition:0.3s;
}

.btn-primary:hover{
    background:#e66a00;
}

.btn-secondary{
    background:#ffa733;
    color:#fff;
    padding:15px 35px;
    text-decoration:none;
    border-radius:40px;
    font-size:16px;
    transition:0.3s;
}

.btn-secondary:hover{
    background:#ff7a00;
}

.right-image{
    width:45%;
}

.right-image img{
    width:100%;
    height:auto;
}

/* Arrows */

.prev, .next{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    background:#ff7a00;
    color:#fff;
    font-size:26px;
    padding:10px 16px;
    border-radius:50%;
    cursor:pointer;
    z-index:3;
}

.prev{ left:30px; }
.next{ right:30px; }

/* Dots */

.dots{
    position:absolute;
    bottom:20px;
    width:100%;
    text-align:center;
}

.dot{
    height:12px;
    width:12px;
    margin:0 6px;
    background:#ccc;
    border-radius:50%;
    display:inline-block;
    cursor:pointer;
}

.dot.active{
    background:#ff7a00;
}

/* ================= MOBILE ================= */

@media(max-width:991px){

    .hero-slider{
        height:auto;
    }

    .slide img{
    height:320px;
}

    .fourth-slide{
        flex-direction:column;
        height:auto;
        padding:40px 20px;
        text-align:center;
    }

    .left-content{
        width:100%;
    }

    .right-image{
        width:100%;
        margin-top:20px;
    }

    .left-content h1{
        font-size:32px;
    }

}


/* ================= WHO WE ARE SECTION ================= */

.who-we-are{
    width:100%;
    padding:90px 100px;
    background:#ffffff;
}

.who-container{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
}

/* LEFT CONTENT */

.who-content{
    width:55%;
}

.who-content h2{
    font-size:42px;
    font-weight:700;
    margin-bottom:20px;
    position:relative;
}

.who-content h2::after{
    content:'';
    width:70px;
    height:4px;
    background:#ff7a00;
    position:absolute;
    left:0;
    bottom:-10px;
}

.who-content p{
    font-size:16px;
    line-height:28px;
    margin-bottom:20px;
    color:#555;
}

.who-btn{
    display:inline-block;
    background:#ff7a00;
    color:#fff;
    padding:12px 30px;
    text-decoration:none;
    border-radius:30px;
    font-size:15px;
    transition:0.3s;
}

.who-btn:hover{
    background:#e66a00;
}

/* RIGHT IMAGE */

.who-image{
    width:40%;
    position:relative;
}

.who-image img{
    width:100%;
    max-width:420px;
    border-radius:12px;
    position:relative;
    z-index:2;
    box-shadow:0px 15px 40px rgba(0,0,0,0.15);
}
.who-image:hover img{
    transform:scale(1.05) translateY(-8px);
}

/* Decorative Shapes */

.shape{
    position:absolute;
    border-radius:20px;
    z-index:1;
}

.shape-one{
    width:220px;
    height:220px;
    background:#ff7a00;
    top:-20px;
    right:-20px;
    opacity:0.15;
}

.shape-two{
    width:160px;
    height:160px;
    background:#ffa733;
    bottom:-25px;
    left:-25px;
    opacity:0.20;
}
/* ================= SLIDE REVEAL ANIMATION ================= */

.who-content,
.who-image{
    opacity:0;
    transform:translateY(60px);
    transition:0.8s ease;
}

.who-content.reveal,
.who-image.reveal{
    opacity:1;
    transform:translateY(0px);
}
/* ================= MOBILE VIEW ================= */

@media(max-width:991px){

    .who-we-are{
        padding:60px 20px;
    }

    .who-container{
        flex-direction:column;
        text-align:center;
    }

    .who-content{
        width:100%;
    }

    .who-image{
        width:100%;
        margin-top:40px;
    }

    .who-content h2::after{
        left:50%;
        transform:translateX(-50%);
    }

}

/* ================= STATS SECTION ================= */

/* ================= PREMIUM STATS SECTION ================= */

.stats-section{
    width:100%;
    padding:120px 100px;
    background:linear-gradient(135deg,#fff5ec,#ffe6d4);
    position:relative;
    overflow:hidden;
}

/* Background Abstract Shapes */

.stats-bg-shape{
    position:absolute;
    border-radius:50%;
    z-index:0;
}

.shape-a{
    width:350px;
    height:350px;
    background:#ff7a00;
    opacity:0.08;
    top:-100px;
    left:-100px;
}

.shape-b{
    width:300px;
    height:300px;
    background:#ffa733;
    opacity:0.08;
    bottom:-120px;
    right:-80px;
}

/* Container */

.stats-container{
    position:relative;
    z-index:2;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:80px;
}

/* Experience Box */

.experience-box{
    width:35%;
    background:#ffffff;
    padding:60px 50px;
    border-radius:24px;
    box-shadow:0px 25px 60px rgba(0,0,0,0.08);
}

.experience-box h2{
    font-size:70px;
    color:#ff7a00;
    margin-bottom:10px;
}

.experience-box p{
    font-size:22px;
    font-weight:600;
    margin-bottom:10px;
}

.experience-box span{
    font-size:14px;
    color:#666;
}

/* Grid */

.stats-grid{
    width:60%;
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}

.stat-card{
    background:#ffffff;
    padding:45px 30px;
    border-radius:20px;
    text-align:center;
    box-shadow:0px 20px 50px rgba(0,0,0,0.05);
    transition:0.4s;
}

.stat-card:hover{
    transform:translateY(-10px);
    box-shadow:0px 30px 70px rgba(255,122,0,0.2);
}

/* Glowing Numbers */

.stat-card h3{
    font-size:46px;
    color:#ff7a00;
    margin-bottom:10px;
    text-shadow:0px 0px 15px rgba(255,122,0,0.4);
}

.stat-card p{
    font-size:15px;
    color:#555;
}

/* ================= MOBILE ================= */

@media(max-width:991px){

    .stats-section{
        padding:80px 20px;
    }

    .stats-container{
        flex-direction:column;
    }

    .experience-box{
        width:100%;
        text-align:center;
    }

    .stats-grid{
        width:100%;
        grid-template-columns:1fr;
        margin-top:40px;
    }

}

/* ================= COURSES SECTION ================= */

.courses-section{
    width:100%;
    padding:100px 100px;
    background:#ffffff;
}

/* ===== Marquee Strip ===== */

.courses-marquee{
    width:100%;
    overflow:hidden;
    background:#ff7a00;
    padding:10px 0;
    margin-bottom:60px;
}

.marquee-track{
    white-space:nowrap;
    display:inline-block;
    color:#fff;
    font-size:16px;
    font-weight:500;
    animation:marqueeMove 20s linear infinite;
}

@keyframes marqueeMove{
    0%{ transform:translateX(0); }
    100%{ transform:translateX(-50%); }
}

/* ===== Section Title ===== */

.section-title{
    text-align:center;
    font-size:42px;
    font-weight:700;
    margin-bottom:60px;
}

.section-title span{
    color:#ff7a00;
}

/* ===== Courses Grid ===== */

.courses-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:30px;
}

/* ===== Course Card ===== */

.course-card{
    text-decoration:none;
    background:#ffffff;
    border:2px solid #f2f2f2;
    border-radius:20px;
    padding:40px 20px;
    text-align:center;
    transition:0.4s ease;
    position:relative;
    overflow:hidden;
}

/* Icon */

.course-card i{
    font-size:36px;
    color:#ff7a00;
    margin-bottom:20px;
    transition:0.4s;
}

/* Title */

.course-card h3{
    font-size:16px;
    color:#333;
}

/* Hover Glow Effect */

.course-card:hover{
    border-color:#ff7a00;
    box-shadow:0px 0px 25px rgba(255,122,0,0.4);
    transform:translateY(-10px);
}

.course-card:hover i{
    transform:scale(1.2);
}

/* Animated Border Glow */

.course-card::before{
    content:'';
    position:absolute;
    top:-2px;
    left:-2px;
    right:-2px;
    bottom:-2px;
    border-radius:20px;
    border:2px solid transparent;
    background:linear-gradient(45deg,#ff7a00,#ffa733,#ff7a00);
    background-size:200% 200%;
    z-index:-1;
    opacity:0;
    transition:0.4s;
}

.course-card:hover::before{
    opacity:1;
    animation:glowBorder 2s linear infinite;
}

@keyframes glowBorder{
    0%{ background-position:0% 50%; }
    100%{ background-position:200% 50%; }
}

/* ================= MOBILE ================= */

@media(max-width:1200px){
    .courses-grid{
        grid-template-columns:repeat(3,1fr);
    }
}

@media(max-width:768px){
    .courses-section{
        padding:70px 20px;
    }

    .courses-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:480px){
    .courses-grid{
        grid-template-columns:1fr;
    }
}

/* ================= PRACTICAL SECTION ================= */

/* ================= PREMIUM PRACTICAL SECTION ================= */

.practical-section{
    width:100%;
    padding:120px 100px;
    background:linear-gradient(135deg,#ffffff,#fff4ec);
    position:relative;
    overflow:hidden;
}

/* Vertical Accent Line */

.practical-section::before{
    content:'';
    position:absolute;
    left:80px;
    top:0;
    width:6px;
    height:100%;
    background:linear-gradient(to bottom,#ff7a00,#ffa733);
    border-radius:10px;
    opacity:0.9;
}

/* Container */

.practical-container{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:90px;
    position:relative;
    z-index:2;
}

/* ===== LEFT MEDIA ===== */

.practical-media{
    width:45%;
    position:relative;
}

.practical-media img,
.practical-media video{
    width:650px;
  height: 450px;
    border-radius:20px;
    box-shadow:0px 25px 60px rgba(0,0,0,0.12);
    position:relative;
    z-index:2;
    transition:0.5s ease;
}

.practical-media:hover img,
.practical-media:hover video{
    transform:scale(1.04) translateY(-10px);
}

/* Decorative Shape */

.media-shape{
    position:absolute;
    width:220px;
    height:220px;
    background:#ff7a00;
    opacity:0.12;
    border-radius:30px;
    bottom:-30px;
    left:-30px;
    z-index:1;
    transition:0.5s;
}

.practical-media:hover .media-shape{
    transform:translate(-12px,12px);
}

/* ===== RIGHT CONTENT ===== */

.practical-content{
    width:50%;
}

.practical-content h2{
    font-size:44px;
    font-weight:700;
    margin-bottom:25px;
    opacity:0;
    transform:translateY(40px);
}

.practical-content h2 span{
    color:#ff7a00;
}

.practical-content p{
    font-size:16px;
    line-height:28px;
    color:#555;
    margin-bottom:20px;
    opacity:0;
    transform:translateY(40px);
}

.practical-btn{
    display:inline-block;
    margin-top:20px;
    padding:14px 35px;
    background:#ff7a00;
    color:#fff;
    text-decoration:none;
    border-radius:30px;
    font-size:15px;
    transition:0.3s;
    opacity:0;
    transform:translateY(40px);
}

.practical-btn:hover{
    background:#e66a00;
}

/* Reveal Active State */

.practical-content.active h2{
    animation:fadeUp 0.8s ease forwards;
}

.practical-content.active p:nth-of-type(1){
    animation:fadeUp 0.8s ease forwards 0.2s;
}

.practical-content.active p:nth-of-type(2){
    animation:fadeUp 0.8s ease forwards 0.4s;
}

.practical-content.active .practical-btn{
    animation:fadeUp 0.8s ease forwards 0.6s;
}

@keyframes fadeUp{
    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* ================= MOBILE ================= */

@media(max-width:991px){

    .practical-section{
        padding:80px 20px;
    }

    .practical-section::before{
        display:none;
    }

    .practical-container{
        flex-direction:column;
    }

    .practical-media,
    .practical-content{
        width:100%;
    }

    .practical-content{
        margin-top:40px;
        text-align:center;
    }

}

/* ================= PREMIUM REVIEWS ================= */

.reviews-section{
    width:100%;
    padding:120px 100px;
    background:linear-gradient(135deg,#fff5ec,#ffe6d4);
    overflow:hidden;
}

.reviews-heading{
    text-align:center;
    font-size:42px;
    font-weight:700;
    margin-bottom:60px;
}

.reviews-heading span{
    color:#ff7a00;
}

/* Marquee Container */

.reviews-marquee{
    overflow:hidden;
    width:100%;
}

.reviews-track{
    display:flex;
    gap:30px;
    animation:scrollLeft 30s linear infinite;
}

/* Infinite Scroll Animation */

@keyframes scrollLeft{
    0%{ transform:translateX(0); }
    100%{ transform:translateX(-50%); }
}

/* Clean Solid Cards */

.review-card{
    min-width:300px;
    padding:30px 25px;
    border-radius:18px;
    background:#ffffff;
    border:1px solid #eee;
    box-shadow:0px 10px 25px rgba(0,0,0,0.05);
    transition:0.3s ease;
}

.review-card:hover{
    transform:translateY(-8px);
    box-shadow:0px 15px 35px rgba(255,122,0,0.25);
    border-color:#ff7a00;
}

.review-card p{
    font-size:14px;
    line-height:24px;
    color:#333;
    margin:15px 0;
}

.review-card h4{
    font-size:14px;
    font-weight:600;
    color:#222;
}

.stars{
    color:#ffb400;
    font-size:16px;
}

/* Mobile */

@media(max-width:991px){
    .reviews-section{
        padding:70px 20px;
    }

    .review-card{
        min-width:260px;
    }
}

/* ================= JOB PLACEMENT CTA ================= */

.placement-section{
    width:100%;
    height:520px;
    position:relative;
    background:url('../images/placement.jpeg') center center/cover no-repeat;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding:0px 20px;
}

/* Dark Overlay */

.placement-overlay{
    position:absolute;
    width:100%;
    height:100%;
    background:linear-gradient(
        rgba(0,0,0,0.45),
        rgba(0,0,0,0.45)
    );
    top:0;
    left:0;
}

/* Content */

.placement-content{
    position:relative;
    z-index:2;
    max-width:850px;
    color:#ffffff;
}

.placement-content h2{
    font-size:48px;
    font-weight:700;
    margin-bottom:25px;
}

.placement-content h2 span{
    color:#ff7a00;
}

.placement-content p{
    font-size:16px;
    line-height:28px;
    margin-bottom:35px;
    color:#eaeaea;
}

/* CTA Button */

.placement-btn{
    display:inline-block;
    padding:16px 45px;
    background:#ff7a00;
    color:#ffffff;
    text-decoration:none;
    font-size:16px;
    font-weight:600;
    border-radius:40px;
    transition:0.4s ease;
    box-shadow:0px 0px 25px rgba(255,122,0,0.5);
}

.placement-btn:hover{
    background:#ffa733;
    transform:translateY(-5px);
    box-shadow:0px 0px 35px rgba(255,122,0,0.8);
}

/* ================= MOBILE ================= */

@media(max-width:991px){

    .placement-section{
        height:auto;
        padding:80px 20px;
    }

    .placement-content h2{
        font-size:30px;
    }

    .placement-content p{
        font-size:14px;
    }

}




/* ================= MAIN FOOTER ================= */


/* ================= FOOTER TOP STRIP ================= */

.footer-strip{
    width:100%;
    height:6px;
    background:linear-gradient(to right,#ff7a00,#ffa733);
}

.main-footer{
    background:#0f172a;   /* deep navy */
    padding:90px 100px 60px;
    color:#ffffff;
}

.footer-container{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:60px;
}

/* Each Box */

.footer-box{
    background:#111827;
    padding:40px 35px;
    border-radius:18px;
    transition:0.4s;
     border:2px solid rgba(255,122,0,0.6);   /* ORANGE BORDER */
}

.footer-box:hover{
    transform:translateY(-6px);
    box-shadow:0px 20px 50px rgba(255,122,0,0.2);
}

/* Logo */

.footer-logo{
    width:170px;
    margin-bottom:20px;
}

/* Headings */

.footer-box h3{
    font-size:20px;
    margin-bottom:20px;
    color:#ff7a00;
}

.footer-box h4{
    margin:20px 0 15px;
    color:#ff7a00;
}

/* Social Icons */

.footer-social a{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:40px;
    height:40px;
    margin-right:12px;
    background:#1f2937;
    color:#fff;
    border-radius:50%;
    transition:0.3s;
    text-decoration:none; 
}

.footer-social a:hover{
    background:#ff7a00;
    transform:translateY(-4px);
}

/* Contact Text */

.footer-box p{
    font-size:14px;
    line-height:24px;
    color:#ccc;
    margin-bottom:10px;
}

.footer-box i{
    color:#ff7a00;
    margin-right:8px;
}

/* Quick Links */

.footer-box ul{
    list-style:none;
    padding:0;
}

.footer-box ul li{
    margin-bottom:12px;
}

.footer-box ul li a{
    text-decoration:none;
    color:#ccc;
    font-size:14px;
    transition:0.3s;
}

.footer-box ul li a:hover{
    color:#ff7a00;
    padding-left:6px;
}

/* Footer Bottom */

.footer-bottom{
    background:#0b1220;
    text-align:center;
    padding:18px 20px;
    font-size:14px;
    color:#ddd;
}

.footer-bottom a{
    color:#ff7a00;
    font-weight:600;
    text-decoration:none;
}

.footer-bottom a:hover{
    text-decoration:underline;
}

/* ================= MOBILE ================= */

@media(max-width:991px){

    .main-footer{
        padding:70px 20px 50px;
    }

    .footer-container{
        grid-template-columns:1fr;
    }

}

/* ================= FLOATING BUTTONS ================= */

.floating-buttons{
    position:fixed;
    bottom:25px;
    right:25px;
    display:flex;
    flex-direction:column;
    gap:15px;
    z-index:999;
}

.float-btn{
    width:55px;
    height:55px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
    color:#fff;
    text-decoration:none;
    box-shadow:0px 10px 25px rgba(0,0,0,0.2);
    position:relative;
}

/* CALL BUTTON (RED) */

.call-btn{
    background:#e60023;
}

.call-btn::before{
    content:'';
    position:absolute;
    width:100%;
    height:100%;
    border-radius:50%;
    background:#e60023;
    animation:pulseRed 1.8s infinite;
    z-index:-1;
}

/* ENQUIRY BUTTON (ORANGE GRADIENT) */

.enquiry-btn{
    background:linear-gradient(135deg,#ff7a00,#ffa733);
}

.enquiry-btn::before{
    content:'';
    position:absolute;
    width:100%;
    height:100%;
    border-radius:50%;
    background:#ff7a00;
    animation:pulseOrange 1.8s infinite;
    z-index:-1;
}

/* Pulse Animations */

@keyframes pulseRed{
    0%{
        transform:scale(1);
        opacity:0.6;
    }
    70%{
        transform:scale(1.6);
        opacity:0;
    }
    100%{
        transform:scale(1);
        opacity:0;
    }
}

@keyframes pulseOrange{
    0%{
        transform:scale(1);
        opacity:0.6;
    }
    70%{
        transform:scale(1.6);
        opacity:0;
    }
    100%{
        transform:scale(1);
        opacity:0;
    }
}

/* Hover Effect */

.float-btn:hover{
    transform:translateY(-5px);
}

/* Mobile Adjust */

@media(max-width:768px){
    .float-btn{
        width:50px;
        height:50px;
        font-size:18px;
    }
}

/* ================= ENQUIRY MODAL ================= */

.enquiry-modal{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    display:none;
    align-items:center;
    justify-content:center;
    z-index:1000;
}

.modal-overlay{
    position:absolute;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.6);
}

/* Modal Box */

.modal-box{
    position:relative;
    width:380px;
    background:#ffffff;
    padding:40px 35px;
    border-radius:30px;
    text-align:center;
    box-shadow:0px 25px 60px rgba(0,0,0,0.25);
    animation:modalPop 0.4s ease;
}

/* Animation */

@keyframes modalPop{
    0%{
        transform:scale(0.7);
        opacity:0;
    }
    100%{
        transform:scale(1);
        opacity:1;
    }
}

/* Close Button */

.modal-close{
    position:absolute;
    top:15px;
    right:20px;
    background:none;
    border:none;
    font-size:18px;
    cursor:pointer;
    color:#888;
}

.modal-close:hover{
    color:#ff7a00;
}

/* Logo */

.modal-logo{
    width:120px;
    margin-bottom:15px;
}

/* Heading */

.modal-box h2{
    margin-bottom:25px;
    color:#333;
}

/* Form */

.enquiry-form input,
.enquiry-form select{
    width:100%;
    padding:12px 15px;
    margin-bottom:15px;
    border-radius:25px;
    border:1px solid #ddd;
    outline:none;
    font-size:14px;
    transition:0.3s;
}

.enquiry-form input:focus,
.enquiry-form select:focus{
    border-color:#ff7a00;
    box-shadow:0px 0px 10px rgba(255,122,0,0.3);
}

/* Submit Button */

.modal-submit{
    width:100%;
    padding:12px;
    border-radius:25px;
    border:none;
    background:linear-gradient(135deg,#ff7a00,#ffa733);
    color:#fff;
    font-weight:600;
    cursor:pointer;
    transition:0.3s;
}

.modal-submit:hover{
    box-shadow:0px 10px 25px rgba(255,122,0,0.4);
    transform:translateY(-3px);
}

.enquiry-modal{
    opacity:0;
    transition:0.3s ease;
}





/* ================= HEADING BOX ================= */

.interior-heading{
    margin:80px auto 40px;
    text-align:center;
}

.heading-box{
    display:inline-block;
    padding:18px 50px;
    background:#ff7a00;
    color:#fff;
    border-radius:50px;
    font-size:28px;
    font-weight:600;
    box-shadow:0px 10px 30px rgba(255,122,0,0.4);
    transition:0.4s ease;
}

.heading-box:hover{
    transform:translateY(-5px);
    box-shadow:0px 20px 40px rgba(255,122,0,0.6);
}

/* ================= SLIDER ================= */

/* ===== SLIDER ===== */

.slider-wrapper{
    width:60%;
    margin:40px auto 80px;
    overflow:hidden;
    border-radius:35px;
    position:relative;
}

.slider-track{
    display:flex;
    transition:0.5s ease;
}

.interior-slide{
    flex:0 0 100%;
}

.interior-slide img{
    width:100%;
    height:400px;
    object-fit:cover;
    display:block;
}

.interior-dots{
    position:absolute;
    bottom:20px;
    width:100%;
    text-align:center;
}

.interior-dot{
    height:10px;
    width:10px;
    margin:0 5px;
    display:inline-block;
    background:#fff;
    border-radius:50%;
    opacity:0.5;
    cursor:pointer;
}

.interior-dot.active{
    background:#ff7a00;
    opacity:1;
}
  

/* ================= CONTENT ================= */

/* ================= INTERIOR CONTENT REDESIGN ================= */

.interior-content{
    width:75%;
    margin:0 auto 100px;
    display:flex;
    flex-direction:column;
    gap:50px;
}

/* Base Card */

.content-card{
    background:#ffffff;
    padding:40px;
    border-radius:25px;
    box-shadow:0px 20px 50px rgba(0,0,0,0.06);
    border-left:6px solid #ff7a00;
    transition:0.4s ease;
}

.content-card:hover{
    transform:translateY(-8px);
    box-shadow:0px 25px 60px rgba(255,122,0,0.15);
}

.content-card h2{
    margin-bottom:20px;
    color:#ff7a00;
    font-size:26px;
}

.content-card p{
    line-height:28px;
    margin-bottom:15px;
    color:#444;
}


/* Objectives Grid */

.objectives-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
}

.objective-item{
    background:#fff5ec;
    padding:12px 18px;
    border-radius:20px;
    font-size:14px;
    border:1px solid #ffe2cc;
    transition:0.3s;
}

.objective-item:hover{
    background:#ff7a00;
    color:#fff;
    transform:translateY(-3px);
}


/* Highlight Box */

.highlight-box{
    background:linear-gradient(135deg,#ff7a00,#ffa733);
    padding:45px;
    border-radius:30px;
    color:#ffffff;
    box-shadow:0px 20px 60px rgba(255,122,0,0.3);
}

.highlight-box h2{
    margin-bottom:20px;
    font-size:26px;
}

.highlight-box p{
    line-height:28px;
}


/* Summary Box */

.summary-box{
    background:#f9fafb;
    padding:40px;
    border-radius:25px;
    border:2px dashed #ff7a00;
}

.summary-box h2{
    margin-bottom:15px;
    color:#ff7a00;
}

.summary-box p{
    line-height:28px;
    color:#444;
}


/* Mobile */

@media(max-width:991px){

    .interior-content{
        width:90%;
    }

    .objectives-grid{
        grid-template-columns:1fr;
    }

}
/* ================= CTA ================= */

.cta-section{
    text-align:center;
    margin:80px 0;
}

.cta-btn{
    display:inline-block;
    padding:15px 40px;
    font-size:18px;
    background:#ff7a00;
    color:#fff;
    border-radius:40px;
    text-decoration:none;
    box-shadow:0px 0px 25px rgba(255,122,0,0.7);
    animation:pulse 1.5s infinite;
    transition:0.3s ease;
}

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

@keyframes pulse{
    0%{ box-shadow:0 0 0 0 rgba(255,122,0,0.7); }
    70%{ box-shadow:0 0 0 20px rgba(255,122,0,0); }
    100%{ box-shadow:0 0 0 0 rgba(255,122,0,0); }
}

/* ================= MOBILE ================= */

@media(max-width:991px){

    .slider-wrapper{
        width:90%;
    }

    .slide img{
        height:250px;
    }

    .content-section{
        width:90%;
    }
}
.slide img{
    display:block !important;
    opacity:1 !important;
    visibility:visible !important;
}