/* Reset */
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
a {
  text-decoration: none;
  color: inherit;
}

/* Top Bar */
.top-bar {
  background-color: #f4f4f4;
  padding: 10px 0;
  font-size: 14px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 999;
}

.top-bar a:hover{
  color: #232323;
  text-decoration: none;
}
.top-bar .container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.top-bar-right {
  display: flex;
  gap: 20px;
}
.top-bar-right span {
  font-size: 13px;
  font-weight: 500;
  color: #284155;
  border-left: 1px solid rgba(0, 0, 0, 0.1);
  padding-left: 10px;
}

/* Main Header */
.main-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  width: 100%;
  position: sticky;
  top: 41px;
  z-index: 999;
}
.main-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo img {
  width: 200px;
}

/* Navbar */
.navbar {
  display: flex;
  gap: 20px;
  align-items: center;
  transition: max-height 0.3s ease;
}
.navbar ul {
  display: flex;
  gap: 20px;
}
.navbar ul li a {
  font-size: 15px;
  font-weight: 500;
  color: black;
  transition: color 0.3s;
}

/* Dropdown */
.navbar .dropdown {
  position: relative;
}
.navbar .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 10;
  list-style: none;
  padding: 10px 0;
  margin: 0;
  border-radius: 4px;
  width: 200px;
}
.navbar .dropdown-menu li {
  padding: 8px 16px;
  font-size: 14px;
}
.navbar .dropdown-menu li a:hover {
  color: #20b2aa;
}
.navbar .dropdown-menu li a:active {
  color: #20b2aa;
}

/* Dropdown Toggle */
.navbar .dropdown:hover .dropdown-menu {
  display: block;
}

/* Mobile Styles */
.menu-toggle {
  display: none;
  background-color: transparent;
  color: #232323;
  border: none;
  font-size: 25px;
  font-weight: 700;
  cursor: pointer;
}

.quote-btn {
  background-color: #20b2aa;
  color: #fff;
  border: none;
  border-radius:50px;
  padding: 5px 10px;
}
.breadcrumb-section {
    padding: 50px 0px;
    background-color: #F7F7F7;
    text-align: center;
  }
  
  .page-title {
    font-size: 32px;
    font-weight: 500;
    color: #232323;
    margin-bottom: 10px;
    font-family: "Spectral", serif;
  }
  
  .breadcrumb-nav {
    display: inline-flex;
    align-items: center;
    font-size: 0.9rem;
    color: #20b2aa;
  }
  
  .breadcrumb-link {
    text-decoration: none;
    color: #20b2aa;
  }
  
  .breadcrumb-link:hover {
    text-decoration: underline;
  }
  
  .breadcrumb-separator {
    margin: 0 5px;
    color: #555;
  }
  
  .breadcrumb-current {
    color: #333;
    font-weight: 500;
    }


    /* .book-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    align-items: flex-start;
    gap: 20px;
    padding: 50px 0px;
  } */
  
  .book-card {
    /* display: flex;
    flex-direction: column;
    align-items: center; */
    border-radius: 10px;
    padding: 15px;
    background-color: white;
  }
  
  .book-image {
    width: 100%;
    height: 400px;
    border-radius: 5px;
    margin-bottom: 10px;
    object-fit: cover;
}
  
  .book-title {
    font-size: 18px;
    font-weight: bold;
    text-align: center;
  }
  
  .book-author {
    font-size: 14px;
    color: #555;
    margin-bottom: 5px;
  }
  
  .book-info {
    font-size: 13px;
    color: #777;
    margin-bottom: 10px;
  }
  
  .buy-button {
    background-color: #20b2aa;
    color: white;
    padding: 10px 15px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.5s ease;
  }
  
  .buy-button:hover {
    background-color: transparent;
    text-decoration: none;
    border: 2px solid #20b2aa;
    color: #20b2aa;

  }
  .mainlac {
    width: 100%;
    padding: 20px 0px;
    background-color: #20B2AA;
  }

  .container {
  max-width: 1200px;
  margin: auto;
}

.carousel {
  overflow: hidden;
  position: relative;
  width: 100%;
  padding: 10px 0;
}

.carousel-track {
  display: flex;
  gap: 30px;
  transition: transform 0.5s ease;
  will-change: transform;
}

.logo-image {
  width: 120px !important;
  height: auto;
  object-fit: contain;
}
.main-privacy {
  display: flex;
  flex-direction: column;
  align-items: start;
  padding: 30px 0px;
}

.privacy-paragraph {
  font-size: 15px;
  line-height: 1.6;
  color: #333;
}

.privacy-heading {
  font-size: 21px;
  font-weight: 600;
  margin-top: 20px;
  color: #232323;
  font-family: "Spectral", serif;
}
.author-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  align-items: flex-start;
  gap: 30px;
  padding: 50px 15px;
}

.author-card {
  background-color: #fdf5f0;
  border-radius: 10px;
  text-align: center;
  padding: 20px;
  border: 1px solid #ebd1bf;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.author-image {
  position: relative;
  border: 1px solid #ebd1bf;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin-bottom: 15px;
  object-fit: cover;
}

.author-name {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 5px;
  color: #232323;
  font-family: "Spectral", serif;
}

.author-title {
  font-size: 0.9rem;
  color: #20b2aa;
  margin-bottom: 10px;
  font-family: "Spectral", serif;
}

.author-book {
  font-size: 1rem;
  color: #20b2aa;
  margin-bottom: 15px;
  font-family: "Spectral", serif;
}

.view-more-button {
  background-color: #20b2aa;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.view-more-button:hover {
  background-color: transparent;
  text-decoration: none;
  border: 2px solid #20b2aa;
  color: #20b2aa;
}
/* Reset */
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
a {
  text-decoration: none;
  color: inherit;
}

/* Top Bar */
.top-bar {
  background-color: #f4f4f4;
  padding: 10px 0;
  font-size: 14px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 999;
}

.top-bar a:hover{
  color: #232323;
  text-decoration: none;
}
.top-bar .container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.top-bar-right {
  display: flex;
  gap: 20px;
}
.top-bar-right span {
  font-size: 13px;
  font-weight: 500;
  color: #284155;
  border-left: 1px solid rgba(0, 0, 0, 0.1);
  padding-left: 10px;
}

/* Main Header */
.main-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  width: 100%;
  position: sticky;
  top: 41px;
  z-index: 999;
}
.main-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo img {
  width: 200px;
}

/* Navbar */
.navbar {
  display: flex;
  gap: 20px;
  align-items: center;
  transition: max-height 0.3s ease;
}
.navbar ul {
  display: flex;
  gap: 20px;
}
.navbar ul li a {
  font-size: 15px;
  font-weight: 500;
  color: black;
  transition: color 0.3s;
}

/* Dropdown */
.navbar .dropdown {
  position: relative;
}
.navbar .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 10;
  list-style: none;
  padding: 10px 0;
  margin: 0;
  border-radius: 4px;
  width: 200px;
}
.navbar .dropdown-menu li {
  padding: 8px 16px;
  font-size: 14px;
}
.navbar .dropdown-menu li a:hover {
  color: #20b2aa;
}
.navbar .dropdown-menu li a:active {
  color: #20b2aa;
}

