/* ✅ Import Inter Font */
@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@300;400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Titillium+Web:wght@200;300;400;600;700;900&display=swap');
*{
	margin: 0;
	padding: 0;
}
html{
	overflow-x: hidden !important;
}
:root {
    --primary: #872a03;
    --light: #fff;
    --dark: #000;
	--secondary: #ea6e28b3;
	--yellow: #5b49a9;
}
h1, h2, h3, h4, h5, h6{
	font-family: 'Merriweather', serif;
}
p{
	font-size: 16px !important;
	line-height: 1.8;
	text-align: justify;
}
body {
    font-family: 'Titillium Web', sans-serif;
    margin: 0;
    padding: 0;
	background: #f6f4ee;
	overflow-x: hidden !important;
}
.container{
	max-width: 1250px;
}
/* ================================
   Desktop Navigation
================================ */
.top-bar{
	background: var(--primary);
	color: #fff;
	padding: 5px 0;
}
.top-bar i{
	color: #fff;
	font-size: 16px;
}
.top-bar a{
	text-decoration: none;
	color: #fff;
}
.top-bar-inner{
	display: flex;
	gap: 20px;
}
.top-bar-icon {
    display: flex;
    gap: 12px;
    align-items: center;
}
.top-bar-icon p{
    margin: 0 !important;
}
.top-bar-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.site-header .main-header {
	 position: relative;
      left: 0;
      width: 100%;
      z-index: 10;
      background: #fff !important;
	padding: 20px 0;
}
.site-header.sticky .main-header {
    position: fixed !important;
    top: 0;
    background: #fff !important;
    padding: 12px 0;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15); 
    animation: slideDown 0.4s ease;
}
@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
.site-header .nav {
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 5px;
}
.site-header .nav > li {
  position: relative;
}
.logo-box {
    position: absolute;
    top: 0px;
    z-index: 20;
    background: #ffffff;
/*     padding: 25px 10px; */
    border-radius: 0 0 10px 10px;
    box-shadow: 0px 5px 20px rgba(0,0,0,0.3);
}
.logo-box img {
    width: 120px;
    height: auto;
}
.wpcf7-submit {
    background: var(--primary);
    padding: 10px 30px;
    color: #fff;
    text-decoration: none;
    border-radius: 20px 0;
    transition: all 0.3s ease;
	display: inline-block;
	border: none;
}
.wpcf7-submit:hover {
    border-radius: 0 20px;
}
.site-header .nav > li > a {
  text-decoration: none;
  padding: 5px 15px;
  font-weight: 600 !important;
  transition: all 0.3s ease;
  display: inline-block;
  color: #6f5c5a !important;
}
.site-header .nav > li > a:hover,
.site-header .nav > li.current-menu-item > a,
.site-header .nav > li.current_page_item > a {
    background: var(--secondary);
    padding: 5px 15px;
	color: #fff !important;
}
.site-header .nav li ul.sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 10px 0;
  list-style: none;
  margin: 0;
  display: none;
  z-index: 9999;
}
.site-header .nav li ul.sub-menu li a {
  padding: 8px 15px;
  color: #333;
  display: block;
  font-weight: 400;
}
.site-header .nav li ul.sub-menu li a:hover {
  background: #f8f9fa;
  color: #0d6efd;
}
.site-header .nav > li:hover > ul.sub-menu {
  display: block;
}
.site-header .nav li ul.sub-menu li {
  position: relative;
}
.site-header .nav li ul.sub-menu li ul.sub-menu {
  top: 0;
  left: 100%;
  margin-left: 1px;
}
@media (max-width: 991px) {
  .site-header .nav {
    display: none; 
  }
}
/* ================================
   Mobile Menu
================================ */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -300px;
  width: 280px;
  height: 100%;
  background: #fff;
  transition: right 0.3s ease;
  z-index: 1050;
}
.mobile-menu.open {
  right: 0;
}
.mobile-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  z-index: 1040;
}
.mobile-menu-overlay.active {
  display: block;
}
.mobile-menu-btn .btn-primary{
	margin-top: 2rem;
	display: inline-block;
	border: 1px solid #fff;
}
.mobile-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100%;
    background: var(--primary)!important;
    transition: right 0.3s ease;
    z-index: 1050;
}
.mobile-menu-header {
    background-color: #fff;
}
#menu-primary-1 li {
    padding: 10px;
    border-bottom: 1px solid #fff;
}
#menu-primary-1 li a {
    color: var(--white);
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
}
.top-bar-icon .social-icons a i {
    border: 1px solid #ffffff;
    border-radius: 50%;
    height: 30px;
    width: 30px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}
