* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Ubuntu', sans-serif;
    
    line-height: 1.6;
    background: url('https://source.unsplash.com/1600x900/?sunrise,meditation') no-repeat center center/cover;
    height: 100vh;
  }
  p{
    color: #777777 !important;
    font-weight: 400;
    text-align: justify;
  }
  
  /* Navbar styles */
  /* .navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
  }
  
  .logo {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  }
  
  .nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
  }
  
  .nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
  }
  
  .nav-links a:hover {
    color: #ffd700;
  }
  
  Dropdown menu 
  .services-dropdown {
    position: relative;
  }
  
  .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(255, 255, 255, 0.95);
    min-width: 200px;
    padding: 10px 0;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
  }
  
  .services-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  
  .dropdown-menu li {
    list-style: none;
  }
  
  .dropdown-menu a {
    color: #333;
    padding: 8px 20px;
    display: block;
  }
  
  .dropdown-menu a:hover {
    background: #f5f5f5;
    color: #000;
  } */

  /* Header */
header {
    position: absolute;
    width: 100%;
    top: 0;
    z-index: 999;
  }
  
  /* Top bar */
  .top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
    background: rgba(0, 0, 0, 0.3);
    color: white;
    border-bottom: 2px solid red !important;
  }
  .top-bar{
    border-bottom: 2px solid red !important;
  }
  
  .logo {
    font-weight: bold;
    font-size: 24px;
    letter-spacing: 2px;
  }
  .logo img {
    background-size: cover !important;
  }
  .top-right {
    display: flex;
    align-items: center;
    gap: 20px;
  }
  
  .language, .search-icon {
    cursor: pointer;
  }
  .search-icon a{
    text-decoration: none;
    color: white !important;
  }
  /* Navigation */
  .navbar {
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(4px);
  }
  
  .nav-menu {
    display: flex;
    list-style: none;
    justify-content: center;
    padding: 0px 0;
  }
  
  .nav-menu li {
    position: relative;
    padding: 8px 20px;
    color: white;
    cursor: pointer;
  }
  
  .nav-menu li a {
    color: white;
    text-decoration: none;
    font-size: 15px;
    font-family: 'Ubuntu', sans-serif;
  }
  .nav-menu li a:hover{
    color: #ffe066;
  }
  .nav-menu li a.active {
    color: #ffe066;
    font-weight: 500;
    font-size: 15px;
    font-family: 'Ubuntu', sans-serif;
  }
  
  /* Dropdown */
  .dropdown-menu {
    display: none;
    position: absolute;
    background-color: #6a6a6a;
    top: 100%;
    left: 0;
    min-width: 180px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
    border-radius: 0px !important;
    color: black;
    z-index: 1000;
    list-style: none;
    font-size: 15px;
  }
  .dropdown{
    font-family: 'Ubuntu', sans-serif;
    font-size: 15px;
  }
  .dropdown:hover{
color: #ffe066;
  }
  
  .dropdown-menu li {
    padding: 10px;
    cursor: pointer;
    white-space: nowrap;
  }
  .dropdown-menu>li>a:hover, .dropdown-menu>li>a:focus {
    background-color: transparent !important;
    color: #000 !important;
  }
  .dropdown:hover .dropdown-menu {
    display: block;
    transition: all 0.6s ease;
  }
  
  .dropdown-menu li:hover {
    background-color: #f2f2f285;
    text-decoration: none;
    list-style: none;
  }

  @media (max-width: 769px) {
    .top-bar{
      display: none !important;
    }
    .navbar{
      display: none !important;
    }
  }
 
  /* 2nd Hero Slider Section */
  .hero-slider {
    position: relative;
    height: 500px;
    overflow: hidden;
  }
  
  .slider-container {
    position: relative;
    height: 100%;
  }
  
  .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    background-size: cover;
    background-position: center;
  }
  
  .slide:nth-child(1) {
    background-image: url('../images/slidernext.webp');
  }
  
  .slide:nth-child(2) {
    background-image: url('../images/slidernew2.webp');
  }
  
  .slide:nth-child(3) {
    background-image: url('../images/slidernew3.webp');
  }
  
  .slide.active {
    opacity: 1;
  }
  
  .slide-content {
    position: absolute;
    left: 150px;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    max-width: 600px;
    font-family: 'Ubuntu', sans-serif;
    /* text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5); */
  }
  
  .slide-content h1 {
    font-size: 40px;
    margin-bottom: 20px;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 400 !important;
  }
  
  .slide-content p {
    font-size: 20px;
    margin-bottom: 30px;
    font-family: 'Ubuntu', sans-serif;
    color: #fff !important;

  }
  
  .cta-button {
    padding: 12px 30px;
    background: #ffe066;
    border: none;
  text-decoration: none !important;
 
    border-radius: 25px;
    color: #333;
    font-size: 16px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  }
  
  /* Slider Navigation */
  .slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(4, 4, 4, 0.53);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 0%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    transition: background 0.3s ease;
  }
  
  .slider-nav:hover {
    background: rgba(255, 255, 255, 0.4);
  }
  
  .prev {
    left: 0px;
  }
  
  .next {
    right: 0px;
  }
  /* responsive slider */
  @media (max-width: 769px) {
    .slide-content{
      left: 50px;
      top: 40%;
      
    }
    .slide-content h1 {
      font-size: 32px;
      font-weight: 500;
    }
  }

  /* 2nd section chnage css */
  .services-section {
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 30px;
  }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
  }

  .service-card {
    /*background-color: #fff;*/
    /*border-radius: 10px;*/
    overflow: hidden;
    /*box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);*/
    transition: transform 0.3s;
  }

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

  .service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }

  .service-card .content {
    padding: 20px;
  }

  .service-card h3 {
    color: #333;
    font-size: 20px;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 500;
    margin-bottom: 10px;
  }

  .service-card p {
    font-size: 14px;
    color: #444;
    margin-bottom: 15px;
  }

  .service-card a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 13px;
    text-transform: capitalize;
  }

  @media screen and (max-width: 768px) {
    .services-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media screen and (max-width: 480px) {
    .services-grid {
      grid-template-columns: 1fr;
      /* grid-template-columns: repeat(2, 1fr); */
    }
  }
  
  /*2nd section  change css end */
  

  /* Cards Section */
  .cards-section {
    padding: 20px 0;
    background-color: #f8f9fa;
  }

  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }

  .card-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
  }

  .card {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }

  .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    background-color: #ffd700;
    /* background-color: rgba(255, 215, 0, 0.1); Light gold background on hover */
  }

  .card-image {
    width: 190px;
    height: 190px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    /* border: 3px solid #ffd700; */
  }

  .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .card h3 {
    color: #333;
    font-size: 20px;
    font-weight: 500;
    font-family: 'Ubuntu', sans-serif;
    margin-bottom: 15px;
  }

  .card p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
  }

  /* Highlighted card */
  .card.highlighted {
    /* background-color: #ffd700; */
    border: 2px solid #fff9e6;
  }

  /* Responsive Design */
  @media screen and (max-width: 1200px) {
    .card-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media screen and (max-width: 768px) {
    .card-grid {
      grid-template-columns: 1fr;
    }
    
    .card {
      max-width: 400px;
      margin: 0 auto;
    }
  }
/* Content Section */
.content-section {
  background-color: #ffe066; 
  padding: 60px 20px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  /* background-color: #efc75e; */
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

.image-container img {
  width: 350px;
  height: auto;
  border-radius: 8px;
}

.content {
  max-width: 600px;
}

.content h2 {
  font-size: 26px;
  color: #222;
  margin-bottom: 20px;
  font-weight: 500;
  font-family: 'Ubuntu', sans-serif;
}

.content p {
  font-size: 15px;
  color: #4d4d4d;
  line-height: 1.7;
  font-weight: 400;
  font-family: 'Ubuntu', sans-serif;
}

/* Button with animation */
.btn {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 40px;
  background-color: white;
  color: #333;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  position: relative;
  overflow: hidden;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.btn::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 0%;
  top: 0;
  left: 0;
  background: #f7d35b;
  z-index: -1;
  transition: height 0.3s ease;
}

.btn:hover {
  color: #000;
}

.btn:hover::after {
  height: 100%;
}

* Tablet View (768px and below) */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
    gap: 20px;
  }

  .image-container img {
    width: 100%;
    max-width: 300px;
  }

  .content {
    text-align: center;
  }

  .content h2 {
    font-size: 22px;
  }

  .content p {
    font-size: 14px;
  }
}