/* Dropdown Toggle */
.navbar .dropdown:hover .dropdown-menu {
  display: block;
}

/* Mobile Styles */
.menu-toggle {
  display: none;
  background-color: transparent;
  color: #232323;
  border: none;
  font-size: 25px;
  font-weight: 700;
  cursor: pointer;
}

.quote-btn {
  background-color: #20b2aa;
  color: #fff;
  border: none;
  border-radius:50px;
  padding: 5px 10px;
}

/* Responsive */
@media (max-width: 992px) {
  .menu-toggle {
    display: block;
  }

  .navbar {
    display: none;
    flex-direction: column;
    align-items: flex-start; /* Align items to the start for a full-width look */
    width: 100% ; /* Make the navbar span the full width of the screen */
    position: relative; /* Position it relative to the parent element */
  }

  .navbar.open {
    display: flex;
    padding: 5px;
  }

  .navbar ul {
    flex-direction: column;
    gap: 10px;
    width: 100%; /* Ensure the list items also span the full width */
  }

  .navbar ul li {
    width: 100%; /* List items stretch to full width */
  }

  .navbar ul li a {
    display: block;
    width: 100%; /* Anchor tags take up the full width */
    text-align: left; /* Align text to the left for full-width effect */
    padding: 10px 0;
  }

  .navbar .dropdown-menu {
    position: static;
    box-shadow: none;
    width: 100%;
  }

  .quote-btn {
    display: none;
    margin-top: 10px;
  }

  .logo img {
    width: 150px;
  }
}
.navbar ul li.active a {
  color: #20b2aa;
  border-bottom: 1px solid #20b2aa; 
}



/* Dropdown */
.dropdown-menu {
  display: none;
  position: absolute;
  background: white;
  list-style: none;
  padding: 10px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.dropdown {
  position: relative;
}

/* Popup */
.popup {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.4);
}

.popup-content {
  background-color: #fff;
  margin: 10% auto;
  padding: 20px;
  border-radius: 8px;
  width: 90%;
  max-width: 400px;
}

.close {
  float: right;
  font-size: 24px;
  cursor: pointer;
}

/* Mobile Nav */
.navbar.open {
  display: block;
}

.menu-toggle {
  display: none;
}

/* Responsive */
@media (max-width: 768px) {
  .menu-toggle {
    display: inline-block;
  }
  .navbar {
    display: none;
    flex-direction: column;
  }
  .navbar ul {
    flex-direction: column;
  }
  .navbar li {
    margin: 10px 0;
  }
}
/* .mainlac {
    width: 100%;
    padding: 50px 0px;
    background-color: #20B2AA;
  } */



  .contentline {
  padding: 70px 0px;
}

.contentline .paragraph {
  font-size: 15px;
  line-height: 20px;
  color: #232323;
  font-weight: 400;
}

.contentline .heading {
  font-family: "Spectral", serif;
  font-size: 54px;
  line-height: 60px;
  font-weight: 600;
  color: #232323;
  margin-bottom: 20px;
}

.contentline .main-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px;
}
@media (max-width: 767px) {
  .contentline {
    padding: 50px 0px;
  }

  .contentline .heading {
    font-size: 30px; /* Smaller heading size */
    line-height: 35px;
  }

  .contentline .paragraph {
    font-size: 14px; /* Adjust paragraph size */
  }
}




/* General container styles */
.services-tabs {
  text-align: center;
  padding: 40px 20px;
  background-color: #f4f5f7;
}

/* Subtitle styles */
.services-tabs-subtitle {
  font-size: 16px;
  font-weight: 500;
  color: #20b2aa;
  margin-bottom: 10px;
  font-family:'Times New Roman', Times, serif;
}

/* Title styles */
.services-tabs-title {
  font-size: 32px;
  font-weight: 600;
  color: #232323;
  font-family: "Spectral", serif;
  margin: 25px 0px 50px;
  line-height: 1.5;
}

/* Tabs list container */
.services-tabs-list {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

/* Individual tab item styles */
.services-tab-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 15px;
  width: 130px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Active tab styles */
.services-tab-item.services-active {
  background-color: white;
  color: #232323;
  transform: translateY(-5px);
}

/* Icon styles */
.services-tab-icon {
  font-size: 32px;
  margin-bottom: 10px;
}

.services-tab-icon img {
  width: 100px;
}

/* Tab title styles */
.services-tab-title {
  font-size: 15px;
  font-weight: 400;
  line-height: 20px;
  color: #20b2aa;
  text-align: center;
}

/* Tab content styles */
.services-tab-content {
  margin: 0 auto;
  font-size: 15px;
  color: #232323;
  line-height: 20px;
  border-radius: 10px;
  padding: 20px;
}

.services-main-tabs {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

/* Responsive styles for 768px and below */
@media (max-width: 768px) {
  .services-tabs-list {
    flex-direction: column;
    width: 100%;
    gap: 15px;
  }

  .services-tab-item {
    width: 100%;
    max-width: 100%;
  }

  .services-tab-content {
    padding: 15px;
  }

  .services-tabs-title {
    font-size: 28px;
  }

  .services-tabs-subtitle {
    font-size: 14px;
  }
}

.main-terms {
    display: flex;
    flex-direction: column;
    align-items: start;
    padding: 30px 0px;
  }
  
  .terms-paragraph {
    font-size: 15px;
    line-height: 1.6;
    color: #333;
  }
  
  .terms-heading {
    font-size: 21px;
    font-weight: 600;
    margin-top: 20px;
    color: #232323;
    font-family: "Spectral", serif;
  }
  .wwa-hero-section {
  position: relative;
  background: url("../../images/contact-us-bg.jpg") top center/cover no-repeat;
  display: flex;
  align-items: center;
  color: white;
  background-blend-mode: darken;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 100px 0px 100px;
  width: 100%;
}

.wwa-hero-content {
  width: 70%;
}
.wwa-hero-heading {
  font-family: "Spectral", serif;
  font-size: 35px;
  font-weight: 600;
  margin-bottom: 20px;
}

.wwa-hero-sub-head {
  font-size: 16px;
  line-height: 20px;
  opacity: 0.6;
}

.wwa-hero-paragraph {
  font-size: 15px;
}

@media (max-width: 767px) {
  .wwa-hero-content {
    width: 100%;
  }
  .wwa-hero-heading {
    font-size: 30px;
  }
  .wwa-hero-sub-head {
    font-size: 16px;
  }
}


/* General styles for content1-section */
.wwr-content1-section {
    padding: 75px 15px;
  }
  
  /* Paragraph styles */
  .wwr-content1_right .wwr-paragraph {
    font-size: 15px;
    line-height: 22px;
    color: #232323;
    font-weight: 400;
  }
  
  /* Heading styles */
  .wwr-content1_right .wwr-heading {
    font-family: "Spectral", serif;
    font-size: 24.5px;
    line-height: 30px;
    font-weight: 600;
    color: #232323;
    margin-bottom: 10px;
  }
  
  .wwr-content1_right .wwr-heading2 {
    font-family: "Spectral", serif;
    font-size: 20px;
    line-height: 30px;
    font-weight: 600;
    color: #232323;
    margin-bottom: 10px;
  }
  /* Main content layout */
  .wwr-main-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
  }
  
  /* Image styles */
  .wwr-content1-left img {
    width: 500px;
    height: auto;
  }
  
  /* Mobile responsiveness (max-width: 767px) */
  @media (max-width: 767px) {
    .wwr-content1-section {
      padding: 40px 15px; /* Reduced padding for mobile */
    }
  
    .wwr-main-content {
      flex-direction: column; /* Stack the columns vertically */
      align-items: center; /* Center content */
      gap: 30px;
    }
  
    .wwr-content1-left img {
      width: 100%; /* Responsive width */
      max-width: 400px; /* Maximum width */
      height: auto; /* Maintain aspect ratio */
    }
  
    .wwr-content1_right .wwr-heading {
      font-size: 22px; /* Adjusted heading font size */
      text-align: center; /* Center-align heading */
    }
    .wwr-content1_right .wwr-heading2 {
        font-size: 18px; /* Adjusted heading font size */
        text-align: center; /* Center-align heading */
      }
  
    .wwr-content1_right .wwr-paragraph {
      font-size: 14px; /* Reduced font size */
      line-height: 20px;
      text-align: center; /* Center-align text */
    }
  }
  
  /* Tablet responsiveness (768px to 991px) */
  @media (min-width: 768px) and (max-width: 991px) {
    .wwr-content1-section {
      padding: 60px 15px; /* Adjusted padding */
    }
  
    .wwr-main-content {
      flex-direction: column; /* Stack columns */
      gap: 40px;
    }
  
    .wwr-content1-left img {
      width: 90%; /* Responsive image width */
      max-width: 450px;
      height: auto; /* Maintain aspect ratio */
    }
  
    .wwr-content1_right .wwr-heading {
      font-size: 23px; /* Adjusted heading size */
    }
  
    .wwr-content1_right .wwr-paragraph {
      font-size: 14px; /* Slightly smaller text */
    }
  }
  
  /* Desktop responsiveness (min-width: 992px) */
  @media (min-width: 992px) {
    .wwr-content1-section {
      padding: 75px 15px; /* Default padding */
    }
  
    .wwr-main-content {
      flex-direction: row; /* Default flex layout */
      justify-content: space-between;
      gap: 50px;
    }
  
    .wwr-content1-left img {
      width: 500px; /* Default image width */
      height: auto;
    }
  
    .wwr-content1_right .wwr-heading {
      font-size: 24.5px; /* Default heading font size */
    }
  
    .wwr-content1_right .wwr-paragraph {
      font-size: 15px; /* Default paragraph size */
    }
  }
      

  /* General Styles */
.ourmission-section {
  background-color: #262b35;
  padding: 50px 15px;
}

.ourmission-container {
  max-width: 1200px;
  margin: auto;
  color: white;
  text-align: center;
}

/* Mission Section */
.mission-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-bottom: 50px;
}

