@charset "UTF-8";


/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
menu,
nav,
section,
time {
  display: block;
}

body {
  line-height: 1;
  color: black;
  background: white;
}

a {
  color: inherit;
  text-decoration: none;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* meyerweb css reset end */

textarea:focus,
input:focus {
  outline: 0;
}

input {
  border-width: 0;
}

em {
  font-style: italic;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: bold;
  margin-top: 0;
  margin-bottom: 0;
}

.group:before,
.group:after {
  content: " ";
  display: table;
}

.group:after {
  clear: both;
}

.group {
  zoom: 1;
  /* ie 6/7 */
}

embed,
img,
object,
video {
  max-width: 100%;
}

sup {
  font-size: 58.3%;
  vertical-align: text-top;
}

sub {
  font-size: 58.3%;
  vertical-align: text-bottom;
}

.no-space-between-inline-blocks {
  letter-spacing: normal;
  /*reset IE < 8*/
  letter-spacing: -0.31em;
  /*webkit*/
  word-spacing: -0.43em;
  /*IE < 8 && gecko*/
}

/*restore spacing on inner elements*/
.no-space-between-inline-blocks>* {
  letter-spacing: normal;
  word-spacing: normal;
}

.displace {
  left: -5000px;
  position: absolute;
}

html {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

*,
*:after,
*:before {
  -webkit-box-sizing: inherit;
  -moz-box-sizing: inherit;
  box-sizing: inherit;
}

html {
  font-size: 16px;
}

body {
  /* min-width: 1224px; */
  color: #222222;
  font-family: Poppins, sans-serif !important;
  font-size: 0.875rem;
  /* 14px / 16px = 0.875rem */
  font-style: normal;
  font-weight: normal;
  letter-spacing: 0;
  text-decoration: none;
}

.global_container {
  float: none;
  height: auto;
  margin: 0 auto;
  position: relative;
  width: 100%;
  /* 1920px / 1920px = 100% */
  z-index: 0;
  background: url('./../images/new/bg.png') no-repeat 0 144px;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  overflow-x: hidden;
}

.col-3 {
  min-height: 244px;
  overflow: hidden;
  padding: 0 0 17px;
  position: relative;
  z-index: 377;
  background: #ffffff;
}

.floral-pattern {
  display: block;
  margin: 0 auto;
  width: 100%;
}

.l-constrained-2 {
  margin: 10px auto;
  position: relative;
  width: 100%;
  max-width: 1224px;
  padding-left: 15px;
  padding-right: 15px;
  box-sizing: border-box;
}


.row-10 {
  margin: 0 auto;
  position: relative;
  width: 635px;
}

.ellipse-1 {
  float: left;
  margin: 0 30px 0 0;
  width: 94px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}

.col-9 {
  float: left;
  margin: 4px 0 0;
  position: relative;
  width: 511px;
}

.text {
  color: #252525;
  font-size: 1rem;
  /* 16px / 16px = 1rem */
  font-weight: 500;
  line-height: 1.2;
}

.text-2 {
  margin: 11px 0 0;
  color: #ea5a21;
  font-size: 2.807771rem;
  /* 44.92px / 16px = 2.8075rem */
  font-weight: bold;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.nav {
  position: relative;
  z-index: 99;
}

.nav-list {
  position: relative;
  list-style: none;
}

.nav-list li {
  float: left;
  margin: 0 30.714287px 0 0;
  font-size: 15px;
  font-weight: 500;
}

.nav-list li:last-child {
  margin-right: 0;
}

.nav-list li a {
  color: #222222 !important;
    padding: 5px 10px;
}

.nav-list .submenu {
  position: absolute;
  top: 100%;
  /* directly below the parent */
  left: 0;
  background: white;
  min-width: 245px;
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  z-index: 1000;
  pointer-events: none;
  /* disable until visible */
}

.nav-list .has-submenu {
  position: relative;
}

.nav-list .has-submenu:hover .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  pointer-events: auto;
    top: 26px;
  /* enable mouse interaction */
}

.nav-list .submenu li {
  width: 100%;
  margin: 0;
  padding: 8px 0;
}

.nav-list .submenu li a {
  display: block;
  padding: 10px 15px;
  color: #ffffff;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

/* Highlight submenu item on hover */
.nav-list .submenu li:hover {
  background-color: #f37628;
}

/* Style link text inside submenu on hover */
.nav-list .submenu li:hover a {
  color: white !important;
}

/* Style top-level menu link on hover */
.nav-list>li>a:hover {
  background-color: #f37628;
  color: white !important;
  padding: 5px 10px;
}


.dropdown-icon::before {
  content: '\e80d';
  font-family: 'fontello';
  margin-left: 6px;
  display: inline-block;
  transition: transform 0.3s ease;
}

/* Rotate on hover */
.has-submenu:hover .dropdown-icon::before {
  content: '\e80d';
  font-family: 'fontello';
  transform: rotate(180deg);
}


.nav-item-1 {
  font-size: 1rem;
  /* 16px / 16px = 1rem */
  font-weight: 500;
}

.nav-item-1-2 {
  font-size: 1rem;
  /* 16px / 16px = 1rem */
  font-weight: 500;
}

.nav-item-1-3 {
  font-size: 1rem;
  /* 16px / 16px = 1rem */
  font-weight: 500;
}

.nav-item-1-4 {
  font-size: 1rem;
  /* 16px / 16px = 1rem */
  font-weight: 500;
}

.nav-item-1-5 {
  font-size: 1rem;
  /* 16px / 16px = 1rem */
  font-weight: 500;
}

.nav-item-1-6 {
  font-size: 1rem;
  /* 16px / 16px = 1rem */
  font-weight: 500;
}

.nav-item-1-7 {
  font-size: 1rem;
  /* 16px / 16px = 1rem */
  font-weight: 500;
}

.nav-item-1-8 {
  font-size: 1rem;
  /* 16px / 16px = 1rem */
  font-weight: 500;
}

.main-content-wrapper {
  margin: -9px 0 0;
  position: relative;
  z-index: 74;
}

.wrapper-15 {
  height: 820px;
  margin: 0 auto;
  position: relative;
  width: 100%;
  z-index: 353;
}






.l-constrained-4 {
  margin: 0 auto;
  padding: 0 10px;
  position: relative;
  width: 100%;
  /* 100% width for smaller screens */
  max-width: 1224px;
  /* Keep maximum width */
}

.ellipse-2-copy-holder,
.ellipse-2-holder {
  margin-top: 183px;
  /* Adjusted margins for responsiveness */
  padding: 18px 0;
  position: relative;
  width: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.43);
}

.down-arrow-copy,
.down-arrow {
  display: block;
  margin: 0 auto;
}

.col-18 {
  float: left;
  margin: 64px 0 0 6px;
  position: relative;
  width: 631px;
}

.text-3 {
  color: #ffffff;
  font-family: Montserrat, sans-serif !important;
  font-size: 1.875rem;
  font-weight: 300;
}

.text-4 {
  margin: 27px 0 0 1px;
  color: #ffffff;
  font-size: 3.00rem;
  font-weight: bold;
}

.layer-4 {
  margin: 0 100px;
  max-width: 100%;
  max-height: 100%;
}





@media (min-width: 768px) {
  .nav {
    margin: 42px auto 30px;
  }

  
}

@media (max-width: 768px) {
  .sub-header{
    gap: 15px;
    width: 100%;
    justify-content: space-evenly;
  }
}

/* Media Queries for Responsiveness */
@media (max-width: 1200px) {
  .col-18 {
    width: 50%;
    /* Adjust for medium screens */
  }

  .slide.active{
    justify-content: space-evenly !important;
  }

  .text-3 {
    font-size: 1.5rem;
    /* Slightly smaller text for medium screens */
  }

  .text-4 {
    font-size: 2.5rem;
    /* Slightly smaller text for medium screens */
  }

  .ellipse-2-copy-holder,
  .ellipse-2-holder {
    margin-top: 140px;
  }
}

@media (max-width: 992px) {

  .col-18 {
    width: 100%;
    text-align: center;
    margin-top: 20px;
  }

  .slide.active{
    flex-direction: column-reverse;
    justify-content: center !important;
    align-items: center !important;
  }

  .text-3 {
    font-size: 1.25rem;
    /* Smaller font size for small screens */
  }

  .text-4 {
    font-size: 2rem;
    margin: 18px 0 0 1px;
    /* Smaller font size for small screens */
  }

  .layer-4 {
    margin: 0 auto;
    width: 70%;
    display: block;
  }

  .ellipse-2-copy-holder,
  .ellipse-2-holder {
    margin-top: 100px;
    width: 40px;
  }
}

@media (max-width: 768px) {
 

  .text-3 {
    font-size: 1.125rem;
    /* Even smaller font size */
  }

  .text-4 {
    font-size: 1.75rem;
    margin: 15px 0 0 1px;
  }

  .layer-4 {
    width: 75%;
  }

  .ellipse-2-copy-holder,
  .ellipse-2-holder {
    margin-top: 80px;
    width: 35px;
  }
}

@media (max-width: 480px) {
  

  .col-18 {
    width: 100%;
    margin-top: 10px;
    /* Adjust margin for smaller screens */
  }

  .text-3 {
    font-size: 1rem;
    /* Smaller text for mobile */
  }

  .text-4 {
    font-size: 1.5rem;
    margin: 10px 0 0 1px;
    /* Smaller text for mobile */
  }

  .layer-4 {
    width: 80%;
    /* Full width on mobile */
  }

  .ellipse-2-copy-holder,
  .ellipse-2-holder {
    margin-top: 50px;
    /* Adjust circle positioning */
    width: 30px;
    /* Very small circle size */
  }
}

.design-wrapper {
  position: relative;
  width: 100%;
  height: 60px; /* prevents it from pushing layout */
  margin-top: 60px;
  z-index: 999;
}

.layer-2,
.bg {
  position: absolute;
  left: 0;
  width: 100%;
  height: auto;
  pointer-events: none; /* optional: ignore mouse events */
}

.layer-2 {
  bottom: -12%;
  z-index: 9;
}

.bg {
  bottom: -16%;
  z-index: 9;
}





/*SMO*/
.social-section {
  padding: 10px;
  background-color: #f8f9fa;
  text-align: center;
}

.social-section h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #333;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.2rem;
  color: #333;
  text-decoration: none;
  transition: color 0.3s;
}

.social-link i {
  font-size: 1.5rem;
}

.social-link:hover {
  color: #007bff;
}

.social-link.facebook i {
  color: #1877f2;
}

.social-link.instagram i {
  color: #e4405f;
}

.social-link.youtube i {
  color: #ff0000;
}
.social-embed-row {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  padding: 40px 20px;
}



.social-section {
  padding: 60px 20px;
  background: #f9f9f9;
}

.social-section h2 {
  margin-bottom: 40px;
  font-size: 28px;
  font-weight: 600;
}

.social-embed-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
}

