body {
  overflow-x: hidden;
}



.yc-logo-flex {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.yc-logo-img {
  height: 55px;
  width: auto;
  object-fit: contain;
}

.yc-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}




/* NAVBAR */
.yc-navbar {
  background: #ffffff;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  padding: 12px 0;
}

.yc-nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.yc-logo a {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.yc-logo-main {
  font-size: 22px;
  font-weight: bold;
  color: #0a2c5a;
}

.yc-logo-sub {
  font-size: 14px;
  font-weight: bold;
  color: #555;
  letter-spacing: 1px;
}

.yc-nav-links {
  display: flex;
  gap: 18px;
}

.yc-nav-links a {
  text-decoration: none;
  font-size: 15px;
  font-weight: bold;
  color: #0a2c5a;
  padding: 8px 12px;
  border-radius: 8px;
  transition: 0.3s ease;
}

.yc-nav-links a:hover {
  background: #f5f7fb;
}

.yc-nav-links a.active {
  background: #0a2c5a;
  color: white;
}

.yc-btn-small {
  padding: 10px 18px;
  font-size: 14px;
}

.yc-menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: #0a2c5a;
}

/* NAVBAR RESPONSIVE */
@media (max-width: 900px) {
  .yc-nav-links {
    display: none;
    flex-direction: column;
    background: #ffffff;
    position: absolute;
    top: 70px;
    right: 20px;
    width: 220px;
    padding: 18px;
    border-radius: 14px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.12);
  }

  .yc-nav-links.show {
    display: flex;
  }

  .yc-menu-toggle {
    display: block;
  }

  .yc-nav-btn {
    display: none;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.7;
  background: #ffffff;
  color: #333;
}

.yc-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.yc-section {
  padding: 70px 0;
}

.yc-heading {
  text-align: center;
  margin-bottom: 40px;
}

.yc-heading h2 {
  font-size: 34px;
  color: #0a2c5a;
  margin-bottom: 15px;
}

.yc-heading p {
  max-width: 900px;
  margin: auto;
  font-size: 16px;
  color: #555;
}

/* HERO */
.yc-hero {
  height: 80vh;
  background: url("https://images.unsplash.com/photo-1523240795612-9a054b0db644?auto=format&fit=crop&w=1400&q=80");
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
}

.yc-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 44, 90, 0.75);
}

.yc-hero-content {
  position: relative;
  text-align: center;
  color: white;
  z-index: 2;
  width: 100%;
}

.yc-hero-content h1 {
  font-size: 48px;
  margin-bottom: 15px;
}

.yc-hero-content p {
  font-size: 18px;
  margin-bottom: 25px;
  color: #dbe7ff;
}

.yc-hero-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

/* BUTTONS */
.yc-btn {
  display: inline-block;
  padding: 12px 25px;
  background: #0a2c5a;
  color: white;
  text-decoration: none;
  border-radius: 10px;
  font-weight: bold;
  transition: 0.3s ease;
}

.yc-btn:hover {
  background: #05306d;
  transform: translateY(-3px);
}

.yc-btn-outline {
  background: transparent;
  border: 2px solid white;
}

.yc-btn-outline:hover {
  background: white;
  color: #0a2c5a;
}

/* ABOUT PREVIEW 
.yc-about-preview {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 40px;
}*/

/*NEW CODE*/
/* ABOUT PREVIEW SECTION */
.yc-about-preview {
  background: #f5f7fb;
  padding: 80px 0;
  width: 100%;
  overflow-x: hidden;
}

.yc-about-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 25px;
  align-items: center;
}

.yc-about-text {
  width: 100%;
}

.yc-about-boxes {
  display: grid;
  gap: 15px;
  width: 100%;
}

.yc-small-box {
  background: #ffffff;
  padding: 18px;
  border-radius: 16px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
  width: 100%;
}
 /*NEW CODE END*/



.yc-preview-box {
  background: #f5f7fb;
  padding: 25px;
  border-radius: 16px;
  transition: 0.3s ease;
}

.yc-preview-box:hover {
  transform: translateY(-5px);
}

.yc-preview-box h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #0a2c5a;
}

.yc-preview-box p {
  color: #555;
}

.yc-center-btn {
  text-align: center;
  margin-top: 30px;
}

