{% load static%}

html, body {
    width: 100%;
    margin: 0;
    padding: 0%;
    overflow-x: hidden;
    overflow-y: auto;

}

body{
        background-color: #f9f9f9;
        font-family: 'Roboto', sans-serif;

}


:root {
    --theme-trainig-color: #87CEEB;
    --hover-buttons-color: #1ea9d3;
    --heading-font-size: 2.5rem;
    --brlow-heading-p: 1.1rem;
    --our-reach-color:#a3e5fd;
    --text-theme-color:black;
    --theme-light-color:#dbeff6;
    --liner-color:linear-gradient(145deg, #ffffff, #f0f4f8);
    --liner-hover-color:linear-gradient(145deg, #f9fafc, #e6eff7);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.15);
    --secondary-color: #10B981;
    --text-dark: #1F2937;
    --text-light: #6B7280;
    --bg-light: #F9FAFB;
    --border-color: #E5E7EB;
    --white: #FFFFFF;
}


/* --- Chatbot Icon --- */
        #chatbotIcon {
            position: fixed;
            bottom: 100px;
            right: 20px;
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
            border-radius: 50%;
            box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            animation: float 2s ease-in-out infinite, pulse 2s infinite;
            z-index: 1000;
            transition: transform 0.2s;
        }
        /* Floating animation */
        @keyframes float {
            0% {
                transform: translateY(0px);
            }

            50% {
                transform: translateY(-10px);
            }

            100% {
                transform: translateY(0px);
            }
        }

        /* Pulsing animation */
        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(37, 117, 252, 0.7);
            }

            70% {
                box-shadow: 0 0 20px 20px rgba(37, 117, 252, 0);
            }

            100% {
                box-shadow: 0 0 0 0 rgba(37, 117, 252, 0);
            }
        }

        /* --- WhatsApp Icon --- */
        #whatsappIcon {
            position: fixed;
            bottom: 20px;
            /* directly below chatbot icon */
            right: 28px;
            /* align horizontally with chatbot icon */
            width: 60px;
            height: 60px;
            background: #25D366;
            border-radius: 50%;
            box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1000;
            transition: transform 0.3s;
            animation: float 2s ease-in-out infinite;
            font-size: 2rem;
        }

        #whatsappIcon:hover {
            transform: scale(1.2);
        }
/* Chatbot Container */
.chatbot-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
}

.chatbot-icon:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-lg);
}

.chatbot-icon svg {
    width: 35px;
    height: 35px;
    color: var(--text-theme-color);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(79, 70, 229, 0.7);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(79, 70, 229, 0);
    }
}

@keyframes float {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(86, 229, 64, 0.7);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(79, 70, 229, 0);
    }
}

/* Chatbot Window */
.chatbot-window {
    position: absolute;
    bottom: 30px;
    right: 30px;
    left: auto;
    width: 420px;
    height: 620px;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    display: none;
    flex-direction: column;
    overflow: hidden;
    animation: slideUp 0.3s ease-out;
}

.chatbot-window.active {
    display: flex;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Chatbot Header */
.chatbot-header {
    background: linear-gradient(135deg, var(--theme-trainig-color), var(--theme-light-color));
    color: var(--text-theme-color);
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.bot-avatar {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bot-avatar svg {
    width: 28px;
    height: 28px;
}

.header-text h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.status {
    font-size: 0.85rem;
    opacity: 0.9;
    display: flex;
    align-items: center;
    gap: 6px;
}

.status::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--secondary-color);
    border-radius: 50%;
    animation: blink 2s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.close-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.close-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.close-btn svg {
    width: 20px;
    height: 20px;
    color: var(--text-theme-color);
}

/* Chat Messages Area */
.chatbot-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    background: var(--bg-light);
}

.chatbot-messages::-webkit-scrollbar {
    width: 6px;
}

.chatbot-messages::-webkit-scrollbar-track {
    background: transparent;
}

.chatbot-messages::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 10px;
}

/* Message Bubble */
.message {
    margin-bottom: 16px;
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.message.bot {
    display: flex;
    gap: 10px;
}

.message.user {
    display: flex;
    justify-content: flex-end;
}

.message-avatar {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, var(--theme-trainig-color), var(--theme-light-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.message-avatar svg {
    width: 20px;
    height: 20px;
    color: var(--white);
}

.message-content {
    max-width: 75%;
}

.message-bubble {
    padding: 12px 16px;
    border-radius: 18px;
    font-size: 0.95rem;
    line-height: 1.5;
    white-space: pre-wrap;
    word-wrap: break-word;
}

.message.bot .message-bubble {
    background: var(--white);
    color: var(--text-dark);
    border-bottom-left-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.message.user .message-bubble {
    background: linear-gradient(135deg, var(--theme-trainig-color), var(--theme-light-color));
    color: var(--white);
    border-bottom-right-radius: 4px;
}

/* Course Options */
.course-options {
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.course-btn {
    background: var(--white);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 12px 16px;
    border-radius: 12px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.2s;
    text-align: left;
}

.course-btn:hover {
    background: var(--theme-trainig-color);
    color: var(--white);
    transform: translateX(5px);
}

/* Action Buttons */
.action-buttons {
    margin-top: 12px;
    display: flex;
    gap: 8px;
}

.action-btn {
    flex: 1;
    background: var(--white);
    border: 2px solid var(--theme-trainig-color);
    color: var(--theme-trainig-color);
    padding: 10px 16px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.2s;
}

.action-btn:hover {
    background: var(--theme-trainig-color);
    color: var(--white);
}

.action-btn.download {
    border-color: var(--secondary-color);
    color: var(--secondary-color);
}

.action-btn.download:hover {
    background: var(--secondary-color);
    color: var(--white);
}

/* Input Area */
.chatbot-input-area {
    padding: 20px;

    background: var(--white);
    border-top: 1px solid var(--border-color);
}

.input-group {
    margin-bottom: 12px;
}

.input-group:last-child {
    margin-bottom: 0;
}

.input-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.input-group input,
.input-group select {
    width: 92%;
    padding: 12px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 0.95rem;
    transition: all 0.2s;
}

.input-group input:focus,
.input-group select:focus {
    outline: none;
    border-color: var(--theme-trainig-color);
}

.contact-input-group {
    display: flex;
    gap: 8px;
}

.contact-input-group select {
    width: 120px;
}

.contact-input-group input {
    flex: 1;
}

.submit-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, var(--theme-trainig-color), var(--theme-light-color));
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    margin-top: 12px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(79, 70, 229, 0.3);
}

.submit-btn:active {
    transform: translateY(0);
}

/* Typing Indicator */
.typing-indicator {
    display: flex;
    gap: 4px;
    padding: 12px 16px;
    background: var(--white);
    border-radius: 18px;
    border-bottom-left-radius: 4px;
    width: fit-content;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.typing-dot {
    width: 8px;
    height: 8px;
    background: var(--text-light);
    border-radius: 50%;
    animation: typing 1.4s infinite;
}

.typing-dot:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typing {
    0%, 60%, 100% {
        transform: translateY(0);
        opacity: 0.4;
    }
    30% {
        transform: translateY(-10px);
        opacity: 1;
    }
}

/* Error Message */
.error-message {
    color: #EF4444;
    font-size: 0.85rem;
    margin-top: 6px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .chatbot-container {
        bottom: 20px;
        right: 20px;
    }

    .chatbot-window {
        width: calc(100vw - 40px);
        height: calc(100vh - 100px);
        bottom: 70px;
        right: -10px;
    }

    .chatbot-icon {
        width: 60px;
        height: 60px;
    }

    .chatbot-icon svg {
        width: 30px;
        height: 30px;
    }
}

@media (max-width: 480px) {
    .message-content {
        max-width: 85%;
    }

    .action-buttons {
        flex-direction: column;
    }
}


/* Animated underline container */
    .animatedLine {
      width: 100%;
      max-width: 300px; /* adjust as needed */
      height: 3px;
      background: var(--theme-light-color); /* static background line */
      overflow: hidden;
      position: relative;
      margin: 1% auto;
    }

    /* Moving line */
    .animatedLine::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      width: 100%;
      background: var(--theme-trainig-color); /* moving line color */
      transform: translateX(-100%);
      animation: slide 3s linear infinite;
    }

    @keyframes slide {
      0% {
        transform: translateX(-100%);
      }
      100% {
        transform: translateX(100%);
      }
    }


/* ===== MODAL OVERLAY ===== */
.enrollModal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.65);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    backdrop-filter: blur(4px);
}

.enrollModal.active {
    display: flex;
}

/* ===== MODAL BOX ===== */
/* ===============================
   ENROLL MODAL OVERLAY
================================ */
.enrollModal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    backdrop-filter: blur(4px);
}

.enrollModal.active {
    display: flex;
}

