* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
}

#about-section {
  text-align: center;
  padding: 100px 5px 150px 5px;
}

.image-containers {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: auto;
  overflow: hidden;
  display: flex;
  justify-content: center;
}

.image-containers img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  border-radius: 8px;
}

.counter-container {
  display: flex;
  gap: 5px;
  padding-top: 26px;
  justify-content: space-between;
  flex-wrap: wrap;
}

.counter-box {
  background-color: #fbfbfb;
  padding: 15px 10px;
  border-radius: 12px;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  width: 146px;
  font-size: 2.5rem;
  color: #ad8b3a;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}

.counter-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.number-container {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0px;
}

.number {
  font-size: 2.5rem;
  color: #ad8b3a;
}

.suffix {
  font-size: 35px;
  color: #ad8b3a;
}

.counter-box {
  font-size: 1rem;
  color: black;
  margin-top: 8px;
}

.tab-button {
  margin-top: 25px;
  background-color: #ad8b3a;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 15px;
}

.tab-button:hover {
  background-color: #916e2f;
}

@media (max-width: 480px) {
  .counter-container {
    flex-direction: column;
    align-items: center;
  }

  .counter-box {
    width: 100%;
    max-width: 300px;
    margin-bottom: 15px;
  }
}

.section-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1300px;
  margin: auto;
  gap: 100px;
  /*align-items: center;*/
  justify-content: space-between;
  padding: 0px 20px;
}




.text-container {
  flex: 1;
  min-width: 300px;
}

.image-section {
  flex: 1;
  min-width: 300px;
}

.choose {
  font-size: 35px;
  font-weight: bold;
  text-transform: uppercase;
  color: #ad8b3a;
  margin-bottom: 15px;
  text-align: left;
  font-family: "Palatino Linotype";
}

.legacy {
  font-size: 26px;
  font-weight: bold;
  color: #044656;
  line-height: 1;
  margin-bottom: 30px;
  text-align: left;
}
.busi {
  text-align: justify;
  font-size: 15px;
  line-height: 1.9;
  color: #333;
}
.years {
  font-size: 14px;

  color: #333;
}

.custom-section {
  padding: 150px 100px;
  /*background-color: #fbfbfb;*/
  border-radius: 8px;
  /*box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);*/
}

.customss-section {
  padding: 40px 0px 150px 0px;
  max-width: 1300px;
  margin: auto;
  /*background-color: #fbfbfb;*/
  border-radius: 8px;
  /*box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);*/
}

.row {
  display: flex;
  flex-wrap: wrap;

  justify-content: space-between;
  gap: 30px;
}

.col-left {
  flex: 0 0 35%;
  padding-right: 30px;
}

.main-heading {
  font-size: 2.5rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 20px;
  text-align: left;
}

.description {
  font-size: 15px;
  color: #333;
  margin-bottom: 15px;
  line-height: 1.9;
  text-align: justify;
}

.cta-button {
  padding: 12px 25px;
  background-color: #ad8b3a;
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  /*border-radius: 25px;*/
  transition: background-color 0.3s;
}

.cta-button:hover {
  background-color: #0056b3;
}

.col-right {
  flex: 0 0 60%; /* 70% width for the right image column */
  text-align: center;
}

.responsive-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

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

.tab-bar {
  display: flex;
  justify-content: space-between;
  margin-top: 100px;
  gap: 20px;
  flex-wrap: wrap;
}

.tab-home {
  text-align: center;
  flex: 1;
  cursor: pointer;
  padding: 10px;
  border-radius: 10px;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid lightgrey;
  background: #fbfbfb;
}

.tab-home:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 5px rgba(0, 0, 0, 0.15);
}

.tab-image {
  /*width: 70px;*/
  height: 50px;
  object-fit: cover;
}

.tab-heading {
  margin-top: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #626262;
}

.tab-buttons {
  margin-top: 30px;
  padding: 10px 25px;
  background-color: transparent;
  color: #ad8b3a;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  transition: background-color 0.3s;
  border: 1px solid #ad8b3a;
}

.tab-buttons:hover {
  background-color: #ad8b3a !important;
  color: white;
}

.tab-button {
  margin-top: 30px;
  padding: 8px 18px;
  background-color: transparent;
  color: #ad8b3a;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  transition: background-color 0.3s;
  border: 1px solid #ad8b3a;
}

.tab-button:hover {
  background-color: #ad8b3a;
  color: white;
}

@media (max-width: 768px) {
  .row {
    flex-direction: column;
    align-items: top;
  }
  
  .section-container{
      flex-direction: column-reverse;
  }

  .tab-bar {
    flex-direction: column;
    /*align-items: center;*/
    gap: 20px;
  }

  .col-left {
    padding-right: 0;
    flex: 1;
  }

  .col-right {
    flex: 1;
  }
  .custom-section {
    padding: 40px 15px;
    background-color: #fbfbfb;
    border-radius: 8px;
    /*box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);*/
  }
  .customss-section {
    padding: 40px 15px;
    background-color: #fbfbfb;
    border-radius: 8px;
    /*box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);*/
  }
}

.creation {
  font-size: 35px;
  font-weight: bold;
  text-transform: UPPERCASE;
  color: #ad8b3a;
  margin-bottom: 15px;
  font-family: "Palatino Linotype";
}
.excel {
  font-size: 26px;
  font-weight: bold;
  color: #044656;
  line-height: 1;
  margin-bottom: 30px;
}

.why-choose-us {
  background-color: #fbfbfb;
  padding: 150px 7%;
  position: relative;
}

.why-choose-us .conta {
  display: flex;
  flex-wrap: wrap;
  gap: 100px;
  justify-content: space-between;
  /*align-items: center;*/
}

.why-choosed-us {
  /*background-color: #fbfbfb;*/
  padding: 50px 7%;
  position: relative;
  margin-bottom: 50px;
}

.why-choosed-us .conta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

/* Left text section */
.text-section {
  flex: 1;
  max-width: 48%;
  color: #333;
}

.text-section h3 {
  font-size: 35px;
  font-weight: bold;
  text-transform: uppercase;
  color: #ad8b3a;
  margin-bottom: 15px;
}

.text-section h2 {
  font-size: 26px;
  font-weight: bold;
  color: #044656;
  line-height: 1;
  margin-bottom: 30px;
}

.text-section p {
  font-size: 15px;
  line-height: 1.9;
  color: #333;
  text-align: justify;
}

