@font-face {
  font-family: "Neulis Sans";
  src: url("../fonts/fonnts.com-Neulis_Sans_Regular.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Neulis Sans";
  src: url("../fonts/fonnts.com-Neulis_Sans_Bold.otf") format("opentype");
  font-weight: bold;
  font-style: normal;
}
* {
  font-family: "Neulis Sans", Arial, sans-serif !important;
}


:root {
  --primary-regular-font: "Neulis Sans";
  --primary-font-weight: 600;
  --regular-font-weight: 500;
}
body {
  font-family: var(--primary-regular-font), sans-serif;
}

/* ===== TOP HEADER ===== */

.top-header {
  background: #de7310;    
}

/* MOBILE PAR TOP HEADER HIDE */

@media (max-width: 768px) {
  .top-header {
    display: none;
  }
}

.top-header p{
    text-align: center;
    font-size: 15px;
    margin: 0px;
    color: #ffffff;
}

/* ===== MAIN HEADER ===== */

.main-header {
  background: #ffffff;
  position: relative;
}

.main-cont{
    display: flex;
       justify-content: space-around;
}


.main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
   display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.main-nav ul li a {
  text-decoration: none;
  color: #000;
  font-size: 13px;
  position: relative;
  padding-bottom: 6px;
  transition: 0.3s ease;
}



.main-nav ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background: #f36f21;
  transition: 0.4s ease;
}

.main-nav ul li a:hover::after {
  width: 100%;
}

/* MOBILE TOGGLE */

.rk-toggle {
  display: none;
  font-size: 26px;
  cursor: pointer;
  position: absolute;
  right: 15px;
}


.social-icons {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-icons img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  cursor: pointer;
  transition: 0.3s ease;
}

.social-icons img:hover {
  transform: translateY(-3px);
}

/* ===== RESPONSIVE (BILKUL SAME BEHAVIOUR) ===== */
@media (max-width: 992px) {

  .main-cont {
    justify-content: space-between;
  }

  .rk-toggle {
    display: block;
    z-index: 9999;
  }

  .main-nav {
     position: fixed;
    top: 0;
    left: -100%;
    width: 260px;
    height: 100vh;
    background: #ffffff;
    transition: all 0.4s ease;
    z-index: 9999;
    padding-top: 60px;
    display: block; 
  }

  .main-nav.active {
    left: 0;
  }
  .main-nav ul {
    flex-direction: column;
    gap: 0;
  }

  .main-nav ul li {
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
    text-align: left;
  }

  .social-icons {
    display: none;
  }
}

.menu-close {
  display: none;
}

@media (max-width: 992px) {

  .menu-close {
    display: block;
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 22px;
    cursor: pointer;
    color: #de7310;
  }

}

/* ===== CLEAN MOBILE STICKY HEADER FIX ===== */