.social-embed {
  flex: 1 1 300px;
  max-width: 340px;
  height: 350px;
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
  box-sizing: border-box;
}

/* YouTube video wrapper */
.youtube-embed .video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; 
  height: 0;
}

.youtube-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.social-section {
  background-color: #f9f9f9;
}

.social-embed {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  padding: 0;
  height: 400px; 
}

.social-embed iframe,
.social-embed blockquote {
  width: 100%;
  height: 100%;
  border: none;
}


.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; 
  height: 0;
  overflow: hidden;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}



/* Responsive tweaks */
@media (max-width: 768px) {
  .social-embed {
    height: auto;
  }

  .video-wrapper {
    padding-bottom: 56.25%;
  }

  .video-wrapper iframe {
    position: absolute;
    height: 100%;
  }
}

/*New SMO*/
.social-cards-section {
  background-color: #fff9f0; 
}

.social-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-height: 100%; 
}

.social-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.social-card .card-body {
  padding: 30px 20px;
}

.social-card i {
  transition: transform 0.3s ease;
}

.social-card:hover i {
  transform: scale(1.2);
}

.card .btn {
  margin-top: 20px;  
  font-weight: 600;
}

.card-text {
  min-height: 60px; 
}

.social-section h2 {
  z-index: 10;         
  position: relative;  
  margin-top: 60px;    
}




        /* Banner Section Styling */
        .banner-section {
            position: relative;
            background: linear-gradient(135deg, #df480d 0%, #764ba2 100%);
            overflow: hidden;
        }

        .banner-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.1);
            z-index: 1;
        }

      
        #carouselExampleControls {
            position: relative;
            z-index: 2;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
            border-radius: 15px;
            overflow: hidden;
            margin: 20px auto;
            width: 100%;
            max-width: 1400px;
        }

       
        .carousel-item {
            position: relative;
            width: 100%;
            height: 600px;
            overflow: hidden;
        }

        .carousel-item img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            object-position: center center;
            transition: transform 0.6s ease;
            display: block;
            min-width: 100%;
            min-height: 100%;
        }

        .carousel-item.active img {
            transform: scale(1.01);
        }

       
        .carousel-control-prev,
        .carousel-control-next {
            position: absolute;
            width: 60px;
            height: 60px;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.9);
            border-radius: 50%;
            border: none;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
            z-index: 10;
            opacity: 1;
        }

        .carousel-control-prev {
            left: 20px;
        }

        .carousel-control-next {
            right: 20px;
        }

        .carousel-control-prev:hover,
        .carousel-control-next:hover {
            background: rgba(255, 255, 255, 1);
            transform: translateY(-50%) scale(1.1);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
        }

        .carousel-control-prev-icon,
        .carousel-control-next-icon {
            width: 20px;
            height: 20px;
            background-color: #333;
            border-radius: 2px;
        }

      
        .carousel-indicators {
            bottom: 20px !important;
            margin-bottom: 0;
        }

        .carousel-indicators [data-bs-target] {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.5);
            border: 2px solid rgba(255, 255, 255, 0.8);
            margin: 0 5px;
            transition: all 0.3s ease;
        }

        .carousel-indicators .active {
            background-color: #fff;
            transform: scale(1.2);
        }

      
        .carousel-caption-custom {
            position: absolute;
            bottom: 50px;
            left: 50px;
            right: 50px;
            z-index: 5;
            color: white;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
        }

        .carousel-caption-custom h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 15px;
            opacity: 0;
            transform: translateY(30px);
            animation: slideInUp 0.8s ease forwards 0.3s;
        }

        .carousel-caption-custom p {
            font-size: 1.2rem;
            opacity: 0;
            transform: translateY(30px);
            animation: slideInUp 0.8s ease forwards 0.6s;
            text-align: center;
            line-height: 1.2;
        }



        .carousel-caption-custom.topName {
	top: 35px !important;
}


        @keyframes slideInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Mobile Responsiveness */
        @media (max-width: 1200px) {
            #carouselExampleControls {
                margin: 15px;
                border-radius: 12px;
            }
            
            .carousel-item {
                height: 500px;
            }
        }

        @media (max-width: 992px) {
            .carousel-item {
                height: 450px;
            }
            
            .carousel-control-prev,
            .carousel-control-next {
                width: 50px;
                height: 50px;
            }

            .carousel-item img{
              object-fit: contain;
            }
        }

        @media (max-width: 768px) {
            .carousel-item {
                height: 400px;
            }

            #carouselExampleControls {
                margin: 10px;
                border-radius: 10px;
            }

            .carousel-control-prev,
            .carousel-control-next {
                width: 45px;
                height: 45px;
            }

            .carousel-control-prev {
                left: 15px;
            }

            .carousel-control-next {
                right: 15px;
            }

            .carousel-control-prev-icon,
            .carousel-control-next-icon {
                width: 16px;
                height: 16px;
            }

            .carousel-caption-custom {
                bottom: 60px;
                left: 20px;
                right: 20px;
            }

            .carousel-caption-custom h2 {
                font-size: 1.8rem;
            }

            .carousel-caption-custom p {
                font-size: 1rem;
            }

            .carousel-indicators {
                bottom: 15px;
            }

            .carousel-indicators [data-bs-target] {
                width: 8px;
                height: 8px;
                margin: 0 3px;
            }
        }

        @media (max-width: 576px) {
            .carousel-item {
                height: 300px;
            }

            #carouselExampleControls {
                margin: 5px;
                border-radius: 8px;
            }

            .carousel-control-prev,
            .carousel-control-next {
                width: 40px;
                height: 40px;
            }

            .carousel-control-prev {
                left: 10px;
            }

            .carousel-control-next {
                right: 10px;
            }

            .carousel-control-prev-icon,
            .carousel-control-next-icon {
                width: 14px;
                height: 14px;
            }

            .carousel-caption-custom h2 {
                font-size: 1.5rem;
            }

            .carousel-caption-custom p {
                font-size: 0.9rem;
            }
        }

        @media (max-width: 480px) {
            .carousel-item {
                height: auto;
            }

            .carousel-caption-custom h2 {
                font-size: 1.3rem;
            }

            .carousel-caption-custom p {
                font-size: 0.8rem;
            }
        }

      
        












