* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
        }

        .notification-bar {
            width: 100%;
            background: white;
            overflow: hidden;
            white-space: nowrap;
            position: relative;
          
            height: 56px;
        }

        /* Left Blue Angled Part */
        .left-part {
            position: absolute;
            left: 0;
            top: 0;
            width: 360px;
            height: 100%;
            background: #0066cc;
            clip-path: polygon(0 0, 88% 0, 100% 100%, 0 100%);
            display: flex;
            align-items: center;
            padding-left: 32px;
            color: white;
            font-weight: 600;
            font-size: 15px;
            z-index: 2;
            letter-spacing: 0.5px;
        }

        .left-part img {
            width: 30px;
            margin-right: 14px;
            filter: brightness(0) invert(1);
        }

        /* Right Scrolling Area */
        .right-part {
            height: 100%;
            display: flex;
            align-items: center;
            padding-left: 370px;
        }

        .ticker-wrapper {
    display: inline-block;
    white-space: nowrap;
    animation: ticker 59s linear infinite;
    will-change: transform;
}

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

        .ticker-wrapper:hover {
            animation-play-state: paused;
        }

        .notification-item {
            display: inline-block;
            margin-right: 90px;
            font-size: 13px;
            font-weight: 500;
            color: #222;
        }

        .notification-item span {
            color: #ffffff;
            font-weight: 600;
        }

        .new-badge {
            display: inline-block;
            margin-left: 12px;
            background: #e91e1e;
            color: white;
            font-size: 11px;
            font-weight: 700;
            padding: 4px 10px;
            border-radius: 4px;
            animation: pulse 2s infinite;
            vertical-align: middle;
        }

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

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.15); }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .left-part {
                width: 280px;
                padding-left: 20px;
                font-size: 14px;
                clip-path: polygon(0 0, 85% 0, 95% 100%, 0 100%);
            }
            .left-part img { width: 24px; }
            .right-part { padding-left: 290px; }
            .notification-item { 
                font-size: 13px; 
                margin-right: 60px; 
            }
        }


        /* 2nd */

  .NavSocialMedia {
    width: 100%;
    background: #16243D;
    color: white;
    padding: 9px 0;
    font-size: 13px;
}

.container {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 0 20px;
}

.contact-info {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.contact-item i {
    font-size: 13px;
}

.contact-item a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: #0066CC;
}

/* Right side grouping */
.right-group {
    display: flex;
    align-items: center;
    gap: 28px;
}

/* Members Dropdown – no arrow of any kind */
.members-dropdown {
    position: relative;
}

.members-btn {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: none;
    padding: 8px 17px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.members-btn:hover {
    background: rgba(255, 255, 255, 0.28);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: #16243D;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 6px;
    min-width: 200px;
    margin-top: 9px;
    padding: 8px 0;
    box-shadow: 0 8px 16px rgba(0,0,0,0.25);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.25s ease;
    z-index: 10;
}

.members-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 9px 16px;
    color: white;
    text-decoration: none;
    font-size: 13px;
    transition: all 0.2s;
}

.dropdown-menu a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #0066CC;
    padding-left: 22px;
}

/* Social Media Icons */
.social-links {
    display: flex;
    gap: 18px;
}

.social-links a {
    color: white;
    font-size: 15px;
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    background: white;
    color: #0066cc;
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .contact-info {
        justify-content: center;
    }

    .right-group {
        flex-direction: column;
        gap: 12px;
    }

    .members-dropdown {
        width: fit-content;
        margin: 0 auto;
    }

    .social-links {
        justify-content: center;
    }
}
        /* 3rd */

        .Navbar {
    padding: 12px 0;
    width: 100%;
    /* position: sticky; */
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo img {
    height: 55px;
    transition: 0.3s;
}


/* Desktop Menu */
.nav-menu {
    display: flex;
    gap: 2px;
    background: linear-gradient(90deg, #0A98E6 0%, #52BAD3 100%);
    border-radius: 15px;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: white;
    text-decoration: none;
    padding: 14px 18px;
    font-weight: 500;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 2px;
    transition: 0.3s;
    border-radius: 8px;
}

.nav-link:hover {
    background: rgba(255,255,255,0.2);
}

.dropdown-arrow {
    font-size: 12px;
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 100px;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 999;
}

.nav-item:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 12px 18px;
    color: #333;
    font-size: 12px;
    border-bottom: 1px solid #eee;
    text-decoration: none;
}

.dropdown-menu a:last-child { border-bottom: none; }

.dropdown-menu a:hover {
    background: #0066cc;
    color: white;
    
}

/* SUB DROPDOWN */
.dropdown-sub-item { position: relative; }

.sub-arrow {
    float: right;
    font-size: 9px;
}

.sub-dropdown-menu {
    position: absolute;
    top: 0;
    left: 100%;
    background: white;
    min-width: 180px;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: 0.3s ease;
}

.dropdown-sub-item:hover > .sub-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
}

/* MOBILE RESPONSIVE */
@media (max-width: 992px) {
    .menu-toggle { display: block; }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 300px;
        background: #16243D;
        flex-direction: column;
        padding: 80px 20px 20px;
        transition: 0.4s ease;
        border-radius: 0px;
        overflow-y: scroll;
    }

    .nav-menu.active { right: 0; }

    .nav-link {
        padding: 16px;
        display: flex;
        justify-content: space-between;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: rgba(255,255,255,0.1);
        display: none;
        margin-top: 5px;
    }

    .nav-item.active .dropdown-menu {
        display: block;
    }

    .dropdown-menu a {
        color: white;
        padding-left: 40px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    /* SUB DROPDOWN MOBILE */
    .sub-dropdown-menu {
        position: static;
        background: rgba(255,255,255,0.1);
        display: none;
        margin-left: 20px;
    }

    .dropdown-sub-item.active .sub-dropdown-menu {
        display: block;
    }

    .dropdown-sub-item a { color: white !important; }
}

/* 4 th  */
.SecondSection {
      width: 100%;
      margin: 60px auto;
      padding: 0 4%;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 50px;
      align-items: center;
      
    }

    .left-content h2 {
      font-size: 2.8rem;
      color: #16243D;
      margin-bottom: 20px;
    }

    .left-content p {
      font-size: 1.03rem;
      line-height: 1.7;
      color: #444;
    }

    .right-video video {
      width: 100%;
      height: auto;
      border-radius: 12px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    }

    /* Responsive for tablets & mobile */
    @media (max-width: 968px) {
      .SecondSection {
        grid-template-columns: 1fr;
        text-align: center;
      }
      
      .left-content h2 {
        font-size: 2rem;
      }
    }

    @media (max-width: 600px) {
      .SecondSection {
        margin: 40px auto;
        gap: 30px;
      }
      
      .left-content h2 {
        font-size: 1.8rem;
      }
    }

    /* 5th */

    .ThirdSection {
        width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 10px 4%;
      background: #f9fcff;
      gap: 60px;
      min-height: 80vh;
    }

    /* Left Side - Content */
    .left-side {
      flex: 1;
      min-width: 350px;
    }

    .left-side h2 {
      font-size: 2.8rem;
      font-weight: 800;
      color: #16243D;
      line-height: 1.2;
      margin-bottom: 40px;
    }

    .stats-grid {
      display: flex;
      flex-direction: column;
      gap: 30px;
    }

    .stat-item {
      display: flex;
      align-items: center;
      gap: 20px;
    }

    .stat-icon {
      font-size: 3rem;
      color: #007bff;
    }

    .stat-info h3 {
      font-size: 2.3rem;
      font-weight: 700;
      color: #007bff;
      margin: 0;
    }

    .stat-info p {
      font-size: 1.2rem;
      color: #475569;
      margin: 5px 0 0;
    }

    /* Right Side - Image Slider */
   .right-side {
  flex: 1;
  min-width: 350px;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.slider-container {
  width: 100%;
  overflow: hidden;
}

.slider-wrapper {
  display: flex;
  width: max-content;
  animation: slideRight 20s linear infinite;
}

.slider-track {
  display: flex;
  gap: 25px;
  padding: 20px 0;
}

.slider-track img {
  width: 340px;
  height: auto;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  flex-shrink: 0;
}

/* Animation */
@keyframes slideRight {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-40%);
  }
}