.features-sections {
  flex: 1;
  max-width: 50%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.free-sections {
  flex: 1;
  max-width: 50%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-item {
  text-align: center;
  padding: 15px 20px;
  border: 1px solid lightgrey;
  border-radius: 15px;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}

.feature-item:hover {
  transform: scale(1.1); /* Grows the item on hover */
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
}

.feature-item i {
  font-size: 40px;
  color: #ffffff;
  margin-bottom: 10px;
}

.feature-item h4 {
  font-size: 14px;
  color: #626262;
  /*font-weight: bold;*/
}

/* Video section overlap */
.video-container {
  position: absolute;
  bottom: -80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .why-choose-us .conta {
    flex-direction: column;
  }
  .why-choosed-us .conta {
    flex-direction: column;
  }

  .text-section,
  .features-section {
    max-width: 100%;
  }

  .depend {
    display: block;
  }

  #desktop {
    display: none;
  }

  .why-choose-us {
    background-color: #fbfbfb;
    padding: 30px 4%;
    position: relative;
  }

  .why-choosed-us {
    padding: 30px 4%;
    position: relative;
  }

  .features-sections {
    flex: 1;
    max-width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
  }

  .feature-item {
    text-align: center;
    padding: 10px;
  }
}

.ava {
  width: 55px;
  padding-bottom: 15px;
}

.see {
  padding-top: 25px;
}
.gap {
  padding-top: 20px;
}

.explor {
  background: #fbfbfb;
}
.containse {
  max-width: 1300px;
  margin: 0 auto;
  padding: 150px 0px 30px 0px;
  box-sizing: border-box;
}
.clients {
  background: #fbfbfb;
}
.contain {
  max-width: 1300px;
  margin: 0 auto;
  padding: 150px 0px 50px 0px;
  box-sizing: border-box;
}
.contains {
  width: 100%;
  box-sizing: border-box;
}
.exp {
  font-size: 35px;
  text-align: center;
  color: #ad8b3a;
  font-family: "Palatino Linotype";
  text-transform: uppercase;
}

.discover {
  padding-top: 30px;
  text-align: center;
  line-height: 25px;
  color: #333;
  font-size: 16px;
}

.main {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fbfbfb;
  padding-bottom: 150px;
}

.unique-carousel-container {
  position: relative;
  max-width: 1300px;
  margin: auto;
  overflow: hidden;
}

.unique-carousel {
  display: flex;
  gap: 30px; /* 25px gap between cards */
  transition: transform 0.5s ease;
}

.unique-carousel-card {
  position: relative;
  flex: 0 0 calc(25% - 25px); /* Subtracting the gap */
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
}

.unique-carousel-card img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.unique-carousel-card:hover img {
  transform: scale(1.1);
}

.unique-card-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 15px;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  text-align: left;
  opacity: 0;
  transform: translateY(100%);
  transition: all 0.3s ease;
}

.unique-carousel-card:hover .unique-card-overlay {
  opacity: 1;
  transform: translateY(0);
}

.unique-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 10;
  border: 2px solid white;
}

.unique-carousel-btn.left-btn {
  left: 20px;
  width: 5%;
  font-size: 22px;
  padding: 20px;
}

.unique-carousel-btn.right-btn {
  right: 10px;
  width: 5%;
  font-size: 22px;
  padding: 20px;
}

.unique-slider {
  margin: 20px auto;
  width: 80%;
  height: 5px;
  background: #d3d3d3;
  position: relative;
  border-radius: 5px;
}

.unique-slider-progress {
  height: 5px;
  background: #005a84;
  width: 0%;
  border-radius: 5px;
  transition: width 0.5s ease;
}

/* Responsive styling */
@media (max-width: 768px) {
  .unique-carousel-card {
    flex: 0 0 calc(100% - 25px); /* Full width minus gap */
  }

  .unique-carousel-btn.left-btn,
  .unique-carousel-btn.right-btn {
    width: 14%;
    font-size: 22px;
    padding: 10px;
  }
}

.footers {
  background-color: #1a1a1a;
  color: #fff;
  padding: 60px 80px;
}
.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.footer-column {
  flex: 1 1 200px;
  margin: 20px;
}
.footer-column h3 {
  color: #fff;
  margin-bottom: 15px;
  position: relative;
}
.footer-column h3::after {
  content: "";
  display: block;
  width: 50px;
  height: 2px;
  background-color: #d4af37;
  margin-top: 5px;
}
.footer-column ul {
  list-style: none;
  padding: 0;
}
.footer-column ul li {
  margin: 8px 0;
}
.footer-column ul li a {
  color: #aaa;
  text-decoration: none;
  font-size: 15px;
}
.footer-column ul li a:hover {
  color: #ad8b3a;
}
.footer-column .contact {
  margin: 8px 0;
  color: #aaa;
}
.footer-social {
  text-align: center;
  margin-top: 20px;
}
.footer-social a {
  color: #fff;
  margin: 0 10px;
  font-size: 17px;
  text-decoration: none;
}
.footer-social a:hover {
  color: #ad8b3a;
}
.footer-bottom {
  text-align: center;
  margin-top: 20px;
  color: #aaa;
  font-size: 14px;
}
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: left;
  }
  .footer-column {
    text-align: left;
  }
  .footers {
    padding: 40px 2px;
  }
  .footer-column {
    flex: 1 1 110px;
  }
}
.business {
  font-size: 15px;
  line-height: 24px;
  color: #aaa;
  text-align: justify;
}

.client {
  /*background-color:#fbfbfb;*/
  padding-top: 150px;
  max-width: 1300px;
  margin: auto;
}

.yout {
  background: #fbfbfb;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 2px 2px 2px -3px lightgray;
}
.depth {
  border: 1px solid lightgray;
  border-radius: 8px;
}

.video-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}
.video-popup-content {
  position: relative;
  width: 80%;
  max-width: 800px;
}
.video-popup iframe {
  width: 100%;
  height: 450px;
}
.video-popup .close {
  position: absolute;
  top: -20px;
  right: -20px;
  background: #fff;
  color: #000;
  border: none;
  font-size: 24px;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}
.play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 28px;
  color: white;
  background: #ff0033;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.testimonial .play-icon {
  opacity: 1;
}
.owl-carousel .testimonial {
  text-align: center;
  cursor: pointer;
}

.owl-carousel .testimonial img {
  width: 100%;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.owl-carousel .testimonial img:hover {
  transform: scale(1.05);
}

.video-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 9999;
}

.video-popup-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  max-width: 800px;
  background: #434343;
  padding: 10px;
  border-radius: 8px;
  text-align: center;
}

.video-popup-content .close {
  position: absolute;
  top: 10px;
  right: 10px;
  color: black;
  font-size: 30px;
  cursor: pointer;
}