/* Media Queries for Responsiveness */
@media (max-width: 1200px) {
  .layer-2 {
    bottom: 22%;
    display: none;
  }

  .bg {
    bottom: 26%; 
    display: none;
  }
}

@media (max-width: 992px) {
  .layer-2 {
    bottom: 20%;
    display: none;
  }

  .bg {
    bottom: 24%; 
    display: none;
  }
}

@media (max-width: 768px) {
  .layer-2 {
    bottom: 18%; 
    display: none;
  }

  .bg {
    bottom: 22%;
    display: none;
  }
}

@media (max-width: 480px) {
  .layer-2 {
    bottom: 16%; 
    display: none;
  }

  .bg {
    bottom: 20%;
    display: none;
  }
}





.features {
  position: absolute;
  top: 72%;
  left: 50%;
  transform: translateX(-50%);
  min-height: 240px;
  padding: 58px 67px;
  border-radius: 5px;
  background: #ffffff;
  box-shadow: 9.211383px 16.617775px 40px 0 rgba(206, 206, 206, 0.46);
  width: 75%;
}


.bg-holder {
  margin: 0 auto;
  padding: 28px 0 27px;
  position: relative;
  border-radius: 50%;
  background: transparent;
  width: 90px;
  height: 90px;
  border: 2px solid #888888;
}

.icon-2 {
  display: block;
  margin: 0 auto;
  width: 34px;
  height: 33px;
}


.events {
  margin: 17px 0 0;
  font-size: 1rem;
  /* 16px / 16px = 1rem */
  letter-spacing: 0.02em;
  text-align: center;
}

/* Media Queries for Responsiveness */


/* For tablets and smaller devices */
@media (max-width: 992px) {

  .features {
    padding: 48px 55px;
    top: 65%;
  }

  .bg-holder {
    width: 80px;
    /* Reduce size for smaller screens */
    height: 80px;
    padding: 20px 0 19px;
    /* Adjust padding */
  }

  .icon-2 {
    width: 30px;
    /* Adjust icon size */
    height: 30px;
  }

  .events {
    font-size: 0.875rem;
    margin: 10px 0 10px;
    /* Reduce text size on smaller screens */
  }
}

/* For small devices like phones */
@media (max-width: 576px) {
  .features {
    padding: 30px 35px;
    top: 65%;
  }

  .bg-holder {
    width: 70px;
    /* Further reduce size for very small screens */
    height: 70px;
    padding: 18px 0 17px;
  }

  .icon-2 {
    width: 28px;
    /* Adjust icon size */
    height: 28px;
  }

  .events {
    font-size: 0.875rem;
    margin: 10px 0 10px;
    /* Adjust text size for very small screens */
  }
}


.col-11 {
  position: relative;
  width: 89px;
}

.bg-holder-2 {
  margin: 0 auto;
  padding: 27px 0;
  position: relative;
  border: 1px solid #e8e8e8;
  /*stroke*/
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}

.icon-2 {
  display: block;
  margin: 0 auto;
}

.calendar {
  margin: 18px 0 0;
  color: #888888;
  font-size: 1rem;
  /* 16px / 16px = 1rem */
  letter-spacing: 0.02em;
  text-align: center;
}

.col-12 {
  position: relative;
  width: 89px;
}

.bg-holder-3 {
  margin: 0 auto;
  padding: 27px 0;
  position: relative;
  border: 1px solid #e8e8e8;
  /*stroke*/
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}

.icon-3 {
  display: block;
  margin: 0 auto;
}

.events-2 {
  margin: 17px 0 0;
  color: #888888;
  font-size: 1rem;
  /* 16px / 16px = 1rem */
  letter-spacing: 0.02em;
  text-align: center;
}

.col-13 {
  position: relative;
  width: 89px;
}

.bg-2 {
  height: 89px;
  margin: 0 auto;
  width: 89px;
  border: 1px solid #e8e8e8;
  /*stroke*/
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}

.events-3 {
  margin: 17px 0 0;
  color: #888888;
  font-size: 1rem;
  /* 16px / 16px = 1rem */
  letter-spacing: 0.02em;
  text-align: center;
}

.col-14 {
  position: relative;
  width: 89px;
}

.bg-3 {
  height: 89px;
  margin: 0 auto;
  width: 89px;
  border: 1px solid #e8e8e8;
  /*stroke*/
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}

.events-4 {
  margin: 17px 0 0;
  color: #888888;
  font-size: 1rem;
  /* 16px / 16px = 1rem */
  letter-spacing: 0.02em;
  text-align: center;
}

.col-15 {
  position: relative;
  width: 89px;
}

.bg-4 {
  height: 89px;
  margin: 0 auto;
  width: 89px;
  border: 1px solid #e8e8e8;
  /*stroke*/
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}