/* Pause on hover */
.right-side:hover .slider-wrapper {
  animation-play-state: paused;
}


    /* Responsive */
   /* Responsive */
@media (max-width: 992px) {
  .ThirdSection {
    flex-direction: column;
    text-align: center;
    padding: 60px 5%;
    gap: 40px;
  }

  .left-side {
    order: 1;
  }

  .right-side {
    order: 1;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }

  .left-side h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
  }

  .stats-grid {
    align-items: center;
    gap: 20px;
  }

  .slider-track img {
    width: 260px;
    height: 340px;
  }
}

@media (max-width: 480px) {
  .ThirdSection {
    padding: 40px 4%;
    gap: 30px;
  }

  .left-side h2 {
    font-size: 1.9rem;
    margin-bottom: 15px;
    line-height: 1.3;
  }

  .stat-item {
    flex-direction: column;
    gap: 10px;
  }

  .stat-icon {
    font-size: 2.3rem;
  }

  .stat-info h3 {
    font-size: 1.7rem;
  }

  .stat-info p {
    font-size: 1rem;
  }

  .slider-track img {
    width: 220px;
    height: 300px;
    border-radius: 14px;
  }
}


/* 6th */
.trustedByCompany {
    text-align: center;
    padding: 40px 0;
    overflow: hidden;
    position: relative;
    background: #ffffff;
}

.trusted-title {
   
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #16243D;
}

.logo-slider {
    overflow: hidden;
    width: 100%;
    position: relative;
    white-space: nowrap;
  width: 100%;
    align-items: center;
}

.logo-track {
    display: flex;
    gap: 40px;
    animation: scrollLeft 60s linear infinite;
    align-items: center;
    width: max-content; /* Ensures the images extend beyond the container */
}
.logo-track img {
    width: 120px; /* Adjust size as needed */
    height: 80px;
    display: inline-block;
    object-fit: contain;
    transition: filter 0.3s ease-in-out;
}
@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}
/* No grayscale effect – logos always in color */

/* Responsive Design */
@media (max-width: 768px) {
    .trusted-title {
        font-size: 20px;
    }

    .logo-track img {
        width: 100px;
    }
}

@media (max-width: 480px) {
    .trusted-title {
        font-size: 1.8rem;
    }

    .logo-track img {
        width: 80px;
    }
}

/* 7th */
.FourthSection {
    
      padding: 80px 20px;
      background-color: #f9f9f9;
      text-align: center;
      
    }

    .FourthSection h2 {
      font-size: 2.5rem;
      margin-bottom: 20px;
      color: #16243D;
      font-weight: 600;
    }

    .FourthSection p {
      font-size: 1.2rem;
      max-width: 800px;
      margin: 0 auto 50px;
      color: #555;
      line-height: 1.6;
    }

    /* Grid for 4 images */
    .internship-gallery {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .internship-gallery img {
      width: 100%;
      height: 250px;
      object-fit: cover;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      transition: transform 0.3s ease;
    }

    .internship-gallery img:hover {
      transform: scale(1.05);
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .FourthSection h2 { font-size: 1.8rem; }
      .internship-gallery { grid-template-columns: 1fr 1fr; }
    }

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

    /* 8th */
    .naturopathy-section {
  padding: 10px 4%;
  background-color: #f8fcf5;
 
}

.naturopathy-section h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 70px;
  color: #16243D;
}

.naturopathy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1400px;
  margin: 0 auto;
  align-items: stretch;
}

.left-column, .right-column {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.section-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #333;
  text-align: justify;
}

.video-container {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.video-container video {
  width: 100%;
  height: auto;
  display: block;
}
.bottom-image {
  margin-top: auto; /* Forces bottom image to align at bottom */
}
.bottom-image img {
  width: 100%;
  height: 320px; /* Set equal height */
  object-fit: cover; /* Keeps image clean without distortion */
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}


/* Responsive */
@media (max-width: 992px) {
  .naturopathy-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .naturopathy-section h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 600px) {
  .naturopathy-section {
    padding: 0px 15px;
  }
  
}

/*  */
.certificateCourse {
        max-width: 1200px;
        margin: 0 auto;
        padding: 40px 20px;
    }
    .section-heading {
        text-align: center;
        font-size: 2.8rem;
        margin-bottom: 20px;
        color: #2c3e50;
        position: relative;
    }
    .section-heading::after {
        content: '';
        display: block;
        width: 120px;
        height: 5px;
        background: #3498db;
        margin: 20px auto 0;
        border-radius: 3px;
    }
    .section-subtitle {
        text-align: center;
        font-size: 1.2rem;
        color: #555;
        max-width: 800px;
        margin: 0 auto 60px;
        line-height: 1.6;
    }
    .courses-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 30px;
        margin-bottom: 100px;
    }
    .course-card {
        background: white;
        border-radius: 16px;
        box-shadow: 0 8px 25px rgba(0,0,0,0.1);
        overflow: hidden;
        display: flex;
        flex-direction: column;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .course-card:hover {
        transform: translateY(-12px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.18);
    }
    .course-image {
        height: 220px;
        overflow: hidden;
    }
    .course-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }
    .course-card:hover .course-image img {
        transform: scale(1.12);
    }
    .course-info {
        padding: 28px;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
    }
    .course-name {
        font-size: 1.6rem;
        font-weight: 700;
        margin-bottom: 14px;
        color: #2c3e50;
    }
    .course-desc {
        font-size: 1.05rem;
        color: #555;
        margin-bottom: 24px;
        line-height: 1.7;
        flex-grow: 1;
    }
    .course-details {
        display: flex;
        justify-content: space-between;
        font-size: 1.05rem;
        color: #7f8c8d;
    }
    .course-details span {
        font-weight: 700;
        color: #3498db;
    }

    /* Enhanced Message Section */
 .enquiry-wrapper {
    background: linear-gradient(135deg, #ffffff, #f2f8ff);
    padding: 70px 60px;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    max-width: 900px;
    margin: 80px auto;
    position: relative;
}

.enquiry-title {
    text-align: center;
    font-size: 2.4rem;
    font-weight: 700;
    color: #2C3E50;
    margin-bottom: 15px;
}

.enquiry-description {
    text-align: center;
    color: #64748b;
    font-size: 1.1rem;
    margin-bottom: 50px;
}

.input-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.input-box {
    display: flex;
    flex-direction: column;
}

.input-box.full-area {
    grid-column: span 2;
    margin-bottom: 20px;
}

.input-box label {
    margin-bottom: 8px;
    font-weight: 600;
    color: #334155;
    font-size: 0.95rem;
}

.input-box input,
.input-box textarea,
.input-box select {
    padding: 18px;
    border-radius: 14px;
    border: 1px solid #e2e8f0;
    font-size: 1rem;
    background: #ffffff;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.input-box input:focus,
.input-box textarea:focus,
.input-box select:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.15);
}

