html {
    scroll-behavior: smooth;
}
body {
    font-family: 'Cormorant Garamond', sans-serif;
    margin: 0;
    padding: 0;
    height: 100%;
}

/* Fixed Header Section */
.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 40px;
    box-sizing: border-box;
    height: 110px;
}
.fixed-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 200px; 
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.945) 0%, rgba(0, 0, 0, 0) 100%);
    z-index: -1;
}
.fixed-logo img {
    height: 100px;
    width: auto;
}
.fixed-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 24px;
}
.fixed-nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 400;
    font-size: 25px;
    transition: opacity 0.3s;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
    letter-spacing: 0.2px;
}
.fixed-nav a:hover {
    opacity: 0.8;
}

/* Home section */
.home-section{
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}
.home-section::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: rgba(255, 255, 255, 0.85);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.scrolled .home-section::before {
    opacity: 1;
}
.header-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: rgba(80, 73, 73);
    z-index: 2;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.header-backdrop.visible {
    opacity: 1;
}
.home-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.home-carousel-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}
.home-carousel-item.active {
    opacity: 1;
}
.home-overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.4) 100%);
    z-index: 2;
}
.home-content {
    position: absolute;
    font-size: 50px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 3;
    color: #fff;
}
.rotating-text {
    position: relative;
    height: 60px;
}
.rotating-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    text-align: center;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    font-size: 60px;
    font-weight: 400;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
}
.rotating-item.active {
    opacity: 1;
}

/* Intro Section */
.tutor-section {
    position: relative;
    width: 100%;
    padding-top: 100px;
}

.tutor-section h2 {
    font-size: 50px;
    color: #472f04;
    margin: 30px 0 20px 0;
    display: flex;
    align-items: center;
    padding-left: 85px;
    gap: 16px;
}
.tutor-section h2::after {
    content: "";
    flex: 1;
    height: 2px;
    background: #472f04;
}

.tutor-container {
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
}
.tutor-content {
    flex: 1; 
    min-width: 0;
    margin-left: 85px;
    padding-right: 50px;
}
.tutor-content h3 {
    font-size: 36px;
    font-weight: 700;
    color: #472f04;
}
.tutor-content h4 {
    font-size: 25px;
    font-weight: 700;
    color: #472f04;
}
.tutor-content p {
    font-size: 18px;
    line-height: 1.6;
    color: #333;
}
.tutor-image {
    flex: 1;
    display: flex;
    justify-content: center;
}
.tutor-image img {
    width: 100%;
    height: auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Stats Section */
.stats-section {
    position:relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    padding-top: 100px;
}
.stats-section h2 {
    font-size: 50px;
    color: #472f04;
    margin: 30px 0 20px 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 85px;
    gap: 16px;
    width: 100%;
    box-sizing: border-box;
}
.stats-section h2::before {
    content: "";
    flex: 1;
    height: 2px;
    background: #472f04;
    min-width: 0;
}
.stats-grid {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 0;
  flex-wrap: nowrap;
  width: 100%;
  padding: 0 85px;
  box-sizing: border-box;
}
.stat-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 40px;
  background: white;
  border: 1px solid #e8e2d8;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}
.stat-card:first-child {
  border-radius: 12px 0 0 12px;
}
.stat-card:last-child {
  border-radius: 0 12px 12px 0;
}
.stat-number {
  font-size: 80px;
  font-weight: 900;
  color: #472f04;
  line-height: 1;
}
.stat-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  color: #7a6245;
  margin-top: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* About Section */
.about-section{
    position:relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    padding-top: 100px;
}

.about-section h2 {
    font-size: 50px;
    color: #472f04;
    margin: 30px 0 20px 0;
    display: flex;
    align-items: center;
    padding-left: 85px;
    gap: 16px;
}
.about-section h2::after {
    content: "";
    flex: 1;
    height: 2px;
    background: #472f04;
}

.about-card {
    width: 100%;
    height: 100%;
}
.about-video {
    /* position: relative;
    width: 100%;
    height: 100%;
    margin: 0 auto; */

    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}
.about-video-player {
    /* width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    background: #000; */
    width: 100%;
    height: 600px;
    display: block;
    border-radius: 8px;
    background: #000;
    border: none;
}
.about-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    border: none;
    background: #000;
}

