body,html {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
  }

  .logo{
    width: 180px;
    height: 60px;
  }

  .navbar {
    background-color: #ffffff;
    padding: 0.8rem 1rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  }

  .navbar-brand {
    color: #12376b;
    font-weight: 600;
    font-size: 1.5rem;
  }

  .btn-animated {
    background-color: #f8be5f;
    color:white;
    font-weight: 600;
    border: none;
    padding: 8px 16px;
    border-radius: 30px;
    transition: all 0.3s ease;
    margin: 0 0.5rem;
  }

  .btn-animated:hover {
    background-color: #3ebce6;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(62, 188, 230, 0.4);
  }

  @media (max-width: 991px) {
    .center-buttons, .btn-contact {
      text-align: center;
      margin-top: 10px;
    }
    .btn-animated {
      margin: 5px auto;
      display: inline-block;
    }
  }


   
  .hero-section {
    position: relative;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    flex-direction: column;
    animation: bgSlider 15s infinite ease-in-out;
    background-size: cover;
    background-position: center;
    padding-top: 0;
  }
  
  .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
  }
  
  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    text-align: center;
  }
  
  .hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #f7c35f;
  }
  
  .hero-content p {
    font-size: 18px;
    color: #ddd;
    margin-bottom: 30px;
  }
  
  .hero-content .btn {
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 500;
    font-size: 16px;
    background-color: #f7c35f;
    border: none;
    color: #111;
    transition: all 0.3s ease;
  }
  
  .hero-content .btn:hover {
    background-color: #e0b948;
    color: #111;
  }
  
  .trust-icons {
    position: relative;
    z-index: 2;
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
  }
  
  .trust-icons .item {
    color: #fff;
    text-align: center;
  }
  
  .trust-icons .item i {
    font-size: 28px;
    margin-bottom: 8px;
    color: #f7c35f;
  }
  
  .trust-icons .item p {
    margin: 0;
    font-size: 14px;
  }
  
  @media (max-width: 1024px) {
    .hero-content h1 {
      font-size: 2.8rem;
    }
  
    .hero-content p {
      font-size: 16px;
    }
  
    .hero-content .btn {
      font-size: 15px;
    }
  
    .trust-icons {
      gap: 20px;
      margin-top: 30px;
    }
  }
  
  @media (max-width: 768px) {
    .hero-section {
      position: relative;
      height: 80vh !important;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      text-align: center;
      flex-direction: column;
      animation: bgSlider 15s infinite ease-in-out;
      background-size: cover;
      background-position: center;
      padding-top: 0;
    }
    .hero-content h1 {
      font-size: 2.2rem;
    }
    .hero-section {
      height: 60vh;
     
    }
    .hero-content p {
      font-size: 16px;
    }
  
    .hero-content .btn {
      font-size: 14px;
      padding: 10px 25px;
    }
  
    .trust-icons {
      gap: 15px;
      margin-top: 20px;
    }
  }
  
  @media (max-width: 480px) {
    .hero-content h1 {
      font-size: 2rem;
    }
    .hero-content {
      z-index: 2;
      max-width: 800px;
      text-align: center;
    padding: 30px;
    }

  
  
    .hero-content p {
      font-size: 14px;
    }
  
    .hero-content .btn {
      font-size: 13px;
      padding: 8px 20px;
    }
  
    .trust-icons {
      display: none;
    }
  
    /* Ensure the hero section doesn't overlap the navbar on small devices */
    .hero-section {
      height: calc(80vh ); /* Adjust the height to leave space for the navbar */
    }
  }
 
  @keyframes bgSlider {
    0% {
      background-image: url('img/hero8.png');
    }
    33.33% {
      background-image: url('img/heroorg2.jpg');
    }
    66.66% {
      background-image: url('img/heroorg3.jpg');
    }
    100% {
      background-image: url('img/hero8.png'); /* loop back to first image */
    }
  }
  
  
  /* who we are */
  .who-we-are-section {
    padding: 60px 0;
  }

  .who-content h2 {
    color: #12376b;
  }

  .who-content p {
    color: #333;
    font-size: 1.05rem;
    line-height: 1.7;
  }

  .btn-outline-primary {
    border-color: #3ebce6;
    color: #3ebce6;
    transition: all 0.3s ease;
  }

  .btn-outline-primary:hover {
    background-color: #3ebce6;
    color: white;
    transform: scale(1.05);
  }

  .who-img img {
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  }

  @media (max-width: 768px) {
    .who-content {
      text-align: center;
    }
  }

  
  /* .services-section {
    padding: 60px 20px;
  } */

  .services-section h2 {
    text-align: center;
    font-weight: 700;
    color: #12376b;
    margin-bottom: 40px;
    font-size: 32px;
  }

  .mudra-carousel .service-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    border: 2px solid #e3e3e3;
  }

  .mudra-carousel .service-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    border-color: #3ebce6;
  }

  .mudra-carousel .card-img {
    height: 200px;
    background-size: cover;
    background-position: center;
    border-bottom: 1px solid #ddd;
  }

  .mudra-carousel .card-body {
    padding: 20px;
    text-align: center;
  }

  .mudra-carousel .card-body h5 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #12376b;
  }

  /* Custom Owl Nav buttons */
  .mudra-carousel .owl-nav {
    top: -45px;
    right: 10px;
  }
  .mudra-carousel .owl-nav button.owl-prev,
