:root {
      --themeht-typography-secondary-font-family: 'Familjen Grotesk', sans-serif;
      --themeht-primary-color: #1253BE;
      --themeht-secondary-color: #2ecc71;
      --themeht-bg-dark-color: #343a40;
      --themeht-white-color: #ffffff;
      --themeht-text-color: #333333;
    }

    body {
      background-color: #f8f9fa;
      overflow-x: hidden;
    }

    /* Main Container */
    .main-container {
      margin: 0 auto;
      background-color: #fff;
      box-shadow: 0 0 30px rgba(0,0,0,0.1);
      overflow-x: hidden;
    }

    /* ======================
   HEADER STYLES
   ====================== */
.main-header {
  background-color: #fff;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 0;
  border-bottom: 1px solid rgba(18, 83, 190, 0.1);
    font-family: var(--themeht-typography-secondary-font-family);
  
}

.header-container {
  max-width: 1280px;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

/* Logo Styles */
/* Logo Styles */
.logo-container {
  display: flex;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 10px;
}

.logo-img {
  height: 50px; /* Adjust based on your logo's aspect ratio */
  width: auto;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-main {
  font-size: 1.8rem;
  font-weight: 1000;
  color: #1253BE;
  letter-spacing: -0.5px;
}

.logo-sub {
  font-size: 0.65rem;
  font-weight: 500;
  color: #1253BE;
  letter-spacing: 0.5px;
  margin-top: 3px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .logo-img {
    height: 40px;
  }
  
  .logo-main {
    font-size: 1.5rem;
  }
  
  .logo-sub {
    font-size: 0.6rem;
  white-space: nowrap;
  overflow: hidden;
    text-overflow: ellipsis;
    max-width: 150px;
  }
}

@media (max-width: 576px) {
  .logo-img {
    height: 35px;
  }
  
  .logo-main {
    font-size: 1.3rem;
  }
  
  .logo-sub {
    font-size: 0.55rem;
    max-width: 200px;
  }
}

/* Main Navigation */
.main-nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 5px;
}

.nav-item {
  position: relative;
}

.nav-link {
  text-decoration: none;
  color: #2D3748;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 12px 18px;
  border-radius: 6px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.nav-link:hover {
  /* color: #1253BE; */
  /* background-color: rgba(18, 83, 190, 0.05); */
}

.nav-link.active {
  color: #1253BE;
  font-weight: 600;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 18px;
  right: 18px;
  height: 2px;
  background-color: #1253BE;
  border-radius: 2px;
}

/* Dropdown Menu */
.dropdown {
  position: relative;
}

.dropdown-menu {
  display: block; /* Override Bootstrap's display: none */
  position: absolute;
  top: 100%;
  left: 0;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  padding: 15px 0;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 100;
  max-height: 0;
  overflow: hidden;
}

.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  max-height: 500px;
}

.dropdown-menu a {
  display: block;
  padding: 8px 20px;
  color: #4A5568;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.2s ease;
}

.dropdown-menu a:hover {
  color: #1253BE;
  background-color: rgba(18, 83, 190, 0.05);
  padding-left: 25px;
}


/* CTA Button */
.cta-button {
  background-color: #1253BE;
  color: white !important;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600 !important;
  margin-left: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(18, 83, 190, 0.2);
}

.cta-button:hover {
  background-color: #0f489e;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(18, 83, 190, 0.3);
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  flex-direction: column;
  justify-content: space-between;
  width: 32px;
  height: 24px;
  position: relative;
  z-index: 1001;
}

.menu-bar {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #1253BE;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Mobile Menu Animation */
.mobile-menu-btn.active .menu-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-menu-btn.active .menu-bar:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active .menu-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ======================
   RESPONSIVE DESIGN
   ====================== */
@media (max-width: 1024px) {
  .header-container {
    padding: 0 30px;
  }
  
  .nav-list {
    gap: 0;
  }
  
  .nav-link {
    padding: 12px 15px;
  }
}

@media (max-width: 992px) {
  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background-color: white;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    flex-direction: column;
    justify-content: center;
    transition: right 0.3s ease;
    z-index: 1000;
  }
  
  .main-nav.active {
    right: 0;
  }
  
  .nav-list {
    flex-direction: column;
    width: 100%;
    padding: 20px;
  }
  
  .nav-item {
    width: 100%;
    margin-bottom: 10px;
  }
  
  .nav-link {
    width: 100%;
    padding: 15px;
    border-radius: 6px;
  }
  
  .nav-link.active::after {
    display: none;
  }
  
  .dropdown-menu {
    position: static;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  
  .dropdown-menu.active {
    max-height: 300px;
    padding: 5px 0;
  }
  
  .dropdown-menu a {
    padding: 8px 25px;
  }
  
  .mobile-menu-btn {
    display: flex;
  }
  
  .cta-item {
    margin-top: 20px;
  }
}

@media (max-width: 576px) {
  .header-container {
    padding: 0 20px;
    height: 70px;
  }
  
  .logo-main {
    font-size: 1.6rem;
  }
  
  .logo-sub {
    font-size: 0.6rem;
  }
  
  .main-nav {
    width: 280px;
  }
}

    /* Slider container */
 .swiper {
  width: auto;
  height: auto; /* Changed from fixed height to auto */
  min-height: 0px; /* Minimum height for very small screens */
  aspect-ratio: 16/5; /* Maintain aspect ratio */
}

.swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  position: relative;
}

    /* White content section - left side only */
    .banner-content {
  position: absolute;
  left: 0;
  height: 100%;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  z-index: 10;
  display: flex;
  align-items: center;
  padding: 0 5%;
  box-sizing: border-box;
}

    /* Text container */
    .banner-text {
  max-width: 500px;
  width: 100%;
}

    /* Text animation containers */
   * Responsive text sizes */
.banner-text h6 {
  font-size: clamp(16px, 2vw, 20px);
  margin-bottom: 0.5rem;
  color: black;
  text-transform: uppercase;
}

.banner-text h1 {
  font-family: "Familjen Grotesk", sans-serif;
  font-size: clamp(2rem, 6vw, 4rem);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.banner-text p {
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  margin-bottom: 1.5rem;
  color: #555;
  line-height: 1.6;
}

    .banner-text h6 span,
    .banner-text h1 span,
    .banner-text p span,
    .btn-box a {
      display: inline-block;
      transform: translateY(100%);
      opacity: 0;
      transition: all 0.6s ease;
    }


    /* Active slide animations */
    .swiper-slide-active .banner-text h6 span {
      animation: slideUp 0.6s ease-out 0.3s forwards;
    }
    .swiper-slide-active .banner-text h1 span {
      animation: slideUp 0.6s ease-out 0.6s forwards;
    }
    .swiper-slide-active .banner-text p span {
      animation: slideUp 0.6s ease-out 0.9s forwards;
    }
    .swiper-slide-active .btn-box a:first-child {
      animation: slideUp 0.6s ease-out 1.2s forwards;
    }
    .swiper-slide-active .btn-box a:last-child {
      animation: slideUp 0.6s ease-out 1.5s forwards;
    }

    @keyframes slideUp {
      from { transform: translateY(100%); opacity: 0; }
      to { transform: translateY(0); opacity: 1; }
    }

    /* Text styling */
    .banner-text h6 {
      font-size: 20px;
      margin-bottom: 0.5rem;
      color: black;
      text-transform: uppercase;
    }
    .banner-text h1 {
      font-family: "Familjen Grotesk", sans-serif;
      font-size: 4rem;
      margin-bottom: 1rem;
      line-height: 1.2;
    }
    .banner-text h1 span {
      color: #1253BE;
    }
    .banner-text p {
      font-size: 1.1rem;
      margin-bottom: 1.5rem;
      color: #555;
      line-height: 1.6;
    }

    /* Button Styles */
    .themeht-btn {
      font-family: var(--themeht-typography-secondary-font-family);
      transform: translateZ(0);
      position: relative;
      overflow: hidden;
      z-index: 9;
      padding: 17px 25px;
      display: inline-block;
      border-radius: 4px;
      border: none;
      color: var(--themeht-white-color);
      font-weight: 500;
      text-transform: uppercase;
      font-size: 16px;
      line-height: 22px;
      transition: all 0.3s ease;
      margin-right: 15px;
      text-decoration: none;
    }

    .themeht-btn.primary-btn { 
      background: var(--themeht-primary-color); 
      color: var(--themeht-white-color); 
    }
    
    .themeht-btn.dark-btn { 
      background: var(--themeht-bg-dark-color); 
      color: var(--themeht-white-color); 
      background-size: inherit; 
    }

    .themeht-btn:before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 120%;
      height: 120%;
      border-radius: 20%;
      scale: 0 0;
      translate: 0 140%;
      transition: scale 0.6s cubic-bezier(0.215, 0.61, 0.355, 1), 
                 translate 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
      z-index: -1;
    }

    .themeht-btn.primary-btn:before { 
      background: var(--themeht-secondary-color); 
    }
    
    .themeht-btn.dark-btn:before { 
      background: var(--themeht-primary-color); 
    }

    .themeht-btn:hover:before, 
    .themeht-btn:focus:before {
      scale: 1.5 1.5;
      translate: 0 0;
      border-radius: 50%;
    }

    /* Services Section */
    .services-section {
      padding: 80px 5%;
    }

    .card-wrapper {
      position: relative;
      display: inline-block;
      z-index: 1;
      cursor: pointer;
      height: 100%;
      margin-bottom: 20px;
    }

    .card-wrapper.active {
      z-index: 99;
    }

    .service-card {
      position: relative;
      overflow: hidden;
      border-radius: 20px;
      padding: 30px;
      background-color: #fff;
      box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
      transition: all 0.3s ease;
      height: 100%;
      z-index: 2;
    }

    .card-wrapper.active .service-card {
      transform: translateY(-5px);
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    }

    .icon-placeholder {
      font-size: 40px;
      color: #1253BE;
      margin-bottom: 20px;
    }

    .service-title {
      font-family: "Familjen Grotesk", sans-serif;
      font-size: 20px;
      font-weight: 600;
      margin-bottom: 10px;
      color: #333;
    }

    .service-desc {
      font-size: 14px;
      color: #555;
      margin-bottom: 20px;
    }

    .read-more {
      font-weight: 500;
      color: #1253BE;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
    }

    .read-more:hover {
      text-decoration: underline;
    }

    /* Symbols Layer */
    .bg-symbols {
      position: absolute;
      top: -50px;
      left: -50px;
      right: -50px;
      bottom: -50px;
      z-index: 3;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.4s ease;
    }

    .card-wrapper.active .bg-symbols {
      opacity: 1;
    }

    .bg-overlay {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: 2;
    }

    .bg-symbols span {
      position: absolute;
      font-size: 40px;
      opacity: 0.6;
      animation: float 6s infinite ease-in-out;
      font-weight: bold;
    }

    /* Symbols + Positions + Colors */
    .symbol-circle       { top: 10%; left: -10px; color: #3498db; }
    .symbol-triangle     { top: 60%; left: -15px; color: #f1c40f; }
    .symbol-cross        { top: 30%; right: -15px; color: #e74c3c; }
    .symbol-square       { bottom: 10%; left: 100%; color: #2ecc71; }
    .symbol-circle-extra { top: 20%; right: 10%; color: #9b59b6; }

    @keyframes float {
      0%   { transform: translateY(0) rotate(0); }
      50%  { transform: translateY(-10px) rotate(20deg); }
      100% { transform: translateY(0) rotate(0); }
    }

    /* Navigation arrows */
    .swiper-button-next,
    .swiper-button-prev {
      color: #333;
      background: rgba(255,255,255,0.7);
      width: 50px;
      height: 50px;
      border-radius: 50%;
      transition: all 0.3s ease;
    }
    .swiper-button-next:hover,
    .swiper-button-prev:hover {
      background: rgba(255,255,255,0.9);
    }
    .swiper-button-next::after,
    .swiper-button-prev::after {
      font-size: 1.5rem;
      font-weight: bold;
    }

    /* About Us Section Styles */
    .about-section {
      background-color: #fff;
    }

    .about-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
    }

    .about-row {
      display: flex;
      flex-wrap: wrap;
      margin: 0 -15px;
    }

    /* Image Column */
    .about-image-column {
      flex: 0 0 50%;
      max-width: 50%;
      padding: 0 15px;
    }

    .about-image-row {
      display: flex;
      margin-bottom: 30px;
    }

    .about-image-wrapper {
      flex: 0 0 50%;
      padding: 0 15px;
    }

    .about-img-shape {
      width: 100%;
      height: 100%;
      overflow: hidden;
      border-radius: 10px;
    }

    .about-img-shape img {
      width: 100%;
      height: auto;
      display: block;
      transition: transform 0.3s ease;
    }

    .about-img-shape img:hover {
      transform: scale(1.05);
    }

    /* Content Column */
    .about-content-column {
      flex: 0 0 50%;
      max-width: 50%;
      padding: 0 15px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .about-theme-title {
      margin-bottom: 30px;
    }

    .about-theme-title h6 {
      font-family: 'Familjen Grotesk', sans-serif;
      color: #1253BE;
      font-size: 18px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 15px;
    }

    .about-theme-title h2 {
      font-family: 'Familjen Grotesk', sans-serif;
      font-size: 42px;
      font-weight: 700;
      line-height: 1.3;
      margin-bottom: 20px;
    }

    .about-theme-title h2 span {
      color: #1253BE;
    }

    .about-theme-title p {
      font-size: 16px;
      line-height: 1.6;
      color: #555;
      margin-bottom: 30px;
    }

    /* Services List */
    .about-services-list {
      display: flex;
      flex-wrap: wrap;
      margin-bottom: 30px;
    }

    .about-list-column {
      flex: 0 0 50%;
      max-width: 50%;
    }

    .about-list-column ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .about-list-column li {
      margin-bottom: 15px;
      display: flex;
      align-items: center;
    }

    .about-list-column i {
      color: #1253BE;
      margin-right: 10px;
      font-size: 18px;
    }

    /* Signature Section */
    .about-signature-section {
      display: flex;
      align-items: center;
      margin-bottom: 30px;
    }

    .about-signature {
      margin-right: 30px;
    }

    .about-signature img {
      height: 60px;
    }

    .about-doctor-info {
      display: flex;
      align-items: center;
    }

    .about-doctor-image {
      margin-right: 15px;
    }

    .about-doctor-image img {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      object-fit: cover;
    }

    .about-doctor-details h6 {
      font-family: 'Familjen Grotesk', sans-serif;
      font-size: 18px;
      font-weight: 600;
      margin: 0 0 5px 0;
    }

    .about-doctor-details label {
      color: #1253BE;
      font-size: 14px;
    }

    /* Button */
    .about-button a {
      font-family: 'Familjen Grotesk', sans-serif;
      background: #1253BE;
      color: white;
      padding: 15px 30px;
      border-radius: 4px;
      text-decoration: none;
      display: inline-block;
      font-weight: 500;
      text-transform: uppercase;
      transition: all 0.3s ease;
    }

    .about-button a:hover {
      background: #0d4298;
      transform: translateY(-3px);
      box-shadow: 0 5px 15px rgba(18, 83, 190, 0.3);
    }

    /* Company Highlights Section */
    .highlights-section {
      background-color: var( --themeht-primary-color);
      padding: 40px 0;
      color: white;
    }
    
    .highlights-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
    }
    
    .highlights-title {
      text-align: center;
      margin-bottom: 50px;
    }
    
    .highlights-title h2 {
      font-family: 'Familjen Grotesk', sans-serif;
      font-size: 36px;
      font-weight: 700;
      margin-bottom: 15px;
    }
    
    /* Grid Layout for All Screens */
    .highlights-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }
    
    /* Carousel Layout for Small Screens */
    .highlights-carousel {
      display: none;
      position: relative;
    }
    
    .highlight-slide {
      background: white;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
      transition: all 0.3s ease;
      height: 100%;
      display: flex;
      flex-direction: column;
    }
    
    .highlight-slide:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    }
    
    .highlight-img {
      position: relative;
      overflow: hidden;
      height: 130px;
    }
    
    .highlight-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }
    
    .highlight-slide:hover .highlight-img img {
      transform: scale(1.05);
    }
    
    .highlight-icon {
      position: absolute;
      bottom: -30px;
      right: 30px;
      width: 60px;
      height: 60px;
      background: #1253BE;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
      z-index: 1;
    }
    
    .highlight-slide:hover .highlight-icon {
      bottom: 30px;
    }
    
    .highlight-icon i {
      color: white;
      font-size: 24px;
    }
    
    .highlight-content {
      padding: 30px;
      flex: 1;
      display: flex;
      flex-direction: column;
    }
    
    .highlight-title h4 {
      font-family: 'Familjen Grotesk', sans-serif;
      font-size: 22px;
      font-weight: 600;
      margin-bottom: 15px;
      color: #333;
    }
    
    .highlight-content ul {
      color: #666;
      margin-bottom: 20px;
      font-size: 15px;
      line-height: 1.6;
      padding-left: 20px;
      flex: 1;
    }
    
    .highlight-content ul li {
      margin-bottom: 8px;
    }
    
    /* Carousel Navigation */
    .highlight-nav {
      display: flex;
      justify-content: center;
      align-items: center;
      margin-top: 30px;
    }
    
    .highlight-pagination {
      display: flex;
      justify-content: center;
      margin: 0 15px;
    }
    
    .highlight-pagination .swiper-pagination-bullet {
      width: 12px;
      height: 12px;
      background: rgba(255, 255, 255, 0.5);
      opacity: 1;
      margin: 0 5px;
      transition: all 0.3s ease;
    }
    
    .highlight-pagination .swiper-pagination-bullet-active {
      background: white;
    }
    
    .highlight-button {
      width: 40px;
      height: 40px;
      background: white;
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin: 0 5px;
      cursor: pointer;
      color: #1253BE;
      transition: all 0.3s ease;
    }
    
    .highlight-button:hover {
      background: #f0f0f0;
    }
    
/* WHO WE ARE Section Styling */
.who-we-are {
  padding: 80px 20px;
  font-family: 'Familjen Grotesk', sans-serif;
  background: #fff;
}

.container {
  max-width: 1200px;
  margin: auto;
}

.who-we-are.row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.content {
  flex: 1 1 50%;
  padding-right: 40px;
}

.section-label {
  color: var(--themeht-primary-color);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
  margin-bottom: 10px;
  display: inline-block;
}

h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

h2 .highlight {
  color: var(--themeht-primary-color);
}

p {
  color: #555;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.features {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  max-width: 250px;
}

.feature-item h4 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--themeht-text-color);
}