.events-5 {
  margin: 17px 0 0;
  color: #888888;
  font-size: 1rem;
  /* 16px / 16px = 1rem */
  letter-spacing: 0.02em;
  text-align: center;
}

.about-us {
  margin: 0px auto 0;
  padding: 0 11px;
  position: relative; 
  max-width: 1224px;
  z-index: 301;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.about {
  flex: 1 1 500px;
  max-width: 600px;
}

.about-text {
  position: relative;
}

.text-5 {
  color: #333333;
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 50px;
}

.text-6 {
  margin-top: 15px;
  color: #3d3d3d;
  font-size: 1rem;
  line-height: 32px;
}

.readmore {
  margin-top: 40px;
  min-height: 60px;
  padding: 0 31px;
  width: 167px;
  border-radius: 30px;
  background: #ea5a21;
  color: #ffffff;
  font-size: 1.125rem;
  line-height: 60px;
  text-align: center;
  border: 0;
}

.readmore:disabled {
  background: #ea5a21;
  color: #ffffff;
  cursor: not-allowed;
  opacity: 0.7;
}


.addseva {
  min-height: 30px;
  #padding: 0 25px;
  width: 100px;
  border-radius: 30px;
  background: #4CAF50;
  color: #ffffff;
  font-size: 1rem;
  line-height: 50px;
  text-align: center;
  border: 0;
}

.btn-blue{
  background: #ea5a21 !important;
}

.img-bg {
  max-width: 100%;
  height: auto;
  flex: 1 1 400px;
}

/* Responsive: For tablets and below */
@media (max-width: 768px) {
  .text-5 {
    font-size: 2rem;
    line-height: 1.3;
    text-align: center;
  }

  .text-6 {
    font-size: 0.95rem;
    line-height: 28px;
    text-align: center;
  }

  .readmore {
    display: block;
    margin: 30px auto 0;
  }

  .about-us {
    flex-direction: column;
    text-align: center;
  }

  .about {
    max-width: 100%;
  }
}

.img-bg {
  float: left;
  margin: 18px 0 0;
  width: 571px;
}

.paralax {
  height: 3260px;
  margin: 168px auto 0;
  overflow: hidden;
  position: relative;
  width: 100%;
  /* 1920px / 1920px = 100% */
  z-index: 165;
}

.bg-5 {
  left: 50%;
  position: absolute;
  top: 2480px;
  width: 380px;
  margin-left: -600px;
}

.text-8 {
  left: 50%;
  min-height: 172px;
  padding: 33px 9px 30px;
  position: absolute;
  top: 2860px;
  width: 380px;
  background: #ffffff;
  -webkit-box-shadow: 5.332906px 9.620817px 40px 0 rgba(206, 206, 206, 0.46);
  -moz-box-shadow: 5.332906px 9.620817px 40px 0 rgba(206, 206, 206, 0.46);
  box-shadow: 5.332906px 9.620817px 40px 0 rgba(206, 206, 206, 0.46);
  /*drop shadow*/
  margin-left: -600px;
}

.text-9 {
  font-size: 1.125rem;
  /* 18px / 16px = 1.125rem */
  font-weight: bold;
  text-align: center;
}

.text-10 {
  margin: 9px 0 0;
  color: #595858;
  text-align: center;
}

.text-14 {
  left: 50%;
  position: absolute;
  top: 130px;
  width: 1162px;
  margin-left: -575px;
}

.text-15 {
  color: #ffffff;
  font-size: 4rem;
  font-weight: bold;
  text-align: center;
    padding-top: 36px;
}

.text-16 {
  color: #ffffff;
  font-size: 1.125rem;
  letter-spacing: 0.02em;
  text-align: center;
  margin: 20px auto 0 auto;
  max-width: 700px;
    line-height: 1.3;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .text-15 {
    font-size: 2.5rem;
  }

  .text-16 {
    font-size: 1rem;
    margin: 15px auto 0 auto;
    padding: 0 20px;
  }

  .learn-more {
    font-size: 1rem;
    padding: 10px 20px;
  }
.social-embed {
    flex: 1 1 100%;
    height: auto;
  }

  .youtube-embed .video-wrapper {
    padding-bottom: 56.25%;
  }
}


.learn-more {
  margin: 32px auto 0;
  min-height: 50px;
  padding: 0 34px;
  position: relative;
  right: 6px;
  width: 178px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
  background: #ea5a21;
  color: #ffffff;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 60px;
  text-align: center;
  border: 0;
}

.gallery {
  margin: 0px 0 0;
  color: #000000;
  font-size: 2.5rem;
  /* 40px / 16px = 2.5rem */
  font-weight: bold;
  text-align: center;
}

.title-2 {
  margin: 10px auto 0;
  position: relative;
  right: 6px;
  width: 116px;
}

.icon-6 {
  position: relative;
}

.icon-6>* {
  float: left;
  margin: 0 4.3px 0 0;
}

.icon-6>*:last-child {
  margin-right: 0 !important;
}

.line-2-2 {
  height: 1px;
  width: 43px;
  background: #ea5a21;
  margin-top: 10px !important;
}

.line-1-2 {
  height: 1px;
  width: 43px;
  background: #ea5a21;
  margin-top: 10px !important;
}

.bg-13 {
  display: block;
  margin: 28px auto 0;
  position: relative;
  right: 24.5px;
  width: 405px;
}

.text-18 {
  display: block;
  left: 7px;
  margin: 664px auto 0;
  position: relative;
}

.row-16 {
  display: table;
  margin: 486px auto 0;
  position: relative;
}

.row-16>* {
  float: left;
  margin: 0 103.3px 0 0;
}

.row-16>*:last-child {
  margin-right: 0 !important;
}

.text-19 {
  color: #ffffff;
  font-size: 2.1875rem;
  /* 35px / 16px = 2.1875rem */
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
  margin-top: 3px !important;
}

.dasasahitya {
  color: #ffffff;
  font-size: 2.1875rem;
  /* 35px / 16px = 2.1875rem */
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
}

.vyasasahitya {
  color: #ffffff;
  font-size: 2.1875rem;
  /* 35px / 16px = 2.1875rem */
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
}

.publications {
  display: block;
  margin: 193px auto 0;
  position: relative;
  right: 6.5px;
}

.row-20 {
  margin: 23px 433px 0;
  position: relative;
}

.line-2-copy {
  float: left;
  height: 1px;
  margin: 10px 0 0;
  width: 113px;
  background: #ea5a21;
}

.icon-copy {
  float: left;
  margin: 0 0 0 22px;
}

.line-1-copy {
  float: left;
  height: 1px;
  margin: 10px 0 0 17px;
  width: 111px;
  background: #ea5a21;
}

.blog-2 {
  margin: 44px auto 0;
  position: relative;
  width: 380px;
}

.bg-14 {
  display: block;
  position: relative;
  width: 380px;
}

.text-20 {
  margin: -30px 0 0;
  min-height: 172px;
  padding: 33px 10px 30px;
  position: relative;
  background: #ffffff;
  -webkit-box-shadow: 5.332906px 9.620817px 40px 0 rgba(206, 206, 206, 0.46);
  -moz-box-shadow: 5.332906px 9.620817px 40px 0 rgba(206, 206, 206, 0.46);
  box-shadow: 5.332906px 9.620817px 40px 0 rgba(206, 206, 206, 0.46);
  /*drop shadow*/
}

.text-21 {
  font-size: 1.125rem;
  /* 18px / 16px = 1.125rem */
  font-weight: bold;
  text-align: center;
}

.text-22 {
  margin: 9px 0 0;
  color: #595858;
  text-align: center;
}

.arrrow {
  margin: 48px 490px 0;
  position: relative;
}

.arrrow>* {
  float: left;
  margin: 0 10px 0 0;
}

.arrrow>*:last-child {
  margin-right: 0 !important;
}

.arrow-1 {
  height: 4px;
  width: 50px;
  background: #ea5a21;
}

.arrow-2 {
  height: 2px;
  width: 50px;
  background: #d6d6d6;
  margin-top: 1px !important;
}

.arrow-3 {
  height: 2px;
  width: 50px;
  background: #d6d6d6;
  margin-top: 1px !important;
}

.text-23 {
  margin: 97px 389px 0;
  color: #ffffff;
  font-size: 2.5rem;
  /* 40px / 16px = 2.5rem */
  font-weight: bold;
  text-align: left;
}

.row-17 {
  margin: 17px 385px 0;
  position: relative;
}

.line-2-copy-2 {
  float: left;
  height: 1px;
  margin: 10px 0 0;
  width: 113px;
  background: #ea5a21;
}

.icon-copy-2 {
  float: left;
  margin: 0 0 0 22px;
}

.line-1-copy-2 {
  float: left;
  height: 1px;
  margin: 10px 0 0 17px;
  width: 111px;
  background: #ea5a21;
}

.bg-6 {
  left: 50%;
  position: absolute;
  top: 2480px;
  width: 380px;
  margin-left: 220px;
}

.text-11 {
  left: 50%;
  min-height: 172px;
  padding: 33px 10px 30px;
  position: absolute;
  top: 2860px;
  width: 380px;
  background: #ffffff;
  -webkit-box-shadow: 5.332906px 9.620817px 40px 0 rgba(206, 206, 206, 0.46);
  -moz-box-shadow: 5.332906px 9.620817px 40px 0 rgba(206, 206, 206, 0.46);
  box-shadow: 5.332906px 9.620817px 40px 0 rgba(206, 206, 206, 0.46);
  /*drop shadow*/
  margin-left: 220px;
}

.text-12 {
  font-size: 1.125rem;
  /* 18px / 16px = 1.125rem */
  font-weight: bold;
  text-align: center;
}

.text-13 {
  margin: 9px 0 0;
  color: #595858;
  text-align: center;
}

.plan-price {
  left: 0;
  padding: 117px 0 97px;
  position: absolute;
  top: 1536px;
  width: 100%;
  /* 1920px / 1920px = 100% */
  background: #f3f4f8;
}

.l-constrained-3 {
  margin: 0 auto;
  padding: 0 82px;
  position: relative;
  width: 1224px;
}

.title {
  left: 14px;
  margin: 0 auto;
  position: relative;
  width: 284px;
}

.icon-4 {
  position: relative;
}

.line-2 {
  float: left;
  height: 1px;
  margin: 10px 0 0;
  width: 113px;
  background: #ea5a21;
}

.icon-5 {
  float: left;
  margin: 0 0 0 22px;
}

.line-1 {
  float: left;
  height: 1px;
  margin: 10px 0 0 17px;
  width: 111px;
  background: #ea5a21;
}

.oil-massage {
  margin: 45px 0 0;
  position: relative;
}

.oil-massage>* {
  float: left;
  margin: 0 43.3px 0 0;
}

.oil-massage>*:last-child {
  margin-right: 0 !important;
}

.rectangle-19-copy {
  width: 324px;
  -webkit-border-radius: 0 44px;
  -moz-border-radius: 0 44px;
  border-radius: 0 44px;
  -webkit-box-shadow: 1.454429px 2.623859px 7px 0 rgba(0, 0, 0, 0.28);
  -moz-box-shadow: 1.454429px 2.623859px 7px 0 rgba(0, 0, 0, 0.28);
  box-shadow: 1.454429px 2.623859px 7px 0 rgba(0, 0, 0, 0.28);
  /*drop shadow*/
}

.rectangle-19 {
  width: 324px;
  -webkit-border-radius: 0 44px;
  -moz-border-radius: 0 44px;
  border-radius: 0 44px;
  -webkit-box-shadow: 1.454429px 2.623859px 7px 0 rgba(0, 0, 0, 0.28);
  -moz-box-shadow: 1.454429px 2.623859px 7px 0 rgba(0, 0, 0, 0.28);
  box-shadow: 1.454429px 2.623859px 7px 0 rgba(0, 0, 0, 0.28);
  /*drop shadow*/
}

.rectangle-19-copy-2 {
  width: 324px;
  -webkit-border-radius: 0 44px;
  -moz-border-radius: 0 44px;
  border-radius: 0 44px;
  -webkit-box-shadow: 1.454429px 2.623859px 7px 0 rgba(0, 0, 0, 0.28);
  -moz-box-shadow: 1.454429px 2.623859px 7px 0 rgba(0, 0, 0, 0.28);
  box-shadow: 1.454429px 2.623859px 7px 0 rgba(0, 0, 0, 0.28);
  /*drop shadow*/
}

.bg-7 {
  left: 50%;
  position: absolute;
  top: 707px;
  width: 370px;
  margin-left: -600px;
}

.bg-8 {
  left: 50%;
  position: absolute;
  top: 1183px;
  width: 675px;
  margin-left: -600px;
}

.bg-9 {
  left: 50%;
  position: absolute;
  top: 1183px;
  width: 516px;
  margin-left: 84px;
}

.bg-10 {
  left: 50%;
  position: absolute;
  top: 707px;
  width: 407px;
  margin-left: 193px;
}

.bg-11 {
  left: 50%;
  position: absolute;
  top: 945px;
  width: 821px;
  margin-left: -221px;
}

.bg-12 {
  left: 0;
  max-width: 1920px;
  position: absolute;
  top: 0;
  width: 100%;
}

.bg-holder-4 {
  margin: -113px auto 0;
  overflow: hidden;
  padding: 191px 0 210px;
  position: relative;
  z-index: 125;
  background: #222222;
}

.layer-358 {
  display: block;
  margin: 0 auto;
  position: relative;
  right: 15px;
}

.testimoniyal {
  height: auto;
  margin: -108px auto 0;
  position: relative;
  width: 100%;
  z-index: 74;
  min-height: 200px;
}

.team-1 {
  left: 50%;
  position: absolute;
  top: 527px;
  width: 305px;
  margin-left: -550px;
}

.bg-15 {
  display: block;
  margin: 0 auto;
  position: relative;
  right: 13.5px;
  width: 222px;
}

.text-24 {
  position: relative;
}

.text-25 {
	font-size: 1.0rem;
	font-weight: bold;
	line-height: 1.2;
	text-align: center;
  color: #ffffff;
}

.bg-holder-5 {
  width: 100%;
  max-width: 380px;
  margin: 0 auto 30px;
  padding: 30px 20px;
background: url(/images/box-bg.jpg) no-repeat;
  border-radius: 10px;
  box-shadow: 4.8px 8.7px 59px 0 rgba(199, 199, 199, 0.2);
  text-align: center;
  transition: all 0.3s ease;
  min-height: 200px;
}

.bg-holder-5:hover {
  transform: scale(1.03);
  box-shadow: 4.8px 8.7px 59px 0 rgba(199, 199, 199, 0.46);
}


.text-27 {
  display: table;
  margin: 0 auto;
  position: relative;
}

.kanakabisheka {
  font-size: 1.625rem;
  /* 26px / 16px = 1.625rem */
  font-weight: bold;
  text-align: center;
}

.text-28 {
  margin: 59px 0 0;
  width: 281px;
  color: #999999;
  font-weight: 500;
  line-height: 24px;
  text-align: center;
}

.bg-2-2 {
  left: 50%;
  position: absolute;
  top: 527px;
  width: 222px;
  margin-left: -112px;
}

.team-3 {
  left: 50%;
  position: absolute;
  top: 527px;
  width: 281px;
  margin-left: 272px;
}

.bg-16 {
  display: block;
  margin: 0 auto;
  width: 222px;
}

.text-29 {
  position: relative;
}

.text-30 {
  font-size: 1.625rem;
  /* 26px / 16px = 1.625rem */
  font-weight: bold;
  line-height: 1.2;
  text-align: center;
}

.text-31 {
  margin: 34px auto 0;
  width: 281px;
  color: #999999;
  font-weight: 500;
  line-height: 24px;
  text-align: center;
}

.text-32 {
  left: 50%;
  position: absolute;
  top: 396px;
  color: #002222;
  font-size: 2.1875rem;
  /* 35px / 16px = 2.1875rem */
  font-weight: bold;
  line-height: 37px;
  margin-left: -103px;
}

.arrrow-2 {
  left: 50%;
  position: absolute;
  top: 274px;
  width: 182px;
  margin-left: -74px;
}

.row-5 {
  position: relative;
}

.row-5>* {
  float: left;
  margin: 0 10px 0 0;
}

.row-5>*:last-child {
  margin-right: 0 !important;
}

.arrow-1-2 {
  height: 4px;
  width: 50px;
  background: #ea5a21;
}

.arrow-2-2 {
  height: 2px;
  width: 50px;
  background: #d6d6d6;
  margin-top: 1px !important;
}

.arrow-3-2 {
  height: 2px;
  width: 50px;
  background: #d6d6d6;
  margin-top: 1px !important;
}

.icon-8 {
  margin: 178px 16px 0;
  position: relative;
}

.icon-8>* {
  float: left;
  margin: 0 4.3px 0 0;
}

.icon-8>*:last-child {
  margin-right: 0 !important;
}

.line-2-3 {
  height: 1px;
  width: 43px;
  background: #fb5ebf;
  margin-top: 10px !important;
}

.line-1-3 {
  height: 1px;
  width: 43px;
  background: #ea5a21;
  margin-top: 10px !important;
}

.row-6 {
  margin: 597px 0 0 7px;
  position: relative;
}

.arrow-1-copy {
  float: left;
  height: 4px;
  width: 50px;
  background: #ea5a21;
}

.arrow-2-copy {
  float: left;
  height: 2px;
  margin: 1px 0 0 10px;
  width: 50px;
  background: #d6d6d6;
}

.arrow-2-copy-2 {
  float: left;
  height: 2px;
  margin: 1px 0 0 15px;
  width: 50px;
  background: #d6d6d6;
}

.bg-holder-6 {
  left: 50%;
  padding: 46px 0 94px;
  position: absolute;
  top: 0;
  width: 1200px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  background: #e9f2f6;
  margin-left: -588px;
}

.testimonyal {
  display: table;
  margin: 0 auto;
  position: relative;
}

.profile {
  margin: 0 280px 0 313px;
  position: relative;
  font-size: 1.5rem;
  /* 24px / 16px = 1.5rem */
  font-weight: bold;
}

.star {
  display: table;
  margin: 29px auto 0;
  position: relative;
}

.star>* {
  float: left;
  margin: 0 10.05px 0 0;
}

.star>*:last-child {
  margin-right: 0 !important;
}

.text-34 {
  margin: 35px 0 0;
  font-size: 1rem;
  /* 16px / 16px = 1rem */
  font-style: italic;
  letter-spacing: 0.02em;
  line-height: 28px;
  text-align: center;
}

.footer {
  margin: 50px 0 0;
  padding: 27px 0 50px;
  position: relative;
  z-index: 2;
  background: #222222;
}

.l-constrained {
  margin: 0 auto;
  padding: 0 11px;
  position: relative;
  width: 1224px;
}

.newsletter {
  margin: 0 0 0 1px;
  position: relative;
  width: 1200px;
}

.row-7 {
  margin: 0 auto;
  position: relative;
  right: 9.5px;
  width: 1087px;
}

.text-35 {
  float: left;
  margin: 18px 0 0;
  width: 358px;
  color: #ffffff;
  font-size: 1.5rem;
  /* 24px / 16px = 1.5rem */
  letter-spacing: 0.02em;
  text-align: center;
}

.news-letter {
  float: right;
  position: relative;
  width: 690px;
}

.mail-bg-holder {
  float: left;
  min-height: 60px;
  padding: 0 22px;
  width: 468px;
  background: rgba(255, 255, 255, 0.1);
  color: #a8a8a8;
  letter-spacing: 0.02em;
  line-height: 60px;
}

.get-start {
  float: right;
  min-height: 60px;
  width: 210px;
  background: #ea5a21;
  color: #ffffff;
  letter-spacing: 0.02em;
  line-height: 60px;
  text-align: center;
}

.line {
  height: 1px;
  margin: 50px 0 0;
  width: 1200px;
  background: rgba(255, 255, 255, 0.1);
}

.row-9 {
  margin: 47px 1px 0;
  position: relative;
}

.col-8 {
  float: left;
  margin: 74px 0 0;
  position: relative;
  width: 12px;
}

.location {
  display: block;
  margin: 0 auto;
}

.phone-call {
  display: block;
  margin: 105px 0 0;
}

.email {
  display: block;
  margin: 19px 0 0;
}


.text-38 {
  width: 289px;
  color: #888888;
  line-height: 28px;
}

.text-39 {
  margin: 12px 0 0;
  color: #888888;
}

.text-40 {
  margin: 12px 0 0;
  color: #888888;
}

.col-25 {
  float: left;
  margin: 1px 0 0 243px;
  position: relative;
  width: 130px;
}

.pages {
  color: #ffffff;
  font-size: 1.125rem;
  /* 18px / 16px = 1.125rem */
  font-weight: 500;
}

.text-41 {
  margin: 26px 0 0 2px;
  color: #888888;
  font-weight: 500;
  line-height: 1.2;
}

.col-26 {
  float: left;
  margin: 0 0 0 307px;
  position: relative;
  width: 192px;
}

.instagram {
  position: relative;
  color: #ffffff;
  font-size: 1.125rem;
  /* 18px / 16px = 1.125rem */
  font-weight: 500;
}

.follows-us {
  margin: 85px 0 0 1px;
  position: relative;
}

.follows-us>* {
  float: left;
  margin: 0 10.05px 0 0;
}

.follows-us>*:last-child {
  margin-right: 0 !important;
}

.fb {
  padding: 9px 0 8px;
  position: relative;
  width: 30px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  background: #ea5a21;
}

.text-43 {
  display: block;
  margin: 0 auto;
}

.twtr {
  padding: 9px 0;
  position: relative;
  width: 30px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  background: #ffffff;
}

.text-44 {
  display: block;
  margin: 0 auto;
}

.g {
  padding: 8px 6px 9px;
  position: relative;
  width: 30px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  background: #ffffff;
}

.text-45 {
  display: block;
  margin: 0 auto;
  position: relative;
  right: 2.5px;
}

.insta {
  padding: 9px 0;
  position: relative;
  width: 30px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  background: #ffffff;
}

.text-46 {
  display: block;
  margin: 0 auto;
}

.bg-17 {
  height: 30px;
  width: 30px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  background: #ffffff;
}

.link {
  margin: 53px 0 0;
  position: relative;
}

.line-3 {
  height: 1px;
  margin: 0 0 0 1px;
  position: relative;
  width: 1200px;
  background: rgba(255, 255, 255, 0.1);
}

.row-8 {
  margin: 47px 0 0;
  position: relative;
}

.text-47 {
  float: left;
  margin: 3px 752px 0 0;
  width: 214px;
  color: #999999;
}

.text-48 {
  float: left;
  width: 92px;
  color: #999999;
}

.text-style-3 {
  line-height: 24px;
}

.text-style {
  color: #ea5a21;
  font-size: 1.875rem;
  /* 30px / 16px = 1.875rem */
  font-weight: normal;
}

.text-style-4 {
  color: #ea5a21;
  line-height: 28px;
  text-decoration: underline;
}

.colorea5a21 {
  color: #ea5a21;
}

.text-style-2 {
  display: block;
  line-height: 12px;
  margin-bottom: 0;
}

.text-style-5 {
  line-height: 16px;
}


/* Mobile Responsive */


.menu-toggle {
  display: none;
  background: none;
  border: 2px solid #444;
  padding: 6px 12px;
  font-size: 1rem;
  border-radius: 4px;
}

.header-top {
  align-items: center;
}

/* Mobile styles */
@media (max-width: 767px) {

  .nav.show {
    display: block;
  }

  .nav-list {
    flex-direction: column;
    text-align: center;
  }

  .menu-toggle {
    display: inline-block;
  }

  .header-top {
    flex-direction: column;
    align-items: flex-start !important;
  }

  .ellipse-1 {
    width: 50px;
    height: 50px;
  }

  .text {
    font-size: 0.9rem;
  }

  .text-2 {
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
  }
}

.slider {
  position: relative;
  overflow: hidden;
}

.slide {
  animation: fade 1s ease-in-out;
}

.slide.active {
  display: flex;
}

.w-60{
  width: 60%;
}

.w-40{
  width: 40%;
}

.slider-nav {
  position: absolute;
  width: 100%;
  top: 50%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  padding: 0 10px;
}

.arrow {
  width: 24px;
  cursor: pointer;
  filter: brightness(0) invert(1);
}

@keyframes fade {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.magazine-section {
  height: 310px;
  overflow: hidden;
  margin-top: 120px; 
}

.object-fit-cover {
  object-fit: cover;
}

.magazine-section .content {
  z-index: 2;
}

.magazine-section img {
  z-index: 1;
}

.masonry-grid {
  max-width: 1200px;
  height: 1150px;
  column-count: 4;
  column-gap: 10px;
  overflow: hidden; /* Prevent overflow */
  position: relative;
}

.masonry-item {
  width: 100%;
  display: inline-block;
  margin-bottom: 10px;
  break-inside: avoid;
  object-fit: cover;
  max-height: 100%;
}




/* Tablet: 2 columns */
@media (max-width: 992px) {
  .masonry-grid {
    column-count: 2;
  }
}

/* Mobile: 1 column */
@media (max-width: 576px) {
  .masonry-grid {
    column-count: 1;
  }
}

.oil-massage .image-container {
  position: relative;
  display: inline-block;
}

.oil-massage img {
  width: 100%;
  /* Adjust as per your image container size */
  height: auto;
}

.overlay-text {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 32px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  text-align: center;
  bottom: 10%;
  text-transform: uppercase;
  white-space: nowrap;
}

#Banner-Container {
  background: #fff;
  width: 100%;
  margin: 0px;
  padding: 0px;
  position: relative;
}

#Banner-Container #Banner {
  height: 750px;
  max-width: 1170px;
  min-width: 300px;
  margin: 0px auto;
  padding: 0px;
  position: relative;
}