/* Mobile View (480px and below) */
@media (max-width: 480px) {
  .content-section {
    padding: 40px 15px;
  }

  .image-container img {
    max-width: 250px;
  }

  .content h2 {
    font-size: 20px;
  }

  .content p {
    font-size: 13px;
    line-height: 1.5;
  }

  .btn {
    padding: 8px 30px;
    font-size: 14px;
  }
}
  /* Content Section 
  .content-section {
    padding: 100px 0;
    background-color: #fff9e6;
  }

  .content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }

  .content-image {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  }

  .content-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    transition: transform 0.3s ease;
  }

  .content-image:hover img {
    transform: scale(1.02);
  }

  .content-text {
    padding-right: 40px;
  }

  .content-text h2 {
    font-size: 36px;
    color: #333;
    margin-bottom: 25px;
    line-height: 1.2;
  }

  .content-text p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
  }

  .read-more-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #ffd700;
    color: #333;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
  }

  .read-more-btn:hover {
    background-color: #ffed4a;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  }

   Responsive Design for Content Section */
  @media screen and (max-width: 992px) {
    .content-grid {
      grid-template-columns: 1fr;
      gap: 40px;
    }

    .content-text {
      padding-right: 0;
      text-align: center;
    }

    .content-image {
      max-width: 600px;
      margin: 0 auto;
    }
  }
  
  /* Certification Section */
  .certification-section {
    padding: 0px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  }

  .section-title {
    text-align: center;
    margin-top: 60px;
    margin-buttom: 30px;
    font-size: 30px;
    font-weight: 500 !important;
    font-family: 'Ubuntu', sans-serif;
    color: #333;
    font-weight: 600;
    position: relative;
  }

  .section-title:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #ffe066;
  }

  .certificates-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .certificate-item {
    display: flex;
    align-items: flex-start;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
  }

  .certificate-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  }

  .cert-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ffe066 0%, #ffe066 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }

  .cert-content {
    flex: 1;
    min-width: 0; /* Prevents flex item from overflowing */
  }

  .cert-content h3 {
    font-size: 20px;
    color: #333;
    font-family: 'Ubuntu', sans-serif;
    margin-bottom: 15px;
    font-weight: 500;
    line-height: 1.4;
  }

  .cert-content p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    font-family: 'Ubuntu', sans-serif;
    margin-bottom: 20px;
  }

  .cert-image {
    width: 100%;
    height: 200px;
    border-radius: 10px;
    overflow: hidden;
    margin: 15px 0;
  }

  .cert-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }

  .cert-image:hover img {
    transform: scale(1.05);
  }

  .view-cert-btn {
    background: linear-gradient(135deg, #ffe066 0%, #ffe066 100%);
    color: #333;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }

  .view-cert-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  }

  /* Modal Styles */
  .cert-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 1000;
  }

  .cert-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .modal-content {
    background: white;
    padding: 30px;
    border-radius: 15px;
    max-width: 800px;
    width: 90%;
    position: relative;
  }

  .close-modal {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 30px;
    color: #333;
    cursor: pointer;
    transition: color 0.3s ease;
  }

  .close-modal:hover {
    color: #ffd700;
  }

  .modal-image-container {
    width: 100%;
    margin-bottom: 20px;
  }

  .modal-image {
    width: 100%;
    height: auto !important;
    border-radius: 10px;
  }

  .modal-details {
    text-align: center;
  }

  .modal-title {
    font-size: 24px;
    color: #333;
    margin-bottom: 15px;
  }

  .modal-description {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
  }

  /* Responsive Styles */
  @media screen and (max-width: 1200px) {
    .certificates-container {
        max-width: 1000px;
        gap: 20px;
    }

    .certificate-item {
        padding: 25px;
    }
  }

  @media screen and (max-width: 992px) {
    .certificates-container {
        grid-template-columns: 1fr;
        max-width: 700px;
    }

    .certificate-item {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
        padding: 25px;
    }

    .cert-icon {
        margin: 0 20px 0 0;
    }

    .cert-content h3 {
        font-size: 20px;
    }
  }

  @media screen and (max-width: 576px) {
    .certificates-container {
        padding: 0 15px;
    }

    .certificate-item {
        padding: 20px;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .cert-icon {
        margin: 0 0 15px 0;
    }

    .cert-content h3 {
        font-size: 18px;
    }

    .cert-image {
        height: 180px;
    }
  }

  /* Business Lines Section */
  .business-lines-section {
    padding: 0px 0;
    background-color: #f9f9f9;
    position: relative;
  }

  .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* margin-bottom: 40px; */
  }

  .carousel-nav {
    position: absolute;
    right: 0;
    top: 80px;
    display: flex;
    gap: 10px;
    z-index: 1;
    margin-right: 80px;
  }

  .nav-btn {
    background: #ffe066;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }

  .nav-btn:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
  }

  .nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
  }

  .carousel-container {
    position: relative;
    overflow: hidden;
    padding: 20px;
    margin: 0 -20px; /* Compensate for container padding */
  }

  .carousel-track {
    display: flex;
    gap: 40px;
    transition: transform 0.5s ease;
    width: fit-content; /* Allow track to be as wide as needed */
  }

  .grid-item {
    flex: 0 0 calc((100vw - 140px) / 3); /* Calculate width for exactly 3 items */
    max-width: 400px; /* Maximum width for larger screens */
  }

  .grid-content {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    height: 100%;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
  }

  .grid-content:hover {
    transform: translateY(-5px);
  }

  .grid-image {
    position: relative;
    padding-top: 66.67%; /* 3:2 aspect ratio */
    overflow: hidden;
  }

  .grid-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }

  .grid-content:hover .grid-image img {
    transform: scale(1.05);
  }

  .grid-info {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.95), #fff);
  }

  .grid-info h3 {
    font-size: 20px;
    font-weight: 500;
    color: #333;
    margin: 0;
    font-family: 'Ubuntu', sans-serif;
    line-height: 1.3;
  }

  .grid-info p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    font-family: 'Ubuntu', sans-serif;
    margin: 0;
  }
  
  .grid-info h3 a{
    
    color: #333;
    text-decoration: none;
  }
  .grid-info p a{
    
    color: #333;
    text-decoration: none;
  }
  .grid-info h3 a:hover{
    
    color: #6a6a6a;
  }

  /* Responsive Design for Business Lines Section */
  @media screen and (max-width: 1200px) {
    .grid-item {
        flex: 0 0 calc((100vw - 100px) / 2); /* Show 2 items on tablet */
    }
  }

  @media screen and (max-width: 768px) {
    /* .grid-item {
        flex: 0 0 90vw !important; //Show 1 item on mobile, nearly full width 
        // max-width: 95vw; 
        max-width: 90vw !important;
        min-width: 90vw !important;
      box-sizing: border-box;
    } */
    .grid-item {
      flex: 0 0 calc(100vw - 80px); /* Show 1 item on mobile */
      
  }
    
    .carousel-track {
        gap: 16px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
    }
    .grid-item {
        scroll-snap-align: center;
    }
    /* .section-header {
        flex-direction: column !important;
        justify-content: left;
        align-items: left;
        gap: 20px;
    } */
    .section-header {
      flex-direction: column !important;
      justify-content: center !important;
      align-items: center !important;
      gap: 10px;
      text-align: center;
      width: 100%;
    }
    .section-title {
      width: 100%;
      text-align: center !important;
      margin-bottom: 10px !important;
      font-size: 22px !important;
    }
    
    .carousel-nav {
        position: static;
        margin: 20px 0 0 0;
        justify-content: center;
        top: auto;
        right: auto;
        display: flex;
        
    }
    .carousel-container {
        padding: 10px 0;
        width: 100%;
    }
    .grid-image {
        padding-top: 56.25%; /* 16:9 aspect ratio for mobile */
    }
    .grid-info {
        padding: 12px;
    }
  }

  @media screen and (max-width: 480px) {
    .grid-item {
      max-width: 98vw;
      flex: 0 0 98vw;
    }
    .carousel-track {
      gap: 16px;
    }
    .grid-info {
      padding: 8px;
    }
  }

  /* Footer Styles */
  .footer {
    background-color: #bfba9794;
   
    color: #fff;
    padding: 10px 0 40px;
    position: relative;
  }

  .footer-content {
    display: grid;
    grid-template-columns: 2.5fr 1fr 1fr 1fr !important;
    gap: 30px;
  }

  /* Thought of the Day Column */
  .thought-column {
    padding-right: 30px;
  }

  .thought-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
  }

  .thought-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ffe066;
  }

  .thought-text {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #f0f0f0;
  }

  .more-link {
    color: #a18a2e;
    text-decoration: none;
    font-size: 12px;
    margin-left: 5px;
  }

  .more-link:hover {
    text-decoration: underline;
  }

  /* Subscription Box */
  .subscription-box {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
  }

  .subscription-box h4 {
    margin-bottom: 15px;
    font-size: 16px;
    color: #ffd700;
  }

  .subscription-form {
    display: flex;
    gap: 10px;
  }

  .email-input {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.9);
  }

  .subscribe-btn {
    padding: 10px 10px;
    background-color: #ffd700;
    border: none;
    border-radius: 5px;
    color: #333;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }

  .subscribe-btn:hover {
    background-color: #ffed4a;
  }

  /* Footer Columns */
  .footer-column h3 {
    color: #333;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 500;
    font-family: 'Ubuntu', sans-serif;
  }

  .footer-links {
    list-style: none;
    padding: 0;
  }

  .footer-links li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
  }
  
  .arrow-icon {
    color: #333;
    font-size: 8px;
    margin-right: 10px;
    transform: rotate(10deg) !important;
  }
  

  .footer-links a {
    /* color: #f0f0f0; */
    color: #333;
    text-decoration: none !important;
    font-family: 'Ubuntu', sans-serif;
    font-size: 14px;
    transition: color 0.3s ease;
  }

  .footer-links a:hover {
    color: #a18a2e;
  }

  /* Scroll to Top Button */
  .scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 40px;
    height: 40px;
    background-color: #ffe066;
    color: #333;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  }

  .scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
  }

  .scroll-to-top:hover {
    background-color: #ffed4a;
    transform: translateY(-3px);
  }

  /* Responsive Design */
  @media screen and (max-width: 1200px) {
    .footer-content {
      grid-template-columns: 1.2fr 1fr 1fr 1fr;
    }
    
    .footer-column:last-child {
      grid-column: 2 / 3;
      grid-row: 2 / 3;
    }
  }
  @media screen and (max-width: 768px) {
    .footer-content{
      grid-template-columns: 1fr  !important;
      width: 100%;
      box-sizing: border-box;
      overflow-x: scroll;
    }
    
  }

  @media screen and (max-width: 992px) {
    .footer-content {
      grid-template-columns:  1fr !important;
      gap: 40px;
    }

    .thought-column {
      grid-column: 1 / -1;
      padding-right: 0;
    }
  }

  @media screen and (max-width: 576px) {
    .footer-content {
      grid-template-columns: 1fr;
    }

    .subscription-form {
      flex-direction: column;
    }

    .subscribe-btn {
      width: 100%;
    }

    .scroll-to-top {
      bottom: 20px;
      right: 20px;
    }
  }
  