.top-bar-inner-box {
    display: flex;
    gap: 10px;
    align-items: center;
}
/* ================================
   Breadcrumb Section
=============================== */
.breadcrumb-section .container {
    display: flex;
    flex-direction: column;
    align-items: left;
    position: relative;
    top: 40%;
	z-index: 2;
}
section.breadcrumb-section {
    background: linear-gradient(rgb(213 213 213 / 60%), rgba(0, 0, 0, 0.6)), url(https://algopagedev.com/work/berater.com/wp-content/uploads/2026/04/photo-1523240795612-9a054b0db644-scaled.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 60vh;
	position: relative;
}
.breadcrumb-content {
    text-align: center;
}
.breadcrumb-item.active {
    color: #fff;
}
ol.breadcrumb {
    font-size: 18px;
    font-weight: 700;
	justify-content: center;
}
.breadcrumb-item+.breadcrumb-item::before{
	color: #fff;
}
.breadcrumb-title h2 {
/*     color: var(--primary); */
	color: #fff;
	    font-size: 38px;
    font-weight: 400 !important;
}
li.breadcrumb-item a {
/*     color: var(--primary); */
	color: #fff;
    text-decoration: none;
}
/*===============================
      FOOTER SECTION CSS
================================= */
.progress-wrap {
  position: fixed;
  right: 30px;
  bottom: 30px;
  height: 50px;
  width: 50px;
  cursor: pointer;
  border-radius: 50%;
  background: #fff;
  box-shadow: inset 0 0 0 8px rgba(195,180,186,.49);
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 200ms linear;
  z-index: 99;
}
.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.progress-wrap::after {
  position: absolute;
  content: "\f102";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  line-height: 50px;
  text-align:center;
  font-size:16px;
  color: var(--primary);
  inset:0;
}
.progress-wrap svg path {
  fill: none;
}
.progress-wrap svg.progress-circle path {
  stroke: var(--primary);
  stroke-width: 4;
}
ul.ftricons figure img {
    width: 15px;
    filter: brightness(100);
}
.underline1 {
    height: 2px;
    width: 100px;
    background: var(--secondary);
    margin: auto;
    margin-top: 8px;
}
.underline2 {
    height: 4px;
    width: 30px;
    background: var(--yellow);
    margin: auto;
    margin-top: -3px;
}
.no-margin {
    margin-left: 0px;
}
footer {
    position: relative;
    background: url(https://algopagedev.com/work/berater.com/wp-content/uploads/2026/04/assortment-teacher-s-day-elements_23-2149044966.avif);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: #000;
    z-index: 1;
	padding-top: 30px;
}
footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgb(244 242 236); 
    z-index: -1;
}
footer > * {
    position: relative;
    z-index: 2;
}
footer .btn-primary {
    padding: 8px 20px;
    margin-top: 8px;
    letter-spacing: 1px;
    font-size: 14px;
    border: 1px solid var(--secondary);
}
.footertop-cnt ul.smoicons li a i {
    font-size: 16px;
}
.footer_top {
    background: #009f0726;
    border-radius: 0 0 15px 15px;
    padding: 0 15px;
}
.footertop-cnt {
    padding-left: 0;
    border-right: 1px solid #ffffff14;
}
.footertop-cnt p a {
    font-family: "Mulish", sans-serif;
    font-size: 15px;
    color: var(--white);
    font-weight: 400;
}
.footertop-cnt p {
    color: var(--white);
    font-weight: 600;
    font-size: 18px;
    padding-left: 62px;
    letter-spacing: 1px;
    font-family: "Syne", sans-serif;
}
.footer_top .row {
    margin: 0;
}
.footer_top .col-md-6 {
    padding: 0;
}
footer a.footer-logo {
    margin-bottom: 15px;   
}
footer a.footer-logo img {
    width: 155px;
    display: block;
}
.footer_menu {
    padding: 40px 0 0 0;
}
.footer-details li {
    display: flex;
    margin-bottom: 15px;
    position: relative;
    gap: 20px;
}
ul.footer-details li i {
    background: var(--secondary);
    padding: 10px;
    height: 35px;
    width: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}
ul{
	padding-left: 0rem !important;
	list-style-type: none;
}
ul.ftricons li a {
    border: 1px solid #ffffff36;
    border-radius: 50%;
    height: 30px;
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    font-size: 14px;
    margin-top: 8px;
}
footer ul li.menu-item a {
    display: inline-block;
}
footer ul li.menu-item:last-child a {
    margin: 0;
}
.menu,.footer-details {
    margin-top: 25px;
}
footer h3 {
    margin-bottom: 15px;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
footer p {
    margin-bottom: 6px;
    line-height: 27px;
}
footer .menu li {
    position: relative;
    padding-left: 0 !important;
    list-style-type: none;
}
footer a{
	color: var(--dark) !important;
}
footer .menu li{
	padding-left: 0 !important;
	color: var(--dark) !important;
	transition: transform 0.3s ease;
	line-height: 40px;
}
footer .menu li::after {
  content: "\f061"; 
  font-family: "Font Awesome 5 Free";
  font-weight: 900; 
  position: absolute;
  left: -25px;
  top: 50%;
  transform: translateY(-50%) translateX(-10px);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  color: var(--primary);
}
footer .menu li:hover::after {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}
footer .menu li:hover{
	color: var(--primary) !important;
	transform: translateX(20px);
}
footer .social-icons {
    display: flex;
    transition: 0.3s;
}
footer .social-icons a:hover{
	background: var(--primary);
}
footer .social-icons a {
    display: flex;
    text-decoration: none;
    color: var(--light);
    background-color: var(--secondary);
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
}
footer ul li, footer ul li a, footer p, footer p a {
    font-weight: 600;
    position: relative;
    text-decoration: none;
    color: #000;
}
footer a.viewmore {
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: underline;
    text-underline-offset: 4px;
    font-weight: 500;
    margin-top: 12px;
    display: inline-block;
    font-size: 14px;
}
.copyright {
    padding: 15px 0;
    border-top: 1px solid var(--secondary);
}
.copyright .row {
    align-items: center;
}
.copyright p {
    margin: 0 !important;
    color: var(--white);
    font-size: 15px;
    letter-spacing: 1px;
    font-weight: 300;
}
.copyright p a {
    color: var(--white);
    font-weight: 400;
    text-decoration: underline;
    text-underline-offset: 4px;
}
footer ul.socialicon li a {
    font-size: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #c98d830f;
    width: 40px;
    height: 40px;
    color: var(--secondary);
    transition: .5s;
    margin-right: 5px;
    backdrop-filter: blur(2px);
    border-radius: 50%;
}
#GoToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--primary);
    color: #fff;
    font-size: 20px;
    padding: 12px 20px;
    border-radius: 50%;
    z-index: 999;
    transition: all 0.3s ease-in-out;
}
#GoToTop i{
	color: #fff;
}
#GoToTop:hover {
  background: var(--primary);
  transform: scale(1.1);
}
#whatsappbtn {
    cursor: pointer;
    position: fixed;
    bottom: 4%;
    left: 20px;
    z-index: 99999999;
    padding: 0 9px;
    background: #4fcc5d;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    text-align: center;
    font-size: 32px;
    color: var(--white);
    z-index: 1;
}
#whatsappbtn:before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #4fcc5d;
    box-shadow: 0 0 10px #4fcc5d;
    animation: playbtn 3s linear infinite forwards;
    z-index: -3;
}
@keyframes playbtn {
    from {
        transform: scale(1.0);
        opacity: 1;
    }
    to {
        transform: scale(1.5);
        opacity: 0;
    }
}
#whatsappbtn img {
    width: 30px;
}
a.btn-primary {
    background: var(--primary);
    padding: 10px 30px;
    color: #fff;
    text-decoration: none;
/*     border-radius: 20px 0; */
    transition: all 0.3s ease;
	display: inline-block;
}
/* ================================
   		Hero Slider
================================ */
#hero {
    height: 100vh;
    position: relative;
}
.hero-img {
    height: 100vh;
    object-fit: cover;
    filter: brightness(40%);
}
.hero-title {
    font-size: 38px;
    font-weight: 600;
    line-height: 1.2;
}
.hero-sub {
    font-size: 18px;
    margin-top: 15px;
}
a.btn-white {
    padding: 8px 30px;
    text-decoration: none;
    color: #ffffff !important;
    border: 1px solid #fff;
}
a.btn-white:hover{
	background: var(--primary);
	border: 1px solid var(--primary);
}
.hero-arrows {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    z-index: 1;
    flex-direction: column;
	gap: 25px;
}
.arrow-btn {
    width: 45px;
    height: 45px;
    border: 2px solid #fff;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    font-size: 24px;
    color: #fff;
    cursor: pointer;
}
.carousel-caption.text-start {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
	left: auto;
	right: auto;
	width: 700px;
}
/* ================================
  		About Us
================================ */
section.stand {
    padding: 80px 0;
}
h2.about-section-title {
    margin-bottom: 30px;
}
.quote- {
	font-size: 15px;
    color: #000;
    font-style: italic;
    font-weight: 300;
}
.compass-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
	margin-bottom: 12px;
}
.compass-list li {
  position: relative;
  padding-left: 32px;
  font-size: 16px;
  margin-bottom: 12px;
}
.message {
    background: var(--primary);
    color: #fff;
    padding: 25px;
    text-align: center;
    border: 4px dashed var(--secondary);
    border-radius: 10px;
}
.message h5 {
    font-style: italic;
    font-size: 25px;
}
.message p {
    margin: 0;
}
.compass-list li::before {
  content: "\f14e"; /* fa-compass */
  font-family: "Font Awesome 6 Free";
  font-weight: 900; /* solid icon */
  position: absolute;
  left: 0;
  color: var(--secondary);
  font-size: 22px;
}
/* ================================
	   Pillar Section
================================ */
.pillar{
	background: url(https://algopagedev.com/work/berater.com/wp-content/uploads/2026/04/child-walking-alone-enchanted-forest-with-glowing-fireflies-flying-birds-concept-wonder-imagination-adventure-childhood_963414-21802.jpg);
	background-repeat: no-repeat;
	background-position: bottom;
	background-attachment: fixed;
	background-size: cover;
	padding: 60px 0;
	display: flex;
	justify-content: center;
    align-items: center;
}
.pillar::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6); /* adjust opacity here */
    z-index: -1;
}
.pillar-card {
  background: #c9b48c4d;
	position: relative;
	padding: 20px;
	border-radius: 8px;
	border: 1px solid var(--secondary);
  transition: 0.3s ease;
}
.pillar-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}
.pillar-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: var(--primary);
    color: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    position: absolute;
    top: -40px;
    border: 2px solid var(--secondary);
}
.pillar-icon i,
.diff-card i{
  transition: transform 0.6s ease-in-out;
}
.pillar-card:hover i,
.diff-card:hover i{
  transform: rotate(360deg);
}
.pillar .pillar-card h5{
	font-size: 25px;
}
.pillar .pillar-card h5,
.pillar .pillar-card p{
	color: #fff;
}
.pillar h2.section-title {
    text-align: center;
    color: #fff;
    margin-bottom: 5rem;
}
.pillar .section-title::after {
    left: 50%;
    transform: translatex(-50%);
}
/* ================================
  		Key Features
================================ */
section.diffrence {
/*     background: url(https://algopagedev.com/work/berater.com/wp-content/uploads/2026/04/abstract-shiny-lines-white-gray-minimal-background-design_84443-2780.jpg); */
	background: #fff;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
	padding: 80px 0;
}
section.diffrence .section-title {
    margin-bottom: 3rem;
}
.diffrence .subtitle {
  color: #94a3b8;
  font-size: 18px;
}
.diffrence .section-title::after {
    left: 50%;
    transform: translatex(-50%);
}
.diff-card {
    position: relative;
    backdrop-filter: blur(10px);
    background: #c9b48c26;
    border-radius: 18px;
    padding: 15px 35px;
    height: 100%;
    transition: 0.35s ease;
    color: #000;
    border: 1px dashed #c9b48c;
}
.diff-card:hover {
  transform: translateY(-10px);
  background: rgba(255,255,255,0.08);
}
.diff-number {
  font-size: 48px;
  font-weight: 700;
  color: #0b181f2e;
  position: absolute;
  top: 20px;
  right: 25px;
}
.diff-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #872a03, #f09968);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 20px;
}
.diff-icon i {
    color: #fff;
}
.diff-title {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 8px;
}
.diff-text {
  font-size: 15px;
  color: #cbd5f5;
  line-height: 1.6;
}
.tilc-tagline {
  margin-top: 70px;
  text-align: center;
  font-size: 24px;
  font-weight: 500;
}
/* ================================
   Gallery Section CSS
================================ */
   .gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: .5s ease;
	border-radius: 12px;
}
.gallery-item::after {
  content: "+";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.6);
  color: #fff;
  font-size: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: .4s ease;
}
.gallery-item:hover::after {
  opacity: 1;
}
.gallery-item:hover img {
  transform: scale(1.1);
}
/* ================================
   Career Contact Section 
================================ */
.career-section {
    padding: 80px 0;
    background: #000;
}
.career-content .about-heading {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 20px;
}
/* .career-content .hero-subtitle {
    color: #555;
    margin-bottom: 25px;
    line-height: 1.7;
} */
.career-points {
    list-style: none;
    padding: 0;
}
.career-points li {
    margin-bottom: 12px;
    font-weight: 500;
    color: #222;
}
.career-form-box {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.08);
}
@media (max-width: 991px) {
    .career-content {
        text-align: center;
    }

    .career-points li {
        justify-content: center;
    }
}
.career-form .form-title {
    text-align: center;
    margin-bottom: 20px;
    font-weight: 700;
}
.career-form .form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
}
.career-form .form-control:focus {
    border-color: var(--primary);
    outline: none;
}
.career-btn {
    background: var(--primary);
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    border: none;
    transition: 0.3s;
}
.career-btn:hover {
    background: #000;
}
.career-form {
    width: 100%;
}
.career-form .form-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #111;
}
.career-form .form-control,
.career-form .form-select {
    height: 50px;
    border-radius: 8px;
    border: 1px solid #ddd;
    padding: 10px 15px;
    font-size: 14px;
    transition: all 0.3s ease;
}
.career-form textarea.form-control {
    height: auto;
    min-height: 130px;
    padding-top: 12px;
}
.career-form .form-control:focus,
.career-form .form-select:focus {
    border-color: #BA9551;
    box-shadow: 0 0 0 0.2rem rgba(186,149,81,0.2);
}
.career-form ::placeholder {
    color: #999;
}
.career-btn:hover {
    background: #000;
    color: #fff;
}
.career-form .wpcf7-response-output {
    margin-top: 15px;
    text-align: center;
}
.career-form .wpcf7-not-valid {
    border-color: red;
}
.career-form .wpcf7-not-valid-tip {
    font-size: 12px;
    color: red;
    margin-top: 5px;
}
.career-form .wpcf7-spinner {
    display: block;
}
@media (max-width: 768px) {
    .career-form .form-title {
        font-size: 22px;
    }
}
/* ================================
   Testimonial Section CSS
================================ */

