/*
Theme Name: REOSYS
Theme URI: https://yourdomain.com/
Author: Your Name
Author URI: https://yourdomain.com/
Description: A custom WordPress theme for coaching centers.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: reosys
*/
.site-header {
/*   position: sticky; */
  top: 0;
  z-index: 1000;
  background: transparent;
  padding: 0px ;
  width: 100%;
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.primary-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
	gap:30px;
}
.primary-menu ul li {
  position: relative;
}
.primary-menu ul li a {
  display: block;
  padding: 10px 15px;
  color: #000;
  text-decoration: none;
}
.primary-menu ul li:hover > ul {
  display: block;
}
.primary-menu ul ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #0d1b2a;
  min-width: 250px;
	z-index:999;
}
.primary-menu ul ul li a {
  padding: 10px;
}
.menu-toggle {
  display: none;
  font-size: 28px;
  color: white;
  cursor: pointer;
}
/* .site-logo img{
	width:110px;
	height:100px;
} */

/* Base styling for the menu */
#menu-main-menu li a {
  display: block;
  padding: 20px 12px;
  color: #000;
  text-decoration: none;
  font-weight: 500;
  font-family: 'Segoe UI', sans-serif;
}

/* Active ribbon-style menu item */
#menu-main-menu .current-menu-item {
  position: relative;
}

#menu-main-menu .current-menu-item a {
color: white;
    position: relative;
    z-index: 99;
}

#menu-main-menu .current-menu-item::before {
    content: '';
    position: absolute;
    top: -19px;
    left: 0;
    width: 100%;
    height: calc(100% + 50px);
    background-color: rgb(253 95 0);

    z-index: 99;
}



@media (max-width: 768px) {
  .primary-menu {
    display: none;
    flex-direction: column;
  }
  .primary-menu ul {
    flex-direction: column;
  }
  .primary-menu ul li a {
    border-top: 1px solid #444;
  }
  .menu-toggle {
    display: block;
  }
}
/* Hide hamburger menu icon by default */
.menu-toggle {
  display: none;
}

/* Show hamburger menu icon only on mobile screens */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
    font-size: 28px;
    color: #000;
    cursor: pointer;
  }
}




/* Layout and Grid */
.section-about {
  padding: 80px 0;
  background: #fff;
  font-family: 'Poppins', sans-serif;
}

.wrapper {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 15px;
}

.row-layout {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}

/* Left Content */
.content-box {
  flex: 0 0 45%;
  max-width: 45%;
}

.heading-line {
  font-size: 32px;
  font-weight: 600;
  color: #10b981;
  position: relative;
}

.heading-line::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background-color: #f97316;
  margin-top: 10px;
}

.text-md {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin: 20px 0;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 40px 0;
}

.check-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  color: #333;
}

.check-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 10px;
  height: 10px;
  background: #10b981;
  border-radius: 2px;
}

/* Stats */
.stats-row {
  display: flex;
  justify-content: space-between;
  max-width: 100%;
  margin-bottom: 30px;
}

.stat-item {
  text-align: left;
}

.stat-num {
  font-size: 28px;
  font-weight: 600;
  color: #10b981;
  display: block;
}

.stat-label {
  font-size: 14px;
  color: #333;
}

/* Buttons */
.btn-group {
  display: flex;
  gap: 15px;
}

.btn-solid {
  background-color: #10b981;
  color: white;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s;
}

.btn-solid:hover {
  background-color: #0f9f74;
}

.btn-outline {
  border: 2px solid #10b981;
  color: #10b981;
  padding: 10px 28px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
}

.btn-outline:hover {
  background: #10b981;
  color: #fff;
}

/* Right Image/Video */
.media-box {
  flex: 0 0 50%;
  max-width: 50%;
  position: relative;
}

.image-rounded {
  border-radius: 8px;
  max-width: 100%;
  height: auto;
  display: block;
}

.bg-shade {
  position: absolute;
  top: -30px;
  right: -30px;
  background: #d1fae5;
  width: 100%;
  height: 100%;
  z-index: -1;
  border-radius: 8px;
}