/* About Page Hero Section */
.about-hero {
    width: 100%;
    height: 400px;
    position: relative;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    background: url('../images/about-us.webp') no-repeat center center;
    background-size: cover;
    position: relative;
}
.hero-image-faq {
  width: 100%;
  height: 100%;
  background: url('../images/FAQs.webp') no-repeat center center;
  background-size: cover;
  position: relative;
}
.hero-image-contact {
  width: 100%;
  height: 100%;
  background: url('../images/contact-us.webp') no-repeat center center;
  background-size: cover;
  position: relative;
}
.hero-image-AdvantagesSection {
  width: 100%;
  height: 100%;
  background: url('https://www.brahmakumaris.org/images/final-headers/banner-introduction.jpg') no-repeat center center;
  background-size: cover;
  position: relative;
}
.hero-image-AttractionLaw {
  width: 100%;
  height: 100%;
  background: url('../images/The-Attraction-Law.webp') no-repeat center center;
  background-size: cover;
  position: relative;
}
.hero-image-Graphotherapy {
  width: 100%;
  height: 100%;
  background: url('../images/Graphotherapy.webp') no-repeat center center;
  background-size: cover;
  position: relative;
}
.hero-image-Healer {
  width: 100%;
  height: 100%;
  background: url('../images/Healer.webp') no-repeat center center;
  background-size: cover;
  position: relative;
}
.hero-image-Meditation {
  width: 100%;
  height: 100%;
  background: url('../images/Meditation.webp') no-repeat center center;
  background-size: cover;
  position: relative;
}
.hero-image-MirrorMagic {
  width: 100%;
  height: 100%;
  background: url('../images/Mirror-Magic22.webp') no-repeat center center;
  background-size: cover;
  position: relative;
}
.hero-image-VastuShastra {
  width: 100%;
  height: 100%;
  background: url('../images/Vastu-Shastra.webp') no-repeat center center;
  background-size: cover;
  position: relative;
}
.hero-image-ExperiencesWeOffer {
  width: 100%;
  height: 100%;
  background: url('../images/Experiences-We-Offer.webp') no-repeat center center;
  background-size: cover;
  position: relative;
}
.hero-image-Gallery {
  width: 100%;
  height: 100%;
  background: url('../images/Gallery.webp') no-repeat center center;
  background-size: cover;
  position: relative;
}
.hero-image-blog {
  width: 100%;
  height: 100%;
  background: url('../images/Blog-banner.webp') no-repeat center center;
  background-size: cover;
  position: relative;
}
.hero-image-blog-des1{
  width: 100%;
  height: 100%;
  background: url('../images/Blog-Handwriting-banner.webp') no-repeat center center;
  background-size: cover;
  position: relative;

}
.hero-image-blog-des2{
  width: 100%;
  height: 100%;
  background: url('../images/Blog-Healing-chakra-banner.webp') no-repeat center center;
  background-size: cover;
  position: relative;
  
} 
.hero-image-blog-des3{
  width: 100%;
  height: 100%;
  background: url('../images/Blog-Law-of-attraction-banner.webp') no-repeat center center;
  background-size: cover;
  position: relative;
  
} 
.hero-image-blog-des4{
  width: 100%;
  height: 100%;
  background: url('../images/Blog-VAstu-banner.webp') no-repeat center center;
  background-size: cover;
  position: relative;
  
} 
.hero-image-blog-des5{
  width: 100%;
  height: 100%;
  background: url('../images/Blog-Hopo-banner.webp') no-repeat center center;
  background-size: cover;
  position: relative;
  
} 