/* COUNTERS */
.yc-counter-section {
  background: #f5f7fb;
}

.yc-counters {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-top: 30px;
}

.yc-counter-box {
  background: white;
  padding: 25px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.yc-counter-box:hover {
  transform: translateY(-5px);
}

.yc-counter-box h3 {
  font-size: 34px;
  color: #0a2c5a;
}

.yc-counter-box p {
  font-size: 15px;
  color: #666;
}

/* COURSE GRID */
.yc-course-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.yc-course-card {
  background: #ffffff;
  padding: 22px;
  border-radius: 16px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.yc-course-card:hover {
  transform: translateY(-6px);
}

.yc-course-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #0a2c5a;
}

.yc-course-card p {
  color: #555;
}

/* WHY CHOOSE US */
.yc-why {
  padding: 70px 0;
  background: #ffffff;
}

.yc-why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.yc-why-card {
  background: #f5f7fb;
  padding: 22px;
  border-radius: 16px;
  transition: 0.3s ease;
}

.yc-why-card:hover {
  transform: translateY(-5px);
}

.yc-why-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #0a2c5a;
}

.yc-why-card p {
  color: #555;
}

/* PROGRAMS */
.yc-programs {
  padding: 70px 0;
  background: #f5f7fb;
}

.yc-program-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.yc-program-card {
  background: white;
  padding: 22px;
  border-radius: 16px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.yc-program-card:hover {
  transform: translateY(-6px);
}

.yc-program-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #0a2c5a;
}

.yc-program-card p {
  color: #555;
}

/* TESTIMONIALS */
.yc-testimonials {
  background: #ffffff;
}

.yc-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.yc-testimonial-card {
  background: #f5f7fb;
  padding: 22px;
  border-radius: 16px;
  transition: 0.3s ease;
}

.yc-testimonial-card:hover {
  transform: translateY(-6px);
}

.yc-testimonial-card p {
  color: #444;
  margin-bottom: 15px;
}

.yc-testimonial-card h4 {
  color: #0a2c5a;
  font-size: 15px;
}

/* CTA */
.yc-cta {
  padding: 80px 0;
  background: #0a2c5a;
  color: white;
  text-align: center;
}

.yc-cta-content h2 {
  font-size: 34px;
  margin-bottom: 12px;
}

.yc-cta-content p {
  font-size: 16px;
  margin-bottom: 25px;
  color: #dbe7ff;
}

.yc-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

/* FOOTER */
.yc-footer {
  background: #051a33;
  color: white;
  text-align: center;
  padding: 18px 0;
  font-size: 14px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .yc-hero-content h1 {
    font-size: 34px;
  }

  .yc-hero-content p {
    font-size: 16px;
  }
}

/* PAGE HERO */
.yc-page-hero {
  padding: 80px 0;
  background: linear-gradient(rgba(10,44,90,0.85), rgba(10,44,90,0.85)),
    url("https://images.unsplash.com/photo-1522202176988-66273c2fd55f?auto=format&fit=crop&w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
}

.yc-page-hero h1 {
  font-size: 45px;
  margin-bottom: 12px;
}

.yc-page-hero p {
  font-size: 17px;
  max-width: 850px;
  margin: auto;
  color: #dbe7ff;
}

/* COURSE CATEGORY GRID */
.yc-course-category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.yc-course-category-card {
  background: #ffffff;
  padding: 22px;
  border-radius: 16px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.yc-course-category-card:hover {
  transform: translateY(-6px);
}

.yc-course-category-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: #0a2c5a;
}

.yc-course-category-card ul {
  padding-left: 18px;
  margin: 0;
}

.yc-course-category-card ul li {
  margin-bottom: 8px;
  color: #444;
  font-size: 15px;
}

/* DIPLOMA GRID */
.yc-diploma-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.yc-diploma-card {
  background: #ffffff;
  padding: 22px;
  border-radius: 16px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.yc-diploma-card:hover {
  transform: translateY(-6px);
}

.yc-diploma-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #0a2c5a;
}

.yc-diploma-card p {
  color: #555;
}

/* PROJECT TRAINING BOX */
.yc-project-box {
  background: #f5f7fb;
  padding: 30px;
  border-radius: 18px;
  margin-top: 30px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.06);
}

.yc-project-box h3 {
  color: #0a2c5a;
  margin-bottom: 15px;
}