.blog-section {
  padding: 0px 20px 150px 20px;
  text-align: center;
  background: #fbfbfb;
}
.blog-section h2 {
  font-size: 25px;
  margin-bottom: 5px;
  text-align: left;
  padding-left: 50px;
}
.blog-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: center;
}
.blog-card {
  background: #fff;
  border: 1px solid #ddd;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  max-width: 300px;
  width: 100%;
  padding: 5px;
  border-radius: 10px;
}
.blog-card img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}
.blog-card-content {
  padding: 15px;
  text-align: left;
}
.blog-card-content h3 {
  font-size: 15px;
  margin: 10px 0;
  color: #044656;
}
.blog-card-content p {
  font-size: 15px;
  color: #333;
  margin-bottom: 15px;
}
.read-more {
  display: inline-block;

  background-color: transparent;
  color: #ad8b3a;
  text-decoration: none;
  font-size: 0.9em;
  text-align: center;
}
.read-more:hover {
  border-bottom: 2px solid #ad8b3a;
}
.view-all {
  margin-top: 50px;
}
.view-all a {
  padding: 10px 35px;
  background-color: white;
  color: #ad8b3a;
  text-decoration: none;
  font-size: 1em;
  border: 1px solid #ad8b3a;
  border-radius: 25px;
}
.view-all a:hover {
  background-color: #ad8b3a;
  color: white;
}

@media (max-width: 768px) {
  .blog-cards {
    flex-direction: column;
    align-items: center;
  }
}
.last {
  color: #ad8b3a;
  font-family: "Palatino Linotype";
  text-transform: uppercase;
}
.discovered {
  padding-bottom: 35px;
  padding-top: 10px;
  color: #333;
  padding-left: 50px;
  text-align: left;
}

.contact-section {
  padding: 150px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.containe {
  max-width: 1300px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-content {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
}

.image-container {
  flex: 1;
  min-width: 300px;
}

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

.form-container {
  flex: 1.2;
  min-width: 400px;
  padding: 40px;
  background-color: #fbfbfb;
  box-sizing: border-box;
}

.form-container h2 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
}

.form-container p {
  font-size: 16px;
  margin-bottom: 20px;
}

.form-group,
.form-group-inline {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 15px;
}

.form-group-inline {
  flex-direction: row;
  gap: 10px;
}

.form-group-inline select,
.form-group-inline input {
  flex: 1;
}

input,
select,
textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 15px;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: #a27b5c; /* Accent color */
  box-shadow: 0 0 3px rgba(162, 123, 92, 0.5);
}

.form-group-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
}

.form-group-checkbox label {
  line-height: 1.4;
}

.submit-btn {
  padding: 10px 40px;
  background-color: transparent; /* Accent color */
  color: #ad8b3a;
  border: none;
  border-radius: 35px;
  cursor: pointer;
  font-size: 16px;

  transition: background-color 0.3s ease;
  border: 1px solid #ad8b3a;
}

.submit-btn:hover {
  background-color: #ad8b3a; /* Darker shade of accent */
  color: white;
}

/* Responsive Design Fixes */
@media (max-width: 1024px) {
  .form-container {
    padding: 30px;
  }

  .form-group-inline {
    flex-direction: column;
    gap: 10px;
  }

  .form-group-inline input,
  .form-group-inline select {
    width: 100%;
  }
}

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

  .form-container {
    padding: 20px;
    min-width: unset;
  }

  .image-container {
    order: 2;
  }

  .form-container {
    order: 1;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .form-container h2 {
    font-size: 20px;
  }

  .buttons {
    display: none;
  }

  .form-container p {
    font-size: 14px;
  }

  input,
  select,
  textarea {
    font-size: 12px;
    padding: 8px;
    color: #757575 !important;
  }

  .input {
    color: #757575 !important;
  }

  .submit-btn {
    font-size: 14px;
    padding: 10px 15px;
  }
}

.got {
  color: #044656;
}

.select {
  color: #757575;
}

.form-group-inline select,
.form-group-inline input {
  color: #757575 !important;
}

/*about-use*/

*,
::before,
::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* homes Section */
.homess {
  height: 75vh;
  position: relative;
  overflow: hidden;
}

/* Video Styling */
video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.homes-content {
  position: relative;
  padding-top: 150px;
  color: #fff;
  text-align: center;
  z-index: 2; /* Above the overlay */
}

h1 {
  font-size: clamp(45px, 7vw, 130px);
  line-height: 1.1;
}

.homes p {
  font-size: clamp(25px, 4vw, 40px);
  margin-top: 10px;
}

.homes-content button {
  display: block;
  font-size: clamp(14px, 1.5vw, 18px);
  border: 1px solid #f1f1f1;
  border-radius: 5px;
  background: transparent;
  color: #fff;
  margin: 50px auto 0;
  padding: 12px 20px;
  cursor: pointer;
}

/* Responsive Fix for Smaller Screens */
@media (max-width: 768px) {
  .homes-content {
    padding-top: 100px;
  }
  h1 {
    font-size: clamp(30px, 5vw, 90px);
  }
  .homes p {
    font-size: clamp(18px, 3vw, 30px);
  }

  .homes {
    height: 70vh;
    position: relative;
    overflow: hidden;
  }
}

.top-features {
  background-color: #fbfbfb;
}

.features {
  text-align: center;
  padding: 30px 0;

  max-width: 1200px;
  margin: auto;
}

.features h2 {
  margin-bottom: 20px;
  font-size: 32px;
  color: #044656;
}

.subheading {
  margin-bottom: 30px;
  font-size: 16px;
  color: #333;
}

.features-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.feature-card {
  flex: 1 1 calc(30.33% - 40px);
  background-color: #ffffff;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s;
  margin: 10px;
}

.feature-card:hover {
  transform: translateY(-10px);
}

.feature-card .icon img {
  width: 50px;
  height: 50px;
}

.feature-card h3 {
  margin: 10px 0;
  font-size: 22px;
  color: #ad8b3a;
  font-weight: 300;
}

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

/* Tablet responsiveness (for screens up to 1024px) */
@media (max-width: 1150px) {
  .feature-card {
    flex: 1 1 calc(25% - 40px);
    /* Two cards per row */
  }

  .features-container {
    gap: 0;
  }
}

/* 
        @media (max-width: 920px){
            .features-container{
                gap: 0;
            }
        } */

/* Phone responsiveness (for screens up to 768px) */
@media (max-width: 640px) {
  .feature-card {
    flex: 1 1 100%;
    /* One card per row */
  }
}

#about-us-section {
  padding: 150px 0;
}

.text-blk {
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
  line-height: 25px;
  padding-top: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
  padding-left: 0px;
}

.responsive-cell-block {
  min-height: 75px;
}

.responsive-container-block {
  min-height: 75px;
  height: fit-content;
  width: 100%;
  padding-top: 10px;
  padding-right: 10px;
  padding-bottom: 10px;
  padding-left: 10px;
  display: flex;
  flex-wrap: wrap;
  margin-top: 0px;
  margin-right: auto;
  margin-bottom: 0px;
  margin-left: auto;
  justify-content: flex-start;
}