.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: absolute;
    top: 50% !important;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 1;
    width: 90%;
    max-width: 800px;
}

.hero-content h1 {
    font-size: 32px;
    font-weight: 400 !important;
    margin-bottom: 20px;
    font-family: 'Ubuntu', sans-serif;
    /* text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3); */
    color: #000;
}

.hero-content p {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    font-family: 'Ubuntu', sans-serif;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Responsive styles for about hero section */
@media screen and (max-width: 768px) {
    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 16px;
    }
}

@media screen and (max-width: 480px) {
    .hero-content h1 {
        font-size: 28px;
    }

    .hero-content p {
        font-size: 15px;
    }
}

/* about page second section */
.secondsection {
  font-family: 'Ubuntu', sans-serif;
      padding-top: 0px;
      padding-bottom: 30px;
      /* padding: 30px; */
      background-color: #fff;
      /* color: #333; */
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.left-content {
  flex: 1 1 60%;
  font-family: 'Ubuntu', sans-serif;
  font-size: 26px;
  font-weight: 500;
  padding-right: 40px;
  margin-top: 60px;
}

.right-video {
  flex: 1 1 30%;
  max-width: 400px;
  margin-top: -80px;
}

h1 {
  font-size: 36px;
  font-family: 'Ubuntu', sans-serif !important;
  font-weight: 500 !important;
  margin-bottom: 20px;
}

h2 {
  font-size: 22px !important;
  margin-top: 30px;
  font-weight: 500;
  font-family: 'Ubuntu', sans-serif !important;
  margin-bottom: 10px;
}

p {
  font-size: 15px;
  line-height: 1.6;
}

.image-text-block {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.image-text-block img {
  width: 280px;
  height: auto;
  border-radius: 5px;
}

.right-video iframe {
  width: 100%;
  height: 230px;
  border-radius: 8px;
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .container {
    flex-direction: column;
  }

  .left-content, .right-video {
    flex: 1 1 100%;
    padding-right: 0;
  }

  .image-text-block {
    flex-direction: column;
    align-items: center;
  }

  .image-text-block img {
    width: 100%;
    max-width: 300px;
  }
  .right-video iframe{
    margin-top: 40px;
  }
}

/* History Tabs Section */
.history-tabs {
    padding: 60px 0;
    background-color: #f9f9f9;
    font-family: 'Ubuntu', sans-serif;
}

.tabs-container {
    max-width: 1200px;
    margin: 0 auto;
}

.tabs-header {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
}

.tab-btn {
    padding: 12px 24px;
    font-size: 18px;
    font-weight: 500;
    background: none;
    border: none;
    cursor: pointer;
    color: #666;
    transition: all 0.3s ease;
    position: relative;
}

.tab-btn::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #ffd700;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.tab-btn.active {
    color: #333;
}

.tab-btn.active::after {
    transform: scaleX(1);
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease forwards;
}

.tab-content.active {
    display: block;
}

.tab-inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

.tab-inner h2 {
  font-size: 26px;
    margin-bottom: 20px;
    color: #333;
}

.tab-inner p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

.tab-inner img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 8px;
    margin: 20px auto;
    display: block;
}