.yc-project-box ul {
  padding-left: 18px;
}

.yc-project-box ul li {
  margin-bottom: 10px;
  font-size: 15px;
  color: #444;
}
.yc-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.yc-section {
  padding: 70px 0;
}

.yc-btn {
  display: inline-block;
  background: #0a2c5a;
  color: white;
  padding: 12px 22px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s ease;
  border: none;
  cursor: pointer;
}

.yc-btn:hover {
  background: #08306b;
}

.yc-footer {
  background: #0a2c5a;
  padding: 20px 0;
  text-align: center;
  color: white;
  font-size: 14px;
}
/* GALLERY GRID */
.yc-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin-top: 40px;
}

.yc-gallery-item {
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.10);
  cursor: pointer;
  transition: 0.3s ease;
}

.yc-gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: 0.4s ease;
}

.yc-gallery-item:hover img {
  transform: scale(1.08);
}

/* VIDEO GRID */
.yc-gall-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin-top: 40px;
}

.yc-gall-item {
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0g 6px 16px rgba(0,0,0,0.10);
  cursor: pointer;
  transition: 0.3s ease;
}

.yc-gall-item video {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: 0.4s ease;
}




/* LIGHTBOX */
.yc-lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.85);
  justify-content: center;
  align-items: center;
  z-index: 2000;
}

.yc-lightbox img {
  max-width: 85%;
  max-height: 80%;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(255,255,255,0.2);
}

.yc-close {
  position: absolute;
  top: 25px;
  right: 35px;
  font-size: 45px;
  color: white;
  cursor: pointer;
}

/* CONTACT PAGE */
.yc-contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.yc-contact-info,
.yc-contact-form {
  background: #ffffff;
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}

.yc-contact-info h3,
.yc-contact-form h3 {
  color: #0a2c5a;
  margin-bottom: 18px;
}

.yc-contact-info p {
  font-size: 15px;
  margin-bottom: 10px;
  color: #444;
}

.yc-contact-highlight {
  margin-top: 20px;
  padding: 18px;
  border-radius: 14px;
  background: #f5f7fb;
}

.yc-contact-highlight h4 {
  margin-bottom: 10px;
  color: #0a2c5a;
}

.yc-form-group {
  margin-bottom: 15px;
}

.yc-form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: bold;
  color: #333;
  font-size: 14px;
}

.yc-form-group input,
.yc-form-group select,
.yc-form-group textarea {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #ddd;
  font-size: 14px;
  outline: none;
}

.yc-form-group input:focus,
.yc-form-group select:focus,
.yc-form-group textarea:focus {
  border-color: #0a2c5a;
}

.yc-map iframe {
  width: 100%;
  border: none;
  margin-top: 30px;
}
/* HERO SECTION */
.yc-hero {
  padding: 110px 0;
  background: linear-gradient(rgba(10,44,90,0.85), rgba(10,44,90,0.85)),
    url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
  text-align: center;
  color: white;
}

.yc-hero-content h1 {
  font-size: 50px;
  margin-bottom: 15px;
}

.yc-hero-content p {
  max-width: 900px;
  margin: auto;
  font-size: 17px;
  line-height: 1.8;
  color: #dbe7ff;
}

.yc-hero-buttons {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.yc-btn-outline {
  background: transparent;
  border: 2px solid white;
  color: white;
}

.yc-btn-outline:hover {
  background: white;
  color: #0a2c5a;
}

/* FEATURE GRID */
.yc-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.yc-feature-card {
  background: #ffffff;
  padding: 22px;
  border-radius: 18px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
  transition: 0.3s ease;
  text-align: center;
}

.yc-feature-card:hover {
  transform: translateY(-6px);
}

.yc-feature-card h3 {
  color: #0a2c5a;
  margin-bottom: 10px;
}

/* ABOUT PREVIEW */
.yc-about-preview {
  background: #f5f7fb;
  padding: 80px 0;
}

.yc-about-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 25px;
  align-items: center;
}

.yc-about-text h2 {
  color: #0a2c5a;
  font-size: 34px;
  margin-bottom: 15px;
}

.yc-about-text p {
  color: #444;
  line-height: 1.8;
  margin-bottom: 15px;
}

.yc-about-boxes {
  display: grid;
  gap: 15px;
}

