* {
  font-family: "Poppins", sans-serif;
}

body {
  background-color: rgba(255, 255, 255, 0.72);
}

/* Make hamburger icon orange and slightly larger */
.navbar-toggler {
  border: none;
  outline: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='orange' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
  width: 30px;
  height: 30px;
}

.navbar-nav .nav-item {
  margin: 10px 8px; /* Default 16px hota hai, ise 8px ya aur kam kar do */
  padding: 0px 0px;
}

/* Remove default focus/outline */
.custom-toggler {
  border: none;
  background: transparent;
  padding: 0;
  outline: none;
  box-shadow: none !important;
}

/* Hide default Bootstrap icon */
.custom-toggler .navbar-toggler-icon {
  display: none;
}
/* Modern, Slim, Stylish Hamburger Icon */
.toggler-icon {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;                        /* slim gap between lines */
  height: 20px;
  width: 28px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.toggler-icon span {
      box-shadow: 0 4px 8px rgba(255, 124, 2, 0.044);
  height: 2px;                     /* slim line */
  width: 100%;
  background-color: orange;       /* maintain your brand */
  border-radius: 10px;            /* more rounded for style */
  transition: all 0.3s ease-in-out;
}

.navbar-custom {
  background-color: #fff;
  padding: 0 10px;
}

.nav-link {
  color: #000;
  font-weight: 500;
}
.nav-link:hover,
.nav-link.active {
  color: #ff9310 !important;
}

.btn-contact {
  background-color: #fe8b00;
  color: #fff;
  border-radius: 25px;
  padding: 6px 20px;
  font-weight: 500;
}

.btn-contact:hover {
  background-color: #fe8b00;
}

.icon-btn {
  background: none;
  border: none;
  font-size: 1.3rem;
  margin-left: 15px;
  color: #000;
}

.icon-btn:hover {
  color: #fe8b00;
}

.logo img {
  max-height: 100px;
  width: auto;
  display: block;
  object-fit: contain;
  transition: all 0.3s ease;
}

/* Mobile view ke liye chhota size */
@media (max-width: 576px) {
  .logo img {
    max-height: 70px;
  }
}

.navbar-nav .nav-item {
  margin: 10px 10px; /* Adjust spacing here */
}

/* Fix layout inside collapsed navbar on small screens */
@media (max-width: 991px) {
  .navbar-collapse {
    display: flex;
    flex-direction: column;
    align-items: left;
  }

  .navbar-collapse .d-flex.align-items-center {
    justify-content: space-between;
    margin-top: 15px;
    padding: 0 10px;
  }
}

/* Optional: Add spacing between icons if needed */
.icon-btn {
  background: none;
  border: none;
  align-items: right;
  text-align: right;
  font-size: 1.2rem;
  margin-left: 10px;
  color: #000;
}

.icon-btn:hover {
  color: #fe8b00;
}


@media (max-width: 576px) {
  /* Logo thoda chhota */
  .logo img {
    max-height: 70px;
  }

  /* Navbar collapse layout column me ho jaye */
  .navbar-collapse {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 15px;
  }

  /* Nav links full width + left aligned */
  .navbar-nav {
    width: 100%;
    flex-direction: column;
  }

  .navbar-nav .nav-item {
    margin: 5px 0;
    width: 100%;
  }

  .navbar-nav .nav-link {
    padding: 10px 15px;
    display: block;
    width: 100%;
  }

  /* Dropdown menu full width */
  .dropdown-menu {
    width: 100%;
  }

  .dropdown-menu .dropdown-item {
    padding: 10px 15px;
  }

  /* Contact button full width and center aligned */
  .navbar-collapse .d-flex.align-items-center {
    width: 100%;
    justify-content: center;
    margin-top: 10px;
  }

  .btn-contact {
    width: 100%;
    text-align: center;
    padding: 10px 20px;
    font-size: 16px;
  }

  /* Hamburger icon spacing fix */
  .custom-toggler {
    margin-left: auto;
  }

  .toggler-icon {
    width: 28px;
    height: 20px;
  }

  .toggler-icon span {
    height: 3px;
  }
}

.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 60px 10%;
  background-color: #f0f6ff;
}

.hero-text {
  flex: 1;
  max-width: 50%;
}

.hero-text h1 {
  font-size: 2.8rem;
  font-weight: 600;
  color: #121212;
  line-height: 1.3;
}

.hero-text h1 span {
  color: #f96c00;
}

.hero-text p {
  margin-top: 15px;
  font-size: 1rem;
  color: #555;
}

.hero-text .tagline {
  margin-top: 20px;
  font-weight: 500;
  color: #222;
}

.hero-img {
  flex: 1;
  text-align: right;
}