/* Services Section */
.services-section {
    position:relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    padding-top: 100px;
}
.services-section h2 {
    font-size: 50px;
    color: #472f04;
    margin: 30px 0 20px 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 85px;
    gap: 16px;
    width: 100%;
    box-sizing: border-box;
}
.services-section h2::before {
    content: "";
    flex: 1;
    height: 2px;
    background: #472f04;
    min-width: 0;
}
.services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px;
    padding: 0 20px;
}
.service-card {
    height: 500px;
    width: 280px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease;
}
.service-card:hover {
    transform: scale(1.03);
}
.service-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 240px;
    background: linear-gradient(to top, 
        rgba(0, 0, 0, 0.99) 0%, 
        rgba(0, 0, 0, 0.7) 40%, 
        transparent 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}
.service-content h3 {
    font-weight: 700;
    font-size: 40px;
    margin: 0 0 8px;
    text-align: center;
}
.service-content p {
    font-family: 'Times New Roman', serif;
    font-size: 20px;
    font-weight: 350;
    opacity: 0.9;
    margin: 0;
}

/* Testimonials Section */
.testimonials-section {
    position:relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    padding-top: 120px;
}
.testimonials-section > div {
    background: #c7b794;
    padding: 60px 0;
    width: 100%;
    min-height: 420px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.testimonials-section h2 {
    font-size: 50px;
    color: #472f04;
    margin: 0 0 20px 0;
    display: flex;
    align-items: center;
    padding-left: 85px;
    gap: 16px;
    width: 100%;
    box-sizing: border-box;
}
.testimonials-section h2::after {
    content: "";
    flex: 1;
    height: 2px;
    background: #472f04;
}
.testimonials-container {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    position: relative;
}
.testimonial-sign {
    width: 80px;
    height: auto;
    margin-bottom: 32px;
    opacity: 0.8;
}
.testimonial-slide {
    display: none;
    animation: fadeIn 0.4s ease-in-out;
}
.testimonial-slide.active {
    display: block;
}
.testimonial-slide p {
    font-size: 35px;
    color: white;
    line-height: 1.6;
}
.testimonial-author {
    font-size: 30px;
    color: white;
    margin-top: 50px;
    padding-top: 50px;
}
.testimonial-dots {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 12px;
}
.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid #ccc;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}
.dot.active {
    background: white;
    border-color: white;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
.more-reviews-image {
    width: 100%;
    max-width:322px;
    height: auto;
    display: block;
    margin: 0 auto;
    cursor: pointer;
    transition: transform 0.3s ease;
}
.more-reviews-image:hover {
    transform: scale(1.03);
}

/* Contact Section */
.contact-section {
    position: relative;
    width: 100%;
    padding-top: 100px;
}
.contact-section > div {
    background: black;
    padding: 60px 0;
    width: 100%;
    min-height: 420px;
    display: flex;
    flex-direction: column;
}
.contact-section h2 {
    font-size: 50px;
    color: #472f04;
    margin: 30px 0 20px 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 85px;
    gap: 16px;
    width: 100%;
    box-sizing: border-box;
}
.contact-section h2::before {
    content: "";
    flex: 1;
    height: 2px;
    background: #472f04;
    min-width: 0;
}
.contact-container {
    width: 100%;
    text-align: left;
    position: relative;
}
.contact-image {
    width: 800px;
    height: auto;
    display: block;
    margin-top: 60px;
}

/* .contact-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-right: 100px;
    box-sizing: border-box;
    width: 100%;
    gap: 40px;
} */

.contact-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 100px;
    padding-right: 190px;
    box-sizing: border-box;
    width: 100%;
    gap: 40px;
}

.contact-details {
    color: white;
    font-size: 18px;
    line-height: 1.6;
}
.contact-details h3 {
    font-weight: 700;
    font-size: 35px;
    color: #f8f5f0;
}
.contact-details p {
    margin: 6px 0;
    font-family: serif;
}
.social-icons {
    display: flex;
    gap: 20px;
    margin-top: 35px;
}
.social-icons img {
    width: 28px;
    height: 28px;
}
.logo-link {
    display: block;
    cursor: pointer;
}
.logo-link:hover {
    cursor: pointer;
}
.logo-link img {
    display: block;
    transition: transform 0.3s ease;
}
.logo-link:hover img {
    transform: scale(1.02);
}

/* Footer Section */
.final-divider {
    border: 0;
    border-top: 1px solid #555;
    margin: 160px 0 20px;
    width: 100%;
}
.copyright-text {
    text-align: center;
    color: #999;
    font-size: 14px;
    font-family: serif;
    padding-top: 30px;
}

/* Chatbot Section */
#ism-chat-widget {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  font-family: 'Cormorant Garamond', serif;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
#ism-chat-bubble {
  background: #004b72;
  color: white;
  padding: 10px 18px;
  border-radius: 24px;
  font-size: 15px;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
  animation: ism-bounce 2s infinite;
  white-space: nowrap;
}
#ism-chat-bubble:hover { background: #004b72; }
@keyframes ism-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}
#ism-chat-toggle {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #004b72;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0,0,0,0.22);
  transition: background 0.2s;
  position: relative;
}
#ism-chat-toggle:hover { background: #004b72; }
#ism-chat-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}
#ism-chat-close {
  display: none;
  color: white;
  font-size: 22px;
  font-weight: bold;
  line-height: 1;
}
#ism-chat-window {
  display: none;
  flex-direction: column;
  width: 360px;
  height: 520px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.18);
  overflow: hidden;
  order: -1;
}
#ism-chat-header {
  background: #004b72;
  color: white;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
