html {
    scroll-behavior: smooth;
}

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

body{
background:#000;
color:#fff;
margin: 0;
padding: 0;
}

/* ===== NAVIGATION BAR ===== */

#navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 18px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(8px);
    transition: 0.4s ease;
    z-index: 1000;
}

#navbar.scrolled {
    background: rgba(0,0,0,0.95);
    border-bottom: 1px solid #111;
}

.logo img{
height:50px;
filter:invert(1);
}

nav a{
color:#fff;
text-decoration:none;
margin-left:25px;
position:relative;
}

nav a::after{
content:"";
position:absolute;
width:0%;
height:1px;
left:0;
bottom:-5px;
background:#fff;
transition:0.3s;
}

nav a:hover::after{
width:100%;
}

/* STATS */
.stats{
display:flex;
justify-content:space-around;
padding:80px 8%;
background:#0a0a0a;
text-align:center;
}

.stat h2{
font-size:36px;
margin-bottom:10px;
}

/* ===== STATS FADE ANIMATION ===== */

.stats {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s ease;
}

.stats.show {
    opacity: 1;
    transform: translateY(0);
}

/* Individual stat animation */
.stat {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.stat.show {
    opacity: 1;
    transform: translateY(0);
}

/* ===== FULL SCREEN SLIDER ===== */

.fullscreen-slider {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    margin-top: 0;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.8s ease-in-out;
}

.slide.active {
    opacity: 1;
}

/* ===== FULLSCREEN SLIDER NAVIGATION ===== */

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.4);
    border: 1px solid #333;
    color: #fff;
    font-size: 28px;
    padding: 10px 16px;
    cursor: pointer;
    z-index: 5;
    transition: 0.3s;
}

.slider-arrow:hover {
    background: rgba(0,0,0,0.7);
    border-color: #555;
}

.slider-arrow.left {
    left: 25px;
}

.slider-arrow.right {
    right: 25px;
}

/* Dots */

.slider-dots {
    position: absolute;
    bottom: 30px;
    width: 100%;
    text-align: center;
    z-index: 5;
}

.dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 0 6px;
    background: rgba(255,255,255,0.4);
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.dot.active {
    background: #fff;
}

/* SUBTLE DARK OVERLAY FOR PREMIUM LOOK */

.fullscreen-slider::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.45);
    top: 0;
    left: 0;
}

/* SERVICES */
.services{
padding:100px 8%;
text-align:center;
}

.service-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:30px;
margin-top:40px;
}

.card{
background:#111;
padding:40px;
border:1px solid #222;
transition:0.3s;
}

.card:hover{
transform:translateY(-8px);
border-color:#555;
}

/* CLIENTS */
.clients{
padding:80px 8%;
text-align:center;
background:#0a0a0a;
}

.logo-slider{
display:flex;
justify-content:center;
gap:40px;
margin-top:40px;
}

.logo-slider img{
height:40px;
filter:invert(1);
opacity:0.6;
transition:0.3s;
}

.logo-slider img:hover{
opacity:1;
}

footer{
text-align:center;
padding:20px;
border-top:1px solid #111;
}

/* ===== Google Rating Summary ===== */

.rating-summary {
    text-align: center;
    margin-bottom: 30px;
}

.stars-line {
    color: #FFD700;
    font-size: 24px;
    letter-spacing: 4px;
    display: block;
    margin-bottom: 10px;
}

.rating-summary p {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 5px;
}

.review-count {
    font-size: 15px;
    color: #aaa;
}

.google-link {
    display: inline-block;
    margin-top: 10px;
    color: #FFD700;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.google-link:hover {
    opacity: 0.7;
}

/* ===== WHAT OUR CLIENTS SAY ===== */

.section-title {
    text-align: center;
}

.testimonials .section-title {
    text-align: center;
    margin-bottom: 20px;
    font-size: 32px;
    font-weight: 500;
}