.feature-item p {
  margin: 5px 0 0;
  font-size: 14px;
  color: #666;
}

.feature-item .icon {
  font-size: 36px;
  color: var(--themeht-primary-color);
  flex-shrink: 0;
}

.btn-primary {
  display: inline-block;
  background: var(--themeht-primary-color);
  color: var(--themeht-white-color);
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 500;
  text-transform: uppercase;
  transition: background 0.3s ease, transform 0.3s ease;
}

.btn-primary:hover {
  background: #0d4298;
  transform: translateY(-3px);
}

/* IMAGE AREA */
.image-area {
  flex: 1 1 5%;
  position: relative;
  justify-content: flex-end; /* Align to the right on large screens */
}

/* Main image */
.hex-img { /* Kept class name for compatibility */
  width: 400px;
  height: 450px;
  border-radius: 16px; /* Rounded corners for professional look */
  overflow: hidden;
  position: relative;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15); /* Stronger shadow for depth */
  background: #fff; /* Fallback background */
}

.hex-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.hex-img img:hover {
  transform: scale(1.05); /* Subtle zoom on hover */
}

/* Badge */
.hex-badge {
  position: absolute;
  top: -80px; /* Above the image: 120px height + 10px gap */
  right: 330px;
  transform: translateX(-50%); /* Center horizontally */
  width: 120px;
  height: 120px;
  background-color: var(--themeht-primary-color);
  color: var(--themeht-white-color);
  font-size: 18px;
  font-weight: bold;
  line-height: 1.2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 50%; /* Circular badge */
  padding: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  z-index: 2;
  transition: transform 0.3s ease;
}