.video-link {
  position: relative;
  display: inline-block;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: #10b981;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-button .icon-play::before {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-left: 15px solid #fff;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}

/* Animations (Mock for AOS) */
.anim {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease-out;
}

.anim[data-anim="fade-in"].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 991px) {
  .row-layout {
    flex-direction: column;
  }

  .content-box,
  .media-box {
    max-width: 100%;
    flex: 0 0 100%;
    margin-bottom: 40px;
  }

  .stats-row {
    flex-direction: row;
    justify-content: space-between;
  }
}




/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  color: #fff;
  font-size: 14px;
}

.footer .footer-content {
    background: #0d1b2a;
    padding: 50px 0 0px;
    color: #fff;
}

.footer .footer-content .widget {
  margin-bottom: 30px;
}

.footer .footer-content .widget  p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: var(--font-primary);
  color: var(--color-white);
}

.footer .footer-content .widget-title  {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-white);
  position: relative;
  padding-bottom: 12px;
  margin-bottom: 15px;
}

.footer .footer-content .widget-title::after {
  content: "";
  position: absolute;
  display: block;
  width: 30px;
  height: 2px;
  background: #fcc00a;
  bottom: 0;
  left: 0;
}

.footer .footer-content .menu {
  margin-bottom: 30px;
}

.footer .footer-content .menu  {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-content .menu  i {
  padding-right: 8px;
  color: var(--color-white);

  line-height: 1;
}
.footer-links p{
  text-align: justify;
}

.footer .footer-content .menu li {
    margin: 0;
    padding: 6px 0 !important;
}
.footer .footer-content .menu  li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-content .menu  li:first-child {
  padding-top: 0;
}

.footer .footer-content .menu  a {
      color: rgb(255 255 255 / 93%);
  transition: 0.3s;
  display: inline-block;
text-decoration:none;
}

.footer .footer-content .menu  a:hover {
  color: var(--color-white);
}

.footer-legal.text-center {
    background: #0b1724;
    color: #bebdbd;
    text-align: center;
    padding: 15px;
}
 .copyright p{
	margin:0 !important;
}



.features-section {
  
}

.feature-box {
  color: #fff;
  transition: all 0.3s ease;
}

.feature-box.orange {
  background-color: #ff6600;
  color: #fff;
}

.feature-box.dark {
  background-color: #0f172a;
  color: #fff;
}

.feature-box i {
  display: block;
  margin-bottom: 10px;
  color: #fff;
}

.feature-box h5 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.feature-box p {
  font-size: 0.9rem;
  color: #f1f1f1;
}



.section-box img{
	width:60px;
}


.button-group {
  display: flex;
  gap: 1rem;
/*   justify-content: center; */
  margin-top: 20px;
}




.btn-outline-orange {
    position: relative;
    overflow: hidden;
    color: #fd5f00;
    font-size: 18px;
    border: 2px solid #fd5f00;
    padding: 15px 40px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    border-radius: 0;
    background-color: transparent;
    transition: color 0.4s ease, border-color 0.4s ease;
    z-index: 1;
}

.btn-outline-orange span {
  position: relative;
  z-index: 2; 
  display: flex;
  align-items: center;
  gap: 8px;
  color: inherit;
  font-weight: 500;
}

.btn-outline-orange span i {
  transform: rotate(-35deg);
  transition: all 0.4s ease;
}

.btn-outline-orange::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #0d1b2a;
  transition: all 0.4s ease;
  z-index: 0; 
	border-radius: 0px;
}

.btn-outline-orange:hover::before {
  left: 0;
}

.btn-outline-orange:hover {
  color: #fff; 
  border-color: #0d1b2a;
}

.btn-outline-orange:hover span i {
  transform: rotate(0deg);
  color: #fff;
}


.btn-orange {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  padding: 15px 40px;
  background-color: #0d1b2a;
  color: #fff;
  border-radius: 0;
  font-weight: 500;
  text-decoration: none;
  border: 2px solid #0d1b2a;
  overflow: hidden;
  z-index: 1;
  transition: color 0.4s ease, border-color 0.4s ease;
}

.btn-orange::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background-color: #fd5f00;
  z-index: -1;
  transition: width 0.4s ease;
}

.btn-orange i {
  transition: transform 0.4s ease, color 0.4s ease;
  transform: rotate(-20deg);
}

.btn-orange:hover::before {
  width: 100%;
}

.btn-orange:hover {
  color: #fff;
  border-color: #fd5f00;
}

.btn-orange:hover i {
  transform: rotate(0deg);
  color: #fff;
}