.responsive-container-block.bigContainer {
  padding: 50px 20px;
  margin-top: 10px;
  margin-right: 0px;
  /*margin-bottom: 30px;*/
  margin-left: 0px;
  /*background-color: #EDF2FA;*/
}

.responsive-container-block.Container {
  max-width: 1320px;
  justify-content: space-evenly;
  align-items: center;
  padding-top: 10px;
  padding-right: 10px;
  padding-bottom: 0px;
  padding-left: 10px;
  position: relative;
  overflow-x: hidden;
  overflow-y: hidden;
  margin-top: 0px;
  margin-right: auto;
  margin-bottom: 0px;
  margin-left: auto;
  max-width: 1200px;
}

.mainImg {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 7px;
}

.blueDots {
  position: absolute;
  top: 150px;
  right: 15%;
  z-index: -1;
  left: auto;
  width: 80%;
  height: 500px;
  object-fit: cover;
}

.imgContainer {
  position: relative;
  width: 48%;
}

.responsive-container-block.textSide {
  width: 48%;
  padding-top: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
  padding-left: 0px;
  z-index: 100;
}

.text-blk.heading {
  font-size: 35px;
  font-weight: bold;
  text-transform: uppercase;
  color: #ad8b3a;
  margin-bottom: 15px;
  font-family: "Palatino Linotype";
}

.text-blk.subHeading {
  font-size: 15px;
  line-height: 26px;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 20px;
  margin-left: 0px;
  color: #333;
  text-align: justify;
}

.cardImg {
  width: 50px;
  height: 50px;
}

.cardImgContainer {
  padding-top: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
  padding-left: 20px;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  /*border-top-style: solid;*/
  /*border-right-style: solid;*/
  /*border-bottom-style: solid;*/
  /*border-left-style: solid;*/
  /*border-top-color: rgb(229, 229, 229);*/
  /*border-right-color: rgb(229, 229, 229);*/
  /*border-bottom-color: rgb(229, 229, 229);*/
  /*border-left-color: rgb(229, 229, 229);*/
  border-image-source: initial;
  border-image-slice: initial;
  border-image-width: initial;
  border-image-outset: initial;
  border-image-repeat: initial;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  margin-top: 0px;
  margin-right: 10px;
  margin-bottom: 0px;
  margin-left: 0px;
  /*background-color: #fff;*/
}

.responsive-cell-block.wk-desk-6.wk-ipadp-6.wk-tab-12.wk-mobile-12 {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 15px 10px 0;
}

.text-blk.cardHeading {
  font-size: 15px;
  line-height: 10px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #333;
}

.text-blk.cardSubHeading {
  color: #333;
  line-height: 20px;
  font-size: 14px;
}

.about-us {
  background-color: #fff;
}

#ixvck {
  margin-top: 60px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
}

@media (max-width: 1024px) {
  .responsive-container-block.Container {
    position: relative;
    align-items: flex-start;
    justify-content: center;
  }

  .mainImg {
    bottom: 0px;
  }

  .imgContainer {
    position: absolute;
    bottom: 0px;
    left: 0px;
    height: auto;
    width: 60%;
  }

  .responsive-container-block.textSide {
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: auto;
    width: 70%;
  }

  .responsive-container-block.Container {
    flex-direction: column-reverse;
  }

  .imgContainer {
    position: relative;
    width: auto;
    margin-top: 0px;
    margin-right: auto;
    margin-bottom: 0px;
    margin-left: auto;
  }

  .responsive-container-block.textSide {
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 20px;
    margin-left: 0px;
    width: 100%;
  }

  .responsive-container-block.Container {
    flex-direction: row-reverse;
  }

  .responsive-container-block.Container {
    flex-direction: column-reverse;
  }
}

@media (max-width: 768px) {
  .responsive-container-block.textSide {
    width: 100%;
    align-items: center;
    flex-direction: column;
    justify-content: center;
  }

  .text-blk.subHeading {
    text-align: center;
    font-size: 17px;
    max-width: 520px;
  }

  .text-blk.heading {
    text-align: center;
  }

  .imgContainer {
    opacity: 0.8;
  }

  .imgContainer {
    height: 500px;
  }

  .imgContainer {
    width: 30px;
  }

  .responsive-container-block.Container {
    flex-direction: column-reverse;
  }

  .responsive-container-block.Container {
    flex-wrap: nowrap;
  }

  .responsive-container-block.textSide {
    width: 100%;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 20px;
    margin-left: 0px;
  }

  .imgContainer {
    width: 90%;
  }

  .imgContainer {
    height: 450px;
    margin-top: 5px;
    margin-right: 33.9062px;
    margin-bottom: 0px;
    margin-left: 33.9062px;
  }
}

@media (max-width: 500px) {
  .imgContainer {
    position: static;
    height: 450px;
  }

  .mainImg {
    height: 100%;
    object-fit: cover;
    object-position: 24% 100%;
    border-radius: 15px;
  }

  .blueDots {
    width: 100%;
    left: 0px;
    top: 0px;
    bottom: auto;
    right: auto;
  }

  .imgContainer {
    width: 100%;
  }

  .responsive-container-block.textSide {
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
  }

  .responsive-container-block.Container {
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 40px;
    padding-left: 0px;
    overflow-x: visible;
    overflow-y: visible;
  }

  .responsive-container-block.bigContainer {
    padding-top: 10px;
    padding-right: 20px;
    padding-bottom: 10px;
    padding-left: 20px;
    padding: 0 10px 0 10px;
  }

  .text-blk.subHeading {
    font-size: 16px;
    line-height: 23px;
  }

  .text-blk.heading {
    font-size: 28px;
    line-height: 28px;
    font-weight: 300;
  }

  .responsive-container-block.textSide {
    margin-top: 40px;
    margin-right: 0px;
    margin-bottom: 50px;
    margin-left: 0px;
  }

  .imgContainer {
    margin-top: 5px;
    margin-right: auto;
    margin-bottom: 0px;
    margin-left: auto;
    width: 100%;
    position: relative;
  }

  #ixvck {
    width: 90%;
    margin-top: 40px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
    font-size: 15px;
  }

  .blueDots {
    bottom: 0px;
    width: 100%;
    height: 80%;
    top: 10%;
  }

  .text-blk.cardHeading {
    font-size: 16px;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 8px;
    margin-left: 0px;
    line-height: 25px;
  }

  .responsive-cell-block.wk-desk-6.wk-ipadp-6.wk-tab-12.wk-mobile-12 {
    padding-top: 10px;
    padding-right: 0px;
    padding-bottom: 10px;
    padding-left: 0px;
  }
}

.wk-desk-1 {
  width: 8.333333%;
}