.input-box textarea {
    min-height: 170px;
    resize: vertical;
}

.input-box select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%232563eb' d='M1 0l5 6 5-6z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
}

.primary-submit-btn {
    display: block;
    margin: 40px auto 0;
    padding: 18px 60px;
    background: #5BC2F2;
    color: #ffffff;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: #DBEDF9;
}

.primary-submit-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(91, 194, 242, 0.3);
    background-color: #3192D3;
}

/* Responsive */
@media (max-width: 768px) {
    .enquiry-wrapper {
        padding: 50px 25px;
    }

    .input-row {
        grid-template-columns: 1fr;
    }

    .input-box.full-area {
        grid-column: span 1;
    }
}


    @media (max-width: 768px) {
        .courses-grid {
            grid-template-columns: 1fr;
        }
        .form-grid {
            grid-template-columns: 1fr;
        }
        .form-group.full-width {
            grid-column: span 1;
        }
        .course-image {
            height: 200px;
        }
        .message-section {
            padding: 40px 30px;
        }
    }


    /* Diploma */

    .diplomaCourse {
        max-width: 1200px;
        margin: 0 auto;
        padding: 40px 20px;
    }
    .section-heading {
        text-align: center;
        font-size: 2.8rem;
        margin-bottom: 20px;
        color: #2c3e50;
        position: relative;
    }
    .section-heading::after {
        content: '';
        display: block;
        width: 120px;
        height: 5px;
        background: #3498db;
        margin: 20px auto 0;
        border-radius: 3px;
    }
    .section-subtitle {
        text-align: center;
        font-size: 1.2rem;
        color: #555;
        max-width: 800px;
        margin: 0 auto 60px;
        line-height: 1.6;
    }
    .courses-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 30px;
        margin-bottom: 100px;
    }
    .course-card {
        background: white;
        border-radius: 16px;
        box-shadow: 0 8px 25px rgba(0,0,0,0.1);
        overflow: hidden;
        display: flex;
        flex-direction: column;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .course-card:hover {
        transform: translateY(-12px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.18);
    }
    .course-image {
        height: 220px;
        overflow: hidden;
    }
    .course-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }
    .course-card:hover .course-image img {
        transform: scale(1.12);
    }
    .course-info {
        padding: 28px;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
    }
    .course-name {
        font-size: 1.6rem;
        font-weight: 700;
        margin-bottom: 14px;
        color: #2c3e50;
    }
    .course-desc {
        font-size: 1.05rem;
        color: #555;
        margin-bottom: 24px;
        line-height: 1.7;
        flex-grow: 1;
    }
    .course-details {
        display: flex;
        justify-content: space-between;
        font-size: 1.05rem;
        color: #7f8c8d;
    }
    .course-details span {
        font-weight: 700;
        color: #3498db;
    }

    /* Enhanced Message Section */
    .message-section {
        background: #f8fbff;
        padding: 60px;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.08);
        max-width: 800px;
        margin: 0 auto;
    }
    .message-section h2 {
        text-align: center;
        margin-bottom: 12px;
        color: #2c3e50;
        font-size: 2.2rem;
    }
    .message-section h2::after {
        content: '';
        display: block;
        width: 100px;
        height: 4px;
        background: #3498db;
        margin: 20px auto 0;
        border-radius: 2px;
    }
    .form-subtitle {
        text-align: center;
        color: #666;
        margin-bottom: 40px;
        font-size: 1.1rem;
    }
    .form-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 25px;
        margin-bottom: 25px;
    }
    .form-group.full-width {
        grid-column: span 2;
    }
    .form-group {
        display: flex;
        flex-direction: column;
    }
    label {
        margin-bottom: 10px;
        font-weight: 600;
        color: #333;
    }
    input, textarea, select {
        width: 100%;
        padding: 16px;
        border: 1px solid #ddd;
        border-radius: 10px;
        font-size: 1rem;
        transition: border-color 0.3s ease, box-shadow 0.3s ease;
        box-sizing: border-box;
    }
    input:focus, textarea:focus, select:focus {
        outline: none;
        border-color: #3498db;
        box-shadow: 0 0 0 4px rgba(52, 152, 219, 0.15);
    }
    textarea {
        min-height: 160px;
        resize: vertical;
    }
    select {
        appearance: none;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%233498db' d='M1 0l5 6 5-6z'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 16px center;
    }
    .submit-btn {
        background: #3498db;
        color: white;
        padding: 16px 50px;
        border: none;
        border-radius: 10px;
        font-size: 1.2rem;
        font-weight: 600;
        cursor: pointer;
        display: block;
        margin: 40px auto 0;
        transition: background 0.3s ease, transform 0.2s ease;
    }
    .submit-btn:hover {
        background: #2980b9;
        transform: translateY(-3px);
    }

    @media (max-width: 768px) {
        .courses-grid {
            grid-template-columns: 1fr;
        }
        .form-grid {
            grid-template-columns: 1fr;
        }
        .form-group.full-width {
            grid-column: span 1;
        }
        .course-image {
            height: 200px;
        }
        .message-section {
            padding: 40px 30px;
        }
    }


    /* dept vocational */

    .deptVocational {
  max-width: 1180px;
  margin: 0 auto;
  padding: 60px 20px;
  
  color: #1f2937;
}

.heading-container {
  text-align: center;
  margin-bottom: 60px;
}

.heading-container h2 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #2C3E50;
  margin: 0 0 12px;
}

.underline {
  width: 120px;
  height: 5px;
  background: #3498DB;
  margin: 0 auto;
  border-radius: 3px;
}

/* Main Content */
.main-content {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 100px;
  flex-wrap: wrap;
}

.image-container {
  flex: 1;
  min-width: 340px;
  align-self: flex-start; 
}

.main-image {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
  object-fit: cover;
  transition: transform 0.4s ease;
}

.main-image:hover {
  transform: scale(1.03);
}

.text-content {
  flex: 1.35;
  min-width: 340px;
}

.text-content h3 {
  font-size: 2.1rem;
  color: #4f46e5;
  margin: 0 0 1.2rem;
  font-weight: 600;
}

.text-content p {
  font-size: 1.08rem;
  line-height: 1.8;
  margin-bottom: 1.4rem;
  color: #4b5563;
}

.features h4 {
  font-size: 1.4rem;
  color: #374151;
  margin: 1.8rem 0 1rem;
}

.features ul {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0.9rem;
}

.features ul li {
  font-size: 1.05rem;
  padding-left: 1.8rem;
  position: relative;
}