.mission-content {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.left-image {
  flex: 1;
  background: url("../../images/value.jpg") no-repeat center center/cover;
  min-height: 300px;
}

/* Text Section */
.right-text {
  flex: 1;
  background-image: linear-gradient(to right top, #20b2aa, #284155);
  padding: 80px 40px;
  text-align: left;
}

.right-text h2 {
  font-size: 18px;
  margin-bottom: 15px;
  opacity: 0.8;
  font-family: "Spectral", serif;
}

.right-text p {
  font-size: 16px;
  line-height: 22px;
  margin-bottom: 15px;
  font-family: "Spectral", serif;
}

.cta-button {
  padding: 10px 20px;
  background-color: transparent;
  color: #fff;
  border: 2px solid white;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  font-size: 14px;
  text-transform: uppercase;
}

.cta-button:hover {
  background-color: #20b2aa;
  color: #fff;
}

/* Stats Section */
.stats-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  background-color: #fff;
  color: #000;
  padding: 40px 20px;
  text-align: center;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.08);
}

.stat h3 {
  font-size: 40px;
  font-weight: 700;
  color: #232323;
  font-family: "Spectral", serif;
  margin: 0;
}

.stat p {
  font-size: 14px;
  color: #232323;
  margin-top: 8px;
  font-family: "Spectral", serif;
  text-transform: uppercase;
  font-weight: 600;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .mission-content {
    flex-direction: column;
  }

  .left-image {
    width: 100%;
    height: 300px;
  }

  .right-text {
    width: 100%;
    padding: 60px 30px;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .stats-section {
    grid-template-columns: repeat(2, 1fr);
  }

  .right-text {
    padding: 40px 20px;
  }

  .cta-button {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .stats-section {
    grid-template-columns: 1fr;
  }

  .right-text {
    padding: 30px 15px;
  }

  .cta-button {
    width: 100%;
  }
}

/* Responsive */
@media (max-width: 992px) {
  .menu-toggle {
    display: block;
  }

  .navbar {
    display: none;
    flex-direction: column;
    align-items: flex-start; /* Align items to the start for a full-width look */
    width: 100% ; /* Make the navbar span the full width of the screen */
    position: relative; /* Position it relative to the parent element */
  }

  .navbar.open {
    display: flex;
    padding: 5px;
  }

  .navbar ul {
    flex-direction: column;
    gap: 10px;
    width: 100%; /* Ensure the list items also span the full width */
  }

  .navbar ul li {
    width: 100%; /* List items stretch to full width */
  }

  .navbar ul li a {
    display: block;
    width: 100%; /* Anchor tags take up the full width */
    text-align: left; /* Align text to the left for full-width effect */
    padding: 10px 0;
  }

  .navbar .dropdown-menu {
    position: static;
    box-shadow: none;
    width: 100%;
  }

  .quote-btn {
    display: none;
    margin-top: 10px;
  }

  .logo img {
    width: 150px;
  }
}
.navbar ul li.active a {
  color: #20b2aa;
  border-bottom: 1px solid #20b2aa; 
}




.hero-section {
  background-image: url("../../images/home-banner.webp");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  color: #fff;
  padding: 60px 0px;
}

.hero-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.hero-left {
  margin-right: 120px;
}

.hero-heading {
  font-family:'Times New Roman', Times, serif;
  font-size: 43.5px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #20b2aa;
}

.hero-paragraph {
  font-size: 15px;
  margin-bottom: 30px;
}

.button-group {
  display: flex;
  justify-content: center;
  gap: 15px;
}

/* Button base styles */
.btn {
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 500;
  padding: 5px 20px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Primary button styles */
.btn-primary {
  background-color: #20b2aa; /* Teal */
  color: white;
  margin-right: 20px;
  border-radius: 50px;
}

.btn-primary:hover {
  background-color: #20b2aa; /* Darker teal */
}

/* Secondary button styles */
.btn-secondary {
  background-color: transparent;
  border: 2px solid white;
  color: white;
  border-radius: 50px;
}

.btn-secondary:hover {
  background-color: white;
  color: #1e3a52; /* Dark blue */
}

.hero-right {
  background-color: rgba(0, 0, 0, 0.72);
  padding: 20px;
  border-radius: 20px;
  width: 100%;
  max-width: 400px;
}

.form-heading {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 20px;
  font-family: "Spectral", serif;
  margin-bottom: 15px;
  color: #20b2aa;
  text-align: center;
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .hero-left {
    margin-right: 20px;
  }
}
   
@media (max-width: 991px) {
  .hero-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }

  .hero-left {
    margin-right: 0;
    text-align: center;
  }

  .hero-heading {
    font-size: 30px;
  }

  .hero-paragraph {
    font-size: 14px;
  }

  .hero-right {
    max-width: 100%;
  }

  .form-heading {
    font-size: 22px;
  }

  .button-group {
    flex-direction: column;
    align-items: center;
  }
  .btn-group{
    width: 80%;
  }

  .btn {
    width: 100%;
    margin-bottom: 10px;
  }
}

/* For mobile screens */
@media (max-width: 480px) {
  .hero-heading {
    font-size: 24px;
  }

  .hero-paragraph {
    font-size: 12px;
  }

  .form-heading {
    font-size: 20px;
  }

  .btn {
    font-size: 12px;
    padding: 10px 15px;
  }

  .hero-section {
    padding: 50px 0px;
  }
}

.form2 {
  /* max-width: 500px; */
  margin: 0 auto;
  border-radius: 8px;
  color: #fff;
}

.form2-cta-form .form2-form-control {
  width: 100%;
  padding: 12px;
  border-radius: 5px;
  border: 1px solid #ccc;
  font-size: 16px;
  margin-bottom: 15px;
}

.form2-cta-form .form2-input-row {
  display: flex;
  gap: 20px;
}

.form2-cta-form .form2-input-row .form2-form-control {
  flex: 1;
}

.form2-cta-form .form2-btn-primary {
  width: 100%;
  padding: 15px;
  font-size: 18px;
  font-weight: bold;
  background-color: #20b2aa;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.form2-cta-form .form2-btn-primary:hover {
  background-color: #20b2aa;
}

.form2-checkbox-container {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 15px;
  font-size: 14px;
  line-height: 1.5;
}

.form2-terms-label {
  font-size: 11px;
  color: #939393;
  line-height: 14px;
}
/* Base Styles for Counter */
.counter-container {
  padding: 10px 15px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.main-counter {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  max-width: 1110px;
  width: 100%;
  margin: auto;
}

.counter {
  text-align: center;
  margin: 15px;
}

.counter h1 {
  font-size: 47.6px;
  font-weight: 600;
  color: #232323;
  font-family:'Times New Roman', Times, serif;
  margin: 0;
  animation: fadeIn 1.5s ease-in-out;
}

.counter p {
  font-size: 14px;
  color: #232323;
  margin-top: 10px;
  font-family: "Spectral", serif;
  text-transform: uppercase;
  font-weight: 600;
}

/* Keyframe for FadeIn animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Content Section */
.content {
  padding: 70px 15px;
}

.content .paragraph {
  font-size: 15px;
  line-height: 20px;
  color: #232323;
  font-weight: 400;
}

.content .heading {
  font-family: "Spectral", serif;
  font-size: 24.5px;
  line-height: 30px;
  font-weight: 600;
  color: #232323;
  margin-bottom: 10px;
}

.content .main-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px;
}

/* Mobile responsiveness */
@media (max-width: 767px) {
  .counter-container {
    padding: 15px;
  }

  .main-counter {
    flex-direction: column; /* Stack counters vertically */
    align-items: center; /* Center the items */
    gap: 20px; /* Add more space between counters */
  }

  .counter h1 {
    font-size: 36px; /* Smaller font size */
  }

  .counter p {
    font-size: 12px; /* Smaller text for mobile */
  }

  .content {
    padding: 50px 0px;
  }

  .content .heading {
    font-size: 22px; /* Smaller heading size */
  }

  .content .paragraph {
    font-size: 14px; /* Adjust paragraph size */
  }
}

/* Tablet responsiveness (768px to 991px) */
@media (min-width: 768px) and (max-width: 991px) {
  .main-counter {
    flex-wrap: wrap; /* Allow counters to wrap */
    justify-content: center; /* Center the counters */
    gap: 20px; /* More space between counters */
  }

  .counter h1 {
    font-size: 42px; /* Slightly smaller font for tablets */
  }

  .counter p {
    font-size: 13px; /* Adjust text size for tablet */
  }

  .content {
    padding: 60px 0px;
  }

  .content .heading {
    font-size: 23px; /* Adjust heading font size */
  }

  .content .paragraph {
    font-size: 14px; /* Adjust paragraph size */
  }
}

/* Desktop (larger than 991px) */
@media (min-width: 992px) {
  .main-counter {
    gap: 10px; /* Keep the smaller gap for large screens */
  }

  .counter h1 {
    font-size: 47.6px; /* Retain original size */
  }

  .counter p {
    font-size: 14px; /* Keep the font size consistent for desktop */
  }

  .content {
    padding: 70px 15px;
  }

  .content .heading {
    font-size: 24.5px; /* Retain original heading size */
  }

  .content .paragraph {
    font-size: 15px; /* Keep the paragraph text size consistent */
  }
}
/* General banner styles */
.banner {
  background-color: #284155; /* Dark blue */
  color: white;
  text-align: center;
  padding: 60px 0px;
}

/* Subheading styles */
.banner .subheading {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.main-banner{
  width: 100%;
}
/* Heading styles */
.banner .heading {
  font-size: 42px;
  font-weight: 600;
  font-family:'Times New Roman', Times, serif;
  color: #20b2aa; /* Teal color */
  margin-bottom: 30px;
  line-height: 1.5;
}

/* Button group styles */
.button-group {
  display: flex;
  justify-content: center;
  gap: 15px;
}

/* Button base styles */
.btn {
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 500;
  padding: 5px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.banner a:hover {
  color: #232323;
  text-decoration: none;
}
/* Primary button styles */
.btn-primary {
  background-color: #20b2aa; /* Teal */
  color: white;
}

.btn-primary:hover {
  background-color: #20b2aa; /* Darker teal */
}

/* Secondary button styles */
.btn-secondary {
  background-color: transparent;
  border: 2px solid white;
  color: white;
}

.btn-secondary:hover {
  background-color: white;
  color: #1e3a52; /* Dark blue */
}

/* Tertiary button styles */
.btn-tertiary {
  background-color: transparent;
  border: 2px solid white;
  color: white;
}

.btn-tertiary:hover {
  background-color: white;
  color: #1e3a52; /* Dark blue */
}

/* Mobile responsiveness */
@media (max-width: 991px) {
  .btn {
    margin-bottom: 0px;
  }
}

@media (max-width: 767px) {
  .banner {
    padding: 40px 15px; /* Reduced padding for mobile */
  }

  .subheading {
    font-size: 14px; /* Smaller font size */
  }

  .heading {
    font-size: 24px; /* Reduced heading size */
    margin-bottom: 20px; /* Reduced margin */
  }

  .button-group {
    flex-direction: column; /* Stack buttons vertically */
    gap: 10px; /* Add space between buttons */
  }

  .btn {
    font-size: 12px; /* Smaller font size for mobile */
    padding: 10px 25px; /* Adjust padding for buttons */
  }
}

/* Tablet responsiveness (768px to 991px) */
@media (min-width: 768px) and (max-width: 991px) {
  .banner {
    padding: 50px 20px; /* Slightly reduced padding */
  }

  .subheading {
    font-size: 15px; /* Adjusted subheading font size */
  }

  .heading {
    font-size: 28px; /* Adjusted heading font size */
    margin-bottom: 25px; /* Adjusted margin */
  }

  .button-group {
    gap: 15px; /* Maintain gap for tablet */
  }

  .btn {
    font-size: 13px; /* Adjusted button font size */
    padding: 8px 20px; /* Adjusted padding for tablet */
  }
}

/* Desktop (min-width: 992px) */
@media (min-width: 992px) {
  .banner {
    padding: 60px 20px; /* Default padding for desktop */
  }

  .subheading {
    font-size: 16px; /* Default subheading font size */
  }

  .heading {
    font-size: 32px; /* Default heading font size */
    margin-bottom: 30px; /* Default margin */
  }

  .button-group {
    gap: 15px; /* Default button spacing */
  }

  .btn {
    font-size: 14px;
    padding: 5px 20px;
  }
}
/* General features container styles */
.features {
  text-align: center;
  padding: 50px 0px;
}

.main-features {
  display: flex;
  flex-direction: column;
}

/* Subtitle styles */
.features-subtitle {
  font-size: 16px;
  font-weight: 500;
  color: #20b2aa; /* Teal */
  margin-bottom: 10px;
  font-family: 'Times New Roman', Times, serif;
}

/* Title styles */
.features-title {
  font-size: 32px;
  font-weight: 600;
  color: #232323; /* Dark blue */
  font-family: "Times New Roman', Times, serif";
  margin: 25px 0px 50px;
  line-height: 1.5;
}

/* Features cards container */
.features-cards {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap; /* Makes the layout responsive */
}

/* Individual feature card styles */
.feature-card {
  background-color: white;
  border-radius: 5px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 30px;
  width: 32%; /* Fixed width for each card */
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effect on feature card */
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.2);
}

/* Icon styles */
.feature-icon {
  font-size: 40px;
  color: #38b2ac; /* Teal */
  margin-bottom: 20px;
}

.feature-icon img {
  width: 100px;
  object-fit: contain; /* Ensures the image scales nicely */
  margin-bottom: 10px;
}

/* Feature card title */
.feature-title {
  font-size: 20px;
  font-weight: 500;
  color: #232323; /* Dark blue */
  margin-bottom: 10px;
}

/* Feature card description */
.feature-description {
  font-size: 15px;
  font-weight: 500;
  color: #232323; /* Dark blue */
  line-height: 20px;
}

/* Mobile responsiveness */
@media (max-width: 767px) {
  .features {
    padding: 40px 10px; /* Reduced padding for mobile */
  }

  .features-title {
    font-size: 24px; /* Reduced heading font size */
    margin: 15px 0 30px; /* Adjusted margin */
  }

  .feature-card {
    width: 100%; /* Stack cards vertically */
    padding: 30px 20px 25px; /* Adjusted padding */
    margin-bottom: 20px; /* Added space between cards */
  }

  .feature-icon {
    font-size: 30px; /* Adjusted icon size */
  }

  .feature-title {
    font-size: 14px; /* Adjusted title font size */
  }

  .feature-description {
    font-size: 14px; /* Adjusted description font size */
  }
}

/* Tablet responsiveness (768px to 991px) */
@media (min-width: 768px) and (max-width: 991px) {
  .features {
    padding: 50px 0px; /* Default padding */
  }

  .features-title {
    font-size: 28px; /* Adjusted heading font size */
  }

  .feature-card {
    width: 48%; /* Two cards per row */
    padding: 40px 25px 30px; /* Adjusted padding */
  }

  .feature-icon {
    font-size: 35px; /* Adjusted icon size */
  }

  .feature-title {
    font-size: 15px; /* Adjusted title font size */
  }

  .feature-description {
    font-size: 14px; /* Adjusted description font size */
  }
}

/* Desktop (min-width: 992px) */
@media (min-width: 992px) {
  .features {
    padding: 50px 0px; /* Default padding */
  }

  .features-title {
    font-size: 32px; /* Default heading font size */
  }

  .feature-card {
    width: 32%; /* Default width for three cards per row */
    padding: 50px 35px 32px; /* Default padding */
  }

  .feature-icon {
    font-size: 40px; /* Default icon size */
  }

  .feature-title {
    font-size: 20px; /* Default title font size */
    font-weight: 500;
  }

  .feature-description {
    font-size: 15px; /* Default description font size */
  }
}
/* General styles for content1-section */
.content1-section {
  padding: 75px 0px;
}

/* Paragraph styles */
.content1_right .paragraph {
  font-size: 15px;
  line-height: 20px;
  color: #232323;
  font-weight: 400;
}

/* Heading styles */
.content1_right .heading {
  font-family:'Times New Roman', Times, serif;
  font-size: 24.5px;
  line-height: 30px;
  font-weight: 600;
  color: #232323;
  margin-bottom: 10px;
}

/* Main content layout */
.main-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
}

/* Image styles */
.content1-left img {
  width: 500px;
}

/* Mobile responsiveness (max-width: 767px) */
@media (max-width: 767px) {
  .content1-section {
    padding: 40px 0px; /* Reduced padding for mobile */
  }

  .main-content {
    flex-direction: column; /* Stack the columns vertically */
    align-items: center; /* Center content */
    gap: 30px; /* Reduced gap between columns */
  }

  .content1-left img {
    width: 100%; /* Make image responsive */
    max-width: 400px; /* Maximum width for the image */
  }

  .content1_right .heading {
    font-size: 22px; /* Adjusted heading font size for mobile */
    text-align: center; /* Center the heading */
  }

  .content1_right .paragraph {
    font-size: 14px; /* Reduced font size */
    line-height: 18px; /* Adjusted line height */
    text-align: center; /* Center-align text */
  }
}

/* Tablet responsiveness (768px to 991px) */
@media (min-width: 768px) and (max-width: 991px) {
  .content1-section {
    padding: 60px 0px; /* Default padding */
  }

  .main-content {
    flex-direction: column; /* Columns side by side */
    gap: 40px; /* Adjusted gap */
  }

  .content1-left img {
    width: 90%; /* Slightly adjusted image width */
    max-width: 450px; /* Maximum image width */
  }

  .content1_right .heading {
    font-size: 24px; /* Default heading font size for tablet */
  }

  .content1_right .paragraph {
    font-size: 14px; /* Slightly smaller text */
  }
}

/* Desktop responsiveness (min-width: 992px) */
@media (min-width: 992px) {
  .content1-section {
    padding: 75px 15px; /* Default padding */
  }

  .main-content {
    display: flex; /* Default flex layout */
    justify-content: space-between;
    gap: 50px; /* Standard gap */
  }

  .content1-left img {
    width: 500px; /* Default image width */
  }

  .content1_right .heading {
    font-size: 24.5px; /* Default heading font size */
  }

  .content1_right .paragraph {
    font-size: 15px; /* Default paragraph size */
  }
}
/* General container styles */
.tabs {
  text-align: center;
  padding: 40px 20px;
  background-color: #F4F5F7;
}

/* Subtitle styles */
.tabs-subtitle {
  font-size: 16px;
  text-align: center !important;
  font-weight: 500;
  color: #20b2aa; /* Teal */
  margin-bottom: 10px;
  font-family:'Times New Roman', Times, serif;
}

/* Title styles */
.tabs-title {
  font-size: 32px;
  font-weight: 600;
  color: #232323; /* Dark blue */
  font-family: 'Times New Roman', Times, serif;
  margin: 25px 0px 50px;
  line-height: 1.5;
}

/* Tabs list container */
.tabs-list {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

/* Individual tab item styles */
.tab-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 15px;
  width: 130px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Active tab styles */
.tab-item.active {
  background-color: white;
  color: #232323;
  transform: translateY(-5px);
}

/* Icon styles */
.tab-icon {
  font-size: 32px;
  margin-bottom: 10px;
}

.tab-icon img {
  width: 100px;
}

/* Tab title styles */
.tab-title {
  font-size: 15px;
  font-weight: 400;
  line-height: 20px;
  color: #20b2aa;
}

/* Tab content styles */
.tab-content {
  margin: 0 auto;
  font-size: 15px;
  color: #232323;
  line-height: 20px;
  border-radius: 10px;
  padding: 20px;
}

.main-tabs {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

/* Responsive styles for 768px and below */
@media (max-width: 768px) {
  .tabs-list {
    flex-direction: column;
    width: 100%;
    gap: 15px;
  }

  .tab-item {
    width: 100%;
    max-width: 100%; /* Ensure tabs fill the container */
  }

  .tab-content {
    padding: 15px;
  }

  .tabs-title {
    font-size: 28px;
  }

  .tabs-subtitle {
    font-size: 14px;
  }
}
/* General styles for content2-section */
.content2-section {
  padding: 75px 0px;
}

/* Paragraph styles */
.content2_right .paragraph {
  font-size: 15px;
  line-height: 20px;
  color: #232323;
  font-weight: 400;
}

/* Heading styles */
.content2_right .heading {
  font-family:'Times New Roman', Times, serif;
  font-size: 24.5px;
  line-height: 30px;
  font-weight: 600;
  color: #232323;
  margin-bottom: 10px;
}

/* Main content layout */
.main-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
}

/* Image styles */
.content2-left img {
  width: 500px;
}

/* Mobile responsiveness (max-width: 767px) */
@media (max-width: 767px) {
  .content2-section {
    padding: 40px 0px; /* Reduced padding for mobile */
  }

  .main-content {
    flex-direction: column; /* Stack the columns vertically */
    align-items: center; /* Center content */
    gap: 30px; /* Reduced gap between columns */
  }

  .content2-left img {
    width: 100%; /* Make image responsive */
    max-width: 400px; /* Maximum width for the image */
  }

  .content2_right .heading {
    font-size: 22px; /* Adjusted heading font size for mobile */
    text-align: center; /* Center the heading */
  }

  .content2_right .paragraph {
    font-size: 14px; /* Reduced font size */
    line-height: 18px; /* Adjusted line height */
    text-align: center; /* Center-align text */
  }
}

/* Tablet responsiveness (768px to 991px) */
@media (min-width: 768px) and (max-width: 991px) {
  .content2-section {
    padding: 60px 0px; /* Default padding */
  }

  .main-content {
    flex-direction: column; /* Columns side by side */
    gap: 40px; /* Adjusted gap */
  }

  .content2-left img {
    width: 90%; /* Slightly adjusted image width */
    max-width: 450px; /* Maximum image width */
  }

  .content2_right .heading {
    font-size: 24px; /* Default heading font size for tablet */
  }

  .content2_right .paragraph {
    font-size: 14px; /* Slightly smaller text */
  }
}

/* Desktop responsiveness (min-width: 992px) */
@media (min-width: 992px) {
  .content2-section {
    padding: 75px 0px; /* Default padding */
  }

  .main-content {
    display: flex; /* Default flex layout */
    justify-content: space-between;
    gap: 50px; /* Standard gap */
  }

  .content2-left img {
    width: 500px; /* Default image width */
  }

  .content2_right .heading {
    font-size: 24.5px; /* Default heading font size */
  }

  .content2_right .paragraph {
    font-size: 15px; /* Default paragraph size */
  }
}
 .logo-container {
    flex: 0 0 auto;
    width: 150px; /* adjust as needed */
  }
  /* .logo-image {
    width: 100%;
    height: auto;
  } */

  @keyframes scroll-left {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-20%);
    }
  }
  .mainlogo {
  width: 100%;
  padding: 40px 0px;
  background-color: #f7f7f7;
}

/* .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between; 
  align-items: center;
} */

.left-column {
  width: 100%; /* Full width for smaller screens */
  text-align: center; /* Center-align text on smaller screens */
  margin-bottom: 20px; /* Adds spacing between columns */
}

.brand-title {
  color: #232323;
  font-size: 24.5px;
  font-weight: 500;
}

.right-column {
  width: 100%; /* Full width for smaller screens */
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  margin: 0 10px; /* Reduced margin for better fit on smaller screens */
}

/* .logo-image {
  height: 100%;
  width: 100%;
  object-fit: contain;
} */

@media (max-width: 1200px) {
  .brand-title {
    font-size: 20px; /* Larger font size for desktops */
  }
}

/* Media Queries for Responsiveness */
@media (min-width: 768px) {
  .container {
    flex-wrap: nowrap; /* Prevent wrapping on medium and larger screens */
  }

  .left-column {
    width: 30%; /* Allocates 30% for left column */
    text-align: left; /* Align text to the left */
    margin-bottom: 0; /* Removes extra spacing */
  }

  .right-column {
    width: 70%; /* Allocates 70% for right column */
  }
}

@media (min-width: 1024px) {
  .brand-title {
    font-size: 28px; /* Larger font size for desktops */
  }

  .logo-container {
    margin: 0 20px; /* Restores larger spacing */
  }
}




/* Parent Container */
.panda-container {
  display: flex;
  flex-direction: column;
  background-image: url("../../images/why-choose-bg.webp");
  background-repeat: no-repeat;
  background-position: -110px bottom;
  background-size: contain;
  gap: 20px;
  padding: 100px 15px 0px;
}

/* Content Publishers */
.content-publishers {
  text-align: center;
}

.publishers-subtitle {
  font-size: 16px;
  color: #20b2aa;
  font-weight: 500;
}

.publishers-title {
  font-size: 32px;
  font-weight: 600;
  color: #232323;
  font-family: "Spectral", serif;
  margin-bottom: 50px;
}

/* Columns */
.columns {
  display: flex;
}

/* Left Column */
.left-column {
  flex: 1;
  background-color: transparent; /* Placeholder for content or imagery */
}

/* Right Column */
.panda-features {
  flex: 2;
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* Two columns */
}

/* Feature Boxes */
.feature-box {
  padding: 20px;
}

/* Background Colors */
.gray-bg {
  background-color: #f2f2f2; /* Light gray */
}

.white-bg {
  background-color: #ffffff; /* White */
}

/* Text Styles */
.feature-box h3 {
  font-size: 20px;
  color: #20b2aa;
  font-weight: bold;
  margin-bottom: 10px;
}

.feature-box h2 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #232323;
}