.wk-desk-2 {
  width: 16.666667%;
}

.wk-desk-3 {
  width: 25%;
}

.wk-desk-4 {
  width: 33.333333%;
}

.wk-desk-5 {
  width: 41.666667%;
}

.wk-desk-6 {
  width: 50%;
}

.wk-desk-7 {
  width: 58.333333%;
}

.wk-desk-8 {
  width: 66.666667%;
}

.wk-desk-9 {
  width: 75%;
}

.wk-desk-10 {
  width: 83.333333%;
}

.wk-desk-11 {
  width: 91.666667%;
}

.wk-desk-12 {
  width: 100%;
}

@media (max-width: 1024px) {
  .wk-ipadp-1 {
    width: 8.333333%;
  }

  .wk-ipadp-2 {
    width: 16.666667%;
  }

  .wk-ipadp-3 {
    width: 25%;
  }

  .wk-ipadp-4 {
    width: 33.333333%;
  }

  .wk-ipadp-5 {
    width: 41.666667%;
  }

  .wk-ipadp-6 {
    width: 50%;
  }

  .wk-ipadp-7 {
    width: 58.333333%;
  }

  .wk-ipadp-8 {
    width: 66.666667%;
  }

  .wk-ipadp-9 {
    width: 75%;
  }

  .wk-ipadp-10 {
    width: 83.333333%;
  }

  .wk-ipadp-11 {
    width: 91.666667%;
  }

  .wk-ipadp-12 {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .wk-tab-1 {
    width: 8.333333%;
  }

  .wk-tab-2 {
    width: 16.666667%;
  }

  .wk-tab-3 {
    width: 25%;
  }

  .wk-tab-4 {
    width: 33.333333%;
  }

  .wk-tab-5 {
    width: 41.666667%;
  }

  .wk-tab-6 {
    width: 50%;
  }

  .wk-tab-7 {
    width: 58.333333%;
  }

  .wk-tab-8 {
    width: 66.666667%;
  }

  .wk-tab-9 {
    width: 75%;
  }

  .wk-tab-10 {
    width: 83.333333%;
  }

  .wk-tab-11 {
    width: 91.666667%;
  }

  .wk-tab-12 {
    width: 100%;
  }
}

@media (max-width: 500px) {
  .wk-mobile-1 {
    width: 8.333333%;
  }

  .wk-mobile-2 {
    width: 16.666667%;
  }

  .wk-mobile-3 {
    width: 25%;
  }

  .wk-mobile-4 {
    width: 33.333333%;
  }

  .wk-mobile-5 {
    width: 41.666667%;
  }

  .wk-mobile-6 {
    width: 50%;
  }

  .wk-mobile-7 {
    width: 58.333333%;
  }

  .wk-mobile-8 {
    width: 66.666667%;
  }

  .wk-mobile-9 {
    width: 75%;
  }

  .wk-mobile-10 {
    width: 83.333333%;
  }

  .wk-mobile-11 {
    width: 91.666667%;
  }

  .wk-mobile-12 {
    width: 100%;
  }
}

.tutoring-section {
  text-align: center;
  padding: 150px 0px;
  max-width: 1300px;
  margin: auto;
}

.tutoring-header {
  font-size: 32px;
  margin-bottom: 20px;
  color: #02224e;
}

/* .tutoring-highlight {
  color:#EE3233;
} */

.tutoring-description {
  color: #333;
  margin-bottom: 30px;
}

/* Tutoring Cards Container */
.tutoring-cards-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 20px 0;
  max-width: 1300px;
  margin: auto;
}

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

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

.tutoring-card-icon {
  width: 150px;
  margin-bottom: 15px;
  height: auto;
}

.tutoring-card-title {
  font-size: 18px;
  margin-bottom: 10px;
  color: #ad8b3a;
  font-weight: 300;
}

.tutoring-card-description {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
}

/* Responsiveness */
@media (max-width: 1024px) {
  .tutoring-cards-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .tutoring-cards-container {
    grid-template-columns: 1fr;
  }

  .tutoring-card {
    padding: 15px;
  }
}

.cta-btn {
  max-width: 1200px;
  margin: auto;
}

.learner-support-container {
  padding: 40px 0;
  text-align: center;
}

.learner-support-title {
  font-size: 28px;
  font-weight: 300;
  color: #02224e;
  margin: 0 0 10px 0;
}

.learner-support-highlight {
  color: #48a7ff;
}

.learner-support-description {
  font-size: 16px;
  margin-bottom: 30px;
  color: #333;
}

.learner-support-contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

.learner-contact-item {
  display: flex;
  align-items: center;
  gap: 20px;
  /*flex: 1 1 calc(50% - 20px); */
  min-width: 300px;
  justify-content: center;
}

/* Label with Icon */
.learner-label-with-icon {
  display: flex;
  align-items: center;
  gap: 10px;
}

.learner-label-icon {
  width: 40px;
  height: 40px;
}

.learner-label {
  font-size: 16px;
  font-weight: bold;
  color: #333;
  margin: 0;
  text-align: left;
}

/* Contact Card */
.learner-contact-card {
  border: 1px solid #ad8b3a;
  border-radius: 10px;
  padding: 10px 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 250px;
}

.learner-phone-link {
  font-size: 16px;
  color: #333;
  text-decoration: none;
  font-weight: bold;
}

.learner-phone-link:hover {
  text-decoration: none;
}

/*Banner css*/
.about-us {
  height: 500px; /* Aap is height ko media queries se adjust kar sakte ho */
  position: relative;
  overflow: hidden;
  width: 100%;
}

.about-us img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Image ko container ke hisaab se fit karne ke liye */
}

.sections-container {
  width: max-content;
}

