/* Navbar container */
.navbar {
  position: fixed;          /* ✅ navbar top la fix */
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1050;            /* saglya content cha var rahil */
  padding: 0.5rem 1rem;
  background-color: #fff;   /* nav bar bg white clear disnyasathi */
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* Navbar logos */
.navbar-logo {
  height: 60px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  display: block;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  -ms-interpolation-mode: nearest-neighbor;
  backface-visibility: hidden;
}

/* Desktop view adjustments */
@media (min-width: 992px) {
  .navbar-logo {
    height: 60px;
    width: auto;
    max-width: 200px;
  }
}

/* Mobile logos container */
.mobile-logos {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 5px 0;
}

/* Mobile logos images */
.mobile-logos img {
  height: 50px;
  width: auto;
  max-width: 48%;
  object-fit: contain;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  -ms-interpolation-mode: nearest-neighbor;
  backface-visibility: hidden;
}

/* Small mobile screens */
@media (max-width: 480px) {
  .mobile-logos img {
    max-width: 48%;
    height: 45px;
  }
}

/* All other images */
img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  -ms-interpolation-mode: nearest-neighbor;
  backface-visibility: hidden;
}

/* Hero banner */
.hero-perfect-banner img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* Buttons in navbar mobile adjustment */
.navbar .btn {
  margin: 2px 0;
  font-size: 0.85rem;
}

/* Ensure collapse menu content is mobile friendly */
.navbar-collapse {
  text-align: center;
}

/* ✅ Navbar height adjust for content */
body {
  padding-top: 70px; /* navbar height + spacing */
}















/* Career Section Full Width */
.full-width-career-section {
  width: 100%;
  padding: 60px 20px;
  background-color: #f8f9fa;
  box-sizing: border-box;
}

/* Container */
.career-content-box {
  max-width: 1100px;
  margin: 0 auto;
  font-family: Arial, Helvetica, sans-serif; /* normal font */
}

/* Title */
.career-title {
  font-size: 2rem;
  font-weight: 400; /* normal weight */
  line-height: 1.3;
  margin-bottom: 25px;
  text-align: center;
  word-wrap: break-word;
}

/* Paragraph Text - even thinner */
.career-text {
  font-size: 1rem;
  font-weight: 200; /* very thin / light */
  line-height: 1.8;
  color: #212529;
  text-align: justify;
  word-wrap: break-word;
}

/* Tablet responsiveness */
@media (max-width: 992px) {
  .career-title {
    font-size: 1.7rem;
  }
  .career-text {
    font-size: 1rem;
    line-height: 1.7;
  }
}

/* Mobile responsiveness */
@media (max-width: 480px) {
  .career-title {
    font-size: 1.5rem;
  }
  .career-text {
    font-size: 0.95rem;
    line-height: 1.6;
  }
}





/* Section Background & Padding */
.key-features-section {
  width: 100%;
  background-color: #f8f9fa;
  padding: 80px 20px;
  box-sizing: border-box;
}

/* Section Title */
.section-title {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 50px;
  word-wrap: break-word;
}

/* Feature Card */
.feature-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.12);
}

/* Feature Icon - Updated Bigger Size */
.feature-icon {
  font-size: 3rem; /* bigger */
  width: 100px;    
  height: 100px;   
  background-color: #e9ecef;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

/* Feature Heading */
.feature-heading {
  font-size: 1.3rem;
  font-weight: 500;
  margin-top: 15px;
}

/* Feature Text */
.feature-text {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
  color: #495057;
  margin-top: 10px;
  word-wrap: break-word;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .section-title {
    font-size: 1.8rem;
  }
  .feature-icon {
    font-size: 4.5rem;
    width: 110px;
    height: 110px;
  }
  .feature-heading {
    font-size: 1.2rem;
  }
  .feature-text {
    font-size: 0.95rem;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 1.6rem;
  }
  .feature-icon {
    font-size: 4rem;
    width: 100px;
    height: 100px;
  }
  .feature-heading {
    font-size: 1.1rem;
  }
  .feature-text {
    font-size: 0.9rem;
  }
  .feature-card {
    padding: 20px;
  }
}





/* Section Background & Padding */
.courses-section {
  width: 100%;
  background-color: #ffffff;
  padding: 80px 20px;
  box-sizing: border-box;
}

/* Section Title */
.section-title {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 50px;
}

/* Course Card */
.course-card {
  background: #f8f9fa;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.course-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* Course Icon */
.course-icon {
  font-size: 3.5rem;
  width: 90px;
  height: 90px;
  background-color: #e9ecef;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

/* Course Title */
.course-title {
  font-size: 1.2rem;
  font-weight: 500;
  margin-top: 15px;
}

/* Course Description */
.course-desc {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.6;
  margin-top: 5px;
  color: #495057;
}

/* Buttons */
.courses-section .btn {
  font-size: 1rem;
  padding: 10px 20px;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .section-title {
    font-size: 1.8rem;
  }
  .course-icon {
    font-size: 3rem;
    width: 80px;
    height: 80px;
  }
  .course-title {
    font-size: 1.1rem;
  }
  .course-desc {
    font-size: 0.95rem;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 1.6rem;
    margin-bottom: 30px;
  }
  .course-icon {
    font-size: 2.5rem;
    width: 70px;
    height: 70px;
  }
  .course-title {
    font-size: 1rem;
  }
  .course-desc {
    font-size: 0.9rem;
  }
  .course-card {
    padding: 20px;
  }
  .courses-section .btn {
    width: 100%;
  }
}





/* Success Section Styles */
#success {
  width: 100%;
}

.testimonial-img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border: 3px solid #0d6efd;
}

.testimonial-text {
  font-size: 0.95rem; /* barik font */
  line-height: 1.6;
  color: #495057;
}

.testimonial-author {
  font-size: 0.85rem; /* barik */
}

.testimonial-stats {
  font-size: 0.9rem;
  line-height: 1.7;
  color: #495057;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .testimonial-img {
    width: 100px;
    height: 100px;
  }
  .testimonial-text {
    font-size: 0.9rem;
  }
  .testimonial-author {
    font-size: 0.8rem;
  }
  .testimonial-stats {
    font-size: 0.85rem;
  }
}