.hero-img img {
  max-width: 100%;
  height: auto;
}
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    padding: 40px 20px;
    text-align: center;
  }

  .hero-text {
    max-width: 100%;
    margin-bottom: 30px;
  }

  /* .hero-text h1 {
    font-size: 1.5rem;
  } */

  .hero-text p {
    font-size: 0.90rem;
  }

  .hero-img {
    text-align: center;
  }

  .hero-img img {
    max-width: 80%;
    height: auto;
  }

  .hero-text a {
    display: inline-block;
    margin: 10px 8px 0;
    font-size: 1.2rem;
  }
}
@media (max-width: 768px) {
  .hero-text h1 {
    font-size: 1.8rem;
    line-height: 1.4;
    word-break: break-word;
    max-width: 100%;
  }
}

/* For very small screens (e.g., 320px wide) */
@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 1.5rem;
  }
}
.features-section {
  font-family: "Poppins", sans-serif;
  padding: 60px 20px;
  background: #fff;
  text-align: center;
}

.features-section h2 {
  font-size: 2em;
  color: #000000;
  margin-bottom: 10px;
    font-weight: 600;
}

.features-section .subheading {
  color: #777;
  margin-bottom: 40px;
}
.features {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 30px;
}

.feature {
  text-align: center;
  width: 230px;
  padding: 20px;
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}

.feature:hover {
  transform: translateY(-5px);
}

/* Hide dropdown by default */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #ffffff;
  border-radius: 8px;
  padding: 10px 0;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  display: none;
  min-width: 200px;
  z-index: 999;
  transition: all 0.3s ease-in-out;
}

/* Show on hover */
.nav-item:hover .dropdown-menu {
  display: block;
}

/* Dropdown Links */
.dropdown-menu li a {
  display: block;
  padding: 10px 20px;
  color: #333;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* Hover Effect on Links */
.dropdown-menu li a:hover {
  background-color: #ff6600;
  color: #fff;
  border-radius: 5px;
}

.icon-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #f5f5f5;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 15px auto;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

/* Color Themes */
.icon-circle.orange {
  background: #ff6f00;
}
.icon-circle.purple {
  background: #6f42c1;
}
.icon-circle.green {
  background: #28a745;
}
.icon-circle.blue {
  background: #007bff;
}

.feature h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.feature p {
  font-size: 0.95rem;
  color: #444;
}

body {
  padding-top: 80px; /* navbar height ke hisaab se adjust kar */
}
.feature .icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.feature h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.feature p {
  font-size: 0.9rem;
  color: #555;
}
@media (max-width: 768px) {
  .features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    justify-items: center;
  }

  .feature {
    width: 100%;
    max-width: 160px;
    padding: 15px 10px;
  }

  .feature p {
    display: none; /* Hide paragraph */
  }

  .features-section h2 {
    font-size: 1.5rem;
    margin-bottom: 8px;
  }

  .features-section .subheading {
    font-size: 0.70rem;
    margin-bottom: 30px;
  }

  .feature h3 {
    font-size: 0.95rem;
    text-align: center;
  }

  .icon-circle {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
    margin: 0 auto 12px;
  }
}

@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css");
.testimonial-toppers {
  font-family: "Poppins", sans-serif;
  padding: 50px 20px;
  text-align: center;
  background-color: #fafafa;
}

.main-heading {
  font-size: 2.2rem;
  color: #000;
  font-weight: 600;
  margin-bottom: 40px;
}

.main-heading .highlight {
  color: #ff6f00;
}

.content-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  text-align: left;
}