section.testimonial-section {
    padding: 80px 0;
	background: #f6f4ee;
}
.testimonial-card {
    background: #fff;
    padding: 30px;
    border-radius: 18px;
    height: 100%;
    position: relative;
    min-height: 450px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.user-info {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
}
.designation{
	margin: 0;
}
.user-info img {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    object-fit: cover;
}
.user-info h6 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}
.user-info span {
    font-size: 14px;
    color: #777;
}
.testimonial-text {
    font-size: 16px;
    color: #444;
    line-height: 1.6;
    margin: 20px 0;
}
.rating span {
    font-size: 14px;
    color: #777;
    display: none;
}
.rating h2 {
    font-size: 50px;
    font-weight: 600;
    margin: 0;
	color: #882c06;
}
.rating small {
    font-size: 18px;
}
.quote {
    position: absolute;
    right: 25px;
    bottom: 20px;
    font-size: 30px;
    font-weight: bold;
}
.quote i {
    color: #0062ac1f;
}
.swiper-pagination {
    margin-top: 25px;
    position: relative;
}
/* ================================
   Blog Section CSS
================================ */
.blog-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    height: 100%;
}
section.secondary-container.blogpage.latestnews h2 {
    margin-bottom: 30px;
}
.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.blog-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}
.blog-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.blog-content h4 {
    font-size: 20px;
    margin-bottom: 10px;
}
.blog-content h4 a {
    color: var(--primary);
    text-decoration: none;
}
.blog-content p {
    font-size: 14px;
    color: #666;
    flex-grow: 1;
}
.read-more {
    margin-top: 15px;
    font-weight: 600;
    text-decoration: none;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.read-more:hover {
    color: #000;
}
section.secondary-container.blogpage.latestnews {
    padding: 80px 0;
	background: #fff;
}

/* ================================
   		CTA Section
================================ */
.contact {
    text-align: center;
/*     background: url(https://integrityleadershipco.com/wp-content/uploads/2025/12/slider1.jpg); */
	background: #000;
    color: #fff;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
	padding: 80px 0;
}
.contact .quote{
	color: #fff;
}
.contact .btn-white:hover{
	color: #fff !important;
}
.contact-btn-box{
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
}
.contact p {
    text-align: center;
}
/* ================================
  Whatsapp Button CSS
================================ */
.whatsapp-float {
    position: fixed;
    left: 20px;
    bottom: 30px;
    width: 55px;
    height: 55px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    box-shadow: 0 6px 12px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
	text-decoration: none;
}
.whatsapp-float:hover {
    background: #1ebe5d;
    transform: scale(1.1);
    color: #fff;
}

/* ================================
   		About Page
================================ */
.section-padding {
    padding: 80px 0;
	background: #f6f4ee;
}
.about-img img {
    width: 100%;
    border-radius: 10px;
}
.focus-card {
    background: #fff;
    padding: 25px;
    text-align: center;
    border-radius: 10px;
    transition: 0.4s;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}
.focus-card i {
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 10px;
}
.focus-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}
.section-title {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
	text-align: center;
}
.section-title::after {
    content: "";
    width: 70px;
    height: 3px;
    background: var(--secondary);
    display: block;
    margin-top: 10px;
	position: relative;
    transform: translateX(-50%);
	left: 50%;
}
.vm-section {
    background: #f6f4ee;
}
.vm-card {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: 0.4s;
    box-shadow: 0 10px 35px rgba(0,0,0,0.05);
}
.vm-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}
.vm-icon {
    width: 60px;
    height: 60px;
    background: var(--secondary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 20px;
    font-size: 22px;
}
.vm-card h3 {
    font-weight: 700;
    margin-bottom: 15px;
    color: #283224;
}
.vm-card p {
    color: #555;
}
.mission-list {
    padding-left: 0;
}
.mission-list li {
    list-style: none;
    margin-bottom: 12px;
    display: flex;
    align-items: start;
    font-size: 15px;
}
.mission-list i {
    color: var(--secondary);
    margin-right: 10px;
    margin-top: 4px;
}

/* ================================
   		Research Page
================================ */

.research-wing {
  background: #F3E8D8;
}
.sub-title {
  color: #B45A2C;
  font-weight: 600;
  letter-spacing: 1px;
}
.main-title {
  font-size: 40px;
  font-weight: 700;
  color: #283224;
}
.section-text {
/*   max-width: 700px; */
/*   margin: 10px auto 0; */
  color: #555;
  text-align: center;
}
.research-card {
  background: #fff;
  padding: 30px 25px;
  border-radius: 12px;
  height: 100%;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.research-card ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}
.research-card ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  font-size: 15px;
}
.research-card ul li::before {
  content: "\f061"; 
  font-family: "Font Awesome 6 Free"; 
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 2px;
  color: #872a03; 
  font-size: 13px;
}
.research-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}
.research-card .icon {
  width: 60px;
  height: 60px;
  background: var(--secondary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 15px;
  font-size: 22px;
}
.research-card h4 {
  font-size: 20px;
  font-weight: 600;
  color: #283224;
  margin-bottom: 10px;
}
.research-card ul {
  padding-left: 18px;
  margin: 0;
}
.research-card ul li {
  font-size: 14px;
  color: #555;
  margin-bottom: 6px;
}
.small-text {
  font-size: 13px;
  color: #B45A2C;
  margin-bottom: 8px;
}
@media (max-width: 768px) {
  .main-title {
    font-size: 28px;
  }
}

/* ================================
   		Education Page
================================ */

.edu-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    transition: 0.3s;
    height: 100%;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
}
.edu-card:hover {
    transform: translateY(-8px);
}
.edu-card i {
    font-size: 30px;
    color: var(--secondary);
    margin-bottom: 15px;
}
.edu-card h5 {
    font-weight: 600;
    margin-bottom: 10px;
}
.edu-cta {
    background: #BA9551;
    color: #fff;
    text-align: center;
    padding: 60px 20px;
    border-radius: 12px;
}
.edu-cta h3 {
    font-weight: 700;
}
.edu-cta a {
    margin-top: 15px;
    display: inline-block;
    background: #fff;
    color: #BA9551;
    padding: 10px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
}