.yc-small-box {
  background: #ffffff;
  padding: 18px;
  border-radius: 16px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}

.yc-small-box h3 {
  color: #0a2c5a;
  margin-bottom: 8px;
}

/* COUNTERS SECTION */
.yc-counters-section {
  background: #ffffff;
  padding: 60px 0;
}

/* COURSE GRID */
.yc-course-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 35px;
}

.yc-course-card {
  background: #ffffff;
  padding: 22px;
  border-radius: 18px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.yc-course-card:hover {
  transform: translateY(-6px);
}

.yc-course-card h3 {
  color: #0a2c5a;
  margin-bottom: 10px;
}

/* WHY SECTION */
.yc-why {
  padding: 80px 0;
  background: #f5f7fb;
}

.yc-why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 35px;
}

.yc-why-card {
  background: white;
  padding: 24px;
  border-radius: 18px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.yc-why-card:hover {
  transform: translateY(-6px);
}

.yc-why-card h3 {
  color: #0a2c5a;
  margin-bottom: 10px;
}

/* TESTIMONIALS */
.yc-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 35px;
}

.yc-testimonial-card {
  background: #ffffff;
  padding: 25px;
  border-radius: 18px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.yc-testimonial-card:hover {
  transform: translateY(-6px);
}

.yc-testimonial-card p {
  color: #444;
  line-height: 1.8;
  margin-bottom: 15px;
}

.yc-testimonial-card h4 {
  color: #0a2c5a;
  margin: 0;
}

/* CTA SECTION */
.yc-cta {
  padding: 80px 0;
  background: linear-gradient(rgba(10,44,90,0.95), rgba(10,44,90,0.95)),
    url("https://images.unsplash.com/photo-1516321318423-f06f85e504b3?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
  text-align: center;
  color: white;
}

.yc-cta-content h2 {
  font-size: 38px;
  margin-bottom: 12px;
}

.yc-cta-content p {
  max-width: 850px;
  margin: auto;
  line-height: 1.8;
  color: #dbe7ff;
}

.yc-cta-buttons {
  margin-top: 25px;
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}
/* PREMIUM FOOTER */
.yc-footer-main {
  background: #081f3f;
  color: #ffffff;
  padding-top: 55px;
  font-family: Arial, sans-serif;
}

.yc-footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 30px;
  padding-bottom: 40px;
}

.yc-footer-box h3 {
  font-size: 18px;
  margin-bottom: 14px;
  color: #ffffff;
}

.yc-footer-box p {
  font-size: 14px;
  line-height: 1.8;
  color: #dbe7ff;
}

.yc-footer-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.yc-footer-box ul li {
  margin-bottom: 10px;
}

.yc-footer-box ul li a {
  text-decoration: none;
  color: #dbe7ff;
  font-size: 14px;
  transition: 0.3s ease;
}

.yc-footer-box ul li a:hover {
  color: #ffffff;
  padding-left: 6px;
}

.yc-footer-social {
  margin-top: 15px;
  display: flex;
  gap: 12px;
}

.yc-footer-social a {
  text-decoration: none;
  background: rgba(255, 255, 255, 0.15);
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 18px;
  transition: 0.3s ease;
  display: inline-block;
}

.yc-footer-social a:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-4px);
}

/* FOOTER BOTTOM */
.yc-footer-bottom {
  background: #06162f;
  padding: 15px 0;
  text-align: center;
  font-size: 14px;
  color: #dbe7ff;
}
/* WHATSAPP FLOATING BUTTON */
.yc-whatsapp-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #25d366;
  color: white;
  font-size: 26px;
  padding: 14px 16px;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
  z-index: 9999;
  transition: 0.3s ease;
}

.yc-whatsapp-btn:hover {
  transform: scale(1.1);
}

/* BACK TO TOP BUTTON */
#ycTopBtn {
  display: none;
  position: fixed;
  bottom: 90px;
  right: 25px;
  z-index: 9999;
  font-size: 20px;
  border: none;
  outline: none;
  background: #0a2c5a;
  color: white;
  cursor: pointer;
  padding: 12px 14px;
  border-radius: 50%;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
  transition: 0.3s ease;
}

#ycTopBtn:hover {
  background: #08306b;
  transform: scale(1.1);
}