.founder-content {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.founder-text {
    flex: 1;
}

.founder-image {
    flex: 0 0 300px;
}

.founder-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.founder-timeline {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.leaders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.leader-card {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.leader-card img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
}

.leader-card h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #333;
}

.leader-card p {
    font-size: 14px;
    color: #666;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .tabs-header {
        flex-direction: column;
        align-items: stretch;
        gap: 5px;
    }

    .tab-btn {
        width: 100%;
        text-align: center;
    }

    .founder-content {
        flex-direction: column;
    }

    .founder-image {
        flex: 0 0 100%;
        margin-top: 20px;
    }
}
  /* FAQs */
  .faq-title {
    padding-top: 40px !important;
    text-align: center;
    font-size: 30px;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 500;
    margin-bottom: 10px;
  }

  p.description {
    text-align: center;
    padding: 10px;
    margin-bottom: 30px;
    color: #555;
  }

  .faq-container {
    display: flex;
    gap: 30px;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 80px !important;
  }

  .faq-column {
    flex: 1;
  }

  .faq-item {
    background: #fff;
    border-radius: 30px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease-in-out;
  }

  .faq-question {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    background: #fff;
    cursor: pointer;
    position: relative;
    border-radius: 30px;
    font-weight: 400;
    font-family: 'Ubuntu', sans-serif !important;
    font-size: 18px;
    background-color: #ffe60069;
  }

  .faq-question::before {
    content: '❯';
    font-size: 18px;
    margin-right: 15px;
    transition: transform 0.3s ease;
  }

  .faq-item.active .faq-question::before {
    transform: rotate(90deg);
  }

  .faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    background: #fff;
    font-size: 14px;
    line-height: 1.6;
    transition: max-height 0.4s ease, padding 0.4s ease;
  }

  .faq-item.active .faq-answer {
    max-height: 300px;
    padding: 15px 20px 20px;
  }

  @media (max-width: 768px) {
    .faq-container {
      flex-direction: column;
    }
  }
   /* time line */

   .item {
    position: relative;
    margin: 15px;
    border-left: 3px dashed antiquewhite;
    padding: 10px 40px;
}