/* ================================
   		Career Page
================================ */

.career-card{
  background:#fff;
  padding:30px;
  border-radius:12px;
  transition:0.3s;
  height:100%;
  box-shadow:0 5px 20px rgba(0,0,0,0.05);
}
.career-card:hover{
  transform:translateY(-8px);
  box-shadow:0 10px 30px rgba(0,0,0,0.1);
}
.career-icon{
  font-size:28px;
  color:var(--secondary);
  margin-bottom:15px;
}
.section-title{
  text-align:center;
  margin-bottom:50px;
}
.section-title h2{
  font-weight:700;
}
.form-control, .form-select{
  border-radius:8px;
  padding:12px;
}
.form-control:focus{
  border-color:#BA9551;
  box-shadow:none;
}
.submit-btn{
  background:var(--primary);
  color:#fff;
  padding:12px 30px;
  border:none;
  border-radius:30px;
  transition:0.3s;
}
.submit-btn:hover{
  background:var(--secondary);
}
.tantra-box{
  background:#fff;
  padding:40px;
  border-radius:12px;
  box-shadow:0 5px 20px rgba(0,0,0,0.05);
}

/* ================================
   		Events Page
================================ */

.section-padding{
  padding:80px 0;
}
.activity-section {
    background: #fff;
}
.main-title{
  text-align:center;
  margin-bottom:50px;
}
.main-title p{
  text-align:center;
}
.main-title h2{
  font-weight:700;
}
.event-card{
  background:#fff;
  padding:30px;
  border-radius:12px;
  transition:0.3s;
  height:100%;
  box-shadow:0 5px 20px rgba(0,0,0,0.05);
}
.event-card:hover{
  transform:translateY(-8px);
  box-shadow:0 10px 30px rgba(0,0,0,0.1);
}
.event-icon{
  font-size:28px;
  color: var(--primary);
  margin-bottom:15px;
}
.recent-box{
  background:#BA9551;
  color:#fff;
  padding:40px;
  border-radius:12px;
}
.recent-box{
	text-align: center;
}
.recent-box p{
	text-align: center;
}
.gallery-item-{
  position:relative;
  overflow:hidden;
  border-radius:10px;
}
.gallery-item- img{
  width:100%;
  transition:0.4s;
  height: 300px;
  object-fit: cover;	
}
.gallery-item-:hover img{
  transform:scale(1.1);
}
.gallery-overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.5);
  opacity:0;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  transition:0.3s;
}
.gallery-item-:hover .gallery-overlay{
  opacity:1;
}


