@media (max-width: 1399px) {
  .header-top-section .container-fluid {
    display: block;
    padding: 20px 50px;
  }
 }

@media (max-width: 1199px) {
  .header-top-section .container-fluid {
    display: none;
  }
}

.logo img{
  max-width: 350px;
}

.logo {
    position: relative;
    z-index: 1;
}

.logo::before {
    content: "";
    position: absolute;
    left: -220px;
    top: 65px;
    transform: translateY(-50%);
    width: 600px;
    height: 152px;
    background: #fff;
    z-index: -1;
    border-radius: 10px 0px 0px 10px; /* Optional: more round on right */
    clip-path: polygon(0 0, 95% 0, 100% 100%, 0% 100%);
    /* This creates a slant on the right side */
}

.header-main .main-menu ul li a {
    
    color: var(--theme-3);
    
}

.header-main .header-right .search-toggler {
  color: var(--theme-3);
  border: 1px solid var(--theme-3);
  
}

.sticky {
    
    background-color: var(--theme);
}

.header-bg {
    background-color: var(--theme);
}

.contact-section::before {
     background-color: var(--theme);
    
}


.footer-widget-wrapper .single-footer-widget .footer-newsletter .social-icon a {
    
    color: var(--white);
    border: 1px solid var(--white);
   
}

.section-padding-22 {
    padding: 60px 60px;
}

.causes-section-2 .causes-button .theme-btn {
    background-color: var(--theme);
    color: var(--white);
}

.content h4{
  text-transform: lowercase;
}

.hero-1 {
  padding: 100px 0;
  min-height: 760px;
}

.hero-1::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.5) 100%);
  z-index: 999;
}

.faq-wrapper .faq-items .accordion .accordion-item .accordion-body p {
  color: #666;
  font-size: 16px;
  line-height: 32px;
  font-weight: 400;
  padding: 10px;
}

.testimonial-wrapper::before {
  height: 400px;
  background-color: var(--bg);
  border-radius: 20px;
  width: 84%;
  left: 18%;
  top: 23px;
  position: absolute;
  content: "";
}

.faq-wrapper .faq-items .accordion .accordion-button:not(.collapsed)::after {
  color: var(--white);
}

.breadcrumb-wrapper::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(0deg, rgb(13, 87, 160) 0%, rgba(13, 87, 160, 0.7) 100%);
}

.breadcrumb-wrapper .page-heading {
  padding: 100px 0 220px;
}

.mylogo{
  padding: 20px 120px;
  background-color: #eae7e0;
  text-align: center;
}

@media (max-width: 1399px) {
.mylogo{
  padding: 20px 30px;
}
}

.header-top-section :where(h4, h5){
  font-size: 16px;
}
  
.header-main .header-right .sidebar__toggle {
    color: #fff;
}

.header-main {
  padding: 0 0;
}

.header-main .main-menu ul li a {
  padding: 10px 20px;
  /* Double separator: 1px theme line + 1px darker line */
  background-image: linear-gradient(to right,
    var(--header) 0,
    var(--theme-3) 1px,
    rgba(0, 0, 0, 0.35) 2px,
    rgba(0, 0, 0, 0.35) 2px
  );
  background-repeat: no-repeat;
  background-size: 2px 60%;
  background-position: right center;
  background: linear-gradient(to bottom, var(--theme-1), var(--theme-1));
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  border-radius: 6px;
  transition: all 0.3s ease;
}

.header-main .main-menu ul li a:hover {
  background: linear-gradient(to bottom, var(--theme-2), var(--theme-1));
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
}

.header-main .main-menu ul li:last-child a {
  /*background-image: none;*/
}

.header-top-wrapper .icon-items {
    height: 70px;
}

.header-main .main-menu ul li {
  position: relative;
  list-style: none;
  display: inline-block;
  margin-inline-end: 0;
}