.testimonials .section-title::after {
    content: "";
    display: block;
    width: 140px;
    height: 2px;
    background: linear-gradient(to right, #444, #777, #444);
    margin: 18px auto 0;
}

/* ===== 3-CARD TESTIMONIAL SLIDER ===== */

.testimonial-wrapper {
    position: relative;
    max-width: 1300px;
    margin: 20px auto 0;
    display: flex;
    align-items: center;
}

.testimonial-slider {
    overflow: hidden;
    width: 100%;
}

.testimonial-track {
    display: flex;
    transition: transform 0.6s ease;
}

.testimonial-slide {
    min-width: 33.3333%;
    padding: 25px;
}

.testimonial-slide-inner {
    background: #111;
    border: 1px solid #222;
    padding: 35px 40px;
    height: 100%;
    transition: 0.3s;
}

.testimonial-slide-inner:hover {
    border-color: #444;
    transform: translateY(-6px);
}

.testimonial-slide p {
    font-style: italic;
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 15px;
}

.testimonial-slide h4 {
    margin-bottom: 5px;
}

.testimonial-slide span {
    font-size: 14px;
    color: #aaa;
}

/* Arrows */
.arrow {
    background: none;
    border: 1px solid #333;
    color: #fff;
    font-size: 24px;
    padding: 10px 15px;
    cursor: pointer;
    transition: 0.3s;
}

.arrow:hover {
    background: #111;
    border-color: #555;
}

/* Responsive */
@media (max-width: 992px) {
    .testimonial-slide {
        min-width: 50%;
    }
}

@media (max-width: 600px) {
    .testimonial-slide {
        min-width: 100%;
    }
}

/* ===== WhatsApp Floating Button ===== */

.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
    transition: all 0.3s ease;
    z-index: 1000;
}

.whatsapp-float img {
    width: 30px;
    height: 30px;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}


/* ===== ABOUT PAGE ===== */

/* =========================
   ABOUT PAGE
========================= */

.page-hero {
    padding: 150px 8% 100px;
    text-align: center;
    background: #0a0a0a;
}

.page-hero h1 {
    font-size: 40px;
    margin-bottom: 15px;
}

.page-hero p {
    color: #aaa;
}

/* Shared Container */
.container {
    max-width: 900px;
    margin: auto;
}

/* About Section */
.about-section {
    padding: 100px 8%;
    text-align: center;
}

.about-section p {
    margin: 20px auto;
    color: #ccc;
    line-height: 1.8;
    max-width: 850px;
}

/* Founder Section */
.founder-section {
    padding: 100px 8%;
    background: #0f0f0f;
}

.founder-container {
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
}

.founder-text {
    flex: 1;
}

.founder-text p {
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 18px;
}

.founder-image {
    flex: 1;
    text-align: center;
}

.founder-image img {
    width: 320px;
    border-radius: 12px;
    border: 1px solid #222;
    transition: 0.3s ease;
}

.founder-image img:hover {
    transform: scale(1.03);
    border-color: #444;
}

/* Core Expertise */
.expertise-section {
    padding: 100px 8%;
    text-align: center;
}

.section-title {
    margin-bottom: 40px;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.expertise-item {
    background: #111;
    border: 1px solid #222;
    padding: 22px;
    font-size: 14px;
    transition: 0.3s ease;
}

.expertise-item:hover {
    border-color: #444;
    transform: translateY(-5px);
}

/* Responsive */
@media (max-width: 992px) {
    .founder-container {
        flex-direction: column;
        text-align: center;
    }

    .founder-image img {
        width: 260px;
        margin-top: 30px;
    }
}

/* =========================
   SERVICES PAGE
========================= */

.services-intro {
    padding: 80px 8%;
    text-align: center;
}

.services-intro p {
    max-width: 850px;
    margin: auto;
    color: #ccc;
    line-height: 1.8;
}

/* Service Blocks */

.service-block {
    padding: 100px 8%;
}

.service-block.dark {
    background: #0f0f0f;
}

.service-block h2 {
    margin-bottom: 20px;
}

.service-block p {
    max-width: 800px;
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 25px;
}

.service-block ul {
    list-style: none;
    padding: 0;
}

.service-block ul li {
    margin-bottom: 10px;
    color: #aaa;
    position: relative;
    padding-left: 18px;
}

.service-block ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #555;
}

/* CTA */

.services-cta {
    padding: 100px 8%;
    text-align: center;
    background: #0a0a0a;
}

.services-cta h2 {
    margin-bottom: 20px;
}

.cta-button {
    display: inline-block;
    padding: 12px 30px;
    border: 1px solid #fff;
    color: #fff;
    text-decoration: none;
    transition: 0.3s ease;
}

.cta-button:hover {
    background: #fff;
    color: #000;
}

/* =========================
   EXCEL TRAINING PAGE
========================= */

.excel-philosophy {
    padding: 100px 8%;
    text-align: center;
}

.framework-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.framework-grid div {
    background: #111;
    border: 1px solid #222;
    padding: 20px;
}

/* PROGRAM SECTIONS */

.program-category {
    padding: 100px 8%;
}

.program-category.dark {
    background: #0f0f0f;
}

.program-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.program-card {
    background: #111;
    border: 1px solid #222;
    padding: 25px;
    transition: 0.3s ease;
}