@media (max-width: 768px) {
  .main-header .container {
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Main alignment */
  .main-cont {
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }

  /* Hide desktop items */
  .social-icons {
    display: none !important;
  }


  /* PERFECT STICKY HEADER */
  .main-header {
    position: sticky !important;
    top: 0 !important;
    left: 0;
    width: 100%;
    background: #000000;
    z-index: 9999;
    padding: 12px 0 !important;
    margin: 0 !important;
  }

  
  
  .main-cont {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .mobile-logo {
    display: block !important;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
  }

  .social-icons {
    display: none !important;
  }

  
  .rk-toggle {
    display: flex !important;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    width: 40px;
    height: 38px;
    border-radius: 6px;
    font-size: 22px;
    cursor: pointer;
  }


}
.mobile-logo {
  display: none;
}


/* 
home page css start here */


.banner-slider .item img {
  width: 100%;
  height: auto;
  object-fit: cover;
  
}

/* Navigation Arrows */
.banner-slider .owl-nav button {
  position: absolute;
  top: 45%;
  background: #de7310 !important;
  color: #fff !important;
  border-radius: 50%;
  width: 40px;
  height: 40px;
}

.banner-slider .owl-nav .owl-prev {
  left: 0px;
}

.banner-slider .owl-nav .owl-next {
  right: 0px;
}

/* Dots Style */
.banner-slider .owl-dots .owl-dot span {
  background: #ccc !important;
}

.banner-slider .owl-dots .owl-dot.active span {
  background: #de7310 !important;
}




/* 2nd section start here */
.about-section {
  padding: 60px 0;
  background-image: url("../images/bg.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.about-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  height: auto;      
  object-fit: cover;
}

/* Tablet */
@media (max-width: 992px) {
  .about-image img {
    height: auto;
  }
  .about-section {
  padding: 30px 0;
 
}
.about-content{
padding: 0px !important;
}
}


.about-content {
 background: #ffffff38;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}



.lang-box {
  padding: 15px;
  margin-bottom: 12px;
  border-radius: 8px;
      background: #fafafa36;
}

.lang-box.english {
  border-left: 4px solid #de7310;
}

.lang-box.japanese {
  border-left: 4px solid #333333;
}

.lang-label {
  display: inline-block;
  font-size: 13px;
  font-weight: bold;
  margin-bottom: 5px;
  color: #de7310;
}

.lang-box p {
  margin: 0;
  line-height: 1.8;
  font-size: 15px;
}

/* Responsive */

@media (max-width: 992px) {
  .about-content {
    margin-top: 20px;
  }
}



/* 3rd section css */

.guruji-words{
 padding: 60px 0;
  background-image: url("../images/bg-white.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* Card wrapper */
.guruji-words .guruji-card{
  background:white;
  border-radius:6px;
  overflow:hidden;
  box-shadow:0 5px 15px rgba(0,0,0,.08);
  transition:.4s ease-in-out;
}


.guruji-words .img-wrap{
  overflow:hidden;
  padding: 30px;
}

.guruji-words .img-wrap img {
  width: 100%;
 
  object-fit: cover;
  transition: .5s ease-in-out;
}


@media (max-width: 991px) {
  .guruji-words .img-wrap img {
    height: auto;
  }
  .guruji-words{
 padding: 30px 0;
}
}






.guruji-words .guruji-card:hover img{
  transform:scale(1.08);
}


.guruji-words .content{
  padding:20px;
  text-align:left;
}


.guruji-words .content h5{
  font-weight:600;
  margin-bottom:8px;
  position:relative;
  display:inline-block;
}

/* Smooth orange underline on hover */
.guruji-words .content h5::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-2px;
  width:0;
  height:2px;
  background:orange;
  transition:.3s;
}

.guruji-words .guruji-card:hover h5::after{
  width:100%;
}
.guruji-card h5{
font-size: 25px;
}
/* Paragraph */
.guruji-words .content p{
  font-size:16px;
  color:#555;
  margin:0;
}


.guruji-heading-wrapper{
  margin-bottom:30px;
}

/* Heading line layout */
.guruji-heading{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:15px;
}

.guruji-heading h2{
  font-size:28px;
  font-weight:700;
  margin:0;
  letter-spacing:0.5px;
}

/* Side lines */
.guruji-heading .line{
  flex:1;
  max-width:120px;
  height:2px;
  background:#ddd;
}


.guruji-center-img{
  margin-top:10px;
}

.guruji-center-img img{
  max-width:120px;   
  height:auto;
}



 /* Books On Guruji section start here */

 .guru-three{
  padding: 60px 0;
  background-image: url("../images/bg.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.guru-card {
  
  padding: 12px;
  border-radius: 12px;
  overflow: hidden;
  transition: 0.4s ease;
 
  height: 460px;               /* fixed card height */
  display: flex;
  align-items: center;
  justify-content: center;
}

.guru-card img {
  width: 100%;
  height: 100%;                /* sabko same height */
  object-fit: cover;           /* image proper fill hogi */
  border-radius: 10px;
  transition: 0.4s ease;
}

/* HOVER EFFECT ON IMAGE */
.guru-card:hover img {
  transform: scale(1.06);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .guru-three {
    padding: 40px 0;
  }

  .guru-card {
  height: 360px;   
}
}


/* BOTTOM CENTER BUTTON AREA */
.guru-bottom-btn {
  text-align: center;
  margin-top: 25px;
}

/* BUTTON STYLE */
.guru-btn {
  display: inline-block;
  background: transparent;
  color: #de7310;
  padding: 12px 36px;
  text-decoration: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  border: 2px solid #de7310;
  position: relative;
  transition: 0.4s ease;
}

.guru-btn:hover {
  background: #de7310;
  color: #ffffff;
  letter-spacing: 1px;
}

/* media gallery css start here */



.media-gallery{
 padding: 60px 0;
  background-image: url("../images/bg-white.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}


.media-title {
  font-size: 28px;
  margin-bottom: 25px;
  color: #222;
}

.media-slider .item img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* Navigation Arrows */
.media-slider .owl-nav button {
  position: absolute;
  top: 45%;
  background: #de7310 !important;
  color: #fff !important;
  border-radius: 50%;
  width: 40px;
  height: 40px;
}

.media-slider .owl-nav .owl-prev {
  left: -20px;
}

.media-slider .owl-nav .owl-next {
  right: -20px;
}

/* Dots Style */
.media-slider .owl-dots .owl-dot span {
  background: #ccc !important;
}

.media-slider .owl-dots .owl-dot.active span {
  background: #de7310 !important;
}

/* Responsive */
@media (max-width: 992px) {
  .media-slider .item img {
    height: auto;
  }
  .media-gallery{
 padding: 30px 0;

}
}



/* last section css */


/* ===== REQUEST JOIN SECTION ===== */

.Request-join {
  padding: 100px 0;
  background-image: url("../images/bg.jpg");  
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

/* Overlay for readability */
.Request-join::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:linear-gradient(120deg, rgb(0 0 0 / 73%) 50%, rgba(0, 0, 0, 0.35) 50%)
}

.Request-join .container {
  position: relative;
  z-index: 2;
}

/* ===== LEFT SIDE ===== */

.req-left-box {
  color: #fff;
  padding: 40px 30px;
  border-left: 5px solid #814309;
  background: rgba(0,0,0,0.30);
  backdrop-filter: blur(6px);
  border-radius: 12px;
}

.req-title {
  font-size: 38px;
  font-weight: 900;
  margin-bottom: 20px;
  color: #de7310;   /* Soft gold tone */
  line-height: 1.3;
}

.req-quote {
  font-size: 19px;
  line-height: 1.9;
  margin-bottom: 20px;
  color: #f0e7d8;
}

.req-author {
  font-size: 18px;
  font-weight: 700;
  color: #e6b56a;
}

/* ===== RIGHT SIDE CARD ===== */

.req-right-box {
  background: #ffffff;
  padding: 45px 30px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 25px 50px rgba(0,0,0,0.25);
  border-top: 6px solid #814309;
}

.req-right-box h3 {
  margin-bottom: 25px;
  font-weight: 800;
  font-size: 26px;
  color: #814309;
}

/* Button */

.req-btn {
  display: inline-block;
  background: #814309;
  color: #fff;
  padding: 14px 45px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s ease;
  font-size: 16px;
  border: 2px solid #814309;
}

.req-btn:hover {
  background: #4f4f4f;
  color: #fff;
  border-color: #4f4f4f;
  transform: translateY(-3px);
}

/* Text color consistency */

.req-right-box p,
.req-right-box span {
  color: #4f4f4f;
}

/* ===== RESPONSIVE DESIGN ===== */

@media(max-width: 992px) {

  .req-title {
    font-size: 30px;
  }

  .req-quote {
    font-size: 17px;
  }
}

@media(max-width: 768px) {

  .Request-join {
    padding: 60px 0;
  }

  .Request-join::before {
    background: rgba(0,0,0,0.75);
  }

  .req-title {
    font-size: 26px;
  }

  .req-left-box {
    margin-bottom: 30px;
    padding: 25px 15px;
  }

  .req-right-box {
    padding: 30px 20px;
  }
}

@media(max-width: 576px) {

  .req-title {
    font-size: 22px;
  }

  .req-quote {
    font-size: 16px;
  }

  .req-btn {
    padding: 12px 30px;
    font-size: 14px;
  }
}


/* footer css */

.custom-footer {
  background: #4F4F4F;
  color: #fff;
  padding: 80px 0 25px;
}

.custom-footer h4 {
  color: #ffffff;
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.5px;
}

/* LOGO SECTION */

.footer-logo {
  text-align: center;
}

.footer-logo img {
  max-width: 140px;
  margin-bottom: 15px;
  border-radius: 100%;

  padding: 4px;
}

.footer-logo h4 {
  margin-top: 10px;
  font-size: 18px;
  color: #ffffff;
}

/* ABOUT TEXT */

.custom-footer p {
  color: #f1f1f1;
  line-height: 1.8;
  font-size: 15px;
  margin-bottom: 0;
}

/* QUICK LINKS */

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links li a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
  font-size: 15px;
}

.footer-links li a:hover {
  color: #de7310;
  padding-left: 5px;
}

/* SOCIAL ICONS */

.social-foot {
  display: flex;
  gap: 15px;
  align-items: center;
}

.social-foot img {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  transition: 0.3s ease;
  cursor: pointer;
  background: #fff;
  padding: 5px;
}

.social-foot img:hover {
  transform: translateY(-4px);
}

/* COLUMN SPACING FIX */

.custom-footer .col-md-3 {
  padding: 0 20px;
}

/* BOTTOM BAR */

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  margin-top: 50px;
  padding-top: 20px;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  color: #e6e6e6;
  font-size: 14px;
}

/* RESPONSIVE IMPROVEMENTS */
/* ===== BETTER MOBILE RESPONSIVE FOOTER ===== */

@media (max-width: 768px) {

  .custom-footer {
    padding: 40px 0 15px;
  }

  .custom-footer .col-md-3 {
    margin-bottom: 25px;
    padding: 0 15px;
    text-align: center;
  }

  .custom-footer h4 {
    font-size: 18px;
    margin-bottom: 12px;
    text-align: left;
  }

  .custom-footer p {
    font-size: 14px;
    line-height: 1.6;
    text-align: left;
  }

  .footer-logo img {
    max-width: 110px;
    margin-bottom: 10px;
  }

  .footer-logo h4 {
    font-size: 16px;
    text-align: center;
  }

  .footer-links li {
    margin-bottom: 8px;
    text-align: left;
  }

  .footer-links li a {
    font-size: 14px;
  }

  .social-foot {
    justify-content: flex-start;
    gap: 12px;
  }

  .social-foot img {
    width: 34px;
    height: 34px;
  }

  .footer-bottom {
    margin-top: 20px;
    padding-top: 15px;
  }

  .footer-bottom p {
    font-size: 13px;
  }
}

/* EXTRA SMALL PHONES (Below 480px) */

@media (max-width: 480px) {

  .custom-footer {
    padding: 30px 0 10px;
  }

  .custom-footer .col-md-3 {
    margin-bottom: 20px;
  }

  .footer-logo img {
    max-width: 95px;
  }

  .social-foot img {
    width: 30px;
    height: 30px;
  }

  .footer-bottom p {
    font-size: 12px;
  }
}




/* ===== INNER PAGE BANNER ===== */
.page-banner {
  background: linear-gradient(
      rgba(0, 0, 0, 0.6),
      rgba(0, 0, 0, 0.6)
    ),
    url('../images/ban.jpg');

  background-size: cover;
  background-position: center;
  height: 400px;
}

.page-title {
  font-size: 42px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.breadcrumb {
  background: transparent;
}

.breadcrumb a {
  color: #f5a623;
  text-decoration: none;
}

@media (max-width: 768px) {
  .page-title {
    font-size: 28px;
  }

  .page-banner {
    height: 220px;
  }
}








.longtext-section {
 padding: 60px 0;
    background-image: url(../images/bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.long-content h4 {
  margin-top: 25px;
  margin-bottom: 10px;
  font-size: 18px;
  color: #111;
}


.long-content p {
  margin-bottom: 15px;
  line-height: 1.95;
  font-size: 16px;
  color: #333;
  text-align: justify;
}
/* HEADER */
.longtext-header {
  text-align: center;
  margin-bottom: 40px;
}

.longtext-header h2 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #111;
}

.long-sub {
  color: #777;
  font-size: 15px;
}

/* WRAPPER */
.longtext-wrapper {
  max-width: 1100px;
  margin: auto;
}

/* BLOCK */
.long-block {
  padding: 10px 0;
}

/* TITLE */
.long-title {
  margin-bottom: 15px;
}

.long-title span {
  font-size: 20px;
  font-weight: bold;
  color: #c00000;  /* aapke site color ke hisab se change hoga */
}


/* DIVIDER */
.long-divider {
  margin: 35px 0;
  text-align: center;
}


/* RESPONSIVE */
@media (max-width: 768px) {

  .longtext-section {
    padding: 50px 0;
  }

  .longtext-header h2 {
    font-size: 22px;
  }

  .long-title span {
    font-size: 18px;
  }

  .long-content p {
    font-size: 15px;
  }
}



/* miracles-experiences css start here */



.guru-three2 {
  padding: 70px 0;
  background-image: url("../images/bg-white.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* CARD DESIGN */
.guru-card2 {
background: #fff;
    padding: 15px;
    border-radius: 6px;
    overflow: hidden;
    transition: 0.4s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    aspect-ratio: 3 / 4;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #c0392b;
}

.guru-card2 a {
  display: block;
  width: 100%;
  height: 100%;
}

/* IMAGE SETTINGS */
.guru-card2 img {
  width: 100%;
  height: 100%;
  object-fit: contain;     /* Image kabhi stretch nahi hogi */
  border-radius: 12px;
  background: #fafafa;     /* empty space clean lagega */
  padding: 5px;
  transition: 0.4s ease;
}

/* HOVER EFFECT */
.guru-card2:hover {
  
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.guru-card2:hover img {
  transform: scale(1.04);
}

/* HEADING DESIGN IMPROVE */
.guruji-heading h2 {
  font-weight: bold;
  color: #c0392b;
}

/* RESPONSIVE FIX */
@media (max-width: 992px) {
  .guru-card2 {
    aspect-ratio: 3 / 4;
  }
}

@media (max-width: 576px) {
  .guru-card2 {
    aspect-ratio: 4 / 5;
  }
}




/* contact us */


/* ===== GURU CONTACT WRAPPER - SCOPED CSS ===== */

.guru-contact-wrapper .section-title h2 {
  color: #c0392b;
  font-weight: bold;
}
.guru-contact-wrapper .contact-info {
  padding: 70px 0;
  background-image: url("../images/bg-white.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.info-box p a{
  text-decoration: none;
  color: #555;
}

.guru-contact-wrapper .info-box {
  background: linear-gradient(to bottom, #ffffff, #fff7ec);
  padding: 35px 20px;
  text-align: center;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  border-bottom: 4px solid #e67e22;
}

.guru-contact-wrapper .info-box:before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 120px;
  height: 120px;
  background: rgba(230, 126, 34, 0.1);
  border-radius: 50%;
}

.guru-contact-wrapper .info-box i {
  font-size: 32px;
  color: #c0392b;
  margin-bottom: 12px;
  display: block;
  background: #fff;
  width: 70px;
  height: 70px;
  line-height: 70px;
  border-radius: 50%;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.guru-contact-wrapper .info-box h4 {
  font-weight: 600;
  margin-bottom: 10px;
  color: #333;
}

.guru-contact-wrapper .info-box p {
  color: #555;
  margin: 0;
  font-size: 15px;
}

.guru-contact-wrapper .info-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}


/* ----- SECOND SECTION ----- */
.guru-contact-wrapper .get-touch {
  background-image: url(../images/bg.jpg);
 background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
   padding: 60px 0;
}

.guru-contact-wrapper .touch-left h3 {
  color: #c0392b;
  font-weight: bold;
}

.guru-contact-wrapper .touch-left p {
  color: #555;
}

.guru-contact-wrapper .touch-left ul {
  padding: 0;
  list-style: none;
}

.guru-contact-wrapper .touch-left ul li {
  margin: 10px 0;
}

.guru-contact-wrapper .touch-left i {
  color: #e67e22;
  margin-right: 8px;
}


/* ----- FORM BOX ----- */
.guru-contact-wrapper .contact-form-box {
  background: #fff7ec;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.guru-contact-wrapper .contact-form-box .form-control {
  border-radius: 8px;
  padding: 10px;
  border: 1px solid #ddd;
}

.guru-contact-wrapper .contact-form-box .form-control:focus {
  border-color: #e67e22;
  box-shadow: none;
}


/* ----- BUTTON ----- */
.guru-contact-wrapper .submit-btn {
  background: #c0392b;
  color: #fff;
  border: none;
  padding: 12px 30px;
  border-radius: 30px;
  width: 100%;
  font-weight: bold;
  transition: 0.3s;
}

.guru-contact-wrapper .submit-btn:hover {
  background: #a93226;
}


/* ----- MAP SECTION ----- */
.guru-contact-wrapper .map-section {
  padding: 0px;
}

.map-section {
  padding: 0 !important;
  margin: 0 !important;
}

.map-box {
  margin: 0 !important;
  padding: 0 !important;
}

.map-box iframe {
  display: block;
}


/* ----- RESPONSIVE FIXES ----- */
@media (max-width: 768px) {
  .guru-contact-wrapper .touch-left {
    margin-bottom: 30px;
  }
}




.youtube-section {
  padding: 70px 0;
  background-image: url("../images/bg-white.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.youtube-section .section-title h2 {
  color: #c0392b;
  font-weight: bold;
}

.video-box {
  background: #fff;
  padding: 10px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: 0.3s;
}

.video-box:hover {
  transform: translateY(-5px);
}

.video-box iframe {
  width: 100%;
  height: 220px;
  border-radius: 10px;
  border: none;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .video-box iframe {
    height: 200px;
  }
}


.sticky-whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
}

.sticky-whatsapp img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
 
  transition: 0.3s;
}

.sticky-whatsapp img:hover {
  transform: scale(1.08);
}