/* ===============================
   MODAL BOX
================================ */
.modalBox {
    background: linear-gradient(145deg, #ffffff, #f1f6fb);
    width: 90%;
    max-width: 420px;
    padding: 30px;
    border-radius: 18px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
    animation: popIn 0.35s ease;
    position: relative;
}

/* Pop animation */
@keyframes popIn {
    from {
        transform: scale(0.85);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* ===============================
   CLOSE BUTTON
================================ */
.closeModal {
    position: absolute;
    top: 15px;
    right: 18px;
    font-size: 1.8rem;
    cursor: pointer;
    color: #555;
    transition: color 0.2s ease;
}

.closeModal:hover {
    color: #000;
}

/* ===============================
   HEADINGS
================================ */
.modalBox h2 {
    text-align: center;
    margin-bottom: 6px;
    color: var(--theme-trainig-color);
}

.modalBox p {
    text-align: center;
    margin-bottom: 20px;
    color: #666;
    font-size: 0.95rem;
}

/* ===============================
   FORM LAYOUT
================================ */
.modalBox form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ===============================
   INPUT FIELDS
================================ */
.modalBox input {
    width: 100%;
    padding: 12px;
    margin-bottom: 12px;
    border-radius: 10px;
    border: 1px solid #ccc;
    font-size: 0.95rem;
    box-sizing: border-box;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.modalBox input:focus {
    border-color: var(--theme-trainig-color);
    box-shadow: 0 0 0 2px rgba(15, 108, 191, 0.2);
    outline: none;
}

.modalBox input[readonly] {
    background: #eef3f7;
    font-weight: 600;
}

/* ===============================
   SUBMIT BUTTON
================================ */
.modalBox button {
    width: 100%;
    padding: 12px;
    border-radius: 30px;
    border: none;
    background: linear-gradient(
        135deg,
        var(--theme-trainig-color),
        #0f6cbf
    );
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.modalBox button:hover {``
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* ===============================
   MOBILE RESPONSIVE
================================ */
/* ===== MOBILE FIX FOR MODAL OVERFLOW ===== */
@media (max-width: 480px) {

    /* Prevent modal from exceeding viewport width */
    .modalBox {
        width: calc(100% - 32px);
        max-width: 100%;
        padding: 22px;
        box-sizing: border-box;
    }

    /* Slightly reduce animation scale to avoid overflow */
    @keyframes popIn {
        from {
            transform: scale(0.9);
            opacity: 0;
        }
        to {
            transform: scale(1);
            opacity: 1;
        }
    }

    /* Text sizing for small screens */
    .modalBox h2 {
        font-size: 1.25rem;
    }

    .modalBox p {
        font-size: 0.9rem;
    }

    /* Inputs & button fit perfectly */
    .modalBox input,
    .modalBox button {
        font-size: 0.9rem;
        padding: 11px;
    }
}


/* TOP HEADER */

.trainingheader{
    width: 100%;
    overflow: visible
    height: 40px;
}

.upHeader {
    height: 40px;
    padding: 0 2%;
    background-color: var(--theme-trainig-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-theme-color);
    font-size: 0.9rem;
}

.contactSesction {
    display: flex;
    gap: 20px;
}

.contactSesction a {
    color: var(--text-theme-color);
    text-decoration: none;
}

.contactSesction a:hover{
   color: white;
}

.SocialMediaHeader ul li{
    display: inline;
    font-size: 1.4rem;
}

.SocialMediaHeader a{
   color: var(--text-theme-color);
}

.SocialMediaHeader a:hover{
   color: white;
}


/* NAV HEADER */

.navHeder {
    width: 96%;
    z-index: 9999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5% 2%;
    box-shadow: 1px 1px 10px rgb(156, 153, 153);
    background-color: #fff;

}

.w2clogo img {
    width: 120px;
}

/* MENU LINKS */
.manuLinks ul {
    display: flex;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.manuLinks ul li a {
    text-decoration: none;
    color: #333;
    font-size: 1rem;
    font-weight: 500;
    display: flex;
    align-items: center;

    padding: 8px 8px;
    border-radius: 5px;
    transition: background var(--transition-speed), color var(--transition-speed);
}

/* Hover effect for main links */
.manuLinks ul li a:hover {
    background-color: var(--theme-trainig-color);
    color: var(--text-theme-color);
}

/* HAMBURGER */
.menuToggle {
    display: none;
    font-size: 2rem;
    cursor: pointer;
}

/* DROPDOWN */
.dropdown {
    position: relative;
}

/* Dropdown Menu Style */
.dropdownMenu {
    display: none !important;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background-color: var(--dropdown-bg);
    border-radius: 8px;
    box-shadow: 0 10px 25px var(--dropdown-shadow);
    overflow: hidden;
    z-index: 100;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity var(--transition-speed), transform var(--transition-speed);
}

.dropdown.active .dropdownMenu {
    display: block !important;
    opacity: 1;
    transform: translateY(0);
}

.dropdownMenu li {

    background-color: white ;
}

.dropdownMenu li a {
    color: #333;
    display: block;
    transition: background var(--transition-speed), color var(--transition-speed);
    border-radius: 5px;
}

.dropdownMenu li a:hover {
    background-color: var(--dropdown-hover);
    color: var(--dropdown-hover-text);
}

/* Arrow rotation */
.dropdownToggle .arrow {
    display: inline-block;
    transition: transform var(--transition-speed);
}

.dropdown.active .arrow {
    transform: rotate(180deg);
}

/* RESPONSIVE */

@media(max-width:900px){

    .menuToggle {
        display: block;
    }

    .manuLinks {
        display: none;
        position: absolute;
        width: 100%;
        top: 100%;
        left: 0;
        background-color: #fff;
        box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        z-index: 99;
    }

    .manuLinks.active {
        display: block;
    }

    .manuLinks ul {
        flex-direction: column;
    }

    .manuLinks ul li {
        padding: 12px 20px;
        border-bottom: 1px solid #ddd;
    }

    .dropdownMenu {
        position: static;
        box-shadow: none;
        min-width: 100%;
        transform: translateY(0);
        opacity: 1;
    }
}


@media (max-width: 775px) {


    .upHeader {
        flex-direction: column;
        align-items: flex-start;
        height: auto;
        padding: 8px 2%;
        gap: 5px;
        font-size: 0.85rem;
    }

    .contactSesction {
        flex-direction: column;
        gap: 5px;
        width: 100%;
    }

    .SocialMediaHeader ul{
        margin:0;
        padding:0;
    }

    .contactSesction a {
        font-size: 0.85rem;
    }


}


/* Overlay */
  .FrontAnimImageModal {
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.75);
    z-index: 9999;

    display: flex;
    justify-content: center;
    align-items: center;

    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
  }

  .FrontAnimImageModal.show {
    opacity: 1;
    pointer-events: auto;
  }

  /* Responsive square container */
  .FrontAnimImageBox {
    width: clamp(500px, 70vw, 500px);
    aspect-ratio: 1 / 1;

    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;

    transform: translateY(-250px);
    transition: transform 0.45s ease;
  }

  .FrontAnimImageModal.show .FrontAnimImageBox {
    transform: translateY(0);
  }

  /* Image */
  .FrontAnimImage {
    width: 100%;
    height: 100%;
    object-fit: cover important;
  }

  /* Close button */
  .FrontAnimImageClose {
    position: absolute;
    top: 18px;
    right: 22px;
    font-size: 36px;
    color: black;
    cursor: pointer;
    user-select: none;
  }

  .FrontAnimImageClose:hover {
    color: var(--hover-buttons-color);
  }

  /* Mobile fine-tuning */
  @media (max-width: 480px) {
    .FrontAnimImageClose {
      font-size: 32px;
    }
  }


.mainContainer{
   width: 100%;
}

/* ===== HERO SECTION ===== */
.heroSection {
    background-color: var(--theme-light-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5% 10%;
    min-height: 70vh;
    gap: 40px;
    box-sizing: border-box;
}

/* Left content */
.heroContent {
    flex: 1;
}

/* Right image */
.heroImage {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.heroImage img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
    filter: drop-shadow(0 0 15px rgba(0,0,0,0.27));
    /* box-shadow: 0 0 15px rgba(0, 0, 0, 0.12); */
}

.heroImage img:hover {
    transform: scale(1.05);
}
/* ContinueLine content */
.continueLine {
    max-width: 500px;
}

/* Typing text style */
.tagline {
    font-size: 1.3rem;
    letter-spacing: 1px;
    font-weight: 600;
    color: var(--text-theme-color);
    margin-bottom: 10px;
    white-space: nowrap;
}

/* Blinking cursor */
#typingText::after {
    content: "|";
    margin-left: 4px;
    animation: blink 1s infinite;
}

@keyframes blink {

    0%,
    50%,
    100% {
        opacity: 1;
    }

    25%,
    75% {
        opacity: 0;
    }
}

/* Main heading */
.continueLine h1 {
    font-size: 2rem;
    line-height: 1.2;
    color: var(--text-theme-color);
    margin-bottom: 15px;
}



/* Subtext */
.subtext {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 25px;
}

/* Search box */
.courseSearchWrapper {
    position: relative;
    width: 320px;
}

/* Search box */
.searchBox {
    width: 100%;
    padding: 14px 15px 14px 45px;
    font-size: 16px;
    border-radius: 50px;
    border: 1px solid #ddd;
    outline: none;
    background-color: white;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='%23999' viewBox='0 0 16 16'%3E%3Cpath d='M11.742 10.344a6.5 6.5 0 1 0-1.397 1.398l3.85 3.85a1 1 0 0 0 1.415-1.414l-3.868-3.834zM12 6.5a5.5 5.5 0 1 1-11 0a5.5 5.5 0 0 1 11 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: 18px center;
}

.searchBox:focus {
    border-color: #005571;
}

/* Suggestions */
.searchSuggestions {
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    list-style: none;
    padding: 5px 0;
    display: none;
    z-index: 1000;
}

.searchSuggestions li {
    padding: 12px 20px;
    cursor: pointer;
    font-size: 15px;
}

.searchSuggestions li:hover {
    background: #f0f0f0;
}

.searchSuggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    max-height: 250px;
    overflow-y: auto;
    border: 1px solid #ddd;
    background: #fff;
    display: none;
    z-index: 100;
    list-style: none;
    margin: 0;
    padding: 0;
    border-radius: 5px;
}

.searchSuggestions li {
    padding: 10px 15px;
    cursor: pointer;
}

.searchSuggestions li.active,
.searchSuggestions li:hover {
    background-color: var(--theme-light-color);
    color: var(--text-theme-color);
}

.error {
    color: red;
    font-size: 12px;
    display: block !important;
    margin-bottom: 10px;
}

input.invalid {
    border: 1px solid red;
}



/* Buttons container */
.heroButtons {
    margin-top: 20px;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Both buttons identical */
.brochure {
    display: inline-block;
    text-decoration: none;
    padding: 14px 32px;
    border-radius: 50px;
    background-color: var(--theme-trainig-color);
    color: var(--text-theme-color);
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 85, 113, 0.35);
}

.brochure:hover {
    background-color: var(--hover-buttons-color);
    transform: translateY(-2px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .heroSection {
        flex-direction: column-reverse;
        padding: 5%;
        gap: 30px;
    }

    .heroImage,
    .heroContent {
        width: 100%;
    }

    .heroImage img {
        width: 100%;
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    .continueLine h1 {
        font-size: 1.5rem;
    }

    .subtext{
    font-size: 1rem;
}

    .searchBox,
    .brochure {
        width: 100%;
        font-size:0.9rem ;
    }

    .heroButtons {
        flex-direction: column;
        width: 50%;
        gap: 12px;
    }

    .tagline {
        white-space: wrap;
        font-size: 1.2rem;
    }
}

@media (max-width: 400px) {

    .continueLine h1 {
        font-size: 1.2rem;
    }

    .tagline {
        font-size: 1rem;
    }

    .courseSearchWrapper{
        width: 280px;
    }

}



/* ===== COURSES SECTION ===== */
.courses {
    width:100%;
    text-align: center;
    margin: 3% 0;
}

.courses h1 {
    font-size: var(--heading-font-size);
    color: #111;
    margin-bottom: 5px;
}

.courses p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 25px;
}

/* Filter buttons */
.coursesfilter {
    margin-bottom: 30px;
}

.coursesfilter a {
    display: inline-block;
    margin: 5px 8px;
    padding: 8px 18px;
    text-decoration: none;
    color: #333;
    border: 1px solid #ccc;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.coursesfilter a.active,
.coursesfilter a:hover {
    background-color: var(--theme-trainig-color);
    color: var(--text-theme-color);
    border-color: var(--theme-trainig-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

/* Courses grid */
.courseslist {
    max-width: 85%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    justify-content: center;
    gap: 30px;
    margin: 0 auto;

}

/* Course card */
.course {
    width: 300px;
    border-radius: 12px;
    background-color: white;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    cursor: pointer;
    border: 1px solid #eee;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.course:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.coursesmain img {
    height: 160px;
    width: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.course:hover .coursesmain img {
    transform: scale(1.05);
}

.coursesmain h1 {
    font-size: 1.25rem;
    margin: 15px;
    color: #111;
    min-height: 50px;
}

.coursesmain p {
    font-size: 1rem;
    margin: 5px 15px;
    color: #555;
}

.enrollBtn {
    background-color: var(--theme-trainig-color);
    padding: 12px 0;
    text-align: center;
    border-radius: 0 0 12px 12px;
    transition: background-color 0.3s ease;
}

.enrollBtn a {
    color: black;
    font-weight: 600;
    text-decoration: none;
    font-size: 1rem;
}

.enrollBtn:hover {
    background-color: var(--hover-buttons-color);
}

/* Scroll animation */
.courseAnim {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s ease;
}

.courseAnim.show {
    opacity: 1;
    transform: translateY(0);
}

/* View all button */
.viewAllBtn a {
    display: inline-block;
    margin-top: 25px;
    padding: 12px 30px;
    text-decoration: none;
    color: var(--text-theme-color);
    background-color: var(--theme-trainig-color);
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.viewAllBtn a:hover {
    background-color: var(--hover-buttons-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .course { width: 100%; }
}

@media (max-width: 480px) {
    .course { width: 100%; }
    .coursesfilter a { padding: 6px 12px; font-size: 0.9rem; }
}


/*
.cursor {
    position: fixed;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: black;

    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 1000;
}

.circle {
    position: fixed;
    width: 40px;

    height: 40px;

    border: 2px solid black;

    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 999;
    transition: width 0.2s ease, height 0.2s ease;
} */


/* ===== CUSTOM CURSOR ===== */
.cursor {
    position: fixed;
    width: 8px;
    height: 8px;
    background-color: black;
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 1001;
    /* mix-blend-mode: difference; */
}

.circle {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 2px solid black;
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 1000;
    /* mix-blend-mode: difference; */
    transition:
        width 0.25s ease,
        height 0.25s ease,
        border 0.25s ease,
        background-color 0.25s ease;
}

/* Hover effect */
.circle.hover {
    width: 70px;
    height: 70px;
    border: 2px solid black;
    background-color: rgba(255, 255, 255, 0.08);
}

/* Click ripple */
.circle.click {
    width: 90px;
    height: 90px;
    opacity: 0;
    transition: all 0.3s ease;
}

/* Hide cursor on mobile */
@media (max-width: 768px) {
    .cursor,
    .circle {
        display: none;
    }
}


.ourReach {
  background-color: var(--theme-trainig-color);
  width: 100%;
  color: var(--text-theme-color);
  padding: 2% 0;
}

.reachTitle {
  text-align: center;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 40px;
}

/* Grid layout */
.reachGrid {
  display: grid;
  grid-template-columns: repeat(2, minmax(260px, 1fr));
  gap: 30px;
  max-width: 85%;
  margin: auto;
}

/* Card */
.reachCard {
  display: flex;
  gap: 20px;
  padding: 25px;
  border-radius: 10px;
  background-color: var(--our-reach-color);
}

/* Number box */
.reachBadge {
  background-color: white;
  color: black;
  font-size: 1.8rem;
  font-weight: bold;
  min-width: 100px;
  height: 90px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Text */
.reachText h2 {
  font-size: 1.3rem;
  margin-bottom: 6px;
}

.reachText p {
  font-size: 0.95rem;
  line-height: 1.6;
  font-weight: 300;
  opacity: 0.9;
}

/* Mobile */
@media (max-width: 600px) {
  .reachGrid {
    grid-template-columns: 1fr;
  }

  .reachBadge {
    margin: auto;
  }
}


/* ===== SCROLL ANIMATION (REUSE) ===== */
.reachCard {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease;
}

.reachCard.show {
  opacity: 1;
  transform: translateY(0);
}


/* ===== FREE COURSES SECTION ===== */
.freeCourse {
    margin: 5% 0;
    width: 100%;
    text-align: center;
    background-color: #f8f9fa;
    border-radius: 12px;
}

.freeCourse h1 {
    font-size: var(--heading-font-size);
    color: #111;
    margin-bottom: 10px;
}

.freeCourse p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 30px;
}

/* Container for cards */
.freeCourseDivmain {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

/* ===== CARD ===== */
.freeCourseDiv {
    background-color: white;
    width: 350px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    cursor: pointer;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Hover effect (CARD ONLY) */
.freeCourseDiv:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

/* ===== SCROLL ANIMATION WRAPPER ===== */
.freeCourseAnim {
    display: flex;
    flex-direction: column;  /* stack content vertically */
    justify-content: flex-start;
    align-items: stretch;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    will-change: transform, opacity;
}

/* Visible state */
.freeCourseAnim.show {
    opacity: 1;
    transform: translateY(0);
}

/* ===== IMAGE ===== */
.freeCourseDiv img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* Image hover */
.freeCourseDiv:hover img {
    transform: scale(1.05);
}

/* ===== COURSE TITLE ===== */
.freeCourseDiv p {
    font-size: 1.1rem;
    color: #333;
    margin: 15px 20px 10px 20px;
    font-weight: 500;
}

/* ===== BUTTON ===== */
.freeCoursebtn {
    margin: 15px 0 20px 0;
}

.freeCoursebtn a {
    display: inline-block;
    text-decoration: none;
    background-color: var(--theme-trainig-color);
    color: var(--text-theme-color);
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

/* Button hover */
.freeCoursebtn a:hover {
    background-color: var(--hover-buttons-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .freeCourseDiv {
        width: 45%;
    }
}

@media (max-width: 768px) {
    .freeCourse h1 {
        font-size: 2rem;
    }

    .freeCourse p {
        font-size: 1rem;
    }

    .freeCourseDiv {
        width: 90%;
    }
}

@media (max-width: 480px) {
    .freeCourse h1 {
        font-size: 1.6rem;
    }

    .freeCourse p {
        font-size: 0.95rem;
    }

    .freeCoursebtn a {
        padding: 8px 20px;
        font-size: 0.95rem;
    }
}




/* ===== GOOGLE REVIEWS SECTION ===== */
.ourReview {
    width: 100%;
    margin: 5% 0;
    text-align: center;
    background-color: #f9f9f9; /* subtle background for contrast */
    border-radius: 12px;
}

.ourReview h1 {
    font-size: var(--heading-font-size);
    color: #111;
    margin-bottom: 10px;
}

.ourReview p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 30px;
}

/* Container for review cards */
.ourReviewcontent {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

/* Animation wrapper */
.reviewAnim {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s ease;
}

.reviewAnim.show {
    opacity: 1;
    transform: translateY(0);
}

/* Individual review card */
.honestreview {
    background: var(--liner-color);
    width: 350px;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    text-align: left;
    cursor: pointer;
    min-height: 410px;
    border-bottom: 5px solid var(--theme-trainig-color);
}

.honestreview:hover {
    transform: translateY(-8px);
    background: var(--liner-hover-color);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

/* Reviewer name */
.honestreview h1 {
    font-size: 1.4rem;
    color: #111;
    margin-bottom: 10px;
}

/* Review text */
.honestreview p {
    font-size: 1rem;
    color: #333;
    line-height: 1.5;
}

/* Star rating */
.reviewStar {
    color: #F2DC37 !important; /* Gold stars */
    font-size: 1.5rem !important;
    margin-top: 10px;
    display: inline-block;
}

/* "View All" button */
.viewAllBtn {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.viewAllBtn a {
    background-color: var(--theme-trainig-color); /* main theme color */
    color: #111; /* text color */
    text-decoration: none;
    padding: 12px 28px;
    font-size: 1.1rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.viewAllBtn a:hover {
    background-color: var(--hover-buttons-color); /* hover color */
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .ourReviewcontent {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .ourReview h1 {
        font-size: 2rem;
    }
    .ourReview p {
        font-size: 1rem;
    }
    .honestreview {
        width: 70%;
        margin: 1% auto;
        min-height: 250px;
    }

}

@media (max-width: 480px) {
    .ourReview h1 {
        font-size: 1.6rem;
    }
    .ourReview p {
        font-size: 0.95rem;
    }
    .honestreview {
        width: 90%;
    }
    .viewAllBtn a {
        font-size: 0.95rem;
        padding: 10px 20px;
    }
}

@media (max-width: 400px) {
    .ourReviewcontent {
        gap: 10px;
    }
    .honestreview {
        width: 100%;
        box-sizing: border-box;
    }
}




/* ===== YOUR JOURNEY SECTION ===== */
.yourJuurney {
    /* margin: 5% 3%; */
    width: 100%;
    text-align: center;
    margin: 2% 0;
    /* background-color: #f9f9f9; */
}

.yourJuurney h1 {
    font-size: var(--heading-font-size);
    color: #111;
    margin-bottom: 30px;
    font-weight: 700;
}

/* Journey Images container */
.yourJuurneyImages {
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    align-items: center;
}

/* Each Journey Image */
.yourJuurneyImages img {
    width: 45%;
    /* border-radius: 12px; */
}

/* Animation setup */
.journeyAnim {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s ease;
}

.journeyAnim.show {
    opacity: 1;
    transform: translateY(0);
}


/* Any Video Section */
.anyVideo {
    background-size: cover !important;
    background-position: center;
    background-attachment: fixed;
    width: 100%;
    height: 400px;
    margin-top: 50px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background-size: contain;
    background-repeat: no-repeat;
}

.anyVideoOverlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* semi-transparent black overlay */
    z-index: 1; /* ensure it sits above background but below content if added */
    pointer-events: none; /* allows clicks to pass through */
}

@media (max-width: 600px) {
    .anyVideo {
        background-attachment: scroll;
        height: auto;
        aspect-ratio: auto;
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .yourJuurneyImages img {
        width: 48%;
    }
}

@media (max-width: 768px) {
    .yourJuurney h1 {
        font-size: 2rem;
    }

    .yourJuurneyImages img {
        width: 90%;
    }

    .anyVideo {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .yourJuurney h1 {
        font-size: 1.3rem;
    }

    .anyVideo {
        height: 200px;
    }
}


/* ===== WHY US SECTION ===== */
.whyUs {
    padding: 3% 0;
    width:100%;
    background-color: var(--theme-trainig-color);
    color: var(--text-theme-color);
    text-align: center;
}

/* Section heading */
.whyUs h1 {
    font-size: var(--heading-font-size);
    font-weight: 700;
    margin-bottom: 40px;
}

/* Flex container */
.whyUsFlex {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

/* ===== CARD (OUTER) ===== */
.whyUsContent {
    background-color: var(--our-reach-color);
    border-radius: 12px;
    width: 300px;
    overflow: hidden;
    transition: box-shadow 0.4s ease, background-color 0.3s ease;
}

/* ===== INNER (HOVER MOVES THIS) ===== */
.whyUsInner {
    padding: 20px;
    text-align: left;
    transition: transform 0.4s ease;
}

/* Hover effect */
.whyUsContent:hover .whyUsInner {
    transform: translateY(-10px);
}

.whyUsContent:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    background-color: var(--hover-buttons-color);
}

/* ===== TEXT ===== */
.whyUsInner h1 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.whyUsInner p {
    font-size: 1rem;
    line-height: 1.5;
    color: var(--text-theme-color);
}

/* ===== SCROLL ANIMATION ===== */
.whyUsAnim {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.whyUsAnim.show {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .whyUsContent {
        width: 45%;
    }
}

@media (max-width: 768px) {
    .whyUs > h1 {
        font-size: 2rem;
    }

    .whyUsContent {
        width: 90%;
    }
}

@media (max-width: 480px) {
    .whyUs h1 {
        font-size: 1.6rem;
    }

    .whyUsInner h1 {
        font-size: 1.3rem;
    }

    .whyUsInner p {
        font-size: 0.95rem;
    }
}




/* ===== TRAINING FEATURES SECTION ===== */
.TrainingFeature {
    margin :5% 0;
    width: 100%;
    text-align: center;
}

/* Section heading */
.TrainingFeature  h1 {
    font-size: var(--heading-font-size);
    font-weight: 700;
}

/* Flex container */
.TrainingFeatureflex {
    margin: 3% 3%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}

.TrainingFeatureflex a{
  text-decoration: none;
}

/* ===== CARD (OUTER) ===== */
.TrainingFeatureContent {
    background: var(--liner-color);
    border-radius: 12px;
    border: 1px solid var(--theme-trainig-color);
    border-bottom: 5px solid var(--theme-trainig-color);
    width: 350px;
    overflow: hidden;
    transition: box-shadow 0.4s ease, background-color 0.3s ease;
    min-height: 250px;
}

.TrainingFeatureContent:hover{

  background: var(--liner-hover-color);

}
/* ===== INNER (HOVER MOVES THIS) ===== */
.TrainingFeatureInner {
    padding: 20px;
    text-align: left;
    transition: transform 0.4s ease;
}

/* Hover effect */
.TrainingFeatureContent:hover .TrainingFeatureInner {

    transform: translateY(-10px);
}

.TrainingFeatureContent:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    background-color: #f9f9f9;
}

/* ===== TEXT ===== */
.TrainingFeatureInner h1 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--theme-trainig-color);
}

.TrainingFeatureInner p {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
}

/* ===== SCROLL ANIMATION ===== */
.trainingAnim {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.trainingAnim.show {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .TrainingFeatureContent {
        width: 45%;
    }
}

@media (max-width: 768px) {
    .TrainingFeature > h1 {
        font-size: 2rem;
    }

    .TrainingFeatureContent {
        width: 90%;
        margin: 1% auto;
    }
}

@media (max-width: 480px) {
    .TrainingFeature > h1 {
        font-size: 1.6rem;
    }

    .TrainingFeatureInner h1 {
        font-size: 1.3rem;
    }

    .TrainingFeatureInner p {
        font-size: 0.95rem;
    }
}


/* ===== PLACED STUDENT SECTION ===== */
.placedStudentMain {
    width: 100%;
}

.placedStudentMain h1 {
    font-size: var(--heading-font-size, 2rem);
    text-align: center;

}

.placedStudent {
    max-width: 1100px;
    margin: auto;
    position: relative;
}

.placedWrapper {
    overflow: hidden;
    margin: 2% 3%;
}

/* Track */
.placedTrack {
    display: flex;
    transition: transform 0.5s ease;
}

/* ===== CARD (OUTER) ===== */
.placedStdCard {
    min-width: 20%;
    padding: 15px;
    box-sizing: border-box;
}

/* ===== INNER CARD ===== */
.stdCard {
    background: white;
    border-radius: 14px;
    padding: 20px 10px;
    text-align: center;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.12);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Hover effect */
.placedStdCard:hover .stdCard {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.18);
}

/* Image */
.stdCard img {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--theme-trainig-color);
}

/* Text */
.stdCard h1 {
    font-size: 1rem;
    margin: 12px 0 5px;
}

.stdCard p {
    margin: 0;
    font-size: 14px;
    color: #555;
}

/* ===== SCROLL ANIMATION ===== */
.placedAnim {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.placedAnim.show {
    opacity: 1;
    transform: translateY(0);
}

/* ===== NAVIGATION BUTTONS ===== */
.placedNav {
    position: absolute;
    top: 45%;
    background: var(--theme-trainig-color, #004aad);
    color: var(--text-theme-color);
    border: none;
    font-size: 22px;
    padding: 10px 14px;
    cursor: pointer;
    border-radius: 50%;
    z-index: 10;
    transition: background 0.3s ease;
}

.placedNav:hover {
    background: var(--hover-buttons-color);
}

/* Desktop button position */
.prevBtn {
    left: 0;
    transform: translateX(-50%);
}

.nextBtn {
    right: 0;
    transform: translateX(50%);
}

/* ===== RESPONSIVE ===== */

/* Tablet */
@media (max-width: 900px) {
    .placedStdCard {
        min-width: 33.33%;
    }



    .prevBtn,
    .nextBtn {
        top: 40%;
        transform: translateX(0);
        padding: 8px 12px;
        font-size: 20px;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .placedStdCard {
        min-width: 50%;
    }

    .stdCard img {
    width: 90px;
    height: 90px;
    }

    .stdCard h1 {
    font-size: 0.8rem;
}

.stdCard p {
    font-size: 10px;
}



    .prevBtn,
    .nextBtn {
        top: 35%;
        transform: translateX(0);
        padding: 6px 10px;
        font-size: 18px;
    }
}


.viewAllBtnborder {
    /* margin-top: 1.2%; */
    display: flex;
    justify-content: center;

}

.viewAllBtnborder a {
    border: 1px solid var(--text-theme-color);
    color: var(--text-theme-color);
    text-decoration: none;
    font-size: 1.2rem;
    padding: 0.8% 1.2%;
}

.viewAllBtnborder a:hover {
    border: 1px solid var(--theme-trainig-color);
    background-color: var(--theme-trainig-color);
    color: var(--text-theme-color);
}
/* ==========================
   STUDENT REVIEWS SECTION
========================== */

.youtubeReviews {
    width: 100%;
    margin: 4% 0;
    padding: 2% 0;
    color: white;
    background-color: var(--theme-trainig-color);
}

.youtubeReviews > h1 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: var( --text-theme-color);
}

/* ===== Split Section ===== */
.splitSection {
    display: flex;
    flex-wrap: wrap;
    max-width: 85%;
    width: 100%;
    margin: auto;
    gap: 40px;
    box-sizing: border-box;
}

/* ===== LEFT CAROUSEL ===== */
.imageWrapper {
    flex: 1;
    min-width: 300px;
    overflow: hidden;
    position: relative;
}

.carouselTrack {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease;
    flex-wrap: nowrap;
}

/* Cards */
.imageCard {
    width: 200px;
    height: 200px;
    padding: 5% 0;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.imageCard.top {
    transform: translateY(-20px);
}

.imageCard.bottom {
    transform: translateY(20px);
}

.imageCard img {
    width: 100%;
    height: 100%;
    filter: brightness(0);

}

.imageCard:hover {
    transform: scale(1.05);
}

/* ===== Carousel Buttons ===== */
.carouselButtons {
    text-align: center;
    margin-top: 20px;
}

.carouselButtons button {
    padding: 10px 20px;
    margin: 0 10px;
    background-color: var(--theme-trainig-color);
    color: var(--text-theme-color);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s ease;
}

.carouselButtons button:hover {
    background-color: var(--hover-buttons-color);
}

/* ===== RIGHT QUOTE ===== */
.textWrapper {
    flex: 1;
    min-width: 300px;
    border-radius: 12px;
    padding: 40px 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    word-break: break-word;
}

.textWrapper p {
    font-size: 1.6rem;
    font-style: italic;
    font-weight: 700;
    line-height: 1.6;
    color: var(--text-theme-color);
}

.textWrapper span {
    display: block;
    margin-top: 15px;
    font-weight: bold;
    color: var(--text-theme-color);
}

/* ===== SCROLL ANIMATION (SAFE) ===== */
.reviewAnim {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reviewAnim.show {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================
   RESPONSIVE
========================== */

/* Tablet */
@media (max-width: 900px) {
    .splitSection {
        flex-direction: column;
        gap: 30px;
        max-width: 100%;
    }

    .imageWrapper,
    .textWrapper {
        width: 100%;
        min-width: unset;
    }

    .textWrapper p {
        font-size: 1.2rem;
    }

    .carouselTrack {
        gap: 15px;
    }

    .imageCard {
        width: 180px;
        height: 180px;
    }
}

/* Mobile */
@media (max-width: 600px) {

    .splitSection {
        max-width: 100%;
    }

    .imageWrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .carouselTrack {
        display: flex;
        flex-wrap: nowrap;        /* IMPORTANT */
        gap: 15px;
    }

    .imageCard {
        width: 160px;
        height: 160px;
        flex-shrink: 0;           /* IMPORTANT */
    }

    .carouselButtons {
        display: none;
    }

    .textWrapper {
        width: 100%;
        padding: 30px 20px;
        box-sizing: border-box;
    }

    .textWrapper p {
        font-size: 1rem;
    }

    .textWrapper span {
        font-size: 0.95rem;
    }

    /* Hide scrollbar */
    .imageWrapper::-webkit-scrollbar {
        display: none;
    }

    .imageWrapper {
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
}






/* certificate */


/* =====================
CERTIFICATE SECTION
===================== */
.CertificateMain {
    width; 100%;
}

.CertificateMain > h1 {
    font-size: var(--heading-font-size, 2rem);
    text-align: center;
}

.CertificateMain p {
    font-size: var(--brlow-heading-p);
}

/* Layout */
.CerificateContentMain {
    margin: 2% 3%;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
}

/* ===== TEXT CONTENT ===== */
.CertificateContent {
    flex: 1 1 400px;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-theme-color);
}

/* ===== IMAGE CONTENT ===== */
.CertificateImage {
    flex: 1 1 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.CertificateImage img {
    width: 100%;
    max-width: 400px;
    border-radius: 8px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

/* ===== SCROLL ANIMATION ===== */
.certificateAnim {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.certificateAnim.show {
    opacity: 1;
    transform: translateY(0);
}

/* =====================
RESPONSIVE
===================== */

/* Tablets */
@media (max-width: 900px) {
    .CertificateContent,
    .CertificateImage {
        flex: 1 1 45%;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .CerificateContentMain {
        flex-direction: column;
        gap: 20px;
    }

    .CertificateContent,
    .CertificateImage {
        width: 100%;
        flex: 1 1 100%;
        text-align: center;
    }

    .CertificateContent p{
        font-size: 0.9rem;
    }

    .CertificateImage img {
        max-width: 90%;
    }
}


/* =====================
GET IN TOUCH SECTION
===================== */
.getTouch {
    width: 100%;
    margin: 3% 0;
}

.getTouch > h1 {
    font-size: var(--heading-font-size, 2rem);
    text-align: center;
}

/* Layout */
.mapandForm {
    margin: 2% 3%;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* ===== MAP ===== */
.mapEmbed {
    flex: 1 1 400px;
    min-height: 300px;
    border: 1px solid black;
    border-radius: 8px;
    overflow: hidden;
}

.mapEmbed iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* ===== FORM CONTAINER ===== */
.getTouchForm {
    flex: 1 1 300px;
}

/* ===== FORM ===== */
.GetinTouchForm {
    border: 2px solid var(--theme-trainig-color);
    padding: 5%;
    border-radius: 8px;
    background-color: white;
    width: 100%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    box-sizing: border-box;
}

.GetinTouchForm h1 {
    text-align: center;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

/* Inputs */
.GetinTouchForm input,
.GetinTouchForm textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid var(--theme-trainig-color);
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 0.95rem;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

/* Hover + Focus */
.GetinTouchForm input:hover,
.GetinTouchForm textarea:hover,
.GetinTouchForm input:focus,
.GetinTouchForm textarea:focus {
    outline: none;
    box-shadow: 0 0 10px rgba(4, 70, 94, 0.4);
    transform: translateY(-2px);
}

.GetinTouchForm textarea {
    resize: vertical;
    min-height: 120px;
}

/* Button */
.GetinTouchForm button {
    width: 100%;
    padding: 12px;
    background-color: white;
    border: 1px solid var(--theme-trainig-color);
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.GetinTouchForm button:hover {
    background-color: var(--theme-trainig-color);
    color: var(--text-theme-color);
}

/* ===== SCROLL ANIMATION ===== */
.getTouchAnim {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.getTouchAnim.show {
    opacity: 1;
    transform: translateY(0);
}

/* =====================
RESPONSIVE
===================== */

/* Tablets */
@media (max-width: 900px) {
    .mapandForm {
        gap: 15px;
    }

    .mapEmbed,
    .getTouchForm {
        min-width: 45%;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .mapandForm {
        flex-direction: column;
        gap: 20px;
    }

    .mapEmbed,
    .getTouchForm {
        width: 100%;
        min-width: 100%;
    }

    .GetinTouchForm h1 {
        font-size: 1.3rem;
    }
}


/* FOOTER BASE */
/* ===========================
    FOOTER BASE
=========================== */
.trainingFooter {
    margin: 0;
    padding: 0;
    background-color: var(--theme-trainig-color);
    box-sizing: border-box;
    overflow-x: hidden; /* prevent horizontal scroll */
}

.footerAllContent {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    padding: 0 3%;
    box-sizing: border-box;
    max-width: 100vw; /* prevent overflow */
}

/* ===========================
    LOGO & DESCRIPTION
=========================== */
.logoContentfooter {
    flex: 1 1 300px; /* flexible with min 300px */
    min-width: 250px;
    box-sizing: border-box;
}


.footerLogo{
    padding: 0 3%;
}

.footerlogoimg {
    width: 120px;
    height: auto;
    margin: 2% 0; /* removed horizontal margin to prevent overflow */
    filter: brightness(0);
}


.logoContentfooter p {
    color: var(--text-theme-color);
    margin-bottom: 10px;
    line-height: 1.6;
    font-size: 1rem;
}

.certifiedLogo {
    display: flex;
    flex-wrap: wrap; /* wrap on small screens */
    gap: 15px;
    margin-top: 15px;
}

.certifiedLogo img {
    width: 80px;
    height: auto;
    max-width: 100%;
}

/* ===========================
    LINKS SECTION
=========================== */
.footerLinks {
    flex: 2 1 400px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    box-sizing: border-box;
}

/* QUICK LINKS & SOCIAL */
.linkFirstPast {
    flex: 1 1 180px;
    min-width: 0;
    box-sizing: border-box;
}

.linkFirstPast h1 {
    font-size: 1.5rem;
    color: var(--text-theme-color);
    margin-bottom: 10px;
}

.linkFirstPast a {
    color: var(--text-theme-color);
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
    font-size: 1rem;
}

.footerQuicklinks ul{
    margin: 0;
    padding: 0;
}

.linkFirstPast a:hover {
    text-decoration: underline;
}

.socialMediaLinks {
    margin-top: 15px;
}

.socialMediaLinks ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.socialMediaLinks ul li {
    display: inline-block;
    margin-right: 10px;
}

.socialMediaLinks ul li a {
    color: var(--text-theme-color);
    font-size: 1.3rem;
}

.socialMediaLinks ul li a:hover {
    color: white;
}

/* OUR COURSES */
.OurCourses {
    flex: 1 1 180px;
    min-width: 0;
    box-sizing: border-box;
}

.OurCourses h1 {
    font-size: 1.5rem;
    color: var(--text-theme-color);
    margin-bottom: 10px;
}

.OurCourses ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.OurCourses ul li {
    margin-bottom: 8px;
}

.OurCourses a {
    color: var(--text-theme-color);
    text-decoration: none;
    font-size: 1rem;
}

.OurCourses a:hover {
    text-decoration: underline;
}

/* CONTACT LINKS */
.ContactLinks {
    flex: 1 1 180px;
    min-width: 0;
    box-sizing: border-box;
}

.ContactLinks h1 {
    font-size: 1.5rem;
    color: var(--text-theme-color);
    margin-bottom: 10px;
}

.ContactLinks ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.ContactLinks ul li {
    margin-bottom: 8px;
    color: var(--text-theme-color);
    font-size: 1rem;
}

.ContactLinks a {
    color: var(--text-theme-color);
    text-decoration: none;
}

.ContactLinks a:hover {
    text-decoration: underline;
}

/* ===========================
    COPYRIGHT PART
=========================== */
.copyRightPart {
    background-color: var(--hover-buttons-color);
    text-align: center;
    padding: 1% 0;
    margin-top: 1%;

}

.copyRightPart p,
.copyRightPart a {
    text-decoration: none;
    color: var(--text-theme-color);
    font-size: 1rem;
    margin: 5px 0;
}

.copyRightPart a:hover {
    text-decoration: underline;
}

/* ===========================
    RESPONSIVE
=========================== */

/* Tablets */
@media (max-width: 900px) {
    .footerAllContent {
        flex-direction: column;
        gap: 20px;
    }

    .footerLinks {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 20px;
    }

    .linkFirstPast,
    .OurCourses,
    .ContactLinks {
        flex: 1 1 45%;
    }

    .certifiedLogo img {
        width: 60px;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .logoContentfooter,
    .footerLinks {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .footerLinks ul li a{
       font-size: 15px;
    }
    .ContactLinks ul li{
       font-size: 15px
    }

    .logoContentfooter p{
        font-size: 0.9rem;
    }

    .linkFirstPast,
    .OurCourses,
    .ContactLinks {
        flex: 1 1 100%;
        margin-bottom: 15px;
    }

    .certifiedLogo {
        justify-content: flex-start;
        gap: 10px;
    }

    .certifiedLogo img {
        width: 50px;
    }

    .footerAllContent {
        padding: 10px 15px;
    }

    .copyRightPart p,
    .copyRightPart a {
        font-size: 0.9rem;
    }
}




/* About Us Css */

/* ===== MAIN ABOUT SECTION ===== */
.mainaboutDiv {
    margin: 0;
    padding: 0;
}

.mainabout {
    background-color: var(--theme-light-color); /* fallback color */
    padding: 3% 5%;
    font-family: 'Arial', sans-serif;
}

/* Breadcrumb / Page Jump */
.pageJump {
    font-size: 1.2rem;
    font-weight: 500;
    color: #555;
    margin-bottom: 1.5%;
}

/* ===== ABOUT HERO ===== */
.aboutHero {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    background: var(--liner-color);
    padding: 2% 3%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.aboutHero:hover {

    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}



/* Hero Image Card */
.aboutHeroImg {
    flex: 1;
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    max-width: 450px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    margin: 2% 0;
}

.aboutHeroImg img {
    width: 100%;
    height: 300px;
    display: block;
}

/* Hero Content */
.aboutHeroContent {
    flex: 2;
    padding: 2% 2%;
}

.aboutHeroContent h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #222;
    line-height: 1.3;
}

.CEONameP {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 10px 0;
}

.aboutHeroContent p {
    font-size: 1rem;
    color: #555;
    margin: 8px 0;
    line-height: 1.6;
}

.forOnlyAbout{
    position: relative;
    width: 100%;
    min-height: 300px;
    padding: 3% 0 !important;
}

.onlyAboutRelative{
    position: relative;
    padding-bottom: 260px;
    margin-bottom: 130px; /* give space */
}

.ContentOnlyAbout{
     text-align: center;
}

.ContentOnlyAbout h1{
      font-size: 2.5rem;
}

.ContentOnlyAbout p{
    font-size: 1.3rem;
}

.aboutFounder {
    position: absolute;
    left: 50%;
    bottom: -100px; /* overlap half */
    transform: translateX(-50%);
    width: 100%;
    z-index: 5;
}

.aboutFounder-card {

  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  background: #F8FAFC;
  border-radius: 10px;
  display: grid;
  grid-template-columns: 40% 60%;
  align-items: center;
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
  overflow: hidden;
  position: relative;
  margin-top: 200px;
}

/* IMAGE */
.aboutFounder-image {
  position: relative;
  height: 100%;
}

.aboutFounder-image img {
  width: 100%;
  height: 100%;

}

/* IMAGE → CONTENT BLEND */
.aboutFounder-image::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 140px;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(248, 250, 252, 0) 0%,
    #F8FAFC 100%
  );
}

/* CONTENT */
.aboutFounder-content {
  padding: 50px 60px;
  margin-left: -40px;
  /* background: #F8FAFC; */
  position: relative;
  z-index: 2;
}

.aboutFounder-content h3 {
  font-size: 30px;
  font-weight: 600;
  color: #0F172A;
  margin-bottom: 22px;
}

.aboutFounder-content h3 span {
  color: var(--theme-trainig-color);
}

/* QUOTE */
.aboutFounder-content .quote {
  font-size: 18px;
  line-height: 1.7;

  }

.founderPromise{
   background-color: #f9f9f9;
}

.founderPromise div{
   text-align: center;
}

.whyExists{
   max-width: 78% !important;
   text-align: center;
   margin: 0 auto !important;
}


.h2Property{
    font-size: 1.5rem !important;
    color: black !important;
    font-weight: 400;
    margin-bottom: 2% !important;
}

.founderQuality span{
    font-size: 1.2rem;
    padding: 0 2%;
}


/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .aboutHero {
        flex-direction: column;
        align-items: center;
        gap: 25px;
        padding: 3% 3%;
    }

    .aboutHeroImg {
        max-width: 100%;
    }

    .aboutHeroContent {
        padding: 0 2%;
        text-align: center;
    }

    .aboutHeroContent h1 {
        font-size: 1.8rem;
    }

    .CEONameP {
        font-size: 1.3rem;
    }
}

@media (max-width: 900px) {

  .onlyAboutRelative {
      padding-bottom: 220px;
      margin-bottom: 70px;
  }

  .aboutFounder {
      bottom: 0px;
  }

  .aboutFounder-card {
      max-width: 90%;
      grid-template-columns: 45% 55%;
  }

  .aboutFounder-content {
      padding: 40px;
      margin-left: 0;
  }

  .aboutFounder-content h3 {
      font-size: 26px;
  }

  .aboutFounder-content .quote {
      font-size: 16px;
  }

  .founderQuality span{
      display: block;
  }
}

@media (max-width: 600px) {

  /* Remove overlap */
  .onlyAboutRelative {
      padding-bottom: 0;
      margin-bottom: -250px;
  }

  .aboutFounder {
      position: relative;
      bottom: 300px;
      left: 0;
      transform: none;
  }

  .aboutFounder-card {
      grid-template-columns: 1fr;
      border-radius: 16px;
  }

  .aboutFounder-image {
      height: 400px;

  }

  .aboutFounder-image::after {
      display: none;
  }

  .aboutFounder-content {
      padding: 30px 22px;
      text-align: center;
  }

  .aboutFounder-content h3 {
      font-size: 1.2rem;
  }

  .aboutFounder-content .quote {
      font-size: 15px;
      line-height: 1.6;
  }

  .h2Property{
    font-size: 1.2rem !important;
}

.founderQuality span{
    font-size: 1rem !important;
}

.ContentOnlyAbout h1{
   font-size: 1.9rem;
}

.ContentOnlyAbout p{
   font-size: 1.2rem;
}

}


@media (max-width: 600px) {
    .mainabout {
        padding: 5% 3%;
    }

    .aboutHeroContent h1 {
        font-size: 1.5rem;
    }

    .CEONameP {
        font-size: 1.2rem;
    }

    .aboutHeroContent p {
        font-size: 0.9rem;
    }

}

@media (max-width: 430px) {
        .aboutFounder-image {
      height: 320px;

  }

}

/* ===== TRAINING FEATURES SECTION ===== */
.aboutMssion {
    margin: 4% 3%;
    text-align: center;
}

/* Section heading */
.aboutMssion  h1 {
    font-size: var(--heading-font-size);
    font-weight: 700;
}

/* Flex container for features */
.aboutMissionFlex {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    margin-top: 3%;
}

/* ===== CARD (OUTER) ===== */
.aboutMissioncontent {
    background-color: white;
    border-radius: 12px;
    border: 1px solid var(--theme-trainig-color);
    border-bottom: 5px solid var(--theme-trainig-color);
    width: 350px;
    overflow: hidden;
    transition: box-shadow 0.4s ease, background-color 0.3s ease;
}

/* ===== INNER (HOVER MOVES THIS) ===== */
.aboutMissioninner {
    padding: 20px;
    text-align: left;
    transition: transform 0.4s ease;
}

/* Hover effect */
.aboutMissioncontent:hover .aboutMissioninner {
    transform: translateY(-10px);
}

.aboutMissioncontent:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    background-color: #f9f9f9;
}

/* ===== TEXT ===== */
.aboutMissioninner h1 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--theme-trainig-color);
}

.aboutMissioninner p {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
}

/* ===== SCROLL ANIMATION ===== */
.aboutMissionanim {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.aboutMissionanim.show {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .aboutMissioncontent {
        width: 45%;
    }
}

@media (max-width: 768px) {
    .aboutMssion > h1 {
        font-size: 2rem;
    }

    .aboutMissioncontent {
        width: 90%;
    }
}

@media (max-width: 480px) {

    .aboutMissionFlex{
         margin-top: 5%;
    }

    .aboutMssion > h1 {
        font-size: 1.6rem;
    }

    .aboutMissioninner h1 {
        font-size: 1.3rem;
    }

    .aboutMissioninner p {
        font-size: 0.95rem;
    }
}


/* ===== TEAM SECTION ===== */
.OurTeam {
    padding: 1% 10%;
    text-align: center;
}

.OurTeam h1 {
    font-size: var(--heading-font-size);
    margin-bottom: 10px;
}

.OurTeam  p {
    font-size: var(--brlow-heading-p);
}

/* ===== GRID ===== */
.teamGridMain {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    margin-top: 40px;
}

/* ===== CARD ===== */
.teamInner {
    background: white;
    padding: 5% 2%;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
}

.teamInner:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* ===== IMAGE (THIN SQUARE) ===== */
.teamImage {
    width: 100%;
    max-width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 6px;
    display: block;
    margin: 0 auto;     /* center image */
}

/* ===== LINE ===== */
.teambelowLine {
    /* width: 150px; */
    height: 1px;
    background-color: rgb(115, 115, 115);
    margin: 15px auto;
    border-radius: 2px;
}

/* ===== TEXT ===== */
.teamInner p {
    margin: 2% 2%;
    font-size: 1.1rem;
    color: #333;
    font-weight: 500;
}

.teamInner p:last-child {
    color: #777;
    font-size: 1rem;
}


/* ===== TEAM SCROLL ANIMATION ===== */
.teamAnim {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.teamAnim.show {
    opacity: 1;
    transform: translateY(0);
}

/* ===== HOVER (WORKS TOGETHER) ===== */
.teamInner:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}


/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .teamGridMain {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .teamGridMain {
        grid-template-columns: 1fr;
    }

    .teamImage {
        max-width: 180px;
        height: 180px;
    }
}

.aboutfQAMain {
    padding: 1% 3%;
}

.aboutfQAMain h1 {
    font-size: var(--heading-font-size);
    margin-bottom: 1%;
}

/* ===== FAQ ITEMS ===== */
.abouyFAQInner {
    display: flex;
    align-items: flex-start;
    gap: 10px;

    /* Define three columns */
    /* Question column fixed width, image column fixed width, answer flexible */
}

.FAQp {
    flex: 0 0 250px; /* Question column fixed width (adjust as needed) */
    font-weight: bold;
    margin: 1% 0;
}

.abouyFAQInner img {
    flex: 0 0 40px; /* Arrow column fixed width */
    height: 40px;
    width: 40px;
    cursor: pointer;
    margin: 2% 0;
}

.FAQBigP {
    flex: 1; /* Answer column takes remaining space */
    margin: 1% 0;
}

/* ===== FAQ SCROLL ANIMATION ===== */
.faqAnim {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.faqAnim.show {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .abouyFAQInner {
        flex-direction: column;
        gap: 10px;
        padding: 2% 2%;
    }

    .abouyFAQInner img {
        display: none; /* hide image on smaller screens */
    }

    .FAQp {
        font-weight: bold;
        font-size: 16px;
        flex: unset; /* remove fixed width on small screens */
    }

    .FAQBigP {
        font-weight: normal;
        font-size: 15px;
        flex: unset;
    }
}

@media (max-width: 600px) {
    .aboutfQAMain {
        padding: 3% 5%;
    }

    .aboutfQAMain h1 {
        font-size: 1.5rem;
    }

    .FAQp {
        font-size: 1rem;
    }

    .FAQBigP {
        font-size: 0.9rem;
    }
}

.quoteBox {
  max-width: 75%;
  margin: 60px auto;
  background: #F8FAFC;
  padding: 40px 50px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  position: relative;
  text-align: center;
}

/* Quote icon */
.quoteBox::before {
  content: "“";
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 80px;
  color: var(--theme-trainig-color);
  font-family: serif;
}

/* Quote text */
.quoteText {
  font-size: clamp(1.5rem, 2vw, 0.8rem);
  line-height: 1.7;
  text-transform: uppercase;
  color: #334155;
  margin-bottom: 40px;
  font-style: italic;
  word-spacing: 4px;
  font-weight: 500;
  font-family: 'Playfair Display', serif;
}

/* Author wrapper */
.quoteAuthor {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 18px;
  margin-top: 10px;
   margin-right: 200px;
}

/* Text block */
.authorInfo {
  text-align: right;
}

/* Signature */
.authorSign {
  height: 32px;
  margin-bottom: 6px;
  opacity: 0.85;
}

/* Name & role */
.authorName {
  display: block;
  font-weight: 600;
  color: #0F172A;
  font-size: 1.5rem;
}

.authorRole {
  display: block;
  font-size: 1.2rem;
  color: #64748B;
  font-weight: 300;
}

/* Founder image */
.authorImage {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--theme-trainig-color);
}


@media (max-width: 700px) {

  .quoteBox {
    max-width: 95%;
    padding: 30px 22px;
  }

  .quoteText{
     font-size: 1.3rem !important;
  }

  .quoteAuthor {
    justify-content: center;
    flex-direction: column-reverse;
    gap: 10px;
    margin-right: 0;
  }

  .authorName {
  font-size: 1.2rem;
}

.authorRole {
  font-size: 1rem;
}

  .authorInfo {
    text-align: center;
  }

  .authorSign {
    margin: 0 auto 6px;
  }
}




/* Contact Us */


/* ===== CONTACT SECTION ===== */
.trainingContactDetails {
    margin: 2% auto;
    display: flex;
    gap: 30px;
    padding: 2% 5%;
    justify-content: center;
    flex-wrap: wrap; /* allows items to wrap on small screens */
}

/* CONTACT DETAILS CARD */
.trainingContactDetailsinner {
    flex: 1 1 400px; /* grow/shrink, min width 400px */
    padding: 2%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    background-color: var(--theme-light-color, #f9f9f9);
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trainingContactDetailsinner:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

/* LINKS */
.trainingContactDetailsinner a {
    text-decoration: none;
    color: var(--text-theme-color);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color 0.3s ease;
}

.trainingContactDetailsinner a:hover {
    text-decoration: underline;
}

/* MAP IFRAME */
.trainingContactDetailsinner iframe {
    width: 100%;
    border-radius: 10px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .trainingContactDetails {
        padding: 2% 3%;
        gap: 20px;
    }

    .trainingContactDetailsinner{
        flex: 1 1 100%;
    }
}

@media (max-width: 600px) {
    .trainingContactDetails {
        padding: 3% 2%;
        flex-direction: column;
        gap: 15px;
    }

    .trainingContactDetailsinner a {
        font-size: 1rem;
    }
}


/* training Feature */


/* ----- Training Feature Div ----- */
.ourTrainingOption {
    margin: 3% auto;
    padding: 2.5%;
    background: linear-gradient(145deg, #ffffff, #f0f4f8); /* subtle gradient */
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
    max-width: 1300px; /* keep div from being too wide on large screens */
    line-height: 1.6;
    border-bottom: 5px solid var(--theme-trainig-color); /* subtle accent line */
}

/* Hover effect */
.ourTrainingOption:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
    background: var(--liner-hover-color); /* slightly brighter on hover */
}

/* Headings */
.ourTrainingOption h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--theme-trainig-color);
}

/* Paragraphs */
.ourTrainingOption p {
    font-size: 1.1rem;
    margin-top: 1rem;
    color: #555;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .ourTrainingOption {
        padding: 2%;
        margin:2%;
    }
    .ourTrainingOption h1 {
        font-size: 1.7rem;
    }
    .ourTrainingOption p {
        font-size: 1rem;
    }
}

@media (max-width: 600px) {
    .ourTrainingOption {
        padding: 1.5%;
        margin: 2%;
        border-radius: 12px;
        border-left-width: 4px;
    }
    .ourTrainingOption h1 {
        font-size: 1.5rem;
    }
    .ourTrainingOption p {
        font-size: 0.95rem;
    }
}


/* ================= COURSES SECTION ================= */

.coursesTraining {
    margin: 4% 0;
}

.coursesTraining > h1 {
    font-size: var(--heading-font-size);
    text-align: center;
}

/* ================= GRID LAYOUT ================= */

.allCoursestraining {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    padding: 2% 5%;
}

/* ================= COURSE CARD ================= */

.javaTraining {
    background: var(--liner-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 25px;
    border-radius: 12px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.javaTraining h1 {
    font-size: 1.8rem !important;
    margin-bottom: 10px;
    color: #222;
}

.javaTraining p {
    margin-bottom: 10px;
    color: #555;
    line-height: 1.6;
}

.reviewStar {
    color: #f5b301;
    font-size: 1.1rem;
}

/* ================= BUTTON ================= */

.javaTraining a {
    margin-top: auto;
    text-align: center;
    text-decoration: none;
    padding: 10px 15px;
    background-color: var(--theme-trainig-color);
    color: var(--text-theme-color);
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.javaTraining a:hover {
    background-color: var(--hover-buttons-color);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* ================= HOVER EFFECT ================= */

.javaTraining:hover {
    transform: translateY(-8px);
    background:var(--liner-hover-color);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 900px) {
    .allCoursestraining {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 600px) {
    .allCoursestraining {
        grid-template-columns: 1fr;
        padding: 4% 6%;
    }

    .javaTraining {
        padding: 20px;
    }

    .javaTraining h1 {
        font-size: 1.5rem !important;
    }
}


        /* Spinner styles */
        .shapes-4 {
            width: 40px;
            height: 40px;
            display: grid;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }

        .shapes-4:before,
        .shapes-4:after {
            content: "";
            width: 100%;
            height: 100%;
            background: #87CEEB;
            transform-origin: left;
            animation: sp4 2s infinite;
        }

        .shapes-4:before {
            transform-origin: right;
            --s: -1;
        }

        @keyframes sp4 {
            0%,
            10% {
                transform: translate(0, 0) scale(1);
            }

            33% {
                transform: translate(calc(var(--s, 1) * 50%), 0) scale(1);
            }

            66% {
                transform: translate(calc(var(--s, 1) * 50%), calc(var(--s, 1) * -50%)) scale(1);
            }

            90%,
            100% {
                transform: translate(calc(var(--s, 1) * 50%), calc(var(--s, 1) * -50%)) scale(0.5, 2);
            }
        }

        /* Full-page overlay for spinner */
        #spinner-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(255, 255, 255, 0.9);
            z-index: 9999;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        /* Hide the spinner once the page is loaded */
        body.loaded #spinner-container {
            display: none;
        }

        /* Main content styles */
        #main-content {
            display: none;
            text-align: center;
        }

        body.loaded #main-content {
            display: block;
        }


.roadmapSection {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 20px;
  text-align: center;
}

.roadmapTitle {
  font-family: 'Playfair Display', serif;
  font-size: 44px;
  color: #0F172A;
}

/* Grid layout */
.roadmap {
margin-top: 3%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* Each step */
.roadmapStep {
  background: var(--liner-color);
  border-radius: 20px;
  color: var(--text-theme-color);
  padding: 40px 20px;
  text-align: center;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  cursor: pointer;
  border: solid 1px var(--theme-trainig-color);
  border-bottom: solid 5px var(--theme-trainig-color) !important;
}

.roadmapStep:hover {
  background: var(--liner-hover-color);
  transform: translateY(-5px);
  box-shadow: 0 15px 25px rgba(0,0,0,0.15);
}

.stepNumber {
  width: 60px;
  height: 60px;
  background:var(--theme-trainig-color);
  color: var(--text-theme-color);
  font-weight: 700;
  font-size: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;

}

.stepTitle {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
}

.stepDesc {
  font-size: 16px;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 900px) {
  .roadmap {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .roadmap {
    grid-template-columns: 1fr;
  }
}