/* ================================
   	Social Activities Page
================================ */

.csr-box{
  background:#fff;
  border-radius:12px;
  overflow:hidden;
  box-shadow:0 5px 20px rgba(0,0,0,0.05);
}
.csr-img img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.csr-content{
  padding:40px;
}
.csr-content h4{
  font-weight:600;
  margin-bottom:15px;
}
.csr-icon{
  color: var(--primary);
  font-size:22px;
  margin-right:10px;
}
.alt-bg{
  background:#ffffff;
}


/* ================================
   	Founder Page
================================ */

.founder-box{
  background:#fff;
  border-radius:12px;
  padding:40px;
  box-shadow:0 5px 20px rgba(0,0,0,0.05);
}
.founder-img img{
  width:100%;
  border-radius:10px;
}
.founder-content h4{
  font-weight:600;
}
.member-card{
  background:#fff;
  padding:25px;
  text-align:center;
  border-radius:12px;
  transition:0.3s;
  box-shadow:0 5px 20px rgba(0,0,0,0.05);
}
.member-card:hover{
  transform:translateY(-6px);
}
.member-card img{
  width:80px;
  height:80px;
  border-radius:50%;
  margin-bottom:10px;
}
.gov-box{
  background:#BA9551;
  color:#fff;
  padding:40px;
  border-radius:12px;
}
.message-box{
  background:#fff;
  padding:40px;
  border-radius:12px;
  box-shadow:0 5px 20px rgba(0,0,0,0.05);
  border-left:5px solid #BA9551;
}
.message-box p{
  font-style:italic;
}
.founder-img img {
    height: 360px;
    object-fit: cover;
}
.member-card p {
    text-align: center;
}