.feature-box p {
  font-size: 15px;
  line-height: 1.5;
  color: #232323;
}
@media (max-width: 992px) {
  .columns {
    flex-direction: column; /* Stacks columns on smaller screens */
  }
  .panda-container {
    background-image: none; /* Hides background image on smaller screens */
    padding: 50px 15px; /* Adjust padding for smaller screens */
  }

  .publishers-title {
    margin-bottom: 10px;
  }
}
/* Media Queries for Responsiveness */
@media (max-width: 768px) {
  .columns {
    flex-direction: column; /* Stacks columns on smaller screens */
  }

  .panda-features {
    grid-template-columns: 1fr; /* Single column for smaller screens */
  }
}



/* General styles */
.portfolio-tabs {
  padding: 60px 15px;
  text-align: center;
  background-color: #f7f7f7;
}

.portfolio-subtitle {
  font-size: 16px;
  color: #20b2aa;
  font-weight: 500;
  text-transform: uppercase;
}

.portfolio-title {
  font-size: 32px;
  font-weight: 600;
  color: #232323;
  font-family: "Spectral", serif;
}

/* Tabs navigation */
.tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 60px;
  flex-wrap: wrap; /* Allow tabs to wrap on smaller screens */
}

.tab-button {
  padding: 0.5rem 1rem;
  border: none;
  outline: none;
  background-color: transparent;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  color: #828282;
  border-bottom: 1px solid #828282;
  transition: color 0.3s, border-bottom-color 0.3s;
  text-transform: uppercase;
  font-family: "Spectral", serif;
}