.hex-badge:hover {
  transform: translateX(-50%) scale(1.1); /* Maintain centering on hover */
}

.hex-badge small {
  font-size: 12px;
  font-weight: normal;
}

/* Small image */
.small-hex-img {
  position: absolute;
  bottom: 10px; /* Bottom-right corner */
  right: -20px;
  width: 140px;
  height: 160px;
  border-radius: 12px; /* Rounded corners */
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
  z-index: 3; /* Above main image and badge */
  background: #fff; /* Fallback background */
  transform: rotate(5deg); /* Slight rotation for unique styling */
  border: 3px solid var(--themeht-primary-color); /* Decorative border */
  transition: transform 0.3s ease;
}

.small-hex-img:hover {
  transform: rotate(0deg) scale(1.05); /* Straighten and zoom on hover */
}

.small-hex-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.small-hex-img img:hover {
  transform: scale(1.05);
}

/* Product Tabs Section */
.multi-product-tabs {
  background-color: white;
  padding: 50px 0;
  font-family: var(--themeht-typography-secondary-font-family);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.subtitle {
  color: #306BFF;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.title {
  color: #306BFF;
  font-size: 32px;
  font-weight: 700;
  margin: 0;
}

/* Tabs Layout */
.tabs-container {
  display: flex;
  gap: 20px;
  position: relative;
}

.left-tabs, .right-tabs {
  flex: 0 0 250px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.content-area {
  flex: 1;
  min-height: 500px;
}

/* Tab Buttons */
.tab-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 20px;
  border-radius: 8px;
  background-color: white;
  border: 1px solid #e2e8f0;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: left;
}

.tab-btn:hover {
  border-color: #306BFF;
  box-shadow: 0 2px 8px rgba(48, 107, 255, 0.1);
}

.tab-btn.active {
  background-color: #306BFF;
  border-color: #306BFF;
  color: white;
}

.tab-icon {
  font-size: 20px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #f1f5f9;
  transition: all 0.3s ease;
}

.tab-btn.active .tab-icon {
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
}

.tab-label {
  font-size: 14px;
  font-weight: 500;
  flex: 1;
}

/* Content Area */
/* Content Area - Maintain existing height */
.content-area {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.tab-content {
  display: none;
  background-color: white;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  height: 500px; /* Maintain fixed height */
  overflow-y: auto; /* Add scroll if content exceeds height */
}

.tab-content.active {
  display: block;
}

/* First Row - Product Title */
.product-title-row {
  text-align: center;
  margin-bottom: 20px;
}

.product-title {
  color: black;
  font-size: 28px;
  font-weight: 600;
  margin: 0;
}

/* Second Row - Image + Specs */
.specs-row {
  display: flex;
  gap: 40px;
  margin-bottom: 20px;
  height: 200px; /* Fixed height for this row */
}

.product-image {
  flex: 0 0 40%;
}

.product-image img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  border-radius: 8px;
  padding:5px 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.product-specs {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.product-specs p {
  color: #333;
  line-height: 1.8;
  margin-bottom: 12px;
  font-size: 16px;
}

.product-specs strong {
  color: black;
  font-weight: 600;
  min-width: 140px;
  display: inline-block;
}

/* Third Row - Description */


.description-row p {
  color: #444;
  line-height: 1.7;
  font-size: 16px;
  margin: 0;
}

/* Fourth Row - Features */
.features-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.features-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  color: #444;
  font-size: 16px;
  line-height: 1.6;
}

.features-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #1253BE;
  font-weight: bold;
  font-size: 18px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .specs-row {
    flex-direction: column;
    height: auto;
  }
  
  .product-image {
    flex: 1 1 auto;
    margin-bottom: 20px;
  }
  
  .product-image img {
    height: 150px;
  }
}

@media (max-width: 768px) {
  .tab-content {
    padding: 20px;
    height: auto; /* Allow height to grow on mobile */
  }
  
  .product-title {
    font-size: 24px;
  }
  
  .product-specs p {
    font-size: 15px;
  }
  
  .features-list li {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .tab-content {
    padding: 15px;
  }
  
  .product-title {
    font-size: 22px;
  }
  
  .product-specs strong {
    min-width: 120px;
    display: block;
    margin-bottom: 5px;
  }
}

/* Navigation */
.tab-navigation {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.nav-btn {
  padding: 10px 20px;
  background-color: #306BFF;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.nav-btn:hover {
  background-color: #2557d6;
}

/* Section Styles */
.fun-facts-section {
    background-color: white;
       text-align: center;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Title Row Styles */
.title-row {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 60px;
}

.line {
    flex-grow: 1;
    height: 1px;
    background-color: #e2e8f0;
}

.section-title {
    margin: 0 20px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #647391;
    font-weight: 500;
}

/* Stats Row Styles */
.stats-row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.stat-block {
    flex: 1;
    min-width: 150px;
    padding: 20px;
    animation: countUp 0.6s ease-out forwards;
    opacity: 0;
}

.stat-number {
    font-size: 4.5rem;
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 1px #1253BE;
    position: relative;
    margin-bottom: 15px;
    line-height: 1;
}

.stat-number span {
    color: #1253BE;
    -webkit-text-stroke: 0;
    font-size: 2.5rem;
    position: relative;
    top: -0.5em;
}

.stat-desc {
    color: #647391;
    font-size: 1rem;
    line-height: 1.5;
    max-width: 200px;
    margin: 0 auto;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Animation */
@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-block:nth-child(1) { animation-delay: 0.1s; }
.stat-block:nth-child(2) { animation-delay: 0.3s; }
.stat-block:nth-child(3) { animation-delay: 0.5s; }
.stat-block:nth-child(4) { animation-delay: 0.7s; }
.stat-block:nth-child(5) { animation-delay: 0.9s; }



/* Footer Styles */
.footer {
  background-color: #010101;
  color: white;
  font-family: var(--themeht-typography-secondary-font-family);
  position: relative;
  overflow: hidden;
  padding-top: 40px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-main-content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 30px;
}

.footer-column {
  flex: 1;
  min-width: 250px;
  padding: 0 15px;
}

/* Company Info Styles */
.company-info {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  gap: 15px;
}

.footer-logo img {
  width: 60px;
  height: auto;
}

.company-name {
  font-size: 24px;
  font-weight: 700;
  color: white;
}

.company-description {
  color: #aaa;
  line-height: 1.6;
  font-size: 14px;
}

/* Contact Info Styles */
.contact-info h4,
.departments h4,
.working-hours h4 {
  font-size: 18px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
  color: white;
}

.contact-info h4::after,
.departments h4::after,
.working-hours h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background: #3575ff;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.contact-icon {
  color: white;
  font-size: 16px;
  width: 20px;
  text-align: center;
  padding-top: 3px;
}

.contact-text {
  flex: 1;
}

.contact-text p,
.contact-text a {
  color: #aaa;
  font-size: 14px;
  line-height: 1.5;
  text-decoration: none;
  transition: color 0.3s;
  margin-bottom:0px;
}

.contact-text a:hover {
  color: white;
}

/* Departments Styles */
.department {
  margin-bottom: 20px;
}

.department h5 {
  color: white;
  font-size: 16px;
  margin-bottom: 10px;
}
/* Social Icons Styles */
.social-icons {
  margin-top: 25px;
}

.social-icons h5 {
  color: white;
  font-size: 16px;
  margin-bottom: 15px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: white;
  font-size: 18px;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background-color: #3575ff;
  transform: translateY(-3px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .social-icons {
    margin-top: 20px;
  }
  
  .social-links {
    justify-content: flex-start;
  }
}
/* Working Hours Styles */
.hours-item {
  display: flex;
  gap: 12px;
}

.hours-icon {
  color: white;
  font-size: 16px;
  width: 20px;
  text-align: center;
  padding-top: 3px;
}

.hours-text {
  flex: 1;
}

.hours-text p {
  color: #aaa;
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 8px 0;
}

/* Footer Bottom */
.footer-bottom {
  background-color: white;
  border-radius: 30px 30px 0 0;
  padding: 10px;
  width: 100%;
  box-sizing: border-box;
}

.footer-bottom-container {
  max-width: 1200px;
  margin: 0 auto;
}

.copyright-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.copyright-text {
  color: black;
}

.legal-links {
  color: #333;
}

.legal-links a {
  color: black;
  text-decoration: none;
  margin: 0 5px;
}

.legal-links a:hover {
  text-decoration: underline;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: #3575ff;
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: #2a60d6;
  transform: translateY(-3px);
}

/* Responsive Styles */
@media (max-width: 768px) {
  .footer-main-content {
    flex-direction: column;
    gap: 30px;
  }
  
  .footer-column {
    min-width: 100%;
  }
  
  .copyright-section {
    flex-direction: column;
    text-align: center;
  }
  
  .legal-links {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .back-to-top {
    width: 40px;
    height: 40px;
    font-size: 16px;
    bottom: 20px;
    right: 20px;
  }
}
/* ======================
   SCROLL ANIMATIONS 
   ====================== */
[data-aos] {
  transition: all 0.6s ease-out;
  opacity: 0;
  transform: translateY(20px);
}

[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

/* Specific animation types */
[data-aos="fade-up"] {
  transform: translateY(30px);
}

[data-aos="fade-down"] {
  transform: translateY(-30px);
}

[data-aos="fade-left"] {
  transform: translateX(30px);
}

[data-aos="fade-right"] {
  transform: translateX(-30px);
}

[data-aos="zoom-in"] {
  transform: scale(0.95);
}

[data-aos="zoom-out"] {
  transform: scale(1.05);
}

[data-aos="flip-up"] {
  transform: perspective(1000px) rotateX(-30deg);
}

[data-aos="flip-down"] {
  transform: perspective(1000px) rotateX(30deg);
}

/* ======================
   ENHANCED HOVER EFFECTS 
   ====================== */
/* Service cards */
.service-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
}

/* Images */
.about-img-shape img, 
.highlight-img img,
.hex-img img,
.small-hex-img img {
  transition: transform 0.5s ease, opacity 0.3s ease;
}

.about-img-shape:hover img,
.highlight-img:hover img,
.hex-img:hover img,
.small-hex-img:hover img {
  transform: scale(1.05);
}

/* Buttons */
.themeht-btn {
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.themeht-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Nav links */
nav a {
  position: relative;
}

nav a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: var(--themeht-primary-color);
  transition: width 0.3s ease;
}

nav a:hover::after {
  width: 100%;
}

/* ======================
   LOADING ANIMATIONS 
   ====================== */
/* Page loader */
.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  transition: opacity 0.5s ease;
}

.page-loader.fade-out {
  opacity: 0;
  pointer-events: none;
}

.loader-circle {
  width: 50px;
  height: 50px;
  border: 5px solid rgba(18, 83, 190, 0.2);
  border-radius: 50%;
  border-top-color: var(--themeht-primary-color);
  animation: spin 1s linear infinite;
}

@keyframes spin {
  100% { transform: rotate(360deg); }
}

/* Content fade-in */
.main-content {
  opacity: 0;
  animation: fadeIn 0.5s ease forwards 0.3s;
}

@keyframes fadeIn {
  to { opacity: 1; }
}

/* ======================
   MICRO-INTERACTIONS 
   ====================== */
/* Social icons */
.social-icons a {
  transition: transform 0.3s ease, color 0.3s ease;
}

.social-icons a:hover {
  transform: translateY(-3px) scale(1.1);
  color: var(--themeht-secondary-color);
}

/* Form inputs */
input, textarea {
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

input:focus, textarea:focus {
  border-color: var(--themeht-primary-color) !important;
  box-shadow: 0 0 0 3px rgba(18, 83, 190, 0.2) !important;
}

/* Back to top button */
.back-to-top {
  transition: all 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
}

.back-to-top:hover {
  transform: translateY(-3px) scale(1.1);
}

/* ======================
   SPECIAL EFFECTS 
   ====================== */
/* Pulse animation for important elements */
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.pulse {
  animation: pulse 2s infinite;
}

/* Floating animation */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

.float {
  animation: float 4s ease-in-out infinite;
}

/* Gradient text animation */
.gradient-text {
  background: linear-gradient(90deg, var(--themeht-primary-color), var(--themeht-secondary-color));
  background-size: 200% auto;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  animation: gradient 3s linear infinite;
}

@keyframes gradient {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .main-container {
    margin: 0 20px;
  }
  
  .banner-text h1 {
    font-size: 3.5rem;
  }

  .highlights-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .hex-img {
    width: 350px;
    height: 400px;
  }

  .small-hex-img {
    width: 120px;
    height: 140px;
    bottom: -15px;
    right: 400px;
  }

  .hex-badge {
    width: 100px;
    height: 100px;
    font-size: 16px;
    top: -110px; /* Adjusted for smaller badge size: 100px + 10px gap */
  }

  .hex-badge small {
    font-size: 10px;
  }

  .stat-block {
    min-width: 30%;
  }
}

@media (max-width: 992px) {
  .banner-content {
    width: 60%;
    padding-left: 8%;
  }
  
  nav ul {
    gap: 20px;
  }
  
  .themeht-btn {
    padding: 14px 20px;
    font-size: 14px;
  }

  .banner-text h1 {
    font-size: 3rem;
  }
  
  .banner-text p {
    font-size: 1rem;
  }

  .about-image-column,
  .about-content-column {
    flex: 0 0 100%;
    max-width: 100%;
  }
  
  .about-content-column {
    padding-top: 50px;
  }
  
  .about-theme-title h2 {
    font-size: 36px;
  }

  .content,
  .image-area {
    flex: 1 1 100%;
    padding-right: 0;
  }

  .image-area {
    justify-content: center; /* Center images on smaller screens */
  }

  .highlight-content {
    padding: 25px;
  }
  
  .highlights-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tabs-container {
    flex-direction: column;
  }
  
  .left-tabs, .right-tabs {
    flex-direction: row;
    flex-wrap: wrap;
    flex: 0 0 auto;
    gap: 8px;
  }
  
  .tab-btn {
    flex: 1 1 calc(50% - 10px);
    min-width: 0;
  }
  
  .product-content {
    flex-direction: column;
  }
  
  .product-image {
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  header {
    padding: 15px 20px;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  nav ul {
    display: none;
  }
  
  .banner-content {
    width: 100%;
     background: rgba(255, 255, 255, 0.9);
  }
  
  .swiper {
    aspect-ratio: 4/3; /* More square aspect ratio for mobile */
  }
   .banner-text {
    text-align: center;
    padding: 10px;
  }
   .banner-text p {
    max-width: 100%;
  }
  
  .btn-box {
    justify-content: center;
  }
  .banner-text h1 {
    font-size: 2.5rem;
  }
  
  .services-section {
    padding: 60px 20px;
  }
  
  .themeht-btn {
    padding: 12px 18px;
    margin-right: 10px;
  }
  
  .card-wrapper {
    margin-bottom: 30px;
  }

  .about-image-row {
    flex-direction: column;
  }
  
  .about-image-wrapper {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 20px;
  }
  
  .about-services-list {
    flex-direction: column;
  }
  
  .about-list-column {
    flex: 0 0 100%;
    max-width: 100%;
  }
  
  .about-theme-title h2 {
    font-size: 32px;
  }

  .who-we-are {
    padding: 60px 15px;
  }

  h2 {
    font-size: 28px;
  }

  .hex-img {
    width: 300px;
    height: 350px;
  }

  .small-hex-img {
    width: 100px;
    height: 120px;
    bottom: -15px;
    right:350px;
  }

  .hex-badge {
    width: 80px;
    height: 80px;
    font-size: 14px;
    top: -90px; /* 80px + 10px gap */
	right:220px;
  }

  .highlights-section {
    padding: 60px 0;
  }
  
  .highlights-title {
    margin-bottom: 40px;
  }
  
  .highlights-title h2 {
    font-size: 28px;
  }
  
  .highlights-grid {
    display: none;
  }
  
  .highlights-carousel {
    display: block;
  }
  
  .highlight-img {
    height: 180px;
  }
  
  .highlight-content {
    padding: 20px;
  }
  
  .highlight-title h4 {
    font-size: 20px;
  }

  .section-header {
    margin-bottom: 30px;
  }
  
  .title {
    font-size: 28px;
  }
  
  .tab-btn {
    padding: 12px 15px;
  }
  
  .tab-label {
    font-size: 13px;
  }

  .stats-row {
    flex-direction: column;
    align-items: center;
  }
  
  .stat-block {
    min-width: 100%;
  }
  
  .stat-number {
    font-size: 3.5rem;
  }

  .footer {
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
  }
  
  .newsletter h2 {
    font-size: 24px;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  
  .footer-links {
    gap: 30px;
  }

  .footer-container {
    flex-direction: column;
    align-items: center;
  }
  
  .footer-left, .footer-right {
    width: 100%;
    max-width: 600px;
    text-align: center;
  }
  
  .newsletter form {
    margin: 0 auto;
  }
  
  .footer-links {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .swiper {
    height: 80vh;
  }
  
  .logo {
    font-size: 1.5rem;
  }
  
  .banner-content {
    padding: 20px;
    justify-content: flex-start;
    align-items: flex-start;
    padding-top: 40px;
  }
  
  .banner-text h1 {
    font-size: 2rem;
    line-height: 1.3;
  }
  
  .banner-text h6 {
    font-size: 16px;
  }
  
  .services-section {
    padding: 40px 15px;
  }
  
  .btn-box {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  
  .themeht-btn {
    width: 100%;
    margin-right: 0;
    text-align: center;
  }
  
  .service-card {
    padding: 25px;
  }
  
  .icon-placeholder {
    font-size: 32px;
  }
  
  .service-title {
    font-size: 18px;
  }
  
  .about-section {
    padding: 60px 0;
  }
  
  .about-theme-title h2 {
    font-size: 28px;
  }
  
  .about-signature-section {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .about-signature {
    margin-right: 0;
    margin-bottom: 20px;
  }

  .who-we-are {
    padding: 40px 15px;
  }

  h2 {
    font-size: 24px;
  }

  .hex-img {
    width: 250px;
    height: 300px;
	margin:auto;
	margin-top:10px
  }

  .small-hex-img {
    width: 80px;
    height: 100px;
    bottom: -10px;
    right: 50px;
  }

  .hex-badge {
    width: 70px;
    height: 70px;
    font-size: 12px;
    top: -80px; /* 70px + 10px gap */
  }

  .hex-badge small {
    font-size: 9px;
  }

  .features {
    flex-direction: column;
    gap: 15px;
  }

  .btn-primary {
    width: 100%;
    text-align: center;
  }

  .highlights-section {
    padding: 50px 0;
  }
  
  .highlights-title h2 {
    font-size: 24px;
  }
  
  .highlight-img {
    height: 160px;
  }
  
  .highlight-content ul {
    font-size: 14px;
  }

  .multi-product-tabs {
    padding: 60px 0;
  }
  
  .left-tabs, .right-tabs {
    flex-direction: column;
  }
  
  .tab-btn {
    flex: 1 1 auto;
  }
  
  .tab-navigation {
    flex-direction: column;
    gap: 10px;
  }
  
  .nav-btn {
    width: 100%;
  }
  
  .product-image img {
    width: 100%;
    height: auto;
  }

  .newsletter form {
    flex-direction: column;
  }
  
  .newsletter input {
    border-radius: 30px;
    margin-bottom: 10px;
  }
  
  .newsletter button {
    border-radius: 30px;
    width: 100%;
  }
  
  .back-to-top {
    width: 40px;
    height: 40px;
    font-size: 16px;
    bottom: 20px;
    right: 20px;
  }
}

@media (max-width: 400px) {
  .swiper {
    height: 85vh;
  }
  
  .banner-text h1 {
    font-size: 1.8rem;
  }
  
  .banner-text p {
    font-size: 0.9rem;
  }
  
  .mobile-menu a {
    font-size: 1.2rem;
  }
}
/* WhatsApp Float - Enhanced */
.whatsapp-float-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 15px;
}

.whatsapp-float {
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  position: relative;
  animation: pulse 2s infinite;
}

.whatsapp-notification {
  position: absolute;
  top: -5px;
  right: -5px;
  background-color: #ff0000;
  color: white;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.whatsapp-float:hover {
  background-color: #0A1A36;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}
/* Animation for WhatsApp */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}