.container-online-seva {
  position: relative;
  z-index: 75;
  margin-top: 0px;
}


/* Magazine Section */
.magazine-section {
	padding: 36px 0;
	background: url('/images/box-bg.jpg') repeat;
	background-size: cover;
	color: #ffffff;
	border-radius: 70px 0px 70px 0px;
}

/* Logo Styling */
.logo {
    max-width: 150px;
    margin-bottom: 15px;
}

/* Text Adjustments */
.fw-bold {
    font-weight: bold;
}

.fs-5 {
	font-size: 1.25rem;
	padding: 15px;
}

.fs-6 {
	font-size: 1rem;
	line-height: 1.6;
}

/* Responsive Styling */
@media (max-width: 768px) {
    .magazine-section {
        text-align: center;
        padding: 30px 15px;
    }

    .logo {
        max-width: 120px;
    }
}


.container-online-seva {
  background-color: #f9f9f9;
  border-radius: 12px;
}

.gallery {
  color: #2c3e50;
  font-size: 2.5rem;
  font-weight: bold;
}

.title-2 .line-2-2,
.title-2 .line-1-2 {
  height: 2px;
  width: 40px;
  background-color: #555;
}

.seva-card {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.seva-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.seva-image {
 max-height: 180px;
  width: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: 8px;
  background-color: #f9f9f9;
}

.seva-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #222;
}