.tab-button:hover {
  color: #232323;
  outline: none;
  border-bottom-color: #232323;
}

.tab-button.active {
  color: #232323;
  outline: none;
  border-bottom-color: #232323;
}

/* Portfolio grid */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15%, 1fr));
  gap: 1.5rem;
}

.portfolio-item {
  text-align: center;
}

.portfolio-image {
  width: 100%;
  height: 450px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Responsive Media Queries */

/* Medium Screens */
@media (max-width: 768px) {
  .portfolio-title {
    font-size: 28px; /* Adjust title font size */
  }

  .tabs {
    gap: 0.5rem; /* Adjust tab button spacing */
    margin-bottom: 40px;
  }

  .tab-button {
    font-size: 14px; /* Adjust font size for smaller screens */
  }

  .portfolio-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* Larger images, fewer columns */
  }

  .portfolio-image {
    height: 300px; /* Adjust image height */
  }
}

/* Small Screens */
@media (max-width: 480px) {
  .portfolio-title {
    font-size: 24px; /* Further reduce title font size */
  }

  .tab-button {
    font-size: 12px; /* Reduce font size further */
    padding: 0.4rem 0.8rem; /* Adjust padding for smaller screens */
  }

  .portfolio-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); /* Even fewer columns */
  }

  .portfolio-image {
    height: 250px; /* Smaller images */
  }
}