.features ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #6366f1;
  font-weight: bold;
}

.highlight {
  font-weight: 600;
  color: #1e40af;
  background: #eff6ff;
  padding: 12px 18px;
  border-radius: 10px;
  margin-top: 1.5rem;
  display: inline-block;
}

/* Apply Section */
.apply-section {
  background: linear-gradient(135deg, #2563eb 0%, #4f46e5 100%);
  color: white;
  padding: 80px 20px;
  border-radius: 24px;
  margin: 0 0 60px;
  box-shadow: 0 20px 60px rgba(37,99,235,0.18);
}

.apply-wrapper {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.apply-section h2 {
  font-size: clamp(2.2rem, 4.8vw, 2.8rem);
  font-weight: 700;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}

.apply-subtitle {
  font-size: 1.15rem;
  opacity: 0.92;
  margin-bottom: 2.8rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.apply-form {
  display: grid;
  gap: 1.7rem;
  text-align: left;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 600;
  margin-bottom: 0.6rem;
  font-size: 1.02rem;
  color: white;
}

.required {
  color: #fecaca;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  padding: 14px 18px;
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 12px;
  font-size: 1.03rem;
  background: rgba(255,255,255,0.98);
  color: #111827;
  transition: all 0.22s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: white;
  box-shadow: 0 0 0 4px rgba(255,255,255,0.22);
  background: white;
}

.form-group textarea {
  resize: vertical;
  min-height: 108px;
}

.submit-button {
  background: white;
  color: #2563eb;
  font-weight: 700;
  font-size: 1.18rem;
  padding: 16px 64px;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  margin: 1.4rem auto 0;
  align-self: center;
}

.submit-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.22);
  background: #f8fafc;
}

.form-note {
  font-size: 0.93rem;
  opacity: 0.9;
  margin-top: 1.6rem;
  text-align: center;
}

/* Mobile adjustments */
@media (max-width: 600px) {
  .apply-section {
    padding: 60px 16px;
    border-radius: 16px;
  }
  
  .submit-button {
    width: 100%;
    padding: 16px;
  }
}
/* Responsive */
@media (max-width: 980px) {
  .main-content {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }
  
  .features ul {
    grid-template-columns: 1fr;
  }
  
  .form-row {
    flex-direction: column;
    gap: 1.6rem;
  }.deptVocational {
  max-width: 1180px;
  margin: 0 auto;
  padding: 60px 20px;
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  color: #1f2937;
  line-height: 1.6;
}

.heading-container {
  text-align: center;
  margin-bottom: 60px;
}

.heading-container h2 {
  font-size: clamp(2.2rem, 5vw, 2.8rem);
  font-weight: 700;
  color: #2C3E50;
  margin: 0 0 12px;
}

.underline {
  width: 120px;
  height: 5px;
  background: #3498DB;
  margin: 0 auto;
  border-radius: 3px;
}

/* ────────────────────────────────────────────────
   Main Content - Image + Text
───────────────────────────────────────────────── */
.main-content {
  display: flex;
  align-items: stretch;
  gap: 50px;
  margin-bottom: 100px;
  flex-wrap: wrap;
}

.image-container {
  flex: 1 1 45%;
  min-width: 340px;
}

.main-image {
  width: 100%;
  height: 100%;
  min-height: 380px;           /* Prevents "very short" look */
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 16px 32px rgba(0,0,0,0.1);
  transition: transform 0.35s ease;
}

.main-image:hover {
  transform: scale(1.025);
}

.text-content {
  flex: 1 1 55%;
  min-width: 340px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.text-content h3 {
  font-size: 2.1rem;
  color: #2563eb;
  margin: 0 0 1.3rem;
  font-weight: 600;
}

.text-content p {
  font-size: 1.07rem;
  margin-bottom: 1.3rem;
  color: #4b5563;
}

.features h4 {
  font-size: 1.35rem;
  color: #1f2937;
  margin: 1.8rem 0 1.1rem;
  font-weight: 600;
}

.features ul {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.9rem 1.4rem;
}

.features ul li {
  font-size: 1.03rem;
  padding-left: 1.9rem;
  position: relative;
}

.features ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #3b82f6;
  font-weight: bold;
}

.highlight {
  font-weight: 600;
  color: #1e40af;
  background: #eff6ff;
  padding: 12px 20px;
  border-radius: 10px;
  margin-top: 1.4rem;
  display: inline-block;
  font-size: 1.03rem;
}

/* ────────────────────────────────────────────────
   Apply Section - More user-friendly
───────────────────────────────────────────────── */
.apply-section {
  background: linear-gradient(135deg, #3b82f6 0%, #6366f1 100%);
  color: white;
  padding: 70px 20px;
  border-radius: 20px;
  margin: 0 0 60px;
}

.apply-wrapper {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.apply-section h2 {
  font-size: clamp(2.1rem, 4.5vw, 2.6rem);
  margin: 0 0 1rem;
  font-weight: 700;
}

.apply-subtitle {
  font-size: 1.18rem;
  opacity: 0.95;
  margin-bottom: 2.5rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.apply-form {
  display: grid;
  gap: 1.6rem;
  text-align: left;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 600;
  margin-bottom: 0.55rem;
  font-size: 1.03rem;
}

.required {
  color: #fee2e2;
}

.form-group input,
.form-group textarea {
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 10px;
  font-size: 1.03rem;
  background: rgba(255,255,255,0.97);
  color: #111;
  transition: all 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: white;
  box-shadow: 0 0 0 4px rgba(255,255,255,0.25);
  background: white;
}

.form-group textarea {
  resize: vertical;
  min-height: 110px;
}

.submit-button {
  background: white;
  color: #2563eb;
  border: none;
  padding: 16px 48px;
  font-size: 1.18rem;
  font-weight: 700;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s;
  align-self: center;
  margin-top: 1.2rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.submit-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.22);
}

.form-note {
  font-size: 0.94rem;
  opacity: 0.92;
  margin-top: 1.4rem;
  text-align: center;
}

/* ────────────────────────────────────────────────
   Responsive Adjustments
───────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .main-content {
    gap: 40px;
  }
}

@media (max-width: 900px) {
  .main-content {
    flex-direction: column;
    text-align: center;
  }
  
  .image-container {
    order: -1;
  }
  
  .main-image {
    min-height: 320px;
  }
  
  .features ul {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .deptVocational {
    padding: 50px 16px;
  }
  
  .heading-container {
    margin-bottom: 45px;
  }
  
  .apply-section {
    padding: 60px 16px;
  }
  
  .submit-button {
    width: 100%;
    padding: 16px;
  }
}
}


/* admission process section */

/* Admission Process Section */
.admission-process {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

/* Heading with underline */
.admission-process h2 {
  text-align: center;
  font-size: 2.8rem;
  font-weight: 700;
  color: #2C3E50;
  margin-bottom: 1.2rem;
  position: relative;
  display: inline-block;
  width: 100%;
}

.admission-process h2::after {
  content: '';
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  height: 5px;
  background: #3498DB;
  border-radius: 4px;
}

/* Flex container for text + image */
.admission-process .content-wrapper {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-top: 50px;
}

.text-column {
  flex: 1;
  min-width: 320px;
}

.image-column {
  flex: 1;
  min-width: 320px;
  text-align: center;
}

/* Text styling */
.text-column p {
  font-size: 1.15rem;
  line-height: 1.9;
  color: #444;
  margin-bottom: 1.6rem;
}

.text-column ol {
  padding-left: 28px;
  margin: 2rem 0;
}

.text-column ol li {
  font-size: 1.15rem;
  line-height: 1.9;
  color: #333;
  margin-bottom: 1.2rem;
  position: relative;
}

.text-column ol li strong {
  color: #0056b3;
}

/* Image styling */
.image-column img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.image-column img:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .admission-process .content-wrapper {
    flex-direction: column;
    gap: 50px;
  }

  .admission-process h2 {
    font-size: 2.4rem;
  }

  .text-column ol li {
    font-size: 1.1rem;
  }
}

@media (max-width: 576px) {
  .admission-process {
    padding: 40px 16px;
  }

  .admission-process h2 {
    font-size: 2.1rem;
  }

  .text-column p,
  .text-column ol li {
    font-size: 1.05rem;
  }

  .image-column img {
    border-radius: 12px;
  }
}

/* fess  */
/* Fee Section – Centered Heading Fix + Professional Polish */
.fee-section {
  background: #f8fbff;
  padding: 80px 20px;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  text-align: center;          /* Helps center child elements */
}

.section-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #2C3E50;
  margin: 0 auto 0.4rem auto;
  display: block;              /* Ensures block-level centering */
}

.title-underline {
  display: block;
  width: 160px;
  height: 5px;
  background: #3498DB;
  margin: 14px auto 2.5rem auto;   /* Centered with space below */
  border-radius: 3px;
}

.section-subtitle {
  font-size: 1.18rem;
  color: #555;
  margin: 0 auto 3rem auto;
  max-width: 780px;
  line-height: 1.6;
}

.fee-table-wrapper {
  overflow-x: auto;
  border-radius: 18px;
  box-shadow: 0 10px 35px rgba(0, 50, 120, 0.08);
  background: white;
}


.fee-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  color: #2c3e50;
  min-width: 900px;
}

.fee-table th,
.fee-table td {
  padding: 15px 22px;
  text-align: left;
  border-bottom: 1px solid #e9ecef;
  line-height: 1.6;
}

.fee-table th {
  background: linear-gradient(135deg, #0062cc 0%, #004085 100%);
  color: white;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.even-row {
  background: #fff8f8;
}

@media (min-width: 992px) {
  .fee-table tr:hover {
    background: #eef6ff;
    transition: background 0.25s ease;
  }
}

/* =====================
   NOTE
===================== */
.fee-note {
  margin: 2.8rem auto 0;
  padding: 22px 26px;
  background: #fff8e1;
  border-left: 5px solid #ffc107;
  border-radius: 10px;
  font-size: 1.02rem;
  color: #5d4037;
  line-height: 1.7;
  max-width: 900px;
  text-align: left;
}

.fee-note strong {
  color: #e65100;
}

/* =====================
   RESPONSIVE (MOBILE)
===================== */
@media (max-width: 992px) {
  .section-title {
    font-size: 2.4rem;
  }
}

@media (max-width: 768px) {

  .fee-table thead {
    display: none;
  }

  .fee-table {
    min-width: 100%;
    font-size: 0.95rem;
  }

  .fee-table tr {
    display: block;
    margin-bottom: 1.6rem;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    overflow: hidden;
  }

  .fee-table td {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 14px 18px;
    border-bottom: 1px solid #f0f0f0;
    text-align: right;
  }

  .fee-table td:last-child {
    border-bottom: none;
    font-weight: 600;
    color: #0062cc;
  }

  .fee-table td::before {
    content: attr(data-label);
    font-weight: 600;
    color: #555;
    text-transform: uppercase;
    font-size: 0.75rem;
    flex: 1;
    text-align: left;
    margin-right: 14px;
  }
}



/* FOOTER START */
.site-footer {
  background-color: #1f2937;
  color: #ffffff;
  padding: 3rem 1rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-grid-layout {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding: 0 40px;
}

.footer-section {
  display: flex;
  flex-direction: column;
}

.footer-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: #d1d5db;
  text-decoration: none;
  position: relative;
}

.footer-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  left: 0;
  bottom: -2px;
  background-color: #B11925;
  transition: width 0.3s ease;
}

.footer-link:hover::after {
  width: 100%;
}

.footer-socials {
  display: flex;
  gap: 1rem;
}

.social-link {
  font-size: 1.25rem;
  color: #d1d5db;
  transition: transform 0.3s, color 0.3s;
}

.social-link:hover {
  transform: translateY(-4px);
  color: #B11925;
}

.footer-payment img {
  width: 270px;
  border-radius: 8px;
}

.payment-text {
 background-color:#B11925;
  color: rgb(255, 252, 252);
  padding: 4px 32px;
  margin-top: 6px;
  border-radius: 4px;
  font-size: 12px;
  display: inline-block;
}

.footer-copyright {
  text-align: center;
  margin-top: 2rem;
  color: #9ca3af;
  font-size: 0.875rem;
}

/* Responsive */
@media (max-width: 1024px) {
  .footer-grid-layout {
    grid-template-columns: repeat(2, 1fr);
    padding: 0;
  }
}

@media (max-width: 640px) {
  .footer-grid-layout {
    grid-template-columns: 1fr;
  }
}
/* FOOTER END */
/* TEN SECTION START */
.tensention {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  align-items: stretch;
  padding: 40px 60px;
  gap: 20px;
  box-sizing: border-box;
  max-width: 1400px;
  margin: 0 auto;
}

/* Left Section: NIMTT Carousel */
.left {
  flex: 1 1 33.33%;
  background-color: #000;
  border-radius: 20px;
  overflow: hidden;
  height: 480px;
  max-width: 530px;
  position: relative;
}

.nimtt-container {
  position: relative;
  height: 100%;
}

.nimtt-text {
  font-size: 4.5rem;
  font-weight: bold;
  color: #39A424;
  font-family: Bear, sans-serif;
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  margin: 0;
  text-align: center;
  width: 100%;
}

.carousel-std {
  position: absolute;
  width: 100%;
  height: 400px;
  top: 50px;
  overflow: hidden;
  z-index: 2;
}

.carousel-std-images {
  position: relative;
  width: 100%;
  height: 100%;
}

.carousel-std-images img {
  position: absolute;
  width: 100%;
  height: 300px;
  border-radius: 10px;
  object-fit: contain;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.feedback {
  position: absolute;
  bottom: 25px;
  width: 100%;
  height: 50px;
}

.feedback-text {
  position: relative;
  width: 100%;
  height: 100%;
}

.feedback-text p {
  position: absolute;
  width: 100%;
  color: #fff;
  font-size: 1rem;
  margin: 0;
  text-align: center;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  background: rgba(0, 0, 0, 0.85);
  padding: 8px;
}

/* Animation for images */
.carousel-std-images img:nth-child(1) { animation: fade 105s infinite; }
.carousel-std-images img:nth-child(2) { animation: fade 105s infinite 3s; }
.carousel-std-images img:nth-child(3) { animation: fade 105s infinite 6s; }
.carousel-std-images img:nth-child(4) { animation: fade 105s infinite 9s; }
.carousel-std-images img:nth-child(5) { animation: fade 105s infinite 12s; }
.carousel-std-images img:nth-child(6) { animation: fade 105s infinite 15s; }
.carousel-std-images img:nth-child(7) { animation: fade 105s infinite 18s; }
.carousel-std-images img:nth-child(8) { animation: fade 105s infinite 21s; }
.carousel-std-images img:nth-child(9) { animation: fade 105s infinite 24s; }
.carousel-std-images img:nth-child(10) { animation: fade 105s infinite 27s; }
.carousel-std-images img:nth-child(11) { animation: fade 105s infinite 30s; }
.carousel-std-images img:nth-child(12) { animation: fade 105s infinite 33s; }
.carousel-std-images img:nth-child(13) { animation: fade 105s infinite 36s; }
.carousel-std-images img:nth-child(14) { animation: fade 105s infinite 39s; }
.carousel-std-images img:nth-child(15) { animation: fade 105s infinite 42s; }
.carousel-std-images img:nth-child(16) { animation: fade 105s infinite 45s; }
.carousel-std-images img:nth-child(17) { animation: fade 105s infinite 48s; }
.carousel-std-images img:nth-child(18) { animation: fade 105s infinite 51s; }
.carousel-std-images img:nth-child(19) { animation: fade 105s infinite 54s; }
.carousel-std-images img:nth-child(20) { animation: fade 105s infinite 57s; }
.carousel-std-images img:nth-child(21) { animation: fade 105s infinite 60s; }
.carousel-std-images img:nth-child(22) { animation: fade 105s infinite 63s; }
.carousel-std-images img:nth-child(23) { animation: fade 105s infinite 66s; }
.carousel-std-images img:nth-child(24) { animation: fade 105s infinite 69s; }
.carousel-std-images img:nth-child(25) { animation: fade 105s infinite 72s; }
.carousel-std-images img:nth-child(26) { animation: fade 105s infinite 75s; }
.carousel-std-images img:nth-child(27) { animation: fade 105s infinite 78s; }
.carousel-std-images img:nth-child(28) { animation: fade 105s infinite 81s; }
.carousel-std-images img:nth-child(29) { animation: fade 105s infinite 84s; }
.carousel-std-images img:nth-child(30) { animation: fade 105s infinite 87s; }
.carousel-std-images img:nth-child(31) { animation: fade 105s infinite 90s; }
.carousel-std-images img:nth-child(32) { animation: fade 105s infinite 93s; }
.carousel-std-images img:nth-child(33) { animation: fade 105s infinite 96s; }
.carousel-std-images img:nth-child(34) { animation: fade 105s infinite 99s; }
.carousel-std-images img:nth-child(35) { animation: fade 105s infinite 102s; }

/* Animation for feedback text */
.feedback-text p:nth-child(1) { animation: fade 105s infinite; }
.feedback-text p:nth-child(2) { animation: fade 105s infinite 3s; }
.feedback-text p:nth-child(3) { animation: fade 105s infinite 6s; }
.feedback-text p:nth-child(4) { animation: fade 105s infinite 9s; }
.feedback-text p:nth-child(5) { animation: fade 105s infinite 12s; }
.feedback-text p:nth-child(6) { animation: fade 105s infinite 15s; }
.feedback-text p:nth-child(7) { animation: fade 105s infinite 18s; }
.feedback-text p:nth-child(8) { animation: fade 105s infinite 21s; }
.feedback-text p:nth-child(9) { animation: fade 105s infinite 24s; }
.feedback-text p:nth-child(10) { animation: fade 105s infinite 27s; }
.feedback-text p:nth-child(11) { animation: fade 105s infinite 30s; }
.feedback-text p:nth-child(12) { animation: fade 105s infinite 33s; }
.feedback-text p:nth-child(13) { animation: fade 105s infinite 36s; }
.feedback-text p:nth-child(14) { animation: fade 105s infinite 39s; }
.feedback-text p:nth-child(15) { animation: fade 105s infinite 42s; }
.feedback-text p:nth-child(16) { animation: fade 105s infinite 45s; }
.feedback-text p:nth-child(17) { animation: fade 105s infinite 48s; }
.feedback-text p:nth-child(18) { animation: fade 105s infinite 51s; }
.feedback-text p:nth-child(19) { animation: fade 105s infinite 54s; }
.feedback-text p:nth-child(20) { animation: fade 105s infinite 57s; }
.feedback-text p:nth-child(21) { animation: fade 105s infinite 60s; }
.feedback-text p:nth-child(22) { animation: fade 105s infinite 63s; }
.feedback-text p:nth-child(23) { animation: fade 105s infinite 66s; }
.feedback-text p:nth-child(24) { animation: fade 105s infinite 69s; }
.feedback-text p:nth-child(25) { animation: fade 105s infinite 72s; }
.feedback-text p:nth-child(26) { animation: fade 105s infinite 75s; }
.feedback-text p:nth-child(27) { animation: fade 105s infinite 78s; }
.feedback-text p:nth-child(28) { animation: fade 105s infinite 81s; }
.feedback-text p:nth-child(29) { animation: fade 105s infinite 84s; }
.feedback-text p:nth-child(30) { animation: fade 105s infinite 87s; }
.feedback-text p:nth-child(31) { animation: fade 105s infinite 90s; }
.feedback-text p:nth-child(32) { animation: fade 105s infinite 93s; }
.feedback-text p:nth-child(33) { animation: fade 105s infinite 96s; }
.feedback-text p:nth-child(34) { animation: fade 105s infinite 99s; }
.feedback-text p:nth-child(35) { animation: fade 105s infinite 102s; }

@keyframes fade {
  0% { opacity: 0; }
  0.48% { opacity: 0; } /* Start fade-in at 0s */
  1.43% { opacity: 1; } /* Fade-in complete at 0.5s */
  2.86% { opacity: 1; } /* Hold until 1s */
  3.33% { opacity: 0; } /* Fade-out complete at 1.5s */
  100% { opacity: 0; }  /* Stay hidden until next cycle */
}

/* Middle Section: Testimonials */
.middle {
  flex: 1 1 33.33%;
  padding: 20px;
  overflow: hidden;
  box-sizing: border-box;
  height: 480px;
}

.testimonials-carousel {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.testimonials-container {
  display: flex;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
}

.testimonial {
  flex: 0 0 100%;
  text-align: center;
  padding: 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.student-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto;
}

.student-name {
  font-size: 1.3rem;
  margin: 10px 0 5px;
  color: #333;
}

.student-course {
  font-size: 0.9rem;
  color: #666;
  margin: 5px 0;
}

.star-rating {
  font-size: 1rem;
  color: #FFD700;
  margin: 10px 0;
}

.feedback-text {
  font-size: 0.9rem;
  color: #444;
  max-width: 250px;
  margin: 10px auto;
}

/* Right Section: Video */
.right {
  flex: 1 1 40%;
  padding: 10px;
  box-sizing: border-box;
  height: 480px;
}

.video-container {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
}

.video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .tensention {
      padding: 20px;
      gap: 15px;
  }

  .left, .middle, .right {
      flex: 1 1 30%;
      min-width: 250px;
      height: 400px;
  }

  .nimtt-text {
      font-size: 3.5rem;
      top: 5px;
  }

  .carousel-std {
      height: 350px;
      top: 30px;
  }

  .carousel-std-images img {
      height: 250px;
  }

  .feedback {
      bottom: 10px;
      height: 60px;
  }

  .feedback-text p {
      font-size: 1rem;
  }

  .video-container {
      height: 100%;
  }
}

@media (max-width: 768px) {
  .tensention {
      flex-direction: column;
      padding: 15px;
      gap: 20px;
  }

  .left, .middle, .right {
      flex: 1 1 100%;
      min-width: 100%;
      height: 400px;
      padding: 0;
  }

  .nimtt-text {
      font-size: 3rem;
  }

  .carousel-std {
      height: 350px;
      top: 25px;
  }

  .carousel-std-images img {
      height: 250px;
  }

  .feedback {
      height: 60px;
  }

  .feedback-text p {
      font-size: 1rem;
  }

  .middle {
      height: auto;
      min-height: 400px;
  }

  .video-container {
      height: 400px;
  }

  .student-img {
      width: 70px;
      height: 70px;
  }

  .student-name {
      font-size: 1.2rem;
  }

  .student-course {
      font-size: 0.85rem;
  }

  .feedback-text {
      font-size: 0.85rem;
      max-width: 90%;
  }
}

@media (max-width: 480px) {
  .tensention {
      padding: 10px;
      gap: 15px;
  }

  .left, .middle, .right {
      height: 300px;
  }

  .nimtt-text {
      font-size: 2.5rem;
  }

  .carousel-std {
      height: 260px;
      top: 20px;
  }

  .carousel-std-images img {
      height: 180px;
  }

  .feedback {
      height: 60px;
  }

  .feedback-text p {
      font-size: 0.9rem;
      padding: 6px;
  }

  .middle {
      min-height: 300px;
  }

  .video-container {
      height: 300px;
  }

  .student-img {
      width: 60px;
      height: 60px;
  }

  .student-name {
      font-size: 1.1rem;
  }

  .student-course {
      font-size: 0.8rem;
  }

  .feedback-text {
      font-size: 0.8rem;
  }
}


.news {
  width: 100%;
  background-color: #B11925;
  color: white;
  overflow: hidden;
  padding: 10px 0;
  box-sizing: border-box;
}

.ticker {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.ticker-track {
  display: flex;
  animation: scroll 40s linear infinite;
  width: max-content;
}

.ticker-content {
  display: flex;
}

.news-item {
  display: flex;
  align-items: center;
  margin-right: 60px;
  min-width: max-content;
}

.news-item img {
  height: 70px;
  width: auto;
  margin-right: 10px;
}

.news-text {
  color: white;
  font-size: 1rem;
  white-space: nowrap;
}

/* Smooth continuous scroll */
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .news-item img { height: 40px; }
  .news-text { font-size: 0.9rem; }
  .news-item { margin-right: 40px; }
}

@media (max-width: 480px) {
  .news-item img { height: 30px; }
  .news-text { font-size: 0.8rem; }
  .news-item { margin-right: 30px; }
}

/* Eleventh Section */
  .elevensection {
    max-width: 2400px;
    margin: 0 auto;
  }

  .banner {
    padding: 3rem;
    gap: 1.5rem;
  }

  .banner-item {
    padding: 1.5rem;
  }

  .banner-item i {
    font-size: 2.5rem;
  }

  .banner-item h4 {
    font-size: 1rem;
  }

  .banner-item .number {
    font-size: 2.5rem;
  }

  .section-choose {
    max-width: 1800px;
    margin: 0 auto;
    padding: 3rem;
    gap: 3rem;
  }

  .choose-content h2 {
    font-size: 3rem;
  }

  .choose-content ul li {
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }

  .choose-image img {
    border-radius: 12px;
  }

  /* ELEVEN SECTION START */
:root {
  --primary-bg: #282d33;
  --accent: #B11925;
  --text-light: #ffffff;
  --text-muted: #dad6d6;
}
.banner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1rem;
  padding: 2rem;
}
.banner-item {
  background: var(--primary-bg);
  border: 1px solid #3a3f45;
  padding: 1rem;
  text-align: center;
  overflow: hidden;

}
.banner-item i {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 0.5rem;
  display: block;
}
.banner-item h4 {
  margin-bottom: .5rem;
  font-size: 0.8rem; ;
  color: var(--text-muted);
  font-weight: normal;
}
.banner-item .number {
  font-size: 2rem;
  font-weight: bold;
  color: var(--text-light);
}

.section-choose {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 2rem;
  gap: 2rem;
}
.choose-image {
  flex: 1 1 300px;
}
.choose-image img {
  width: 100%;
  display: block;
  border-radius: 8px;
}
.choose-content {
  flex: 1 1 300px;
}
.choose-content h2 {
  color: white;
  font-size: 2rem;
  margin-bottom: .5rem;
  position: relative;
  display: inline-block;
}
.choose-content h2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 50px;
  height: 4px;
  background: var(--accent);
}
.choose-content ul {
  margin-top: 1rem;
  list-style: none;
}
.choose-content ul li {
  margin-bottom: .75rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.choose-content ul li::before {
  content: '\2013';
  margin-right: .5rem;
  color: var(--accent);
}

.banner-item:hover {
  background: var(--accent);
  cursor: default;
}
.banner-item:hover h4,
.banner-item:hover .number,
.banner-item:hover i {
  color: var(--text-light);
}

@media (max-width: 768px) {
  .section-choose { flex-direction: column; }
  .choose-content h2 { font-size: 1.75rem; }
}
.elevensection{
  background-color:#252B30;
}

.fourthsection {
  width: 100%;
  background-color: #FFFFFF;
  padding: 80px 0;
}

.about-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 90%;
  max-width: 1200px;
  margin: auto;
  gap: 40px;
  flex-wrap: wrap;
}

.about-left img {
  width: 100%;
  max-width: 550px;

  }

.about-right {
  flex: 1;
  min-width: 300px;
}

.about-right h2 {
  font-size: 36px;
  font-weight: 800;
  color: #2d3436;
  border-bottom: 3.5px solid #3498DB;
  display: inline-block;
  padding-bottom: 5px;
  margin-bottom: 20px;
}

.about-right p {
  font-size: 16.2px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 20px;
}

.about-right .highlight {
  color: #B11925;
  font-weight: bold;
}
.read-more-btn {
  display: inline-block;
  padding: 14px 30px;
  background-color: #B11925;
  color: white;
  text-decoration: none;
  font-weight: 540;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.read-more-btn:hover {
  background-color: #D6303E;
  transform: scale(1.05);
}
@media screen and (max-width: 768px) {
  .about-container {
    flex-direction: column;
    align-items: center;
   
  }

  .about-right {
    padding-top: 40px;
  }
}
/* FOURTH SECTION CLOSE */

/* FIFTH SECTION START  */
.fifthsection {
  background-color: #f5f6fa;
  padding: 60px 60px;
  font-family: 'Roboto', sans-serif;
}

.section-title {
  
  font-size: 32px;
  text-align: center;
  color: #2d3436;
  margin-bottom: 10px;
}

.why-underline {
  width: 80px;
  height: 3px;
  background-color: #B11925;
  margin: 0 auto 40px;
}

.content-wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 20px;
}

.video-section,
.text-section {
  flex: 1 1 500px;
  padding: 10px;
  box-sizing: border-box;
}

.video-section video {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.text-section p {
  font-family: 'Poppins', sans-serif;
  text-align: justify;
  font-size: 16px;
  color: #2d3436;
  line-height: 1.6;
}
@media (min-width: 1600px) {
  .fifthsection {
    padding: 80px 40px; /* more breathing space */
  }

  .section-title {
    font-size: 40px; /* bigger heading for readability */
    margin-bottom: 20px;
  }

  .underline {
    width: 100px;
    height: 4px;
    margin-bottom: 50px;
  }

  .content-wrapper {
    gap: 40px;
    max-width: 1400px; /* expand container on large screens */
  }

  .video-section,
  .text-section {
    flex: 1 1 600px;
    padding: 20px;
  }

  .video-section video {
    border-radius: 16px;
  }

  .text-section p {
    font-size: 18px;
    line-height: 1.8;
    max-width: 800px;
  }
}
 @media screen and (max-width: 768px) {
  .fifthsection {
    padding: 40px 20px; /* reduced padding for smaller screens */
  }

  }

  
  /* ELEVEN SECTION CLOSE */

  /* Elderly  */
  
  .elderly {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
  }

  .elderly h1 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 40px;
    font-size: 2.5rem;
  }

  .content-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
  }

 .left-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.15);
  object-fit: cover;
  display: block;                /* helps avoid unwanted bottom gap */
}