.left-illustration {
  flex: 1 1 250px;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.left-illustration img {
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.banner-illustration {
  width: 100%;
  max-width: 400px;
  height: auto;
  margin: 0 auto;
  display: block;
}

.student-list {
  flex: 1 1 600px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.student-box {
  display: flex;
  gap: 15px;
  width: 330px;
  padding: 15px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.student-box img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #ddd;
}

.student-info h4 {
  margin: 0 0 5px;
  font-size: 1rem;
  font-weight: 600;
  color: #222;
}

.feedback {
  margin-top: 5px;
  font-size: 0.9rem;
  color: #444;
}

.stars {
  font-size: 1rem;
  color: #ffb400;
}

/* Responsive */
@media (max-width: 768px) {
  .main-heading {
    font-size: 1.5rem;
  }

  .student-box {
    width: 100%;
    max-width: 100%;
  }

  .left-illustration img {
    max-width: 280px;
  }
}


@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css");

.founder-section {
  font-family: "Poppins", sans-serif;
  padding: 60px 20px;
  background: transparent;
}

.founder-heading {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 30px;
  font-weight: 600;
  color: #000;
}

.founder-heading .highlight {
  color: #ff6f00;
    font-weight: 600;
}

.founder-container {
  display: flex;
    font-weight: 400;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  background-color: transparent;
  text-align: justify;

  gap: 40px;
}

.founder-right {
  flex: 1 1 55%;
}

.founder-right p {
  font-size: 1rem;
  color: #444;
  margin-bottom: 20px;
  line-height: 1.6;
}

.vision-points {
  list-style: none;
  padding-left: 0;
}

.vision-points li {
  margin-bottom: 12px;
  font-size: 1rem;
  color: #333;
}

.vision-points i {
  color: #ff6f00;
  margin-right: 10px;
}

.founder-left {
  text-align: center;
  flex: 1 1 35%;
}

.founder-left img {
  width: auto;
  height: 180px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid transparent;
  transition: all 0.3s ease-in-out;
}

/* Tablet and Up (768px+) */
@media (min-width: 768px) {
  .founder-left img {
    height: 220px;
  }
}

/* Large Screen (1024px+) */
@media (min-width: 1024px) {
  .founder-left img {
    height: 260px;
  }
}

.founder-label {
  margin-top: 10px;
  font-weight: 600;
  color: #444;
}

.vision-box {
  background: transparent;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.326);
  transition: all 0.3s ease-in-out;
}

.vision-box:hover {
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.12);
}
@media (max-width: 576px) {
  .founder-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 25px;
  }

  .founder-left {
    order: -1;
    width: 100%;
  }

  .founder-left img {
    margin-top: 20px;
    height: 200px;
  }

  .founder-label {
    font-size: 0.8rem;
  }

  .founder-right {
    width: 100%;
    text-align: left;
  }

  .vision-box {
    padding: 16px 12px;
    box-shadow: 0 3px 10px rgba(255, 163, 16, 0.559);
  }

  .founder-right p {
    font-size: 0.92rem;
    line-height: 1.5;
     /* text-align: center; */
  }

  .vision-points li {
    font-size: 0.75rem;
    margin-bottom: 8px;
  }

  .vision-points i {
   
    font-size: 0.85rem;
    margin-right: 8px;
  }

  .founder-heading {
    font-size: 1.6rem;
    margin-bottom: 20px;
  }
}

@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css");

.we-provide-section {
  padding: 60px 20px;
  font-family: "Poppins", sans-serif;
  background: #fff;
}

.provide-heading {
  font-size: 2.2rem;
  margin-bottom: 40px;
  text-align: left;
  font-weight: 600;
}