#ism-chat-header img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
}
#ism-chat-title {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.3px;
}
#ism-chat-status {
  font-size: 12px;
  opacity: 0.8;
  color: #90ee90;
}
#ism-chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #faf8f5;
}
.ism-msg {
  max-width: 82%;
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 14px;
  line-height: 1.55;
  word-wrap: break-word;
}
.ism-msg-bot {
  background: #f0e8d8;
  color: #004b72;
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}
.ism-msg-user {
  background: #004b72;
  color: white;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}
.ism-msg-typing {
  background: #97b5dbf1;
  color: #888;
  align-self: flex-start;
  font-style: italic;
  font-size: 13px;
}
#ism-chat-suggestions {
  padding: 8px 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  background: #faf8f5;
  border-top: 1px solid #ede8df;
}
.ism-suggestion {
  background: white;
  border: 1px solid #004b72;
  color: #004b72;
  border-radius: 16px;
  padding: 6px 13px;
  font-size: 12.5px;
  cursor: pointer;
  font-family: 'Cormorant Garamond', serif;
  transition: background 0.2s, color 0.2s;
  white-space: normal;
  text-align: left;
}
.ism-suggestion:hover {
  background: #004b72;
  color: white;
}
#ism-chat-input-row {
  display: flex;
  padding: 10px 12px;
  gap: 8px;
  border-top: 1px solid #ede8df;
  background: white;
}
#ism-chat-input {
  flex: 1;
  border: 1px solid #ddd;
  border-radius: 20px;
  padding: 8px 14px;
  font-size: 14px;
  font-family: 'Cormorant Garamond', serif;
  outline: none;
  background: #faf8f5;
}
#ism-chat-input:focus { border-color: #004b72; }
#ism-chat-input-row button {
  background: #004b72;
  color: white;
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
#ism-chat-input-row button:hover { background: #004b72; }