/* ================================
   	Collaboration Page
================================ */

.collab-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 12px;
  transition: 0.3s;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}
.collab-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.collab-card .icon {
  font-size: 40px;
  color: var(--primary);
  margin-bottom: 15px;
}
.collab-list {
  list-style: none;
  padding: 0;
}
.collab-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
}
.collab-list li::before {
  content: "\f105";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--primary);
}
.collab-image img {
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.legal-box {
  background: #ffffff;
  padding: 30px;
  border-left: 5px solid var(--primary);
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}
p.text-muted {
    text-align: center;
}


/* ================================
   	Contact Page
================================ */
/* SECTION */
.contact-inner-section {
  padding: 80px 0;
  background: #f8f9fa;
}

/* BOX */
.contact-page-box {
  background: #ffffff;
  padding: 35px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: 0.3s;
}

.contact-page-box:hover {
  transform: translateY(-5px);
}

/* HEADING */
.about-heading {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 25px;
  position: relative;
}

.about-heading::after {
  content: "";
  width: 60px;
  height: 3px;
  background: var(--primary);
  position: absolute;
  left: 0;
  bottom: -8px;
}

/* INFO CARD */
.info-card {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 18px;
  border-radius: 10px;
  background: #f9fafc;
  transition: 0.3s;
}

.info-card:hover {
  background: var(--secondary);
  transform: translateX(5px);
}

/* ICON */
.info-card i {
  font-size: 20px;
  color: var(--secondary);
  background: #fff;
  padding: 12px;
  border-radius: 50%;
  min-width: 45px;
  text-align: center;
}

/* TEXT */
.info-card h6 {
  margin: 0;
  font-weight: 600;
  font-size: 15px;
}

.info-card span,
.info-card a {
  font-size: 14px;
  color: #555;
  text-decoration: none;
}

.info-card a:hover {
  color: var(--primary);
}

/* FORM */
.wpcf7-form input,
.wpcf7-form textarea {
  width: 100%;
  border-radius: 8px;
  border: 1px solid #ddd;
  padding: 12px 15px;
  font-size: 14px;
  margin-bottom: 15px;
}

.wpcf7-form input:focus,
.wpcf7-form textarea:focus {
  border-color: var(--primary);
  outline: none;
  box-shadow: none;
}

/* BUTTON */
.wpcf7-submit {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 12px 30px;
  border-radius: 8px;
  font-weight: 600;
  transition: 0.3s;
}

.wpcf7-submit:hover {
  background: var(--secondary);
}

/* MAP */
.map-section {
  margin-top: 50px;
  border-radius: 12px;
  overflow: hidden;
}

.map-section iframe {
  width: 100%;
  height: 400px;
  border: 0;
}

/* RESPONSIVE */
@media (max-width: 767px) {
  .top-bar {
    display: none;
  }
  .logo-box img {
		width: 90px;
  }
  .contact-page-box {
    padding: 25px;
  }
  .carousel-caption.text-start{
/* 	 width: 325px;	 */
  }
  .hero-arrows{
	right: 10px;
    top: 60%;	
  }
  .testimonial-card{
	min-height: 300px;	
  }
  .footer_menu .row
  {
    gap: 10px;
   }
   .hero-title {
		font-size: 26px;
    }
	.faculty-card.text-center {
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    align-items: center;
}
.breadcrumb-title h2{
	font-size: 28px;	
}
ol.breadcrumb {
	font-size: 14px;
}
.section-title{
		font-size: 22px;
}
}
@media (max-width: 667px) {
    .carousel-caption.text-start {
        width: 85%;
    }
}
@media (max-width: 568px){
	.hero-arrows {
    	flex-direction: row;
		gap: 10px;
	}
	.hero-arrows {
        left: 10%;
        top: 90%;
        right: auto;
    }
}

/* New Education Page */



    /* ========================= SECTION COMMON ========================= */
    .section-heading {
        max-width: 700px;
        margin: auto;
    }

    .section-badge {
    	background: #87301330;
    	color: var(--primary);
        padding: 8px 18px;
        border-radius: 50px;
        font-weight: 600;
        display: inline-block;
    }

    .section-desc {
        color: var(--primary);
    	font-size: 18px !important;
		text-align: center;
    }
section.online-learning .section-badge {
    background: var(--primary);
    color: #fff;
}
section.online-learning h2.section-title {
    text-align: left;
    color: #fff;
}
section.online-learning .section-desc {
    color: #fff;
    text-align: left;
}
section.online-learning .section-title::after {
    left: 7%;
    background: #fff;
}
    /* ========================= COLLEGE CARD ========================= */
    .college-card {
        background: #fff;
        border-radius: 24px;
        overflow: hidden;
        transition: 0.4s;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
        height: 100%;
    }

    .college-card:hover {
        transform: translateY(-10px);
    }

    .college-img {
        overflow: hidden;
    }

    .college-img img {
        width: 100%;
        height: 250px;
        object-fit: cover;
        transition: 0.5s;
    }

    .college-card:hover img {
        transform: scale(1.08);
    }

    .college-content {
        padding: 30px;
    }

    .college-tag {
    	background: #87301330;
    	color: var(--primary);	
        padding: 6px 14px;
        border-radius: 30px;
        font-size: 14px;
        font-weight: 600;
    }

    .college-content h4 {
        margin-top: 20px;
        font-weight: 700;
    }

    .college-meta {
        display: flex;
        justify-content: space-between;
        margin: 20px 0;
        color: var(--primary);
    }

    .college-btn {
        width: 100%;
    	background:  var(--primary);
    	color: #fff;
        border-radius: 14px;
        padding: 12px;
    }
.college-btn:hover{
	    color: var(--primary);
    	background: #87301330;
}

    /* ========================= ONLINE SECTION ========================= */
    .online-image {
        border-radius: 30px;
    }

    .feature-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .feature-card {
        background: #fff;
        padding: 30px;
        border-radius: 20px;
        text-align: center;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    }

    .feature-card i {
        font-size: 35px;
        color: var(--primary);
        margin-bottom: 15px;
    }

    /* ========================= FACULTY ========================= */
    .faculty-card {
        background: #fff;
        padding: 40px 25px;
        border-radius: 24px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        transition: 0.4s;
    }

    .faculty-card:hover {
        transform: translateY(-8px);
    }

    .faculty-img {
        width: 120px;
        height: 120px;
        border-radius: 50%;
        object-fit: cover;
        margin-bottom: 20px;
    }

    .faculty-exp {
        display: inline-block;
        background: #87301330;
    	color: var(--primary);
        padding: 8px 18px;
        border-radius: 30px;
    }

    .faculty-btn {
    background: var(--primary);
    color: #fff;
    border-radius: 5px;
    padding: 8px 40px;
}

    /* ========================= PAPER SECTION ========================= */
    .paper-card {
		background: #fff;
		padding: 30px;
		border-radius: 24px;
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 20px;
		box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
		flex-direction: column;
		align-content: center;
		text-align: center;
    }

    .paper-icon {
        width: 70px;
        height: 70px;
        border-radius: 18px;
        background: #87301330;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .paper-icon i {
        font-size: 30px;
    	color: var(--primary);
    }

    .paper-btn {
    	background: var(--primary);
    	color: #fff;
        border-radius: 12px;
        padding: 12px 22px;
    }

    .college-search-wrapper {
        background: #fff;
        padding: 25px;
        border-radius: 24px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    }

    .search-box {
        position: relative;
    }

    .search-box i {
        position: absolute;
        left: 18px;
        top: 50%;
        transform: translateY(-50%);
        color: #6b7280;
    }

    .search-box input {
        height: 60px;
        border-radius: 16px;
        border: 1px solid #e5e7eb;
        padding-left: 50px;
        font-size: 16px;
    }

    .filter-select {
        height: 60px;
        border-radius: 16px;
        border: 1px solid #e5e7eb;
    }

    .no-result {
        background: #fff;
        padding: 60px 20px;
        border-radius: 24px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    }
section.online-learning {
    background: linear-gradient(135deg, #872a03, #f09968);
}
section.faculty-section {
    background: #000;
}
section.faculty-section .section-badge {
    background: #fff;
}
section.faculty-section .section-title {
    color: #fff;
}
.faculty-card p {
    text-align: center;
    color: var(--primary);
}
label{
	width: 100% !important;
}


/* Responsive Screen */

@media (max-width: 991px){
	#menu-primary-1 li{
		color: #fff;
		padding: 0px;
	}
	#menu-primary-1 li a{
		font-size: 14px;
	}
	.faculty-card {
    	display: flex;
    	flex-direction: column;
	}
	.founder-img img {
    	width: 200px;
		height: 100%;
	}
}
@media (max-width: 767px){
	.main-title{
		margin-bottom: 0px;
	}
}