.seva-description {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 20px;
  padding: 0 10px;
}

.btn-donate {
  background-color: #ea5a21;
  color: #fff;
  font-weight: 500;
  border-radius: 30px;
  padding: 8px 20px;
  transition: background-color 0.3s ease;
  text-transform: uppercase;
  font-size: 0.9rem;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
}

.btn-donate:hover {
  background-color: #bb4719;
  color: #fff !important;
}


/* Live Darshana Section */
.gallery {
  color: #000000;
  font-size: 2.5rem;
  font-weight: bold;
}

.title-2 .line-2-2,
.title-2 .line-1-2 {
  height: 2px;
  width: 40px;
  background-color: #ffffff;
}

.videoWrapper {
  position: relative;
  width: 100%;
  max-width: 900px;
  padding-top: 56.25%;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.1);
}

.videoWrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 12px;
}

.live-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: red;
  color: white;
  padding: 5px 10px;
  font-size: 0.75rem;
  font-weight: bold;
  border-radius: 4px;
  z-index: 10;
  box-shadow: 0 0 5px rgba(0,0,0,0.4);
}

/* Gallery section */
.masonry-grid {
  column-count: 4;
  column-gap: 15px;
}

.masonry-grid a.masonry-item {
  display: inline-block;
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
}

.masonry-grid a.masonry-item:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.masonry-grid a.masonry-item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}
.masonry-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 6px;
  display: block;
  margin-bottom: 10px;
}