.gradient-text {
  background: linear-gradient(90deg, #ff6f00, #ff9800);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.provide-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
  justify-content: space-between;
}

.facilities-grid {
  flex: 1 1 55%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.facility-card {
  background: transparent;
  cursor: pointer;
  border: 1px solid #ffd6a0;
  padding: 18px 20px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1rem;
  font-weight: 500;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.facility-card i {
  font-size: 1.6rem;
  color: #ff6f00;
  min-width: 24px;
}

.facility-card:hover {
  transform: translateY(-5px);
  background: #fff2e0;
}

.provide-illustration {
  flex: 1 1 40%;
  text-align: center;
}

.provide-illustration img {
  width: 100%;
  max-width: 420px;
  height: auto;
}

.provide-heading {
  font-size: 2.2rem;
  color: #000;
  margin-bottom: 40px;
  font-family: "Poppins", sans-serif;
  text-align: center;
}

.highlight {
  color: #ff6f00;
}

@media (max-width: 768px) {
  .provide-container {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .facilities-grid {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .facility-card {
    font-size: 0.95rem;
    padding: 14px 16px;
    gap: 12px;
  }

  .facility-card i {
    font-size: 1.4rem;
  }

  .provide-illustration {
    order: 2;
    text-align: center;
    width: 100%;
  }

  .provide-illustration img {
    max-width: 90%;
    width: 70%;
  }

  .provide-heading {
   font-size: 1.6rem;
    margin-bottom: 8px;
    text-align: center;
    margin-bottom: 25px;
  }
}

@media (max-width: 480px) {
  .provide-heading {
  font-size: 1.5rem;
    margin-bottom: 28px;
  }

  .facility-card {
    font-size: 0.98rem;
    padding: 12px 14px;
  }
}

@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css");
.site-footer {
  background-color: #1a1a1a;
  color: #f4f4f4;
  padding: 50px 20px 20px;
  font-family: "Poppins", sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

.footer-column {
  flex: 1 1 250px;
  min-width: 200px;
}

.footer-logo {
  width: 140px;
  margin-bottom: 15px;
  cursor: pointer;
}

.footer-column h4 {
  color: #ff6f00;
  margin-bottom: 12px;
  font-size: 1.1rem;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column li {
  margin: 8px 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-column li i {
  color: #ff6f00;
  margin-right: 8px;
}

.footer-column a {
  color: #f4f4f4;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: #ff6f00;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #333;
  font-size: 0.9rem;
  color: #aaa;
  margin-top: 30px;
}
/* 🔽 Responsive adjustments */
@media (max-width: 768px) {
  .site-footer {
    padding: 30px 15px 10px; /* less padding for mobile */
  }

  .footer-container {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 20px; /* reduced gap */
  }

  .footer-column {
    flex: 1 1 100%;
    margin-bottom: 20px; /* reduced margin */
  }

  .footer-column h4 {
    font-size: 0.95rem;
    margin-bottom: 8px;
  }

  .footer-column li {
    font-size: 0.85rem;
    margin: 6px 0;
  }

  .footer-logo {
    width: 100px;
    margin-bottom: 10px;
  }

  .footer-bottom {
    font-size: 0.8rem;
    padding-top: 15px;
    margin-top: 20px;
  }
}


/* ----------------------------------ONLINE CSS -------------------------------------- */

.container {
  margin-top: 40px; /* Push below sticky navbar */
  text-align: center;
  padding: 10px 10px;
}

body.page-transition {
  opacity: 0;
  transition: opacity 0.4s ease-in;
}

body.page-loaded {
  opacity: 1;
}
.container h1 {
  font-size: 42px;
  font-weight: 700;
  color: #fff; /* Change to your theme if needed */
  text-shadow: 1px 1px 3px rgba(255, 136, 0, 0.765); /* for better contrast */
  /* margin-bottom: 20px; */
  text-align: center;

}

.container img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  /* top: ; */
  border-radius: 0px; /* Optional */
  box-shadow: 0 4px 12px rgba(255, 136, 0, 0.951); /* Optional */
}


.breadcrumb-item a {
  color: #555555;
  background: #ffffff; /* text-grey jaisa look */
  padding: 5px; 
  border-radius: 5px;
  text-decoration: none;
  font-size: 12px;
  
}
@keyframes pulse-shadow {
  0% {
    box-shadow: 0 0 15px rgba(255, 145, 77, 0.2);
  }
  50% {
    box-shadow: 0 0 25px rgba(255, 145, 77, 0.7);
  }
  100% {
    box-shadow: 0 0 15px rgba(255, 145, 77, 0.2);
  }
}
@media (max-width: 768px) {
  .container-fluid.page-header {
    padding: 10px 1px;
    background-position: center;
    background-size: cover;
  }

  .container h1 {
    font-size: 28px;
    padding: 10px 0;
  }

  .breadcrumb-item a,
  .breadcrumb-item.active a {
    font-size: 11px;
    padding: 4px 6px;
  }

  .breadcrumb {
    flex-wrap: wrap;
    gap: 4px;
    justify-content: center;
  }
}

.breadcrumb-item.active a {
  font-size: 12px;
  color: #ff914d; /* ya koi bhi highlight color */
 /* color: #ccc; */
  background: #ffffff; /* text-grey jaisa look */
  /* padding: 6px; */
}
.course-section {
  padding: 40px 20px;
  font-family: 'Segoe UI', sans-serif;
  text-align: center;
  background: #f9f9f9;
}

.course-section h2 {
  font-size: 28px;
  margin-bottom: 30px;
}

.course-section h2 span {
  color: gray;
  font-size: 18px;
}

.course-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.course-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(255, 106, 13, 0.403);
  padding: 20px;
  width: 100%;
  max-width: 300px;
  position: relative;
  text-align: left;
  transition: transform 0.2s ease;
}

.course-card:hover {
  transform: translateY(-5px);
}

.course-card img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 10px 0;
}

.course-card .class-range {
  color: #2563eb;
  font-weight: bold;
  margin-bottom: 6px;
  font-size: 16px;
}

.course-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.tags {
  margin-bottom: 10px;
}

.tags span {
  display: inline-block;
  background: #f2f2f2;
  padding: 6px 12px;
  margin: 4px 4px 4px 0;
  border-radius: 6px;
  font-size: 13.5px;
  white-space: nowrap;
}

.new-badge {
  background: #facc15;
  color: #000;
  padding: 2px 6px;
  margin-left: 6px;
  border-radius: 4px;
  font-weight: bold;
  font-size: 12px;
}

.course-card button {
  background: #f97316;
  color: white;
  border: none;
  padding: 10px 16px;
  font-size: 15px;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 12px;
  transition: background 0.3s ease;
}

.course-card button:hover {
  background: #ea580c;
}

/* ---------- Responsive Design ---------- */
@media (max-width: 768px) {
  .course-section h2 {
    font-size: 24px;
  }

  .course-cards {
    gap: 16px;
  }

  .course-card {
    max-width: 100%;
    width: 100%;
  }

  .tags span {
    font-size: 13px;
  }

  .course-card button {
    width: 100%;
    padding: 12px;
    font-size: 16px;
  }
}