.item > span {
    position: absolute;
    width: 40px;
    height: 40px;
    font-size: 20px;
    text-align: center;
    line-height: 40px;
    border-radius: 100%;
    left: -20px;
    top: 0;
    background: antiquewhite;
}

.item div {
    font-size: 18px;
    font-weight: bold;  
}

.item p {
    margin-top: 15px;
}

/* contact us */
.contact-section {
  max-width: 1100px;
  margin: 50px auto;
  padding: 20px;
}

.section-title {
  text-align: center;
  margin-bottom: 30px;
  font-size: 28px;
  color: #333;
}

.contact-box {
  display: flex;
  background: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  overflow: hidden;
}

.contact-info {
  background-color: #ffe066 !important ;
  color: #fff;
  flex: 1;
  padding: 40px 30px;
}

.contact-info h3 {
  font-size: 22px;
  margin-bottom: 15px;
   font-family: 'Ubuntu', sans-serif !important;
}

.info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
}

.info-icon {
  /* background: rgba(173, 124, 6, 0.7); */
  background:#fff;
  /*padding: 12px;*/
  border-radius: 50%;
  font-size: 18px;
  margin-right: 15px;
}

.info-icon i {
  font-size: 15px;
  color: #b82727;
  padding: 18px;
}

.info-details {
  font-size: 14px;
  color: #333;
}