/* Responsive Design */
@media (max-width: 768px) {
  .learner-support-contacts {
    flex-direction: row;
    gap: 15px;
    /*margin: 0 15px;*/
  }

  .learner-contact-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .learner-contact-card {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .learner-support-title {
    font-size: 24px;
  }

  .learner-contact-item {
    gap: 15px;
  }

  .learner-support-description {
    font-size: 14px;
  }
}

/*Contact-us*/

.top-featuring {
  background-color: white;
}

.features {
  text-align: center;
  padding: 150px 0;
  max-width: 1300px;
  margin: auto;
}

.features h2 {
  margin-bottom: 20px;
  font-size: 32px;
  color: #044656;
}

.subheading {
  margin-bottom: 30px;
  font-size: 16px;
  color: #333;
}

.features-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.feature-card {
  flex: 1 1 calc(30.33% - 40px);
  background-color: #ffffff;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s;
  margin: 10px;
}

.feature-card:hover {
  transform: translateY(-10px);
}

.feature-card .icon img {
  width: 50px;
  height: 50px;
}

.feature-card h3 {
  margin: 10px 0;
  font-size: 22px;
  color: #ad8b3a;
  font-weight: 300;
}

.feature-card p {
  font-size: 15px;
  color: #333;
}

/* Tablet responsiveness (for screens up to 1024px) */
@media (max-width: 1150px) {
  .feature-card {
    flex: 1 1 calc(25% - 40px);
    /* Two cards per row */
  }

  .features-container {
    gap: 0;
  }
}

/* 
        @media (max-width: 920px){
            .features-container{
                gap: 0;
            }
        } */

/* Phone responsiveness (for screens up to 768px) */
@media (max-width: 640px) {
  .feature-card {
    flex: 1 1 100%;
    /* One card per row */
  }
}

.map-container {
  position: relative;
  width: 100%;
  height: 500px; /* Set your desired height here */
  overflow: hidden;
}

.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Optional: Add responsiveness for smaller screens */
@media (max-width: 768px) {
  .map-container {
    height: 300px; /* Adjust height for smaller screens */
  }
}

/*about us page */

.tutoring-cards-container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.tutoring-card {
  flex: 1; /* Ensures equal width */
  max-width: 50%; /* Limits each card to half of the container */
}

@media (max-width: 768px) {
  .tutoring-cards-container {
    flex-direction: column;
  }
  .tutoring-card {
    max-width: 100%;
  }
}

.found {
  color: #044656;
  padding-bottom: 10px;
}

/*contatc form section */

.cf-section-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  padding: 40px 7%;
  gap: 20px;
  background-color: #fbfbfb;
}