.testimonials {
  padding: 60px 15px 100px;
  text-align: center;
  margin: 0 auto;
  max-width: 1200px;
}

.testimonials-subtitle {
  font-size: 16px;
  color: #20b2aa;
  font-weight: 500;
  margin-bottom: 20px;
}

.testimonials-title {
  font-size: 32px;
  font-weight: 600;
  color: #232323;
  font-family:'Times New Roman', Times, serif;
  margin-bottom: 80px;
}

.testimonial-card {
  background: #fff;
  border-radius: 5px;
  padding: 30px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: left;
  height: 300px;
  margin: 5px;
}

.testimonial-header {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.testimonial-initials {
  background-color: #38b2ac;
  color: black;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-weight: 500;
  font-size: 13px;
  margin-right: 1rem;
}

.testimonial-name {
  font-size: 14px;
  font-family: "Spectral", serif;
}

.testimonial-rating {
  color: #ffc107; /* Gold color */
  font-size: 1rem;
}

.testimonial-body {
  margin-top: 1rem;
  height: 150px; /* Set fixed height */
  overflow-y: auto; /* Enable vertical scrolling */
  padding-right: 12px;

  /* Webkit scrollbar customization */
  &::-webkit-scrollbar {
    width: 5px; /* Width of the scrollbar */
    border-radius: 10px;
  }

  &::-webkit-scrollbar-track {
    background: #555555; /* Track (background) color */
    border-radius: 10px;
  }

  &::-webkit-scrollbar-thumb {
    background: #20b2aa; /* Scroll thumb color */
    border-radius: 10px; /* Rounded corners for the thumb */
  }
}

.testimonial-heading {
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 0.5rem;
}

.testimonial-subtitle {
  font-weight: 500;
  font-size: 15px;
  margin-bottom: 0.5rem;
  line-height: 20px;
}

/* Responsive Styles */
@media screen and (max-width: 1024px) {
  .testimonials-title {
    font-size: 28px;
  }
  
  .testimonial-card {
    height: auto;
    padding: 20px;
  }

  .testimonial-name {
    font-size: 12px;
  }

  .testimonial-heading {
    font-size: 13px;
  }

  .testimonial-subtitle {
    font-size: 13px;
  }
}

@media screen and (max-width: 768px) {
  .testimonials {
    padding: 40px 15px;
  }

  .testimonials-title {
    font-size: 24px;
  }

  .testimonial-card {
    height: auto;
    padding: 15px;
  }

  .testimonial-name {
    font-size: 12px;
  }

  .testimonial-heading {
    font-size: 12px;
  }

  .testimonial-subtitle {
    font-size: 12px;
  }
}
.testimonial-carousel {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 20px;
  padding-bottom: 10px;
  -webkit-overflow-scrolling: touch;
}

.testimonial-card {
  flex: 0 0 300px; /* card width */
  scroll-snap-align: start;
  background: white;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 0 10px rgb(0 0 0 / 0.1);
}

/* Responsive widths */
@media (min-width: 576px) {
  .testimonial-card {
    flex: 0 0 45%; /* about 2 cards in view */
  }
}

@media (min-width: 1024px) {
  .testimonial-card {
    flex: 0 0 30%; /* about 3 cards in view */
  }
}



.cta-section {
    background-image: url("../../images/cta.jpg");
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    background-color: #333;
    color: #fff;
    padding: 60px 0px;
  }
  .cta-left{
    width: 55%;
  }
  .cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
  }
  
  .cta-heading {
    font-family:'Times New Roman', Times, serif;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #c3dd32;
  }
  
  .cta-paragraph {
    font-size: 15px;
    margin-bottom: 30px;
  }
  
  .cta-right {
    background-color: #00000075;
    padding: 30px;
    border-radius: 8px;
    width: 45%;
  }
  
  .form-heading {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 20px;
    font-family:'Times New Roman', Times, serif;
    margin-bottom: 15px;
    color: #20b2aa;
  }

  @media (max-width: 991px) {
    .cta-left, .cta-right {
        width: 100%; /* Stack columns on smaller screens */
        text-align: center; /* Center-align text for smaller screens */
    }
  
    .cta-heading {
        font-size: 24px; /* Adjust heading size for mobile */
    }
  
    .cta-paragraph {
        font-size: 14px; /* Adjust paragraph font size for mobile */
    }
  
    .form-heading {
        font-size: 22px; /* Adjust form heading size for mobile */
    }
  
    .cta-content {
        flex-direction: column; /* Stack columns vertically on small screens */
        gap: 20px; /* Reduced gap between stacked columns */
    }
  }
  
  @media (max-width: 480px) {
    .cta-heading {
        font-size: 20px; /* Further reduce heading size for very small screens */
    }
  
    .cta-paragraph {
        font-size: 13px; /* Further reduce paragraph font size */
    }
  
    .form-heading {
        font-size: 18px; /* Further reduce form heading size */
    }
  
    .cta-right {
        padding: 20px; /* Reduce padding on small screens */
    }
  }




  .faqs {
  padding: 100px 15px;
  background-color: #f7f7f7;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-title {
  font-size: 32px;
  font-weight: 600;
  color: #232323;
  font-family:'Times New Roman', Times, serif;
  margin-bottom: 60px;
  text-align: center;
}