/*Sahitya Section*/
.sahitya-img {
height: 230px;
  width: 100%;
  object-fit: contain; 
  border-radius: 8px;
  transition: transform 0.3s ease;
  background: #fff;
}

.sahitya-card:hover .sahitya-img {
  transform: scale(1.03);
}

.sahitya-card {
  transition: box-shadow 0.3s ease;
}

.sahitya-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}
.sahitya-card h5 {
  margin-top: 10px;
  font-size: 1.1rem;
  color: #000000;
}

.sahitya-card p {
  margin: 8px 0 16px;
  font-size: 0.95rem;
  line-height: 1.5;
  padding: 0 10px;
}

.sahitya-card .btn {
  margin-bottom: 10px;
}


/* MAGAZINE & INSTITUTE SECTION */
.magazine-institute-section .gallery {
  font-size: 2.2rem;
  font-weight: bold;
}

.title-2 {
  margin: 10px auto 0;
  width: 120px;
}

.icon-6 .line-1-2,
.icon-6 .line-2-2 {
  width: 40px;
  height: 2px;
  background-color: #000;
}

.magazine-institute-section h5 {
  font-size: 1.25rem;
}

.magazine-institute-section p {
  line-height: 1.6;
  font-size: 0.95rem;
}

.magazine-institute-section .btn {
  font-size: 0.875rem;
  padding: 6px 16px;
}