/* Optional: give the image container a bit more control */
.left-image {
  flex: 1;
  min-width: 300px;
  position: relative;
}

  .right-content {
    flex: 1.2;
    min-width: 320px;
  }

  .right-content h2 {
    color: #2980b9;
    margin-bottom: 20px;
  }

  .right-content p {
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
  }

  .submit-message-section {
    margin-top: 48px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(52, 152, 219, 0.12);
}

.submit-message-section h3 {
    text-align: center;
    color: #2c3e50;
    font-size: 2rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.form-subtitle {
    text-align: center;
    color: #7f8c8d;
    font-size: 1.05rem;
    margin-bottom: 32px;
    line-height: 1.5;
}

.modern-contact-form {
    max-width: 520px;
    margin: 0 auto;
}

.form-group {
    position: relative;
    margin-bottom: 28px;
}

.floating-label input,
.floating-label textarea {
    width: 100%;
    padding: 14px 16px 8px;
    border: 1px solid #d1dbe4;
    border-radius: 10px;
    font-size: 1rem;
    background: #fff;
    transition: all 0.25s ease;
    outline: none;
}

.floating-label input:focus,
.floating-label textarea:focus {
    border-color: #3498db;
    box-shadow: 0 0 0 4px rgba(52, 152, 219, 0.12);
}

.floating-label label {
    position: absolute;
    left: 16px;
    top: 14px;
    color: #95a5a6;
    font-size: 0.875rem;
    pointer-events: none;
    transition: all 0.25s ease;
    transform-origin: left top;
    font-weight: 500;
}

.floating-label input:focus + label,
.floating-label input:not(:placeholder-shown) + label,
.floating-label textarea:focus + label,
.floating-label textarea:not(:placeholder-shown) + label {
    top: -10px;
    left: 12px;
    font-size: 0.82rem;
    color: #3498db;
    background: white;
    padding: 0 6px;
    font-weight: 500;
}

textarea {
    resize: vertical;
    min-height: 110px;
    padding-top: 14px;
}

.submit-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(90deg, #3498db, #2980b9);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.15rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.25);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(52, 152, 219, 0.35);
    background: linear-gradient(90deg, #2980b9, #2471a3);
}

.submit-btn:active {
    transform: translateY(1px);
}

/* Optional success/error message styling */
.form-message {
    margin-top: 20px;
    padding: 14px;
    border-radius: 8px;
    font-weight: 500;
    text-align: center;
}

.form-message.success {
    background: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #a5d6a7;
}

.form-message.error {
    background: #ffebee;
    color: #c62828;
    border: 1px solid #ef9a9a;
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .submit-message-section {
        padding: 28px 20px;
    }
    
    .submit-message-section h3 {
        font-size: 1.75rem;
    }
}
  @media (max-width: 768px) {
    .content-wrapper {
      flex-direction: column;
    }
  }

  /* Contact Us Section */

  .contact-header-image {
  width: 100%;
  height: auto;
  display: block;
}

.contactsection {
  display: flex;
  flex-direction: row;
  gap: 20px;
  padding: 20px;
  background-color: #f5f5f5;
  flex-wrap: wrap;
}

.contact-left {
  flex: 1.2;
  min-width: 300px;
}

.contact-video {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: cover;
  max-height: 400px;
}

.contact-right {
  flex: 1;
  min-width: 300px;
  background-color: #ffffff;
  padding: 20px;
  border-radius: 10px;
  height: 400px; /* Matches video max-height */
  display: flex;
  flex-direction: column;
}

.contact-right h3 {
  margin: 0 0 15px;
  font-size: 16px;
  color: #2d3436;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-grow: 1;
}

.contact-form input,
.contact-form textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 14px;
  width: 100%;
  box-sizing: border-box;
}

.contact-form textarea {
  resize: vertical;
  min-height: 100px;
  flex-grow: 1; /* Ensures textarea expands within form height */
}

.contact-form button {
  padding: 10px;
  background-color:#5BC2F2;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
}

.contact-form button:hover {
  background-color:#3192D3;
}

.nimtt-address-section {
  padding: 20px;
  background-color: #f5f5f5;
  text-align: center;
}

.nimtt-contact-info h3 {
  margin: 10px 0 5px;
  font-size: 16px;
  color: #2d3436;
}

.nimtt-contact-info p {
  margin: 0 0 15px;
  font-size: 14px;
  color: #444;
  line-height: 1.5;
}

.contact-icons-container {
  margin-top: 20px;
}

.contact-social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.contact-social-icon {
  font-size: 20px;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-social-icon:hover {
  transform: translateY(-4px);
  ;
}

/* Mobile Responsive Styles (max-width: 768px) */
@media (max-width: 768px) {
  .contactsection {
    flex-direction: column;
    padding: 15px;
    gap: 15px;
  }

  .contact-left,
  .contact-right {
    min-width: 100%;
  }

  .contact-video {
    max-height: 300px;
    height: auto;
  }

  .contact-right {
    height: auto;
    padding: 15px;
  }

  .contact-right h3 {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 12px;
    padding: 8px;
  }

  .contact-form button {
    font-size: 12px;
    padding: 8px;
  }

  .address-section {
    padding: 15px;
  }

  .contact-info h3 {
    font-size: 14px;
    margin: 8px 0 4px;
  }

  .contact-info p {
    font-size: 12px;
    margin-bottom: 12px;
  }

  .contact-social-icons {
    gap: 12px;
  }

  .contact-social-icon {
    font-size: 18px;
  }

  .contact-social-icon:hover {
    transform: translateY(-4px);
  }
}