.mudra-carousel .owl-nav button.owl-next {
background: #12376b !important;
color: white !important;
border: none;
padding: 0;
margin: 0 5px;
font-size: 22px;
border-radius: 50%;
transition: 0.3s ease;
height: 40px;
width: 40px;

align-items: center;
justify-content: center;
}

  .mudra-carousel .owl-nav button:hover {
    background: #3ebce6;
  }

  /* Hide dots */
  .mudra-carousel .owl-dots {
    display: none !important;
  }

  @media (max-width: 768px) {
    .mudra-carousel .owl-nav {
      position: static;
      text-align: center;
      margin-top: 20px;
    }
  }

  
  .mudra-btn {
    background: #12376b;
    color: white;
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    transition: 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 0; /* Important for stacking */
  }
  
  .mudra-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #3ebce6;
    transition: 0.4s;
    z-index: -1; /* Make sure it's behind the text */
  }
  
  .mudra-btn:hover::before {
    left: 0;
  }
  
  .mudra-btn:hover {
    color: white;
  }
  

 
  
  .apart-card {
    background: #fff;
    border: 1px solid #ddd;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .apart-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-color: #3ebce6;
  }
  
  .apart-icon {
    width: 60px;
    height: 60px;
  }
  

  .our-edge-section {
    padding: 40px 15px;
    text-align: center;
  }

  .our-edge-section h2 {
    font-weight: 600;
    color: #12376b !important;
    margin-bottom: 30px;
  }

  .edge-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .edge-item {
    flex: 0 0 270px;
    background: white;
    border-radius: 12px;
    padding: 20px 15px;
    transition: transform 0.3s;
  }

  .edge-item:hover {
    transform: translateY(-3px);
  }

  .edge-icon {
    font-size: 36px;
    margin-bottom: 10px;
  }

  .icon1 { color: #e74c3c; }
  .icon2 { color: #27ae60; }
  .icon3 { color: #3498db; }

  .edge-number {
    font-size: 28px;
    font-weight: bold;
    color: #12376b;
  }

  .plus-sign {
    font-size: 20px;
    vertical-align: top;
    color: #12376b;
    margin-left: 2px;
  }

  .edge-label {
    font-size: 14px;
    color: #555;
    margin-top: 8px;
  }

  @media (max-width: 768px) {
    .our-edge-section {
      padding: 30px 10px;
    }

    .edge-item {
      flex: 1 1 100%;
      max-width: 350px;
      margin: 0 auto;
      padding: 16px 12px;
    }

    .edge-icon {
      font-size: 30px;
      margin-bottom: 8px;
    }

    .edge-number {
      font-size: 24px;
    }

    .edge-label {
      font-size: 13px;
    }
  }
 
  /* contatc us */
  .contact-section {
    display: flex;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: 50px auto;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    border-radius: 16px;
    overflow: hidden;
  }

  .contact-info {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .contact-info h2 {
    font-size: 30px;
    margin-bottom: 30px;
    color: #333;
    position: relative;
  }

  .contact-info h2::after {
    content: "";
    width: 50px;
    height: 3px;
    background: #007bff;
    display: block;
    margin-top: 8px;
    border-radius: 2px;
  }

  .info-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
  }

  .info-item i {
    font-size: 22px;
    margin-right: 15px;
    color: #007bff;
  }

  .info-item span {
    font-size: 16px;
    color: #444;
  }

  .map-container {
    flex: 1;
  }

  .map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
  }

  @media (max-width: 768px) {
    .contact-section {
      flex-direction: column;
    }

    .contact-info, .map-container {
      padding: 25px;
    }

    .contact-info h2 {
      font-size: 24px;
    }

    .info-item span {
      font-size: 15px;
    }
  }

  .custom-footer {
    background: linear-gradient(135deg, #1c1f2f, #0f0f17);
    color: #e0e0e0;
    padding: 60px 20px 30px;
  }
  
  .footer-heading {
    color: #f7c35f;
    font-weight: 600;
    margin-bottom: 15px;
  }
  
  .footer-text {
    color: #ccc;
    font-size: 15px;
    line-height: 1.6;
  }
  
  .footer-links,
  .footer-contact {
    list-style: none;
    padding: 0;
    color: #ccc;
  }
  
  .footer-links li,
  .footer-contact li {
    margin-bottom: 10px;
  }
  
  .footer-links a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .footer-links a:hover {
    color: #f7c35f;
  }
  
  .footer-divider {
    border-color: #444;
    margin: 30px 0;
  }
  
  .footer-copy {
    font-size: 14px;
    color: #aaa;
    margin-bottom: 10px;
  }
  
  .footer-social a {
    color: #f7c35f;
    margin: 0 10px;
    font-size: 18px;
    transition: transform 0.3s ease;
  }
  
  .footer-social a:hover {
    transform: scale(1.2);
    color: #fff;
  }
  

  /* Contact Buttons */
.contact-buttons {
  position: fixed;
  bottom: 80px; /* Adjusted to move slightly above the bottom */
  left: 20px;
  right: 20px;
  z-index: 999;
}

/* WhatsApp Button (Left Side) */
.whatsapp-button {
  background-color: #25d366;
  border-radius: 50%; /* Circle */
  width: 60px; /* Fixed size */
  height: 60px; /* Fixed size */
  padding: 0; /* Remove padding to ensure the icon is centered */
  margin-left: 20px;
  color: #fff;
  font-size: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s ease-in-out;
  position: absolute;
  left: 0;
}

.whatsapp-button:hover {
  background-color: #128c7e;
  transform: scale(1.1);
}

/* Call Button (Right Side) */
.call-button {
  background-color: #4CAF50;
  border-radius: 50%; /* Circle */
  width: 60px; /* Fixed size */
  height: 60px; /* Fixed size */
  padding: 0; /* Remove padding to ensure the icon is centered */
  color: #fff;
  font-size: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s ease-in-out;
  position: absolute;
  right: 0;
}

.call-button:hover {
  background-color: #388e3c;
  transform: scale(1.1);
}

/* Mobile responsive adjustment */
@media (max-width: 767px) {
  .contact-buttons {
    bottom: 70px; /* Adjusted for mobile */
  }

  .whatsapp-button, .call-button {
    font-size: 30px; /* Slightly smaller icons on mobile */
    width: 60px; /* Smaller circle on mobile */
    height: 60px; /* Smaller circle on mobile */
  }
}


.mudra-btn {
  background-color: #f7c35f;
  color: #111;
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 600;
}

.mudra-btn:hover {
  background-color: #e0ad47;
}

.modal-content {
  border-radius: 12px;
  border: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.modal-header {
  background-color: #f7c35f;
  border-bottom: none;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.modal-title {
  font-weight: 700;
  color: #111;
}

.form-control {
  border-radius: 8px;
  border-color: rgb(109, 106, 106);
}

.btn-submit {
  background-color: #111;
  color: #fff;
  border-radius: 8px;
}

.btn-submit:hover {
  background-color: #333;
}

.team-heading {
  text-align: center;
  margin: 50px 0 30px;
  font-size: 34px;
  color: #222;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.brains-slider-container {
  width: 100%;
  padding: 0 20px; /* slightly increased from 15px */
  scroll-snap-type: x mandatory;
}

.brains-slider {
  display: flex;
  gap: 20px;
  padding-bottom: 15px;
}

.brains-slider-item {
  flex: 0 0 auto;
  width: 220px;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
  scroll-snap-align: start;
  transition: transform 0.3s ease;
}

.brains-slider-item:hover {
  transform: translateY(-5px);
}

.brains-slider-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: top;
  padding:10px ;
  border-radius: 20px;
}

.brains-info {
  padding: 15px 10px;
  background-color: #f9f9f9;
}

.brains-info h3 {
  font-size: 18px;
  margin: 5px 0;
  color: #222;
  font-weight: 600;
}

.brains-info p {
  font-size: 15px;
  margin: 0;
  color: #666;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .brains-slider-item {
    width: 180px;
  }


  .brains-info h3 {
    font-size: 16px;
  }

  .brains-info p {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .brains-slider-item {
    width: 160px;
  }

  

  .brains-info h3 {
    font-size: 15px;
  }

  .brains-info p {
    font-size: 12px;
  }
}

/* google reviews */


.my-custom-carousel .my-carousel-item {
  padding: 20px;
  border-radius: 12px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  margin: 5px;
  background-color: #f8f8f8;
}
.my-review-card img.my-review-img {
  width: 70px !important;
  height: 70px !important;
  border-radius: 50%;
  object-fit: cover;
}


.my-review-card img.my-review-img2 {
  width: 30px !important;
  height: 30px !important;
  border-radius: 50%;
  object-fit: cover;
  position: relative;
  margin-top: 50px;
margin-left: -25px;
}

.my-review-header {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}
.my-review-name {
  font-weight: bold;
  margin-left: 12px;
}
.my-review-verified {
  color: #3498db;
  margin-left: 6px;
}
.my-review-date {
  font-size: 13px;
  color: #7f8c8d;
  margin-left: 10px;
}
.my-review-rating {
  color: #fcbf02;
  margin: 12px 0;
}
.my-review-text {
  font-size: 16px;
}
.owl-nav button.owl-prev,
.owl-nav button.owl-next {
  background: #3498db;
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 22px;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.owl-nav button.owl-prev {
  left: -55px;
}
.owl-nav button.owl-next {
  right: -55px;
}

/* Media Queries */
@media (max-width: 768px) {
  .my-custom-carousel .my-carousel-item {
    padding: 15px;
  }
  .my-review-card img.my-review-img {
    width: 60px;
    height: 60px;
  }
  .my-review-text {
    font-size: 14px;
  }
}
@media (max-width: 576px) {
  .my-custom-carousel .my-carousel-item {
    padding: 10px;
  }
  .my-review-card img.my-review-img {
    width: 50px;
    height: 50px;
  }
  .my-review-text {
    font-size: 13px;
  }
}








  /* Media query for mobile devices */
  @media (max-width: 768px) {
    .googlereview {
        text-align: center;
    }
    .star-rating {
font-size: 15px;
    }
}

.googlelogofull {
    width: 100px;
    height: 40px;
    margin-right: 10px;
}

.googlereview {
    display: flex;
    align-items: center;
    justify-content: center;
}

.star-rating {
    margin-left: 10px;
}

.btn-center {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}


.bgreviews{
  background-color:#f8f8f8 ;
  padding-top: 30px;
  padding-bottom: 30px;
  border-radius: 20px;
}



 /* Ensure logo and buttons remain in one row */
 .d-flex {
  flex-wrap: nowrap; /* Prevent wrapping */
}

/* Media query for smaller screens */
@media (max-width: 576px) {
  .consult-btn, .another-btn {
    padding: 6px 10px; /* Reduce padding for smaller screens */
    font-size: 12px;   /* Reduce font size */
  }

  .logo-container img {
    max-width: 70px; /* Resize logo if needed */
  }

  .logotext {
    font-size: 16px; /* Adjust text size */
  }

  /* Reduce margins to fit buttons better */
  .me-2 {
    margin-right: 5px;
  }
}



/* Prevent overflow */
html, body {
  width: 100%;
  overflow-x: hidden; /* Prevent horizontal scrolling */
}
.logo-container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo {
  max-height: 60px;
  width: 70px !important; /* Adjust according to your logo size */
}

.logotext {
  font-size: 18px; /* Adjust according to your requirement */
  margin-left: 4px; /* Space between logo and text */
  color: #f7a341 !important;
  font-weight: 600;

}