/* Cookie Widget */
#cookie-widget {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 9999;
  cursor: pointer;
}
#cookie-icon-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  transition: transform 0.2s;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.25));
}
#cookie-icon-btn:hover {
  transform: scale(1.08);
}
#cookie-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 10000;
}
#cookie-overlay.open {
  display: block;
}
#cookie-dialog {
  display: none;
  position: fixed;
  bottom: 100px;
  left: 28px;
  width: 340px;
  background: #2b2b2b;
  border-radius: 12px;
  padding: 28px;
  z-index: 10001;
  box-shadow: 0 8px 40px rgba(0,0,0,0.4);
  color: white;
  font-family: 'Cormorant Garamond', serif;
}
#cookie-dialog.open {
  display: block;
}
#cookie-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  color: white;
  font-size: 18px;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s;
}
#cookie-close:hover { opacity: 1; }
#cookie-dialog h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 12px;
  padding-right: 24px;
}
#cookie-dialog > p {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255,255,255,0.75);
  margin-bottom: 20px;
}
.cookie-option {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
}
.cookie-option input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  accent-color: white;
  flex-shrink: 0;
  cursor: pointer;
}
.cookie-option label {
  font-size: 13px;
  line-height: 1.5;
  cursor: pointer;
}
.cookie-option label span {
  color: rgba(255,255,255,0.6);
  font-size: 12px;
}
.cookie-buttons {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.cookie-buttons button {
  flex: 1;
  padding: 12px;
  border-radius: 6px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.cookie-buttons button:first-child {
  background: #6b6b6b;
  color: white;
  border: none;
}
.cookie-buttons button:first-child:hover {
  background: #888;
}
.cookie-buttons button:last-child {
  background: transparent;
  color: white;
  border: 2px solid white;
}
.cookie-buttons button:last-child:hover {
  background: white;
  color: #2b2b2b;
}

/* --------------------------------------------------------------------------------------------------------------------------
-------------------------------------------------------------------------------------------------------------------------- */

/* Hamburger Menu */
.hamburger {
   display: none;
   flex-direction: column;
   justify-content: center;
   gap: 5px;
   background: none;
   border: none;
   cursor: pointer;
   padding: 8px;
   z-index: 200;
}
.hamburger span {
   display: block;
   width: 26px;
   height: 2px;
   background: white;
   border-radius: 2px;
   transition: all 0.3s ease;
}
.hamburger.open span:nth-child(1) {
   transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
   opacity: 0;
}
.hamburger.open span:nth-child(3) {
   transform: translateY(-7px) rotate(-45deg);
}
@media (max-width: 768px) {

   /* Header */
   .fixed-header {
      height: 70px;
      padding: 0 20px;
   }
   .fixed-logo img {
      height: 55px;
   }
   .hamburger {
      display: flex;
   }
   .fixed-nav ul {
      display: none;
      flex-direction: column;
      position: fixed;
      top: 70px;
      left: 0;
      width: 100%;
      background: rgba(30, 20, 10, 0.97);
      padding: 0;
      gap: 0;
      z-index: 999;
      margin: 0;
   }
   .fixed-nav ul.open {
      display: flex;
   }
   .fixed-nav ul li a {
      display: block;
      padding: 14px 30px;
      font-size: 20px;
      border-bottom: 1px solid rgba(255,255,255,0.08);
   }
   /* Home section */
   .home-section {
      height: 100vh;
      width: 100%;
   }
   .home-content {
      width: 90%;
      font-size: 28px;
   }
   .home-content h1 {
      font-size: 32px;
      line-height: 1.2;
   }
   .rotating-text {
      height: 45px;
   }
   .rotating-item {
      font-size: 28px;
   }
   /* All section headings */
   .tutor-section h2,
   .about-section h2,
   .services-section h2,
   .testimonials-section h2,
   .contact-section h2 {
      font-size: 28px;
      padding-left: 20px;
      padding-right: 20px;
   }
   /* Tutor section */
   .tutor-section {
      padding-top: 80px;
      min-height: 100vh;
      box-sizing: border-box;
   }
   .tutor-container {
      flex-direction: column;
      padding-bottom: 40px;
   }
   .tutor-content {
      margin-left: 20px;
      margin-right: 20px;
      padding-right: 0;
   }
   .tutor-content h3 {
      font-size: 24px;
   }
   .tutor-content h4 {
      font-size: 18px;
   }
   .tutor-content p {
      font-size: 15px;
   }
   .tutor-image {
      width: 100%;
      padding: 0 20px;
      box-sizing: border-box;
      margin-top: 30px;
   }
   .tutor-image img {
      width: 100%;
      max-width: 400px;
      margin: 0 auto;
      display: block;
   }
   /* About section */
   .about-section {
      padding-top: 80px;
      min-height: 100vh;
      box-sizing: border-box;
   }
   .about-video-player {
      border-radius: 0;
   }
   /* Services section */
   .services-section {
      padding-top: 80px;
      min-height: 100vh;
      box-sizing: border-box;
   }
   .services-section h2 {
      justify-content: flex-start;
      padding-left: 20px;
      padding-right: 20px;
   }
   .services-section h2::before {
      display: none;
   }
   .services-section h2::after {
      content: "";
      flex: 1;
      height: 2px;
      background: #472f04;
   }
   .services-grid {
      flex-direction: column;
      align-items: center;
      padding: 0 20px;
      gap: 12px;
   }
   .service-card {
      width: 100%;
      max-width: 420px;
      height: 280px;
   }
   .service-content h3 {
      font-size: 26px;
   }
   .service-content p {
      font-size: 15px;
   }
   /* Testimonials section */
   .testimonials-section {
      padding-top: 80px;
      min-height: 100vh;
      box-sizing: border-box;
   }
   .testimonials-section h2 {
      display: flex;
      align-items: center;
      margin: 0 0 20px 0;
      padding-left: 20px;
      white-space: normal;
      position: static;
   }
   .testimonials-section h2::after {
      content: "";
      flex: 1;
      height: 2px;
      background: #472f04;
      position: static;
      width: auto;
      margin-left: 16px;
   }
   .testimonials-section > div {
      padding: 40px 20px;
      align-items: center;
      width: 100%;
      box-sizing: border-box;
      margin: 0;
   }
   .testimonials-container {
      /* padding: 0 10px; */
      padding: 0 20px;
      box-sizing: border-box;
      width: 100%;
      max-width: 100%;
      text-align: center;
   }
   .testimonial-slide p {
      /* font-size: 18px; */
          font-size: 18px;
          word-wrap: break-word;
          overflow-wrap: break-word;
   }
   .testimonial-author {
      font-size: 16px;
      margin-top: 20px;
      padding-top: 20px;
   }
   .testimonial-sign {
      width: 50px;
      margin-bottom: 20px;
   }
   /* Contact section */
   .contact-section {
      padding-top: 80px;
      min-height: 100vh;
      box-sizing: border-box;
   }
   .contact-section h2 {
      justify-content: flex-start;
      padding-left: 20px;
      padding-right: 20px;
   }
   .contact-section h2::before {
      display: none;
   }
   .contact-section h2::after {
      content: "";
      flex: 1;
      height: 2px;
      background: #472f04;
   }
   .contact-content {
      flex-direction: column;
      gap: 30px;
      align-items: flex-start;
      padding: 0 20px;
   }
   .contact-image {
      width: 100%;
      max-width: 300px;
      margin-top: 20px;
   }
   .contact-container {
      margin: 0;
      width: 100%;
      padding: 0 20px;
      box-sizing: border-box;
   }
   .contact-details h3 {
      font-size: 24px;
   }
   .contact-details {
      font-size: 15px;
   }
   .final-divider {
      margin: 60px 0 20px;
   }
   /* Chatbot */
   #ism-chat-window {
      width: calc(100vw - 32px);
      height: 70vh;
      right: 0;
   }
   #ism-chat-widget {
      bottom: 16px;
      right: 16px;
   }
   #cookie-widget {
    bottom: 16px;
    left: 16px;
  }
  #cookie-dialog {
    left: 16px;
    right: 16px;
    width: auto;
    bottom: 90px;
  }
  .stats-section {
    padding: 80px 0;
    min-height: auto;
  }
  .stats-section h2 {
    font-size: 28px;
    padding-left: 20px;
    margin-bottom: 40px;
  }
  .stats-grid {
    flex-direction: column;
    padding: 0 20px;
    gap: 16px;
  }
  .stat-card {
    padding: 40px 20px;
    border-radius: 12px !important;
  }
  .stat-number {
    font-size: 60px;
  }
  .stat-label {
    font-size: 13px;
  }
}