.feature-card-wrapper {
  padding-top: 40px;
}

.hexagon-icon {
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #0d1b2a; 
  color: #fff;
  width: 80px;
  height: 80px;
  clip-path: polygon(25% 5%, 75% 5%, 100% 50%, 75% 95%, 25% 95%, 0% 50%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  z-index: 1;
}
.hexagon-icon img{
	width:50px;
}
.feature-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  padding-top: 60px;
}

.btn-learn {
  display: inline-block;
  margin-top: 10px;
    border: 2px solid #0d1b2a;
    padding: 10px 20px;
    border-radius: 13px;
    color: #0d1b2a;
  font-weight: 500;
  text-decoration: none;
}
.btn-learn:hover {
  text-decoration: none;
}



.section-heading {

  position: relative;
  display: inline-block;
  text-align: center;
  width: 100%;
}

.section-heading h2 {
  font-size: 32px;
  font-weight: 700;
  color: #333;
  display: inline-block;
  position: relative;
  padding-bottom: 10px;
}

@keyframes pulseLine {
  0%, 100% { transform: translateX(-50%) scaleX(1); }
  50% { transform: translateX(-50%) scaleX(1.2); }
}

.section-heading h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 80px;
  height: 3px;
  background-color: #fd5f00;
  border-radius: 2px;
  animation: pulseLine 2s infinite;
}




.hero {
    position: relative;
    height: 100vh;
    /* color: #fff; */
    /* display: flex
; */
    /* align-items: center; */
    /* justify-content: center; */
    text-align: center;
    overflow: hidden;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  padding: 0 20px;
}

.hero h1 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 40px;
}

.button-group-mid {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-mid {
     display: inline-flex;
    align-items: center;
    padding: 15px 50px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 11px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.btn-mid i {
  margin-right: 10px;
}

.btn-call {
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: #fff;
}

.btn-call:hover {
  background: linear-gradient(135deg, #0056b3, #003c80);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
}

.btn-whatsapp:hover {
  background: linear-gradient(135deg, #128C7E, #075E54);
}







.custom-shape-bg {
  position: absolute;
  top: -100px;
  right: -150px;
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  filter: blur(100px);
}

.glass-card {
  background: #0d1b2a;
  border: 1px solid #0d1b2a;
  border-radius: 16px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  height: 100%;
}

.glass-card:hover {
  transform: translateY(-8px);
  background: #0d1b2a;
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.2);
}





.heading-bg-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120px; 
  opacity: 0.05; 
  transform: translate(-50%, -50%);
  z-index: 0;
  pointer-events: none;
}





.about-heading {
  position: relative;
  padding-left: 0.5rem;
}
.about-heading h2, .section-heading h2 {
	font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #111;
    margin-bottom: 20px;
    font-weight: 600;
}

.about-heading .heading-logo-left {
  position: absolute;
  top: 0%;
  left: 0;
  transform: translateY(-30%);
  opacity: 0.05;
  width: 120px;
  pointer-events: none;
  z-index: 0;
}

.about-heading .heading-line-left {
  width: 60px;
  height: 3px;
  background-color: #f26522;
  margin-top: 8px;
  border-radius: 2px;
}





.about-img .sow-image-container:hover {
  transform: scale(1.03);
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.3);
}

.about-img img.so-widget-image {
  border-radius: 10px;
  display: block;
  width: 100%;
  transition: transform 0.4s ease;
}




.info-card-row {
  display: flex;
  justify-content: center;
}

.info-card {
/*     border: 1px solid #0d1b2a; */
    background-color: #fff;
    display: flex;
    align-items: center;
    padding: 14px 8px;
    border-radius: 4px;
    transition: all 0.3s ease;
    height: 100%;
	box-shadow: 0 0 8px rgba(122, 30, 45, 0.2);
}

.info-card img {
     height: 40px;
    margin-right: 10px;
    width: 40px;
}

.info-text p {
  font-size: 1rem;
  color: #0d1b2a;
  font-weight: 500;
  text-align: left;
  margin: 0;
}

.info-card:hover {
    background-color: #f6faff;
}







    .testimonials {
      position: relative;
/*       background-image: url('https://images.unsplash.com/photo-1580912458702-6fa698fc553e?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80'); */
      background-repeat: no-repeat;
      background-size: cover;
      padding: 50px 0;
    }

    .testimonials::before {
      content: '';
      position: absolute;
      right: 0;
      left: 0;
      top: 0;
      bottom: 0;
      background: rgb(255 188 148 / 36%);
    }

    .testimonials .container {
      position: relative;
      z-index: 2;
    }

    .testimonials .title {
      text-align: center;
      margin-bottom: 50px;
      padding: 20px 0;
      max-width: 600px;
      margin: 0 auto;
    }

    .testimonials .title h5 {
      color: #EB6D2F;
      font-size: 18px;
      font-weight: 900;
      margin-bottom: -3px;
    }

    .testimonials .title h2 {
      color: #5A3733;
      font-weight: 900;
      font-size: 41px;
      letter-spacing: -1px;
      margin: 0;
    }

    .testimonials .testi .item {
      background: #fff;
      padding: 50px 30px;
      border-radius: 15px;
      margin: 10px;
    }

    .testimonials .testi .item .profile {
      display: flex;
      padding-left: 15px;
    }

    .testimonials .testi .item .profile img {
      border-radius: 100%;
      width: 50px;
      height: 50px;
      object-fit: cover;
    }

    .testimonials .testi .item .profile .information {
      padding-left: 20px;
      margin-bottom: 15px;
    }

    .testimonials .testi .item .profile .information .stars i {
      color: #ffd832;
    }

    .testimonials .testi .item .profile .information p {
      font-size: 24px;
      margin: 0;
      color: #5A3733;
      font-weight: 900;
      line-height: 1;
    }

    .testimonials .testi .item .profile .information span {
      color: #EB6D2F;
      font-weight: bold;
      line-height: 1.6em;
      font-size: 14px;
    }

    .testimonials .testi .item > p {
      font-size: 16px;
      line-height: 1.6em;
      font-style: italic;
      color: #5A3733;
      text-align: center;
    }

    .testimonials .testi .item .icon {
      text-align: center;
    }

    .testimonials .testi .item .icon i {
      font-size: 32px;
      color: #FFD832;
    }
 
.text-muted{
	text-align:justify;
	color:#000;
}



.section-heading {
  margin-bottom: 3rem;
}

.heading-bg-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  max-width: 200px;
  opacity: 0.05;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.section-heading h2 {
  font-size: 2.5rem;
  font-weight: 700;
  z-index: 1;
}

.vision-mission-box {
  background-color: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-width: 2px;
  border-style: solid;
  border-radius: 1rem;
  padding: 2rem;
}

@media (min-width: 768px) {
  .vision-mission-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.07);
  }
}