.info-details b {
  display: block;
  color: #333;
  font-family: 'Ubuntu', sans-serif;
  font-weight: 500;
  margin-bottom: 4px;
}

.contact-form {
  flex: 2;
  padding: 40px 30px;
}

.contact-form h3 {
  margin-bottom: 20px;
  color: #003e80;
}

.form-row {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

.form-row input,
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
}

.form-group {
  margin-bottom: 15px;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.submit-btn {
  background: #ffe066;
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 25px;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.submit-btn:hover {
  background: #878581;
}

@media (max-width: 768px) {
  .contact-box {
    flex-direction: column;
  }

  .form-row {
    flex-direction: column;
  }
}
/* map */
.map-section {
  padding: 0 30px; /* 30px left & right padding */
  box-sizing: border-box;
  margin: 40px 0; /* Optional spacing above and below */
}

.map-iframe {
  width: 100%;
  height: 450px;
  border: none;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
  .map-iframe {
    height: 300px;
  }
}
.key-benefits {
  list-style: none;
  padding: 0;
  max-width: 700px !important ;
  font-weight: 400;
  font-family: 'Ubuntu', sans-serif;
  /* color: #003e80;*/
} 

.key-benefits li {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  color: #777777 !important;
  font-size: 15px;
}

.key-benefits li i {
  color: #ffd700;
  margin-right: 10px;
  font-size: 14px;
}

/* Icon Section Styles */
.icon-section {
  width: 100%;
  padding: 60px 0 60px 0;
  background: #fff;
}
.icon-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-gap: 42px 24px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 16px;
}
.icon-col {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.icon-circle {
  width: 120px;
  height: 120px;
  background: #ffe066;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.10), 0 1.5px 4px rgba(0,0,0,0.08);
  margin-bottom: 14px;
  transition: box-shadow 0.3s, transform 0.3s;
  cursor: pointer;
}
.icon-circle i {
  font-size: 3.2rem;
  color: #222;
}
.icon-label {
  font-size: 1.8rem;
  color: #222;
  font-family: 'Ubuntu', sans-serif;
  font-weight: 400;
  text-align: center;
}
.icon-circle:hover, .icon-circle:focus {
  box-shadow: 0 8px 24px rgba(0,0,0,0.18), 0 3px 8px rgba(0,0,0,0.12);
  transform: translateY(-8px) scale(1.04);
}
@media (max-width: 900px) {
  .icon-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
   .icon-circle {
    width: 120px !important;
    height: 120px !important;
   font-size: 20px !important;
  }
  .icon-label{
    font-size: 2rem !important;
  }
}
@media (max-width: 600px) {
  .icon-grid {
    grid-template-columns: 1fr;
    grid-gap: 24px 0;
  }
  .icon-section {
    padding: 28px 0 10px 0;
  }
  .icon-circle {
    width: 70px;
    height: 70px;
    font-size: 1.5rem;
  }
  .icon-label {
    font-size: 1rem;
  }
}

/* Ripple effect for icon circles */
.icon-circle .ripple {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 10px;
  height: 10px;
  background: rgba(255, 224, 102, 0.5);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(1);
  animation: ripple-anim 0.4s linear;
  pointer-events: none;
  z-index: 2;
}
@keyframes ripple-anim {
  to {
    width: 120px;
    height: 120px;
    opacity: 0;
  }
}
.icon-circle { position: relative; overflow: hidden; }

/* Floating Icons */
.floating-icons {
  position: fixed;
  bottom: 90px;
  right: 20px;
  display: flex;
  flex-direction: column;
 
  gap: 15px;
  z-index: 998;
}
.floating-icons .icon {
  width: 50px;
  height: 50px;
  text-decoration: none !important;
  background-color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease;
}
.floating-icons .icon:hover {
  transform: scale(1.1);
}
.floating-icons .icon img {
  width: 35px;
  height: 35px;
}  
.floating-icons .icon2{
background-color:#136391;
} 

.enquiry-now {
  z-index: 9999;
  position: fixed;
  top: 30%;
  right: 44px;
  background: linear-gradient(135deg, #57C785 0%, #EDDD53 100%);
  color: #ffffff !important;
  padding: 10px 15px;
  font-weight: bold;
  text-decoration: none !important;
  transform: rotate(-90deg);
  transform-origin: top right;
  border-radius: 4px 4px 0 0;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  z-index: 999;
}
.enquiry-now:hover{
  background: linear-gradient(135deg, #57C785 0%, #EDDD53 100%);
  color: #ffffff;
} 
/* gallay page */
.gallery-img {
  width: 100%;
  border-radius: 4px;
  cursor: pointer;
}

/* Custom Gallery Grid */
.custom-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  justify-items: center;
}
.custom-gallery-img {
  width: 100%;
  max-width: 300px;
  height: 200px;
  object-fit: cover;
  cursor: pointer;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: transform 0.2s;
}
.custom-gallery-img:hover {
  transform: scale(1.04);
}

/* Modal Styles */
.custom-gallery-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  overflow: auto;
  background: rgba(0,0,0,0.85);
  align-items: center;
  justify-content: center;
}
.custom-gallery-modal.open {
  display: flex;
}
.custom-gallery-modal-content {
  margin: auto;
  display: block;
  max-width: 80vw;
  max-height: 80vh;
  border-radius: 8px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.3);
}
.custom-gallery-close {
  position: absolute;
  top: 32px;
  right: 48px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  z-index: 10001;
  transition: color 0.2s;
}
.custom-gallery-close:hover {
  color: #ff5252;
}
.custom-gallery-prev, .custom-gallery-next {
  position: absolute;
  top: 50%;
  color: #fff;
  font-size: 48px;
  font-weight: bold;
  cursor: pointer;
  user-select: none;
  z-index: 10001;
  padding: 8px 16px;
  border-radius: 50%;
  background: rgba(0,0,0,0.3);
  transform: translateY(-50%);
}
.custom-gallery-prev {
  left: 32px;
}
.custom-gallery-next {
  right: 32px;
}
.custom-gallery-prev:hover, .custom-gallery-next:hover {
  background: rgba(255,255,255,0.2);
}

.social-icons{
  display: flex;
  gap: 30px;
  padding-top: 20px;
}
.social-icon{
  font-size: 20px;
  color: #333;
}
.social-icon:hover{
  color: #fff;
}

@media (max-width: 768px) {
  .custom-gallery-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}


/* mobile header */
/* Header */
.mobile-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #ffe066;
  color: white;
  padding: 12px 20px;
}