.faq-subtitle {
  font-size: 16px;
  color: #20b2aa;
  font-weight: 500;
  margin-bottom: 20px;
  text-align: center;
}

.faq-items {
  margin-top: 1.5rem;
}

.faq-item {
  background: #fff;
  border: none;
  border-radius: 5px;
  margin-bottom: 20px;
  padding: 20px 30px;
  cursor: pointer;
  transition: box-shadow 0.3s ease;
  box-shadow: 0 0 15px rgba(0, 0, 0, .08);
}

.faq-item:hover {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  font-size: 15px;
  font-weight: 500;
  color: #232323;
  font-family: "Spectral", serif;
}

.faq-toggle {
  font-size: 12px;
  font-weight: 700;
}

.faq-answer {
  margin-top: 20px;
  font-size: 15px;
  color: #232323;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.5s ease, max-height 0.5s ease;
}

.faq-item.active .faq-answer {
  opacity: 1;
  max-height: 1000px; /* Large value for smooth expansion */
}

.faq-item.active .faq-question {
  color: #232323;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
  .faqs {
    padding: 50px 15px;
    background-color: #f7f7f7;
  }
  .faq-title {
    font-size: 28px; /* Adjust title size for smaller screens */
    margin-bottom: 40px;
  }

  .faq-subtitle {
    font-size: 14px; /* Adjust subtitle size for smaller screens */
  }

  .faq-item {
    padding: 15px 20px; /* Reduce padding on smaller screens */
  }

  .faq-question {
    font-size: 14px; /* Adjust font size for question */
  }

  .faq-answer {
    font-size: 14px; /* Adjust font size for answer */
  }
}

