/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  --primary-color: #4FB09D;
  /* Teal color from screenshot */
  --text-color: #555;
  --dark-text: #333;
  --light-bg: #f8f9fa;
  --font-family-body: 'Outfit', sans-serif;
  --font-family-heading: 'Montserrat', sans-serif;
}

body {
  font-family: var(--font-family-body);
  color: var(--text-color);
}

h1,
h2,
h3,
h4,
h5,
h6,
.navbar-nav .nav-link,
.btn {
  font-family: var(--font-family-heading) !important;
}

.form-control,
.form-select,
.contact-input,
p,
span,
li {
  font-family: var(--font-family-body) !important;
}

a {
  text-decoration: none;
}

/* Header Section */
.header-section {
  background-color: #fff;
}

/* Footer Section */
.text-teal {
  color: #4FB09D !important;
}

.footer-nav a {
  transition: color 0.3s;
}

.footer-nav a:hover {
  color: #2c6e61 !important;
}

@media (max-width: 768px) {
  .footer-nav {
    justify-content: center !important;
    flex-wrap: wrap;
  }

  .border-start,
  .border-end {
    border: none !important;
  }

  .col-md-4 {
    justify-content: flex-start !important;
    margin-bottom: 20px;
  }
}

/* Top Bar */
.top-bar {
  padding: 15px 0;
}

.top-bar .logo img {
  max-height: 80px;
  /* Adjust as needed based on actual image size */
}

.top-info {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
}

.top-info .info-item {
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
  color: var(--dark-text);
}

.top-info .info-item .icon img {
  height: 35px;
  /* Adjust to match design */
  width: auto;
  margin-right: 10px;
}

.top-info .btn-login {
  background-color: var(--primary-color);
  color: #fff;
  border-radius: 4px;
  /* Slightly rounded corners */
  padding: 8px 25px;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  transition: background-color 0.3s;
  border: none;
  display: flex;
  align-items: center;
}

.top-info .btn-login:hover {
  background-color: #3d9181;
  color: #fff;
}

.top-info .cart-icon {
  position: relative;
  cursor: pointer;
}

.top-info .cart-icon img {
  height: 35px;
  width: auto;
}

/* Navbar */
.header-section .navbar {
  padding: 0;
  background-color: #fff;
  border-top: 1px solid #e1e1e1;
  /* Lighter border */
  border-bottom: 1px solid #e1e1e1;
}

.header-section .navbar-nav {
  width: 100%;
  justify-content: space-around;
  gap: 30px;
}

.header-section .navbar-nav .nav-link {
  color: var(--primary-color) !important;
  /* Teal color for links */
  font-weight: 700;
  font-size: 15px;
  padding: 20px 0 !important;
  text-transform: uppercase;
  transition: color 0.3s;
  position: relative;
}

.header-section .navbar-nav .nav-link:hover,
.header-section .navbar-nav .nav-link.active {
  color: #3d9181 !important;
  /* Darker teal on hover */
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
  .container.mobile-header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 15px;
    padding-right: 15px;
    width: 100%;
    /* Ensure full width */
  }

  .mobile-logo {
    flex: 1;
    /* Allow logo to take space */
    max-width: 80%;
    /* Don't let it overlap toggler too much */
    display: flex;
    align-items: center;
    padding: 0;
    /* Remove default padding */
  }

  .mobile-logo img {
    max-height: 50px;
    /* Constrain height to keep header tidy */
    width: auto;
  }

  .navbar-toggler {
    flex: 0 0 auto;
    /* Don't grow/shrink */
    border: none;
    padding: 5px;
    /* Reduced padding */
    outline: none;
    box-shadow: none !important;
  }

  .navbar-toggler:focus {
    box-shadow: none;
  }

  .header-section .navbar-nav {
    padding: 15px 0;
    gap: 0;
  }

  .header-section .navbar-nav .nav-item {
    text-align: center;
    width: 100%;
  }

  .header-section .navbar-nav .nav-link {
    padding: 10px 0 !important;
    width: 100%;
    display: block;
  }

  .mobile-contact-info .info-item {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .mobile-contact-info .info-item {
    font-size: 14px;
  }

  .mobile-contact-info .info-item .icon img {
    height: 30px;
  }

  .mobile-contact-info .cart-icon img {
    height: 30px;
  }

  .mobile-contact-info .btn-login {
    padding: 8px 25px;
    font-size: 14px;
  }
}