.logo-wrapper {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 6px 10px;
  max-width: fit-content;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .magazine-institute-section .logo-wrapper img {
    max-height: 50px;
  }

  .magazine-institute-section .gallery {
    font-size: 1.8rem;
  }
}


/* Responsive tweaks */
@media (max-width: 768px) {
  .magazine-institute-section .logo-wrapper img {
    max-height: 50px;
  }

  .magazine-institute-section .gallery {
    font-size: 1.8rem;
  }
}

/*Publication section*/
.publications-section .gallery {
  font-size: 2.2rem;
  font-weight: bold;
}

.title-2 {
  margin: 10px auto 0;
  width: 120px;
}

.icon-6 .line-1-2,
.icon-6 .line-2-2 {
  width: 40px;
  height: 2px;
  background-color: #000;
}

.publication-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.publication-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.publication-img {
  height: 220px;
  object-fit: cover;
}

/* Responsive fix */
@media (max-width: 768px) {
  .publication-img {
    height: 180px;
  }

  .gallery {
    font-size: 1.8rem;
  }
}



/* Make sure entire site is hidden behind the preloader */
body.loading {
  overflow: hidden;
  height: 100vh;
}

/* Preloader full-screen overlay */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999999;
  transition: opacity 1s ease;
}

/* Content inside the preloader */
.preloader-content {
  text-align: center;
}

.preloader-image {
  width: 150px;
  animation: glow 2s infinite ease-in-out;
}

.spinner {
  margin-top: 20px;
  width: 40px;
  height: 40px;
  border: 4px solid #ccc;
  border-top-color: #996515;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

/* Animations */
@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes glow {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.4); }
}

/* Hide preloader with animation */
#preloader.fade-out {
  opacity: 0;
  pointer-events: none;
}


/*Responsive css vs*/

.text-15 {line-height: 1;}

.wrapper-15 {height: 730px;}
.bg {bottom: 17%;}
.layer-2 {bottom: 13%;}



@media screen and (max-width : 1192px) {
    
    .design-wrapper {margin-top: 0px;display: none;}
    
.wrapper-15 {height: 660px;}
    
    .nav-list li a, .nav-list>li>a:hover {padding: 5px 8px;}
    
    .bg-holder-6 {position: unset;width: auto;margin-left: 0px;}
    .text-34 {padding: 0 10px;}
    .profile {margin: 0px auto;text-align: center;}
    .container-online-seva {margin-top: 0px;}
    
    
    .l-constrained {width: 100%;}
    .newsletter {width: 500px;margin: 0 auto;}
    .row-7 {width: inherit;}
    .news-letter {float: none;width: 100%;display: flex;justify-content: center;align-items: center;flex-direction: column;}
    .text-35 {float: none;width: auto;clear: both;}
    .mail-bg-holder {float: none;clear: both;width: 380px;margin: 18px 0;min-height: 40px;}
    .get-start {float: none;min-height: 40px;line-height: 40px;}
    
    .line, .line-3 {width: 100%;}
    
    .text-25, .kanakabisheka, .text-30 {font-size: 1.4rem;text-align: center;}
    .text-25 br{display: none;}

  
    
    
}

@media screen and (max-width : 1030px) {
    
    .l-constrained-2 {padding-left: 5px;padding-right: 5px;}
    .nav-list li {margin: 0 4px 0 0;}
    .nav-list li a, .nav-list>li>a:hover {padding: 5px 5px;}
    
    .overlay-text {font-size: 24px;}
    
    .about {flex: unset;}
    .img-bg {float: none;width: auto;flex: unset;}
    
}

@media screen and (max-width : 992px) {
    .masonry-grid {height: auto;}
    
    .container.magazine-section {max-width: 100%;}

    .magazine-section {border-radius: 30px 0px;height: auto;background-position: center;
/*        background: #F46924;*/
    }
    
}

@media screen and (max-width : 900px) {
    .nav-list li {font-size: 13px;}

    
    .text-15 {padding-top: 0px;font-size: 2.5rem;}
    
    .blog-2 {width: auto;}
    
    .mb-5, .my-5 {margin-bottom: 0rem!important;}

    .magazine-section {margin-top: 30px;}
    
}

@media screen and (max-width : 767px) {
    
    .pt-5, .py-5 {padding-top: 1rem!important;}
    .col-md-4 {display: flex;justify-content: center;align-items: center;flex-direction: column;text-align: center;padding: 16px 0;}
    img.me-2.loc{display: none;}
    
    .text-41 {margin: 8px 0 0 2px;}
    .follows-us {margin: 30px 0 0 1px;}
    .link {margin: 30px 0 0;}
    .text-47 {float: none;margin: 30px auto;text-align: center;}
    
    #Banner-Container #Banner{height: auto !important;}
    .sahitya-img {
    height: 180px;
  }
}


@media screen and (max-width : 640px) {
  
    
    .bg-holder-5 {min-width: 310px;}
    
}
@media screen and (max-width : 500px) {
    .wrapper-15 {height: 620px;}
    .about {flex: 1 1 390px;}
    .masonry-grid {height: 440px;}
    
    .magazine-section {margin-top: 30px;}
    .mb-5{margin-bottom: 0rem!important;}
    .pb-5, .py-5 {padding-bottom: 0.4rem!important;}
    .pt-5, .py-5 {padding-top: 2rem!important;}
    
    .bg-holder-6 {width: 100%;padding: 40px 0;}
    .testimonyal {display: block;margin: 0px auto;width: 360px;}
    
    .newsletter {width: 380px;}
    .mail-bg-holder {width: 310px;margin: 10px 0;min-height: 30px;}
    
    .text-15 {font-size: 1.8rem;}
    .text-16 {font-size: 0.9rem;margin: 8px auto 0;padding: 0 6px;}
    
    .social-section{padding: 20px;}
    .pb-5, .py-5 {padding-bottom: 1rem!important;}
    .mb-5, .my-5 {margin-bottom: 1rem!important;}
    .blog-2 {margin: 10px auto 0;}
    
    
}

@media screen and (max-width : 360px) {
    
    .testimonyal {width: 310px;}

}


 