/* Override earlier lowercase rule for .content h4 to ensure capitalization */
.content h4 {
  text-transform: capitalize;
}

body {
   text-transform: none; 
}

h1, h2, h3, h4, h5, h6 {
  text-transform: capitalize !important;
}

p{
  text-align: justify;
}

.faq-wrapper .faq-items .accordion .accordion-button:not(.collapsed) {
  background-color: var(--theme-2);
  color: var(--theme-3);
  border-radius: 5px !important;
  font-weight: bold;
}

.header-top-section .email a{
  text-transform: lowercase !important;
}

.inner-contents :where(h1, h2, h3, h4, h5, h6, p){
  margin-bottom: 20px;
}

/* About Us */


.section-padding {
  padding: 80px 0;
}

.section-bg-1 {
  background-color: var(--bg);
}

 /* Identity Section Styles */
 .identity-section {
  padding: 80px 0;
}

.meaning-card {
  background: var(--white);
  border-radius: 10px;
  padding: 30px;
  box-shadow: var(--box-shadow);
  height: 100%;
  transition: transform 0.3s ease;
}

.meaning-card:hover {
  transform: translateY(-5px);
}

.meaning-icon {
  width: 70px;
  height: 70px;
  background: var(--theme);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.meaning-quote {
  background: var(--bg);
  border-left: 4px solid var(--theme-2);
  padding: 20px;
  font-style: italic;
  margin: 20px 0;
  border-radius: 0 8px 8px 0;
}

/* Logo Symbolism Styles */
.logo-symbolism {
  background: var(--bg);
  padding: 80px 0;
}

.symbolism-item {
  margin-bottom: 30px;
}

.symbolism-icon {
  color: var(--theme);
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.symbolism-title {
  font-weight: 600;
  color: var(--header);
  margin-bottom: 10px;
  font-size: 1.2rem;
}

/* Color Symbolism */
.color-symbolism {
  padding: 80px 0;
}

.color-item {
  text-align: center;
  margin-bottom: 30px;
}

.color-swatch {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 15px;
  box-shadow: var(--box-shadow);
}

.crimson { background-color: #ad1835; }
.royal-blue { background-color: #0d57a0; }
.silver { background-color: #C0C0C0; }
.gold { background-color: #DAA520; }

/* Typography Section */
.typography-section {
  padding: 80px 0;
  background: var(--bg);
}

.typography-sample {
  background: var(--white);
  padding: 30px;
  border-radius: 10px;
}

.font-sample {
  font-size: 2.5rem;
  color: var(--header);
  margin-bottom: 20px;
}

/* Accreditation Styles */
.accreditation-intro {
  padding: 80px 0 40px;
}

.accreditation-card {
  background: var(--white);
  border-radius: 10px;
  padding: 30px;
  height: 100%;
  transition: transform 0.3s ease;
  margin-bottom: 30px;
}

.accreditation-card:hover {
  transform: translateY(-5px);
}

.accreditation-logo {
  background: var(--bg);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: var(--box-shadow);
}

.accreditation-logo img {
  max-width: 100%;
  max-height: 100%;
}

.recognition-badge {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

.badge-icon {
  color: var(--theme);
  font-size: 1.2rem;
  margin-right: 10px;
  margin-top: 5px;
  flex-shrink: 0;
}

.programs-list {
  background: var(--bg);
  padding: 20px;
  border-radius: 8px;
  margin: 20px 0;
}

.program-item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.program-icon {
  color: var(--theme-2);
  margin-right: 10px;
}

.visit-link {
  display: inline-block;
  margin-top: 20px;
  color: var(--theme);
  font-weight: 600;
  text-decoration: none;
}

.visit-link:hover {
  color: var(--theme-2);
}

.visit-link i {
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.visit-link:hover i {
  transform: translateX(5px);
}

.global-commitment {
  background: var(--bg);
  padding: 80px 0;
}

.commitment-icon {
  font-size: 2.5rem;
  color: var(--theme);
  margin-bottom: 20px;
}


/* Why Choose Us Section */
.why-choose-section {
  padding: 80px 0;
  background: var(--white);
}

.why-choose-card {
  background: var(--white);
  border-radius: 10px;
  padding: 30px;
  height: 100%;
  transition: transform 0.3s ease;
  border-top: 4px solid var(--theme);
}

.why-choose-card:hover {
  transform: translateY(-5px);
}

.why-choose-icon {
  width: 70px;
  height: 70px;
  background: var(--theme);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.why-choose-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.why-choose-list li {
  margin-bottom: 12px;
  padding-left: 30px;
  position: relative;
}

.why-choose-list li:before {
  content: "•";
  color: var(--theme-2);
  font-size: 1.5rem;
  position: absolute;
  left: 0;
  top: -5px;
}

.highlight-badge {
  background: var(--bg);
  padding: 20px;
  border-radius: 8px;
  margin: 30px 0;
  border-left: 4px solid var(--theme-2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .why-choose-section {
      padding: 60px 0;
  }
  
  .why-choose-card {
      padding: 20px;
  }
}


/* Course Registration Section */
.registration-section {
  padding: 80px 0;
  background: var(--white);
}

.registration-card {
  background: var(--white);
  border-radius: 10px;
  padding: 30px;
  box-shadow: var(--box-shadow);
  height: 100%;
}

.registration-icon {
  width: 60px;
  height: 60px;
  background: var(--theme);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.whatsapp-support {
  background: var(--bg);
  border-radius: 10px;
  padding: 30px;
  margin: 30px 0;
  border-left: 4px solid #25D366;
}

.whatsapp-number {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  padding: 12px 15px;
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--box-shadow);
}

.whatsapp-icon {
  color: #25D366;
  font-size: 1.5rem;
  margin-right: 15px;
}

.form-label {
  font-weight: 600;
  color: var(--header);
  margin-bottom: 8px;
}

.form-control {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 15px;
  margin-bottom: 20px;
}

.form-control:focus {
  border-color: var(--theme);
  box-shadow: 0 0 0 0.2rem rgba(13, 87, 160, 0.25);
}

.btn-primary {
  background: var(--theme);
  border: none;
  padding: 12px 30px;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: var(--bg-2);
  transform: translateY(-2px);
}

.required-field:after {
  content: "*";
  color: var(--theme-2);
  margin-left: 4px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .registration-section {
      padding: 60px 0;
  }
  
  .registration-card {
      padding: 20px;
  }
  
  .whatsapp-support {
      padding: 20px;
  }
}


/* Student Life Section */
.student-life-section {
  padding: 80px 0;
  background: var(--white);
}

.student-life-intro {
  text-align: center;
  margin-bottom: 50px;
}

.life-feature-card {
  background: var(--white);
  border-radius: 10px;
  padding: 30px;
  height: 100%;
  transition: transform 0.3s ease;
  text-align: center;
}

.life-feature-card:hover {
  transform: translateY(-5px);
}

.life-feature-icon {
  width: 80px;
  height: 80px;
  background: var(--theme);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 20px;
}

.gallery-section {
  background: var(--bg);
  padding: 80px 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.gallery-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  color: var(--white);
  padding: 20px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-caption {
  transform: translateY(0);
}

.community-cta {
  background: linear-gradient(rgba(18, 47, 42, 0.9), rgba(18, 47, 42, 0.9)), url('https://images.unsplash.com/photo-1523580494863-6f3031224c94?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
  background-size: cover;
  background-position: center;
  padding: 80px 0;
  color: var(--white);
  text-align: center;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .student-life-section, .gallery-section, .community-cta {
      padding: 60px 0;
  }
  
  .gallery-grid {
      grid-template-columns: 1fr;
  }
  
  .life-feature-card {
      padding: 20px;
  }
}


/* Student Support Section */
.student-support-section {
  padding: 80px 0;
  background: var(--white);
}

.support-hero {
  text-align: center;
  margin-bottom: 50px;
}

.support-services {
  background: var(--bg);
  padding: 80px 0;
}

.service-card {
  background: var(--white);
  border-radius: 10px;
  padding: 30px;
  height: 100%;
  transition: transform 0.3s ease;
  border-left: 4px solid var(--theme);
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-icon {
  width: 70px;
  height: 70px;
  background: var(--theme);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.contact-methods {
  padding: 80px 0;
}

.contact-card {
  background: var(--white);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  height: 100%;
}

.contact-icon {
  font-size: 2.5rem;
  color: var(--theme);
  margin-bottom: 20px;
}

.whatsapp-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 15px 0;
  padding: 12px;
  background: var(--bg);
  border-radius: 8px;
}

.whatsapp-icon {
  color: #25D366;
  font-size: 1.5rem;
  margin-right: 15px;
}

.lms-section {
  background: var(--bg);
  padding: 80px 0;
}

.lms-feature {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.lms-icon {
  color: var(--theme);
  font-size: 1.2rem;
  margin-right: 15px;
  margin-top: 5px;
  flex-shrink: 0;
}

.lms-cta {
  text-align: center;
  margin-top: 40px;
}

.availability {
  background: var(--theme-3);
  padding: 15px;
  border-radius: 8px;
  margin-top: 20px;
  text-align: center;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .student-support-section, .support-services, .contact-methods, .lms-section {
      padding: 60px 0;
  }
  
  .service-card, .contact-card {
      padding: 20px;
  }
  
  .whatsapp-contact {
      flex-direction: column;
      text-align: center;
  }
  
  .whatsapp-icon {
      margin-right: 0;
      margin-bottom: 10px;
  }
}



/* ==============================
   Global Typography & Spacing Alignment
   (Keeps visual consistency across all pages)
   ============================== */

/* Breadcrumb hero heading */
.breadcrumb-wrapper .page-heading h1 {
  font-size: 40px;
  line-height: 1.2;
  margin-bottom: 10px;
  color: var(--white);
}

/* Breadcrumb items spacing */
.breadcrumb-wrapper .breadcrumb-items {
  gap: 10px;
}

/* Section title alignment */
.section-title .sub-title {
  display: inline-block;
  font-weight: 600;
  color: var(--theme-2);
  letter-spacing: 0.5px;
  margin-bottom: 10px;
  text-transform: none;
}

.section-title h2 {
  font-size: 32px;
  line-height: 1.3;
  margin-bottom: 20px;
}

/* Normalize meta lists across cards */
.event-list,
.course-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 0 0 12px 0;
}

.event-list li,
.course-meta li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
}

.event-list li i,
.course-meta li i {
  color: var(--theme);
}

/* Normalize card content spacing */
.event-inner-items .event-content p,
.course-card .course-content p {
  margin-bottom: 16px;
}

/* Normalize link button look */
.link-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

/* Responsive typography adjustments */
@media (max-width: 991px) {
  .breadcrumb-wrapper .page-heading h1 {
    font-size: 34px;
  }
  .section-title h2 {
    font-size: 28px;
  }
}

@media (max-width: 575px) {
  .breadcrumb-wrapper .page-heading h1 {
    font-size: 28px;
  }
  .section-title h2 {
    font-size: 24px;
  }
}


.footer-widget-wrapper .single-footer-widget .list-area li a:hover {
  color: var(--white);
}

.about-wrapper .about-item {
  margin-left: 20px;
}

.about-wrapper .about-content .text {
  max-width: 100%;
  margin-top: 20px;
  margin-bottom: 40px;
  text-align: justify;
}

.footer-section a{
  color: var(--white);
}

.sticky {
  z-index: 999;
}

.footer-widget-wrapper .single-footer-widget .list-area li:not(:last-child) {
  margin-bottom: 10px;
}