/* Membership form */

.membership-section{
  background:#f8fafc;
}

.membership-badge{
  background: #87301330;
  color: var(--primary);
  font-weight:600;
  border-radius:50px;
}

.membership-card{
  background:#fff;
  padding:40px;
  border-radius:20px;
  box-shadow:0 10px 30px rgba(0,0,0,0.06);
}

.plan-box{
  border:1px solid #e5e7eb;
  border-radius:16px;
  padding:24px;
  transition:0.3s ease;
  background:#fff;
}

.plan-box:hover{
  transform:translateY(-4px);
  box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.price-tag{
  background: var(--primary);
  color:#fff;
  padding:10px 20px;
  border-radius:50px;
  font-weight:700;
  font-size:18px;
}

.info-box{
  background:#f1f5f9;
  border-left:4px solid var(--primary);
  padding:18px;
  border-radius:12px;
}

.bank-card{
  background:#f3f4f6; /* Light Gray Background */
  border:1px solid #d1d5db; /* Border */
  border-radius:20px;
  padding:40px;
  box-shadow:0 10px 25px rgba(0,0,0,0.05);
}

.bank-icon{
  width:60px;
  height:60px;
  border-radius:50%;
  background: var(--primary);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:24px;
}

.bank-detail-item{
  padding:18px 0;
  border-bottom:1px solid #d1d5db;
}

.bank-detail-item span{
  display:block;
  color:#6b7280;
  margin-bottom:6px;
  font-size:14px;
}

.bank-detail-item strong{
  font-size:18px;
  color:#111827;
  word-break:break-word;
}