@media (max-width: 480px) {
  .faq-title {
    font-size: 24px; /* Further reduce title size for very small screens */
  }

  .faq-subtitle {
    font-size: 12px; /* Further reduce subtitle size */
  }

  .faq-item {
    padding: 10px 15px; /* Reduce padding further on very small screens */
  }

  .faq-question {
    font-size: 13px; /* Adjust font size for question */
  }

  .faq-answer {
    font-size: 13px; /* Adjust font size for answer */
  }
}


.footer {
  background-color: #ffffff;
  /* padding-bottom: 100px; */
  font-family: Arial, sans-serif;
  font-size: 14px;
  color: #333;
  letter-spacing: 0.5px;
}

.footer .container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 2fr; /* First column is twice as wide */
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 15px 80px;
  align-items: start; /* Align all items to the top */
}

.footer-section {
  text-align: left;
}

.footer-logo img {
  width: 175px;
  margin-bottom: 15px;
}

.footer-text {
  font-size: 12px;
  text-decoration: none;
  color: #284155;
  transition: color 0.3s;
}

.footer-text1 {
  font-size: 15px;
  text-decoration: none;
  color: #284155;
  transition: color 0.3s;
  margin-bottom: 5px;
}

.footer-section h3 {
  font-size: 15px;
  margin-bottom: 5px;
  color: #284155;
  font-weight: 700;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 5px;
}

.footer-links a {
  font-size: 12px;
  text-decoration: none;
  color: #284155;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #0056b3;
}

.footer-bottom {
  text-align: center;
  padding: 20px 0;
  background-color: #f9f9f9;
  color: #232323;
  font-size: 14px;
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  .footer {
    padding-bottom: 40px;
  }
  .footer .container {
    grid-template-columns: 1fr 1fr; /* Two columns for medium screens */
    gap: 20px; /* Reduce gap between sections */
  }


  .footer-logo img {
    width: 150px; /* Resize logo on smaller screens */
    margin: 0 auto 15px; /* Center logo */
  }

  .footer-links li {
    margin-bottom: 10px; /* Increase spacing between links */
  }

  .footer-bottom {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .footer .container {
    grid-template-columns: 1fr; /* Single column for mobile screens */
    padding: 30px 15px; /* Adjust padding for mobile */
  }

  .footer-section {
    margin-bottom: 20px;
  }

  .footer-logo img {
    width: 120px; /* Further reduce logo size for mobile */
    margin: 0 auto 20px; /* Center logo */
  }

  .footer-links li {
    margin-bottom: 15px; /* Add space between links for better readability */
  }

  .footer-bottom {
    font-size: 12px;
    padding: 20px 0; /* Reduce bottom padding */
  }

  .footer-text, .footer-text1 {
    font-size: 12px; /* Adjust text size for mobile screens */
  }
}
.footer-text a:hover {
  color:gray;
  text-decoration: none;
}
.fa-brands{
  font-size: 25px;
  padding: 15px 5px;
}
/* Sidebar container */
.sidebar {
  position: fixed;
  right: 0;
  top: 25%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  z-index: 1000;
}

/* Base styles for sidebar items */
.sidebar-item {
  background-color: #20b2aa;
  color: white;
  border-radius: 30px 0 0 30px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  width: 60px;
  height: 60px;
  cursor: pointer;
  transition: all 0.3s ease;
  overflow: hidden;
  position: relative;
}

/* Expanded state for hover */
.sidebar-item.expanded {
  width: 220px; /* Expands on hover */
}
.sidebar a:hover{
  color: white;
  text-decoration: none;
}
/* Icon styling */
.icon {
  font-size: 20px;
  margin-right: 10px;
}

/* Text styling for expanded buttons */
.text {
  font-size: 16px;
  white-space: nowrap;
}

/* Call button styling */
.call-button {
  border-radius: 50px 0 0 50px;
  padding: 0 0 0 10px;
  width: 55px;
  justify-content: center;
}

/* Get Started button styling */
.get-started {
  background-color: #20b2aa;
  border-radius: 20px 0 0 20px;
  width: 55px;
  height: 250px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.get-started .rotated-text {
  transform: rotate(270deg);
  color: white;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 1px;
  text-align: center;
  white-space: nowrap;
}


@media only screen and (max-width:992px){
    .sidebar{
        display: none;
    }
}