.inner-banner {
 
  background-size: cover;
  position: relative;
  padding: 100px 0;
  color: #fff;
}

.inner-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(0, 0, 0, 0.4); /* Dark overlay */
}

.inner-banner .container {
  position: relative;
  z-index: 1;
}

.inner-title {
  text-align: center;
  color: #fff;
}

.inner-title h3 {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 10px;
	text-transform:uppercase;
}

.inner-title ul {
  list-style: none;
  padding: 0;
  margin: 0;
  color: #fff;
  display: inline-flex;
  gap: 10px;
  font-size: 16px;
}

.inner-title ul li a {
  color: #fff;
  text-decoration: none;
}

.inner-title ul li span {
  font-weight: bold;
}





.text-maroon {
  color: #fd5f00; 
}

.contact-box {
  background-color: #ececec;
  border-radius: 12px;
  transition: all 0.3s ease;
/*   border: 1px solid #eee; */
}

.contact-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.05);
}

.contact-heading {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: #1a1a1a;
}





.wpcf7-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  margin-top: 20px;
}

.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form input[type="date"],
.wpcf7-form select,
.wpcf7-form textarea {
  width: 100%;
  padding: 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
  box-sizing: border-box;
}

.wpcf7-form textarea {
  min-height: 150px;
  resize: vertical;
}

.submit-button-wrapper {
  margin-top: 30px;
}

.wpcf7-form input[type="submit"] {
  background-color: #0d1b2a; /* Deep maroon */
  color: white;
  padding: 16px 32px;
  font-size: 18px;
  font-weight: bold;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  width: 100%;
  transition: background-color 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.wpcf7-form input[type="submit"]:hover {
  background-color: #0d1b2a;
}

.img-icon{
	width:60px;
	margin: 20px;

}