.program-card:hover {
    transform: translateY(-5px);
    border-color: #444;
}

.program-card h3 {
    margin-bottom: 15px;
}

.program-duration {
    display: block;
    margin-top: 15px;
    font-size: 13px;
    color: #aaa;
}

/* Remove default link styling */
.program-brochure-btn {
    display: inline-block;
    margin-top: 18px;
    padding: 10px 22px;
    border: 1px solid #fff;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 0.5px;
    transition: 0.3s ease;
}

/* Prevent blue and purple */
.program-brochure-btn:visited,
.program-brochure-btn:link {
    color: #fff;
}

.program-brochure-btn:hover {
    background: #fff;
    color: #000;
}

.program-brochure-btn:active {
    color: #000;
}

/* WHY SECTION */

.why-excel {
    padding: 100px 8%;
    text-align: center;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.why-grid div {
    background: #111;
    padding: 20px;
    border: 1px solid #222;
}

/* EXCEL-ENQUIRY FORM */

/* NAVIGATION BAR */
.enquiry-section {
    padding-top: 300px; /* adjust based on navbar height */
}

.enquiry-container {
    max-width: 600px;
    margin: 100px auto;
    padding: 40px;
    background: #111;
    color: #fff;
}

.enquiry-container input,
.enquiry-container select,
.enquiry-container textarea {
    width: 100%;
    margin-bottom: 15px;
    padding: 10px;
    background: #0a0a0a;
    border: 1px solid #333;
    color: #fff;
}

.enquiry-container button {
    width: 100%;
    padding: 12px;
    background: #fff;
    color: #000;
    border: none;
    cursor: pointer;
}

/* =========================
   RADIO BUTTON ALIGNMENT
========================= */

.user-type {
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.radio-option {
    display: flex;
    align-items: center;   /* key alignment fix */
    gap: 10px;
    font-size: 16px;
    line-height: 1.4;
    cursor: pointer;
}

.radio-option input[type="radio"] {
    margin: 0;             /* remove browser default margin */
    position: relative;
    top: 1px;              /* small visual adjustment */
    width: 16px;
    height: 16px;
    accent-color: #ffffff;
}

#individualFields {
    display: none;
}

/* =========================
   ENQUIRY FORM WORK IN PROCESS
========================= */

#submitBtn.loading {
    opacity: 0.7;
    cursor: not-allowed;
}

.loader {
    border: 2px solid #fff;
    border-top: 2px solid transparent;
    border-radius: 50%;
    width: 14px;
    height: 14px;
    display: inline-block;
    margin-left: 8px;
    animation: spin 0.8s linear infinite;
    vertical-align: middle;
}

@keyframes spin {
    100% { transform: rotate(360deg); }
}

/* =========================
   CONTACT PAGE
========================= */

/* Contact Hero Section */

.contact-hero {
    padding: 140px 8% 80px;
    text-align: center;
    background: #000;
}

.contact-hero h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.contact-hero p {
    color: #aaa;
    max-width: 700px;
    margin: auto;
    line-height: 1.6;
}

/* Contact Info Section */

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    padding: 60px 8%;
    background: #000;
}

.contact-card {
    background: #0b0b0b;
    padding: 35px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #111;
    transition: 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-6px);
    border-color: #333;
}

.contact-card h3 {
    margin-bottom: 12px;
    font-size: 20px;
}

.contact-card p {
    font-size: 18px;
    margin-bottom: 8px;
}

/* Contact Form */

.contact-form-section {
    padding: 80px 8%;
    background: #000;
}

.contact-form-container {
    max-width: 700px;
    margin: auto;
    text-align: center;
}

.contact-form-container h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.contact-form-container p {
    color: #aaa;
    margin-bottom: 35px;
}

#contactForm {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

#contactForm input,
#contactForm select,
#contactForm textarea {
    background: #0b0b0b;
    border: 1px solid #222;
    padding: 14px;
    border-radius: 6px;
    color: #fff;
    font-size: 15px;
}

#contactForm input:focus,
#contactForm textarea:focus,
#contactForm select:focus {
    outline: none;
    border-color: #555;
}

#contactSubmitBtn {
    padding: 14px;
    background: #fff;
    color: #000;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
}

#contactSubmitBtn:hover {
    opacity: 0.85;
}

/* Below buttons added from js */

.contact-btn {
    display: inline-block;
    margin: 10px;
    padding: 12px 22px;
    background: #fff;
    color: #000;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: 0.3s;
}

.contact-btn:hover {
    opacity: 0.85;
}

.contact-btn.secondary {
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
}