.mobile-logo {
  font-size: 20px;
  font-weight: bold;
}

.mobile-menu-icon {
  font-size: 26px;
  cursor: pointer;
}

/* Dropdown menu */
.mobile-dropdown {
  max-height: 0;
  overflow: hidden;
  background-color: #f1f1f1;
  display: flex;
  flex-direction: column;
  transition: max-height 0.4s ease;
  margin-top: 60px;
}

.mobile-dropdown a,
.mobile-dropdown button {
  text-align: left;
  width: 100%;
  padding: 12px 20px;
  text-decoration: none;
  border: none;
  background: none;
  color: #333;
  font-size: 16px;
  cursor: pointer;
  border-bottom: 1px solid #ddd;
}

.mobile-dropdown a:hover,
.mobile-dropdown button:hover {
  background-color: #e2e2e2;
  text-decoration: none;
  color: gold;
}

/* Submenu */
.mobile-submenu {
  display: none;
  flex-direction: column;
  background-color: #e9e9e9;
}

.mobile-submenu a {
  padding-left: 30px;
  font-size: 14px;
  border-bottom: 1px solid #ccc;
}

/* Hide on desktop */
@media (min-width: 769px) {
  .mobile-header,
  .mobile-dropdown {
    display: none !important;
  }
}

/* copy right section */

.copy-right{
  text-align: left;
  padding-left: 85px;
}

@media screen and (max-width: 768px) {
  .copy-right{
    padding-left: 5px;
  }
}

/* blog page */

.blog-section {
  padding: 40px 0;
  background: #f9f9f9;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.blog-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  overflow: hidden;
  text-align: center;
  padding: 20px;
  transition: box-shadow 0.2s;
}

.blog-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.blog-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px 8px 0 0;
}

.blog-card h3 {
  margin: 16px 0 8px;
  font-size: 20px;
  font-family: 'Ubuntu', sans-serif;
  color: #333;
}
.blog-card h3 a{
  text-decoration: none;
  color: #333 !important;
}

.blog-card p {
  color: #666;
  font-size: 16px;
  font-family: 'Ubuntu', sans-serif;
}
.blog-card p a{
  text-decoration: none;
  color: #666 !important;
}

.btn-blog {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 40px;
  background-color: #ffe066;
  color: #333;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  position: relative;
  overflow: hidden;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.btn-blog:hover{
  text-decoration: none;
}

@media (max-width: 900px) {
  .blog-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

.single-blog-section {
  padding: 60px 0;
  background: #fff;
}

.single-blog-container {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  max-width: 1100px;
  margin: 0 auto;
  gap: 40px;
}

.single-blog-left {
  flex: 1.2;
  padding-right: 20px;
}

.single-blog-left h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #222;
  font-family: 'Ubuntu', sans-serif;
}

.single-blog-left p {
  font-size: 18px;
  color: #555;
  margin-bottom: 24px;
  font-family: 'Ubuntu', sans-serif;
}

.single-blog-left ol {
  list-style: none;
  padding-left: 0;
  font-size: 18px;
}

.single-blog-left .fa-li {
  color: #4caf50;
  margin-right: 10px;
}

.single-blog-left li {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  font-family: 'Ubuntu', sans-serif;
}

.single-blog-right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.single-blog-right img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

@media (max-width: 900px) {
  .single-blog-container {
    flex-direction: column;
    gap: 24px;
  }
  .single-blog-left, .single-blog-right {
    padding: 0;
  }
}