/* Custom styles for badge */
.cart-icon .badge {
  position: absolute;
  top: -5px;
  right: -8px;
  font-size: 0.65rem;
  padding: 0.35em 0.5em;
  border-radius: 50%;
  background-color: var(--primary-color) !important;
  /* Use primary color for badge */
  color: #fff;
  border: 1px solid #fff;
}

/* Banner Section */
.banner-section {
  background-image: url('../images/home-banner.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 800px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding-bottom: 100px;
  /* Space for search bar */
}

.banner-about-section {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 250px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.banner-about-section .banner-content {
  transform: none !important;
}

@media (max-width: 991px) {
  .banner-about-section {
    min-height: 350px !important;
    padding-top: 60px;
  }
}

.banner-content {
  z-index: 2;
  transform: translateY(-50px);
  /* Move content up slightly to avoid overlap with search */
}

.banner-shape-container {
  max-width: 850px;
  margin: 0 auto;
  /* background-color: rgba(79, 176, 157, 0.9); */
  /* Teal with slight transparency */
  /* border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%; */
  /* Organic shape */
  padding: 80px 40px;
  /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); */
}

.banner-text {
  /* Reset absolute positioning */
  width: 100%;
  text-align: center;
  color: #fff;
}

.banner-text h4 {
  font-size: 0.9rem;
  letter-spacing: 3px;
  margin-bottom: 15px;
  font-weight: 500;
}

.banner-text h1 {
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 1.2;
  text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.btn-banner {
  background-color: #3d9181 !important;
  /* Slightly lighter/cleaner teal to match image */
  color: #fff !important;
  padding: 15px 40px !important;
  /* Larger padding */
  border-radius: 50px !important;
  font-weight: 700 !important;
  /* Bolder text */
  font-size: 15px !important;
  transition: all 0.3s !important;
  border: none !important;
  /* Removed border */
  display: inline-flex !important;
  align-items: center !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
  /* Subtle shadow */
}

.btn-banner:hover {
  background-color: #fff;
  color: var(--primary-color);
}

/* Search Container */
.search-container {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  padding-bottom: 30px;
}

/* Styled Search Box with semi-transparent white bg */
.search-box {
  background-color: rgba(255, 255, 255, 0.92) !important;
  /* Low opacity white as requested */
  backdrop-filter: blur(5px);
  /* Optional: adds a nice blur effect behind */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05) !important;
  padding: 20px 30px !important;
  border-radius: 50px 0px;
  /* Fully rounded/pill shape */
  margin: 0 15px;
  /* Add some margin on sides if container is wide */
}

/* Adjust margin for container to ensure it doesn't touch edges */
.search-container .container {
  max-width: 1200px;
}

.btn-search {
  background-color: #387c6d !important;
}

.search-box h5 {
  color: #1a4e45;
  /* Darker teal for 'SEARCH COURSE' */
  font-size: 1.2rem;
  letter-spacing: 1px;
}

.search-box .form-control,
.search-box .form-select {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  /* Soft shadow for inputs */
  font-size: 0.9rem;
  color: #666;
}

.text-teal {
  color: var(--primary-color);
}

.btn-search {
  background-color: var(--primary-color);
  color: #fff;
  font-weight: 600;
  transition: background-color 0.3s;
  box-shadow: 0 5px 15px rgba(79, 176, 157, 0.3);
}

.btn-search:hover {
  background-color: #3d9181;
  color: #fff;
}

/* Bottom Curve */
.banner-section>img[alt="Curve"] {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1;
  pointer-events: none;
  /* Let clicks pass through if needed, though search is z-index 10 */
}

/* Online Courses Section */
.online-courses-section {
  background-color: #fff;
  padding-top: 80px;
  padding-bottom: 80px;
}

.section-title {
  color: #4FB09D;
  /* Teal */
  letter-spacing: 1px;
}

.course-card {
  transition: transform 0.3s;
  height: 100%;
}

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

.course-img-container {
  overflow: hidden;
  border-top-left-radius: 80px;
  /* Unique shape from design */
  min-height: 250px;
  /* Ensure image is tall enough */
}

.course-img-container img {
  transition: transform 0.5s;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.course-card:hover .course-img-container img {
  transform: scale(1.05);
}

.course-content {
  position: relative;
  width: 90%;
  margin: -60px auto 0;
  /* Adjusted Overlap */
  z-index: 10;
  border-radius: 0;
  padding: 30px;
}

.course-title {
  color: #1a4e45;
  /* Dark Green */
  font-size: 1.1rem;
  letter-spacing: 0.5px;
}

.course-desc {
  font-size: 0.9rem;
  line-height: 1.6;
}

.btn-course {
  background: linear-gradient(90deg, #4FB09D 0%, #3d9181 100%) !important;
  color: #fff !important;
  padding: 10px 25px !important;
  font-size: 0.8rem !important;
  letter-spacing: 1px !important;
  transition: all 0.3s !important;
  border: none !important;
}

.btn-course:hover {
  background: linear-gradient(90deg, #3d9181 0%, #2c6e61 100%);
  color: #fff;
  box-shadow: 0 5px 15px rgba(79, 176, 157, 0.3);
  transform: translateY(-2px);
}

/* Banner Mobile Responsiveness */
@media (max-width: 991px) {
  .banner-section {
    background-image: url('../images/mobilebanner.png');
    min-height: auto;
    background-position: top center;
    background-size: cover;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 120px;
    padding-bottom: 50px;
  }

  .banner-shape-container {
    background-color: transparent;
    box-shadow: none;
    padding: 0;
    margin-bottom: 30px;
  }

  .banner-text {
    width: 100%;
    margin: 0 auto;
    text-align: center;
    position: relative;
    top: auto;
    left: auto;
    transform: none;
  }

  .banner-text h4 {
    font-size: 0.9rem;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  }

  .banner-text h1 {
    font-size: 2rem;
    line-height: 1.3;
    margin-bottom: 25px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  }

  .btn-banner {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important;
    margin-bottom: 20px;
  }

  /* Mobile Search Card Style - Static Position now */
  .search-container {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    width: 90%;
    margin: 20px auto 0;
    padding: 0;
    z-index: 20;
  }

  .search-box {
    background-color: rgba(255, 255, 255, 0.95) !important;
    border-radius: 25px !important;
    padding: 25px 20px !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15) !important;
    display: flex;
    flex-direction: column;
    gap: 15px;
    backdrop-filter: blur(5px);
  }

  .search-box h5 {
    text-align: center;
    margin-bottom: 5px;
    font-size: 1.2rem;
    color: #1a4e45;
    font-weight: 700;
  }

  .search-box .row {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .search-box .col-lg-3,
  .search-box .col-lg-4,
  .search-box .col-lg-2 {
    width: 100%;
    padding: 0;
  }
}

@media (max-width: 768px) {
  .banner-section {
    min-height: 750px;
  }

  .banner-text h1 {
    font-size: 1.6rem;
  }

  .btn-banner {
    padding: 12px 30px !important;
    font-size: 13px !important;
  }
}

/* In Person Trainings Section */
.bg-light-mint {
  background-color: #f7fffd;
  /* Very light teal/mint */
}

.img-circle-container {
  padding: 15px;
  border: 8px solid #4FB09D;
  /* Teal border */
  border-radius: 50%;
  display: inline-block;
  max-width: 350px;
  position: relative;
  background: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.img-training {
  border-radius: 50%;
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 1 / 1;
}

.training-list li {
  font-size: 1.05rem;
  color: #555;
  margin-bottom: 15px;
  font-weight: 500;
  display: flex;
  align-items: center;
}

.training-list li i {
  font-size: 0.8rem;
  margin-right: 15px !important;
}

/* The Institute Section */
.bg-teal {
  background-color: #4FB09D !important;
}

.institute-section {
  position: relative;
  overflow: hidden;
  background-color: #4FB09D !important;
}

.institute-content-col {
  position: relative;
  z-index: 2;
  min-height: 600px;
  padding-right: 80px;
  /* Space for curve */
  /* Create the convex curve */
  border-bottom-right-radius: 60% 100%;
}

.institute-img-col {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  z-index: 1;
}

/* Mobile Responsiveness for New Sections */
@media (max-width: 991px) {
  .institute-content-col {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 50% 100px;
    /* Curve bottom left on mobile */
    min-height: auto;
    padding: 50px 30px 80px 30px !important;
    text-align: center;
    width: 100%;
  }

  .institute-img-col {
    position: relative;
    width: 100%;
    height: 350px;
    min-height: 350px;
    margin-top: -60px;
    /* Pull up behind curve */
    z-index: 0;
  }

  .img-circle-container {
    border-width: 5px;
    margin-bottom: 30px;
    max-width: 250px;
    padding: 10px;
  }

  .training-list li {
    font-size: 1rem;
    justify-content: center;
  }

  .in-person-section .text-center-mobile {
    text-align: center;
  }
}


/* In Person Trainings Section */
.bg-light-mint {
  background-color: #f7fffd;
  /* Very light teal/mint */
}

.img-circle-container {
  padding: 15px;
  border: 8px solid #4FB09D;
  /* Teal border */
  border-radius: 50%;
  display: inline-block;
  max-width: 350px;
  position: relative;
  background: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.img-training {
  border-radius: 50%;
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 1 / 1;
}

.training-list li {
  font-size: 1.05rem;
  color: #555;
  margin-bottom: 15px;
  font-weight: 500;
  display: flex;
  align-items: center;
}

.training-list li i {
  font-size: 0.8rem;
  margin-right: 15px !important;
}

/* The Institute Section */
.bg-teal {
  background-color: #4FB09D !important;
}

.institute-section {
  position: relative;
  overflow: hidden;
  background-color: #4FB09D !important;
}

@media (max-width: 991px) {
  .institute-section {
    background-color: #fff !important;
  }
}

.institute-content-col {
  position: relative;
  z-index: 2;
  min-height: 600px;
  padding-right: 80px;
  /* Space for curve */
  /* Create the convex curve */
  border-bottom-right-radius: 60% 100%;
}

.institute-img-col {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  z-index: 1;
}

.institute-section .second-image {
  display: none;
}

.mobile-bottomcurve {
  display: none;
}

/* Mobile Responsiveness for New Sections */
@media (max-width: 991px) {
  .institute-content-col {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0px !important;
    /* Curve bottom left on mobile */
    min-height: auto;
    padding: 50px 30px 80px 30px !important;
    text-align: center;
    width: 100%;
    z-index: 0;
  }

  .mobile-bottomcurve {
    display: block !important;
  }

  .deks-bottomcurve {
    display: none !important;
  }

  .institute-section .first-image {
    display: none !important;
  }

  .institute-section .second-image {
    position: relative;
    display: block !important;
    margin-top: -40px;
    z-index: 1;
  }

  .institute-img-col {
    position: relative;
    width: 100%;
    height: 350px;
    min-height: 350px;
    margin-top: -60px;
    /* Pull up behind curve */
    z-index: 0;
  }

  .img-circle-container {
    border-width: 5px;
    margin-bottom: 30px;
    max-width: 250px;
    padding: 10px;
  }

  .training-list li {
    font-size: 1rem;
    justify-content: left;
    /* Center list items on mobile if centered layout? No, list should align left usually, but let's check alignment */
  }

  .in-person-section .text-center-mobile {
    text-align: center;
  }

  .in-person-section .list-unstyled {
    text-align: left !important;
  }

  .training-list {
    text-align: left !important;
  }

  /* Ensure list is left aligned or centered depending on design preference.
       Let's keep left aligned for readability but maybe center the container. */
}

/* Take a Free Course Section */
.free-course-section .container {
  padding: 0 15px;
  /* Ensure padding on mobile */
}

.free-course-banner {
  background-size: 100% 100%;
  background-position: center center;
  border-top-left-radius: 80px;
  border-bottom-right-radius: 80px;
  /* min-height: 400px; */
  position: relative;
  /* overflow: hidden; */
}

@media (min-width: 991px) {
  .free-course-banner {
    background-image: url('../images/bannermidwithline.png');
  }
}

@media (max-width: 991px) {
  .free-course-banner {
    background-image: url('../images/mobilecoursebannre.png') !important;
    border-top-left-radius: 0px !important;
    border-bottom-right-radius: 0px !important;
    /* background-size: cover !important; */
  }
}

.free-course-banner::before {
  content: '';
  /* position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  /* Dark overlay for text readability */
  /* z-index: 1; */
}

/* Our Certifications Section */
.certifications-section {
  background-image: url('../images/certfiicatebg.png');
  background-size: cover;
  background-position: left bottom;
  /* background-attachment: fixed; */
  /* Parallax effect if suitable, otherwise scroll */
}

.certifications-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: rgba(255, 255, 255, 0.85); */
  /* Light overlay to make bg subtle */
  z-index: 1;
}

.cert-card {
  border: 1px solid rgba(79, 176, 157, 0.3);
  border-top-left-radius: 40px;
  border-bottom-right-radius: 40px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.cert-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(79, 176, 157, 0.15);
  border-color: #4FB09D;
}

.btn-cert {
  background-color: #7DBEAE !important;
  /* Muted teal */
  border: none !important;
  font-size: 0.8rem !important;
  padding: 8px 20px !important;
  transition: all 0.3s !important;
}

.btn-cert:hover {
  background-color: #4FB09D;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(79, 176, 157, 0.3);
}

/* Mobile Responsiveness for New Sections */
@media (max-width: 768px) {
  .free-course-banner {
    border-top-left-radius: 40px;
    border-bottom-right-radius: 40px;
    padding: 40px 20px !important;
  }

  .free-course-banner h2 {
    font-size: 1.8rem;
  }

  .cert-card {
    max-width: 320px;
    margin: 0 auto;
  }
}

/* Popular Packages Section */
.popular-packages-section {
  position: relative;
  padding-bottom: 80px;
}

.package-card {
  height: 350px;
  cursor: pointer;
}

.package-bg {
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.package-overlay {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.9) 100%);
  transition: background 0.3s ease;
}

.package-card:hover .package-bg {
  transform: scale(1.1);
}

.package-card:hover .package-overlay {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 40%, rgba(0, 0, 0, 0.95) 100%);
}

.btn-package {
  background: linear-gradient(90deg, #4FB09D 0%, #3d9181 100%);
  color: #fff;
  border: none;
  font-size: 0.8rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.package-card:hover .btn-package {
  opacity: 1;
  transform: translateY(0);
}

.btn-package:hover {
  background: linear-gradient(90deg, #3d9181 0%, #2c6e61 100%);
  color: #fff;
}

/* Mobile Responsive Adjustments */
@media (max-width: 991px) {
  .package-card {
    height: 300px;
  }

  /* Force hover state on mobile so buttons are visible */
  .btn-package {
    opacity: 1 !important;
    transform: translateY(0) !important;
  }

  .package-overlay {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 40%, rgba(0, 0, 0, 0.95) 100%) !important;
  }
}

/* Experience Section */
.icon-circle {
  width: 80px;
  height: 80px;
  margin-top: -90px;
}

@media (max-width: 991px) {
  .icon-circle {
    margin-top: 0px !important;
  }
}



.experience-card {
  transition: transform 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  margin: 70px 0px !important;
}

.experience-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}

/* Modal Styling */
.modal-content {
  border-radius: 15px !important;
}

.custom-modal-tabs {
  background: #f8f9fa;
  padding: 5px;
  border-radius: 50px;
}

.custom-modal-tabs .nav-link {
  color: #777 !important;
  border-radius: 50px !important;
  padding: 8px 25px !important;
  transition: all 0.3s;
  border: none !important;
}

.custom-modal-tabs .nav-link.active {
  background-color: var(--primary-color) !important;
  color: #fff !important;
  box-shadow: 0 4px 10px rgba(79, 176, 157, 0.2);
}

.modal-input {
  background-color: #f8f9fa !important;
  border: 1px solid #eee !important;
  padding: 12px 15px !important;
  font-size: 0.9rem !important;
  border-radius: 8px !important;
}

.modal-input:focus {
  border-color: var(--primary-color) !important;
  background-color: #fff !important;
  box-shadow: 0 0 0 0.25rem rgba(79, 176, 157, 0.1) !important;
}

.logo-white {
  filter: brightness(0) invert(1);
}

.invert {
  filter: invert(1);
}

/* Cart Sidebar Styling */
#cartSidebar {
  width: 400px;
}

@media (max-width: 576px) {
  #cartSidebar {
    width: 100%;
  }
}

.cart-item-img img {
  border: 1px solid #eee;
}

.text-teal {
  color: var(--primary-color) !important;
}

.btn-outline-teal {
  border: 2px solid var(--primary-color) !important;
  color: var(--primary-color) !important;
}

.btn-outline-teal:hover {
  background-color: var(--primary-color) !important;
  color: #fff !important;
}

.btn-experience {
  background-color: #7DBEAE;
  border: none;
  font-size: 0.8rem;
  transition: all 0.3s;
}

.experience-section {
  padding-top: 80px !important;
  padding-bottom: 80px !important;
  margin-bottom: unset !important;
}

/* Experience Section */
.experience-section .section-title {
  text-align: left;
  margin-left: 0;
  margin-right: auto;
}

.experience-section .img-fluid.mt-2 {
  display: block;
  margin-left: 0;
  margin-right: auto;
  width: 150px;
}

.experience-card {
  margin-top: 50px;
  /* Space for the icon */
  padding-top: 50px !important;
  padding-bottom: 50px !important;
  padding-left: 30px;
  padding-right: 30px;
}

/* Contact Section Curve */
@media (min-width: 992px) {
  .contact-section .bg-teal {
    position: relative;
    z-index: 10;
  }

  .contact-section .col-lg-6.d-none {
    z-index: 1;
  }
}

.contact-form-container h2 {
  font-size: 2.5rem;
}

/* Contact Section */
.contact-section {
  overflow: hidden;
}

.bg-teal {
  background-color: #4FB09D;
  /* Main Teal */
}

.btn-dark-teal {
  background-color: #2c6e61 !important;
  color: #fff !important;
  border: none !important;
  transition: all 0.3s !important;
}

.btn-dark-teal:hover {
  background-color: #1e4f45 !important;
  color: #fff !important;
  transform: translateY(-2px);
}

.form-control::placeholder {
  color: #999;
  font-size: 0.9rem;
}

.form-control:focus {
  box-shadow: none;
  background-color: #f8f9fa;
}

/* Custom Contact Input */
.contact-input {
  border-radius: 5px !important;
  /* Replaces rounded */
  border: none !important;
  /* Replaces border-0 */
  padding: 15px 20px !important;
  /* Replaces py-3 px-3 */
  width: 100%;
}

/* Footer Section */
.text-teal {
  color: #4FB09D !important;
  font-weight: 700 !important;
}

.footer-nav a {
  transition: color 0.3s;
  font-size: 15px !important;
  font-weight: 700 !important;
  letter-spacing: 0.5px;
}

.footer-nav a:hover {
  color: #2c6e61 !important;
}

.footer-section h6 {
  font-size: 16px !important;
  font-weight: 700 !important;
  text-transform: uppercase;
}

.footer-section p {
  font-size: 14px !important;
  font-weight: 500 !important;
}

.footer-section .small {
  font-size: 13px !important;
}

/* About Us Page Custom Website Section */
.custom-website {
  padding: 80px 0 !important;
  background-color: #fff;
}

.sec-h2 {
  font-family: var(--font-family-heading) !important;
  font-weight: 700 !important;
  font-size: 2.5rem !important;
  color: var(--dark-text);
  margin-bottom: 0;
  margin-right: 15px;
}

.headimg {
  height: 40px;
  width: auto;
}

.bline {
  height: 4px;
  width: 100px;
  background-color: var(--primary-color);
  margin-top: 15px;
  margin-bottom: 5px;
}

.bline-s {
  height: 2px;
  width: 60px;
  background-color: var(--primary-color);
  margin-bottom: 30px;
}

.sec-para {
  font-family: var(--font-family-body) !important;
  line-height: 1.8 !important;
  color: var(--text-color);
  margin-bottom: 20px;
}

.sec-para b {
  color: var(--dark-text);
  font-weight: 600;
}

.cbg-secondary {
  background-color: var(--primary-color) !important;
}

@media (max-width: 991px) {
  .sec-h2 {
    font-size: 2rem !important;
  }
}

@media (max-width: 991px) {
  .footer-nav {
    justify-content: flex-start !important;
    margin-top: 20px;
  }

  .footer-nav ul {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 10px;
  }

  .border-center-md {
    border-left: none !important;
    border-right: none !important;
  }
}

@media (min-width: 768px) {
  .border-center-md {
    border-left: 1px solid #dee2e6 !important;
    border-right: 1px solid #dee2e6 !important;
  }
}

.footer-section ul li {
  margin: 0px 25px !important;
}

@media (max-width: 768px) {
  .experience-card {
    margin: 5px 0px !important;
  }
}