@media (max-width: 576px) {
  .testimonial-img {
    width: 90px;
    height: 90px;
  }
  .testimonial-text {
    font-size: 0.85rem;
  }
  .testimonial-author {
    font-size: 0.75rem;
  }
  .testimonial-stats {
    font-size: 0.8rem;
  }
}












/* General */
body, html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

/* Gallery Lightbox */
.lightbox {
  display: none;
  position: fixed;
  z-index: 1055;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.85);
  justify-content: center;
  align-items: center;
}
.lightbox img {
  max-width: 95%;
  max-height: 85%;
  border-radius: 10px;
}
#lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
  z-index: 1060;
}

/* Floating Buttons */
.floating-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 1100;
}
.floating-buttons a img {
  width: 50px;
  height: 50px;
}

/* Gallery */
.gallery-img img {
  transition: transform 0.3s ease;
}
.gallery-img img:hover {
  transform: scale(1.05);
  cursor: pointer;
}

/* Enrollment Steps */
.card-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Step 3 Disabled / Normal Blur */
.step-disabled {
  filter: blur(2px);  /* Normal blur */
  pointer-events: none; /* Fully unclickable */
  user-select: none;    /* Cannot select text */
}

/* Responsive */
@media(max-width: 768px){
  .floating-buttons a img {
    width: 40px;
    height: 40px;
  }
  .card-title {
    font-size: 1.1rem;
  }
  .card-text {
    font-size: 0.95rem;
  }
  .gallery-img img {
    height: auto;
    object-fit: cover;
  }
}
@media(max-width: 576px){
  .card-title {
    font-size: 1rem;
  }
  .card-text {
    font-size: 0.9rem;
  }
}
/* Floating Buttons */
.floating-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 1100;
}

.floating-buttons a img {
  width: 50px;
  height: 50px;
  animation: blink 1.2s infinite; /* Add blinking effect */
}

/* Blink Animation */
@keyframes blink {
  0%, 50%, 100% { opacity: 1; }
  25%, 75% { opacity: 0.3; }
}

/* Responsive */
@media(max-width: 768px){
  .floating-buttons a img {
    width: 40px;
    height: 40px;
  }
}








/* Footer Styling */
.footer {
  font-family: 'Arial', sans-serif;
  background-color: #111;
}

.footer h5 {
  font-size: 1.2rem;
  letter-spacing: 0.5px;
}

.footer p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #ddd;
}

.footer-link {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s, transform 0.3s;
}

.footer-link:hover {
  color: #ff4d4d;
  transform: scale(1.05);
}

/* Footer Logo */
.footer-logo {
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer-img {
  max-width: 200px; /* Logo size control */
  height: auto;
  object-fit: contain;
}

/* Follow Us Section */
.follow-us {
  text-align: center;
}

/* Social Icons */
.social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
}
.social-icons img {
  width: 28px;   /* default size desktop */
  height: 28px;
  transition: transform 0.3s, filter 0.3s;
}
.social-icons img:hover {
  transform: scale(1.2);
  filter: brightness(1.3);
  cursor: pointer;
}

/* Responsive */
@media(max-width: 768px) {
  .footer h5 {
    font-size: 1.05rem;
  }
  .footer p {
    font-size: 0.9rem;
  }
  .social-icons img {
    width: 24px;  /* tablet */
    height: 24px;
  }
}

@media(max-width: 576px) {
  .footer h5 {
    font-size: 1rem;
  }
  .footer p {
    font-size: 0.85rem;
  }
  .social-icons img {
    width: 22px;  /* mobile smallest */
    height: 22px;
  }
}
/* Logo Image */
.footer-img {
  max-width: 400px;   /* desktop साठी max size */
  height: auto;  
  object-fit: contain; /* blur टाळण्यासाठी */
}

/* Mobile Responsive */
@media (max-width: 576px) {
  .footer-logo {
    justify-content: center; /* Mobile वर center */
  }

  .footer-img {
    max-width: 90%;     /* Mobile वर screen ला fit */
    height: auto;
  }
}



  .navbar-logo {
    height: 45px; /* Adjust as needed */
    object-fit: contain;
  }




  