.cf-form-container,
.cf-contact-container {
  flex: 1 1 400px;
  background: #fff;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

.cf-form-container h2 {
  margin-bottom: 20px;
  font-size: 20px;
}

.cf-form-container form {
  display: flex;
  flex-direction: column;
}

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

.cf-form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

.cf-form-group input,
.cf-form-group select {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
}

.cf-form-group input:focus,
.cf-form-group select:focus {
  border-color: #007bff;
  outline: none;
}

.cf-submit-btn {
  background-color: #ad8b3a;
  color: #fff;
  padding: 10px 15px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  margin-top: 10px;
}

.cf-submit-btn:hover {
  background-color: transparent;
  border: 1px solid #ad8b3a;
  color: #ad8b3a;
}

.cf-contact-container h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.cf-contact-container p {
  margin: 5px 0;
  font-size: 16px;
}

.cf-map-wrapper {
  margin-top: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  overflow: hidden;
}

iframe {
  width: 100%;
  height: 420px;
  border: none;
}

@media (max-width: 768px) {
  .cf-form-container,
  .cf-contact-container {
    flex: 1 1 100%;
  }
}

.cf-section-heading {
  text-align: left;
  font-size: 20px;
  font-weight: bold;
  text-transform: uppercase;
  color: #ad8b3a;
  margin-bottom: 15px;
  font-family: "Palatino Linotype";
}

/*managed-office css*/

.about-managed {
  text-align: left;
  color: #044656;
  font-size: 20px;
  font-weight: bold;
  margin-top: 25px;
}

.about-section {
  text-align: center;
  padding: 150px 0px;
}

.section-table-wrapper {
  padding: 150px 0;
  background-color: #f7f7f7;
}

.wrapper-table-div {
  max-width: 1300px;
  margin: auto;
}

.heading-main {
  color: #ad8b3a;
  font-size: 35px;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
  padding-bottom: 30px;
  font-family: "Palatino Linotype";
}

.sub-content {
  font-size: 16px;
  text-align: center;
  margin-bottom: 50px;
}

.custom-table {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.table-head-row {
  display: flex;
  background-color: #044656;
  color: white;
}

.table-head-cell {
  flex: 1;
  padding: 20px 12px;
  font-weight: bold;
  text-align: center;
  border: 1px solid #ccc;
}

.table-body {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.table-body-row {
  display: flex;
  border: 1px solid #ccc;
  flex-wrap: wrap;
  background-color: white;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.table-body-row:hover {
  transform: scale(1.03);
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
}

.table-feature {
  flex: 1;
  font-weight: bold;
  padding: 20px 12px;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #044656;
}

.table-feature-icon {
  color: #ad8b3a;
  font-size: 18px;
  width: 50px;
}

.table-cell {
  flex: 1;
  padding: 20px 12px;
  border-left: 1px solid #ccc;
  text-align: left;
  line-height: 1.9;
  color: #333;
  align-items: center;
}

@media (max-width: 768px) {
  .table-head-row {
    display: none;
  }

  .table-body-row {
    display: block;
    margin-bottom: 0;
  }

  .table-feature,
  .table-cell {
    width: 100%;
    border: none;
    padding: 10px;
    text-align: left;
  }

  .table-cell::before {
    content: attr(data-label);
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
    color: #ad8b3a;
  }

  .table-feature {
    background-color: #044656;
    color: white;
    font-weight: bold;
  }
}

.main-container {
  background-color: #fbfbfb;
  padding: 150px 0;
}

.step-section {
  max-width: 1300px;
  margin: auto;
}

.tab-wrapper {
  display: flex;
  gap: 40px;
}

.image-box {
  flex: 1;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  height: 450px;
}

.tab-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
  transition: opacity 0.5s ease-in-out;
}

.tab-photo.active {
  display: block;
  animation: fadeIn 0.5s ease-in-out;
}

.text-box {
  flex: 1;
}

.tab-entry {
  border-left: 3px solid transparent;
  padding-left: 20px;
  margin-bottom: 30px;
}

.tab-entry.active {
  border-left: 3px solid #044656;
}

.tab-header {
  font-size: 20px;
  color: #888;
  margin-bottom: 36px;
  cursor: pointer;
  font-weight: 600;
  transition: color 0.3s ease;
}

.tab-entry.active .tab-header {
  color: #044656;
}

.tab-detail {
  display: none;
  padding: 0 0 15px 0;
  animation: fadeIn 0.5s ease-in-out;
}

.tab-entry.active .tab-detail {
  display: block;
}

/* Added classes for headings and paragraphs */
.process-title {
  text-align: center;
  font-size: 35px;
  font-weight: bold;
  text-transform: uppercase;
  color: #ad8b3a;
  margin-bottom: 30px;
  font-family: "Palatino Linotype";
}

.process-description {
  margin-bottom: 50px;
  font-size: 16px;
  color: #333;
  text-align: center;
}

.section-heading {
  font-size: 16px;
  margin-bottom: 25px;
  font-weight: 600;
}

.section-paragraph {
  font-size: 15px;
  line-height: 1.6;
  color: #333;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Responsive Styles */
@media (max-width: 992px) {
  .section-heading {
    font-size: 16px;
  }

  .section-paragraph {
    font-size: 14px;
  }
}

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

  .image-box {
    margin-top: 20px;
    height: 300px;
  }

  .tab-header {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .main-container {
    padding: 0 15px;
    margin: 20px auto;
  }

  .tab-header {
    font-size: 18px;
  }

  .tab-entry {
    padding-left: 15px;
    margin-bottom: 20px;
  }

  .image-box {
    height: 250px;
  }

  .image-box {
    display: none;
  }
}

.interior-design-section {
  max-width: 1300px;
  margin: auto;
  text-align: center;
  padding: 150px 0;
}

.avanta-adv-managed-office {
  background-color: #fbfbfb;
}

.containerd {
  max-width: 1300px;
  margin: auto;
}

.containerd p {
  padding-bottom: 50px;
}

.icon-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 120px;
  margin-bottom: 35px;
}

.feature-boxeded {
  width: 26%; /* Ensures 5 boxes in one row */
  text-align: center;

  padding: 15px;
  border-radius: 10px;
  border: 1px solid lightgrey;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}

.feature-boxeded:hover{
    transform: scale(1.1); /* Grows the item on hover */
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2); 
}

.feature-boxeded img {
  width: 60px;
  height: 60px;
}

.feature-boxeded p {
  margin-top: 20px;
  font-size: 14px;
  font-weight: 500;
  color: #333;
}

@media (max-width: 768px) {
  .icon-features {
    flex-direction: column;
    align-items: center;
  }

  .feature-boxeded {
    width: 100%;
    max-width: 300px;
  }
}
.main-heading {
  text-align: center;
  font-size: 35px;
  font-weight: bold;
  text-transform: uppercase;
  color: #ad8b3a;
  margin-bottom: 15px;
  font-family: "Palatino Linotype";
}
.icon-features h3 {
  color: #044656;
  padding-top: 20px;
}

.services-container {
  background-color: #fbfbfb;
  padding: 150px 0;
}

.other-services {
  max-width: 1300px;
  margin: auto;
  position: relative; /* Position relative for absolute positioning of nav buttons */
  padding: 0 60px; /* Add padding to contain the nav buttons */
}

.services-container h1 {
  font-size: 35px;
  font-weight: bold;
  text-transform: uppercase;
  color: #044656;
  margin-bottom: 15px;
  text-align: left;
  font-family: "Palatino Linotype";
}

.slider-container {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.slider {
  display: flex;
  transition: transform 0.5s ease;
}

.service-card {
  flex: 0 0 100%;
  padding: 0 10px;
  transition: all 0.3s ease;
}

@media (min-width: 768px) {
  .service-card {
    flex: 0 0 50%;
  }
}

@media (min-width: 992px) {
  .service-card {
    flex: 0 0 33.333%;
  }
}

@media (min-width: 1200px) {
  .service-card {
    flex: 0 0 25%;
  }
}

.service-card-inner {
  border: 2px solid #f0f0f0;
  border-radius: 5px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

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

.service-card-content {
  padding: 20px;
  background-color: #fff;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.service-card-title {
  font-size: 20px;
  font-weight: normal;
  margin-bottom: 10px;
  color: #044656;
}

.service-card-description {
  color: #666;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 15px;
}

.more-info {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #0077cc;
  font-weight: 600;
  margin-top: auto;
}

.more-info span {
  margin-right: 5px;
}

.more-info i {
  font-size: 12px;
}

.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 10;
  transition: all 0.3s ease;
}

.slider-nav:hover {
  background-color: #f0f0f0;
}

.slider-nav.prev {
  left: 0; /* Position outside the slider */
}

.slider-nav.next {
  right: 0; /* Position outside the slider */
}

.slider-nav.hidden {
  display: none;
}

.slider-dots {
  display: none;
  justify-content: center;
  margin-top: 20px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #ddd;
  margin: 0 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.dot.active {
  background-color: #0077cc;
}

/* Media queries for responsive nav buttons */
@media (max-width: 767px) {
  .other-services {
    padding: 0 50px;
  }
}

/*office-space/connaught-place-delhi css*/

.predict {
  display: flex;
  flex-wrap: wrap;
  max-width: 1300px;
  margin: 0 auto;
  padding: 150px 0;
  gap: 100px;
}

.prediction {
  flex: 1;
  min-width: 300px;
}

.prediction h1 {
  font-size: 30px;
  font-weight: bold;
  text-transform: uppercase;
  color: #ad8b3a;
  margin-bottom: 15px;
  font-family: "Palatino Linotype", serif;
}

.prediction h2 {
  font-size: 26px;
  font-weight: bold;
  color: #044656;
  line-height: 1.2;
  margin-bottom: 30px;
}

.prediction p {
  font-size: 15px;
  line-height: 1.9;
  color: #333;
  margin-bottom: 15px;
  text-align: left;
}

.button {
  display: inline-block;
  padding: 8px 18px;
  background-color: transparent;
  color: #ad8b3a;
  border: 1px solid #ad8b3a;
  border-radius: 41px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  font-weight: 500;
  margin-top: 10px;
}

.button:hover {
  background: #ad8b3a;
  color: white;
}

.carousel-container {
  flex: 1;
  min-width: 300px;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  /*box-shadow: 0 4px 12px rgba(0,0,0,0.1);*/
}

.carousel-slide {
  display: flex;
  width: 100%;
  height: 288px;
}

.carousel-slide img {
  width: 100%;
  height: 192%;
  object-fit: cover;
  display: none;
}

.carousel-slide img.active {
  display: block;
}

.carousel-nav {
  display: flex;
  justify-content: center;
  margin-top: 295px;
  gap: 8px;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ccc;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.carousel-dot.active {
  background-color: #ad8b3a;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background-color 0.3s;
}

.carousel-btn:hover {
  background-color: #ad8b3a;
}

.prev-btn {
  left: 10px;
}

.next-btn {
  right: 10px;
}

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

  .carousel-container {
    order: -1;
    margin-bottom: 20px;
    height: 250px;
  }

  .carousel-slide {
    height: 250px;
  }
}

/*serviced office 2nd page */

.section-cont {
  text-align: center;
  max-width: 1300px;
  margin: 95px auto;
  /*padding: 20px 7%;*/
}

.main-heading {
  font-size: 32px;
  font-weight: bold;
  color: #002747;
}

.premin {
  font-size: 22px;
  font-weight: bold;
  color: #044656;
  line-height: 1;
  margin-bottom: 20px;
  text-align: center;
}

.area {
  font-size: 17px;
  color: #333;
  margin-top: 15px;
  line-height: 1.9;
}

.nav-tabs-wrapper {
  display: flex;
  justify-content: center;
  gap: 10px;
}
.nav-tab-btn {
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  font-size: 16px;
  color: white;
  transition: background 0.3s;
}
.nav-tab-btn.current-tab {
  background: #005a84;
}
.nav-tab-btn:not(.current-tab) {
  background: #ad875e;
}
.nav-tab-btn:not(.current-tab):hover {
  background: #005a84;
}
.nav-tab-content {
  margin-top: 20px;
  padding: 20px;
  border: 1px solid #ccc;
  display: none;
}
.nav-tab-content.show-content {
  display: block;
}
@media (max-width: 600px) {
  .nav-tabs-wrapper {
    flex-direction: column;
    padding: 0 20px;
  }
  .nav-tab-btn {
    width: 100%;
  }
}

/* General Styles */
.services-section {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 40px 7%;
  background: #fbfbfb;
}

/* Tab Section Styles */
.tabs {
  flex: 1;
  max-width: 30%;
  display: flex;
  flex-direction: column;
  border-right: 1px solid #ddd;
  background: white !important;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding: 10px;
}

.tab {
  padding: 15px;
  display: flex;
  align-items: center;
  cursor: pointer;
  border-radius: 8px;
  margin-bottom: 10px;
  transition: all 0.3s ease;
}

.tab img {
  width: 35px;
  height: 35px;
  margin-right: 10px;
  border-radius: 50%;
  border: 1px solid #ddd;
  transition: transform 0.3s;
  background: white;
}

.tab:hover img {
  transform: scale(1.1);
}

.tab:hover {
  background: #c9a655;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}

.tab.active {
  background: #c9a655;
  /*border: 1px solid #00bcd4;*/
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.tab p {
  font-size: 16px;
  color: #333;
  font-weight: bold;
}

.tab p:hover {
  color: #fff;
}

/* Content Section Styles */
.content {
  flex: 2;
  max-width: 70%;
  padding: 10px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

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

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

.content-item img {
  max-width: 100%;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.content-item h2 {
  font-size: 22px;
  color: #044656;
  margin-bottom: 10px;
}

.content-item p {
  font-size: 17px;
  color: #333;
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
  .tabs,
  .content {
    max-width: 100%;
    flex: 1;
    margin: 0;
    border: none;
    box-shadow: none;
  }

  .tabs {
    margin-bottom: 20px;
  }

  .tab {
    margin-bottom: 8px;
  }
}

/* Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.ser {
  padding-top: 40px;
}

#custom-section .custom-card-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 25px 7%;
}

#custom-section {
  padding-top: 40px;
}

.custom-card {
  /*background: #fff;*/
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  width: 32%; /* Ensures 3 cards per row */
  transition: transform 0.3s;
}

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

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

.custom-card-content {
  padding: 20px;
  text-align: left;
  backdrop-filter: blur(15px) saturate(180%);
  -webkit-backdrop-filter: blur(15px) saturate(180%);
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 15px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  color: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.custom-card-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.middle-button {
  display: flex;
  justify-content: center;
  margin: 20px 0;
}

.middle-button a {
  padding: 8px 18px;
  background-color: transparent;
  color: #ad8b3a;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  transition: background-color 0.3s;
  border: 1px solid #ad8b3a;
  text-decoration: none;
}

.middle-button a:hover {
  background-color: #ad8b3a;
  color: white;
  border: 1px solid #ad8b3a;
}

.custom-card-title {
  margin: 10px 0;
  font-size: 17px;
  color: #ad8b3a;
  font-weight: 300;
}

.custom-card-title a {
  text-decoration: none;
  color: inherit;
}

.custom-card-title a:hover {
  color: black;
}

.custom-card-location {
  font-size: 14px;
  color: #666;
  display: flex;
  align-items: center;
  gap: 5px;
}

.custom-card-location span {
  font-size: 16px;
  color: #333;
}

/* Media queries */
@media (max-width: 768px) {
  .custom-card-container {
    gap: 15px;
  }

  .custom-card {
    width: 45%;
  }
}

@media (max-width: 480px) {
  .custom-card {
    width: 100%;
  }
}
.main-heading {
  text-align: center;
  font-size: 35px;
  font-weight: bold;
  text-transform: uppercase;
  color: #ad8b3a;
  margin-bottom: 30px;
  font-family: "Palatino Linotype";
}
.main-paragraph {
  text-align: center;
  font-size: 15px;
}

.main-headings {
  text-align: left;
  font-size: 25px;
  font-weight: bold;
  text-transform: uppercase;
  color: #ad8b3a;
  margin-bottom: 15px;
  font-family: "Palatino Linotype";
}

/*contact form css*/

.top-featuring {
  background-color: white;
}

.features {
  text-align: center;
  padding: 30px 0;

  max-width: 1200px;
  margin: auto;
}

.features h2 {
  margin-bottom: 20px;
  font-size: 32px;
  color: #044656;
}

.subheading {
  margin-bottom: 30px;
  font-size: 16px;
  color: #333;
}

.features-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.feature-card {
  flex: 1 1 calc(30.33% - 40px);
  background-color: #ffffff;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s;
  margin: 10px;
}

.feature-card:hover {
  transform: translateY(-10px);
}

.feature-card .icon img {
  width: 50px;
  height: 50px;
}

.feature-card h3 {
  margin: 10px 0;
  font-size: 22px;
  color: #ad8b3a;
  font-weight: 300;
}

.feature-card p {
  font-size: 15px;
  color: #333;
}

@media (max-width: 1150px) {
  .feature-card {
    flex: 1 1 calc(25% - 40px);
    /* Two cards per row */
  }

  .features-container {
    gap: 0;
  }
}

/* 
        @media (max-width: 920px){
            .features-container{
                gap: 0;
            }
        } */

@media (max-width: 640px) {
  .feature-card {
    flex: 1 1 100%;
    /* One card per row */
  }
}

/*location card section css*/

.section-contact-us {
  background-color: #f9f9f9;
  padding: 150px 0;
}

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

.location_container {
  display: flex;
  flex-wrap: wrap;
  gap: 90px;
  justify-content: space-between;
}

.location_box {
  background-color: #ffffff;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  width: 45%;
  padding: 10px;
  text-align: left;
}

.location_title {
  background-color: #ad8b3a;
  color: #ffffff;
  padding: 10px;
  border-radius: 4px;
  /*text-align: center;*/
  font-size: 20px;
}

.location_subtitle {
  color: #555555;
  font-weight: bold;
  margin: 10px 0;
}

.location_details {
  font-size: 14px;
  line-height: 1.6;
  color: #333333;
}

.location_details a {
  color: #007bff;
  text-decoration: none;
}

.location_details a:hover {
  text-decoration: underline;
}

.location_map {
  width: 100%;
  height: 250px;
  border: 0;
  margin-top: 10px;
  border-radius: 8px;
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
  .location_box {
    width: 100%; /* Full width for mobile devices */
  }
}
