
.page-header {
    overflow: hidden;
    margin-top: 82px;
    align-items: left;
    justify-content: left;
    display: flex;
    margin-left: -18px;
}

.page-header h1 {
    font-size: 1.7rem;
    color: #000000;
    font-weight: 600;
    padding: 0px !important;
    margin-left: 10px;
}

/* ---------------------------- card-section---------------------------------------- */

/*------------------------------- section-2 feature and benefit ---------------------------------- */
.bg-texture {
  background-position: center;
  background-size: cover;
  position: relative;
}

/* Card Improvement Section */
.card-improvement {
  background: linear-gradient(135deg, rgb(199, 228, 251) 0%, rgb(180, 212, 243) 100%);
  width: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  padding: 59px 0px;
}



.card-improvement::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background-color: white;
  clip-path: polygon(0 100%, 100% 100%, 0 0);
  z-index: 1;
}

.card-header {
  text-align: center;
  padding: 40px 20px 30px;
  position: relative;
  z-index: 2;
}

.card-header h1 {
  font-size: 2.5rem;
  color: #072f85;
  margin-bottom: 15px;
  font-weight: 700;
}

.card-header p {
  font-size: 1.2rem;
  color: #444;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.card-list {
  padding: 0 1rem 3rem;
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  list-style-type: none;
  margin: 0;
  flex-wrap: wrap;
  gap: 25px;
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.same-card {
  flex: 1;
  padding: 25px;
  min-width: 300px;
  max-width: 380px;
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(7, 47, 133, 0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: visible;
  min-height: 360px;
}

.same-card.expanded {
  min-height: auto;
}

.same-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #072f85, #3a6bc5);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s ease;
}

.same-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(7, 47, 133, 0.15);
}

.same-card:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Category headings */
.card-title {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.card-icon {
  font-size: 2rem;
  color: #072f85;
  margin-right: 15px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(199, 228, 251, 0.4);
  border-radius: 50%;
}

.same-card h2 {
  font-size: 1.6rem;
  color: #072f85;
  font-weight: 600;
  margin: 0;
}

/* Content container */
.card-content {
  position: relative;
}

/* Sub-items */
.benefit-list {
  list-style-type: none;
  padding-left: 0;
  margin: 0;
  transition: all 0.3s ease;
}

.benefit-list.collapsed {
  max-height: 200px;
  overflow: hidden;
  position: relative;
}

.benefit-list.collapsed::after {
  display: none;
}

.benefit-list li {
  color: #333;
  font-size: 1.05rem;
  margin-bottom: 14px;
  text-align: left;
  line-height: 1.5;
  padding-left: 28px;
  position: relative;
}

.benefit-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #4CAF50;
  font-weight: bold;
}

.benefit-list p {
  color: #072f85;
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 8px;
  margin-top: 16px;
  padding-left: 0;
}

.benefit-list p::before {
  display: none;
}

/* Read More Button */
.read-more-btn {
  position: absolute;
  bottom: -50px;
  right: -9px;
  color: #072f85;
  background: rgba(199, 228, 251, 0.8);
  border: 1px solid #072f85;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}

.read-more-btn:hover {
  background: #072f85;
  color: white;
}

.read-more-btn.hidden {
  display: none;
}

/* Read Less Button */
.read-less-btn {
  color: #072f85;
  border: 1px solid #072f85;
  background: rgba(199, 228, 251, 0.8);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 15px;
  float: right;
}

.read-less-btn:hover {
  background: #072f85;
  color: white;
}

.read-less-btn.hidden {
  display: none;
}
/*--------------------------------------- BASE STYLES ------------------------------------------- */

/* Base Styles - Desktop First */
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-x: hidden;
}

/* Horizontal Navigation Bar */
.horizontal-navigation {
  height: 80px;
  padding: 0 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 10;
  flex-wrap: wrap;
}

.horizontal-navigation:after {
  content: "";
  position: absolute;
  bottom: 11px;
  width: 97%;
  height: 2px;
  background-color: #c6d6d2;
  z-index: -1;
  border-radius: 2px;
}

.horizontal-navigation .option {
  height: 45px;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  font-weight: bold;
  font-size: 13px;
  text-align: center;
  color: #000000;
  margin-right: 3px;
  white-space: nowrap;
  padding: 0px 30px;
}

.horizontal-navigation .option:hover {
  transform: translateY(-1px);
  background: linear-gradient(to bottom, white, skyblue);
  color: #0824b6;
}

.horizontal-navigation .option.active {
  background: linear-gradient(to bottom, white, skyblue);
}

/* Main Content Area */
.content {
  flex-grow: 1;
  background-color: white;
}

.info-section {
  display: none;
  max-width: 100%;
  transition: opacity 0.3s ease;
  overflow-x: hidden;
  width: 100%;
}

.info-section.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

/* Banner and Intro */
.banner-image {
  width: 100%;
}

.banner-image img {
  width: 100%;
  height: auto;
  display: block;
}

.intro-text {
  background: #edeaea;
  width: 100%;
  padding: 40px;
}

.intro-text p {
  line-height: 1.6;
  color: #333;
  margin-bottom: 0;
  width: 100%;
}

/* Company Record Section */
.company-record {
  display: flex;
  min-height: 100vh;
  padding: 59px 51px;
  flex-wrap: wrap;
  align-items: stretch;
}

/* Vertical Sidebar */
.sidebar {
  width: 200px;
  min-width: 250px;
  flex: 0 0 200px;
  background-color: #0d4c8b;
  color: white;
  padding: 20px 0;
  border-radius: 20px 20px;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
}

.sidebar .option {
  padding: 15px 34px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 16px;
  margin-top: 2px;
  color: white;
  position: relative;
  z-index: 1;
}

.sidebar .option.active {
  background-color: #f6f6f6;
  font-weight: bold;
  border-radius: 61px 0 0 61px;
  margin-left: 10px;
  color: #000;
}

.sidebar .option.active::before {
  content: "";
  width: 26px;
  height: 20px;
  display: inline-block;
  position: absolute;
  right: 0px;
  top: -20px;
  border-radius: 50%;
  box-shadow: 10px 10px 0 0 #f6f6f6;
}

.sidebar .option.active::after {
  content: "";
  width: 26px;
  height: 20px;
  display: inline-block;
  position: absolute;
  right: -3px;
  bottom: -23px;
  transform: rotate(-100deg);
  border-radius: 50%;
  box-shadow: 10px 10px 0 0 #f6f6f6;
}

/* Secondary Content Area */
.secondary-content {
  flex: 1;
  padding: 30px 60px;
  background-color: #F5F5F5;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.05);
  z-index: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  min-height: 100%;
}

/* Common Text Styles */
h1 {
  color: #2c3e50;
  margin-bottom: 20px;
  padding-bottom: 10px;
  width: 100%;
  padding-left: 20px !important;
}

h3 {
  padding: 13px 5px;
}

p {
  line-height: 1.6;
  color: #333;
  margin-bottom: 15px;
  width: 100%;
  max-width: 100%;
  text-align: justify;
}

.specs {
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 15px;
  margin-top: 20px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  width: 100%;
}

.specs li {
  margin-bottom: 10px;
  list-style-type: none;
}

.specs li:before {
  content: "•";
  color: #1abc9c;
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

/* Mobile Navigation Toggle (Hidden by default) */
.mobile-nav-toggle {
  display: none;
}


@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}


.sidebar .option:focus,
.horizontal-navigation .option:focus,
.mobile-nav-toggle:focus {
  outline: 2px solid #1abc9c;
  outline-offset: -2px;
}

/*--------------------------------------- LAPTOP RESPONSIVE (1024px - 1366px) ------------------------------------------- */

@media screen and (min-width: 1024px) and (max-width: 1366px) {
  .horizontal-navigation {
    padding: 0 15px;
    height: 75px;
  }
  
  .horizontal-navigation .option {
    padding: 0px 25px;
    font-size: 12px;
  }
  
  .company-record {
    padding: 45px 35px;
    min-height: 100vh;
  }
  
  .sidebar {
    min-width: 220px;
    flex: 0 0 220px;
  }
  
  .secondary-content {
    padding: 25px 45px;
  }
  
  .intro-text {
    padding: 35px;
  }
}

/*--------------------------------------- TABLET RESPONSIVE (768px - 1023px) ------------------------------------------- */

@media screen and (min-width: 768px) and (max-width: 1023px) {
  /* Horizontal Navigation - Scrollable */
  .horizontal-navigation {
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    height: auto;
    padding: 10px 5px;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  
  .horizontal-navigation::-webkit-scrollbar {
    display: none;
  }
  
  .horizontal-navigation:after {
    display: none;
  }
  
  .horizontal-navigation .option {
    min-width: 140px;
    padding: 0 20px;
    flex-shrink: 0;
  }
  
  /* Content Adjustments */
  .intro-text {
    padding: 30px 25px;
  }
  
  /* Company Record - Vertical Layout */
  .company-record {
    flex-direction: column;
    padding: 25px 20px;
    min-height: 100vh;
    align-items: stretch;
  }
  
  /* Sidebar - Horizontal Scroll */
  .sidebar {
    width: 100%;
    min-width: 100%;
    flex: 0 0 auto;
    border-radius: 10px 10px 0 0;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 15px 10px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    min-height: 60px;
  }
  
  .sidebar::-webkit-scrollbar {
    display: none;
  }
  
  .sidebar .option {
    padding: 12px 25px;
    margin: 0 8px;
    flex-shrink: 0;
    white-space: nowrap;
    border-radius: 20px;
  }
  
  .sidebar .option.active {
    border-radius: 20px;
    margin-left: 8px;
  }
  
  .sidebar .option.active::before,
  .sidebar .option.active::after {
    display: none;
  }
  
  /* Secondary Content */
  .secondary-content {
    width: 100%;
    margin-left: 0;
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: calc(100vh - 200px);
  }
  
  /* Add swipe indicator */
  .swipe-indicator {
    display: block;
    text-align: center;
    padding: 8px;
    color: #666;
    font-size: 11px;
    background: #f0f0f0;
    margin: 5px 0;
    border-radius: 5px;
  }
}

/*--------------------------------------- MOBILE RESPONSIVE (320px - 767px) ------------------------------------------- */

@media screen and (max-width: 767px) {
  /* Mobile Navigation Toggle */
  .mobile-nav-toggle {
    display: block;
    padding: 12px 15px;
    background: #0d4c8b;
    color: white;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    border: none;
    font-size: 14px;
  }
  
  /* Horizontal Navigation - Collapsible */
  .horizontal-navigation {
    height: auto;
    padding: 0;
    flex-direction: column;
    background: white;
    position: absolute;
    width: 100%;
    z-index: 999;
    display: none;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
  }
  
  .horizontal-navigation.show-mobile-nav {
    display: flex;
  }
  
  .horizontal-navigation .option {
    width: 100% !important;
    margin: 0 !important;
    padding: 15px 20px !important;
    border-bottom: 1px solid #eee;
    height: auto;
    justify-content: flex-start;
  }
  
  .horizontal-navigation:after {
    display: none;
  }
  
  /* Content */
  .content {
    min-height: calc(100vh - 40px);
  }
  
  .intro-text {
    padding: 20px 15px;
  }
  
  /* Company Record */
  .company-record {
    flex-direction: column;
    padding: 15px 10px;
    min-height: calc(100vh - 50px);
    align-items: stretch;
  }
  
  /* Sidebar - Horizontal Scroll */
  .sidebar {
    width: 100%;
    min-width: 100%;
    flex: 0 0 auto;
    border-radius: 10px 10px 0 0;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    align-items: center;
    -webkit-overflow-scrolling: touch;
    padding: 10px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    min-height: 50px;
  }
  
  .sidebar::-webkit-scrollbar {
    display: none;
  }
  
  .sidebar .option {
    flex: 0 0 auto;
    white-space: nowrap;
    border-radius: 20px;
    margin: 0 5px;
    padding: 10px 20px;
    font-size: 14px;
  }
  
  .sidebar .option.active {
    border-radius: 20px;
    margin-left: 5px;
  }
  
  .sidebar .option.active::before,
  .sidebar .option.active::after {
    display: none;
  }
  
  /* Secondary Content */
  .secondary-content {
    width: 100%;
    margin-left: 0;
    padding: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: calc(100vh - 150px);
  }
  
  /* Typography */
  /* h1 {
    font-size: 20px;
    margin-bottom: 15px;
  }
   */
  p {
    font-size: 15px;
    line-height: 1.5;
  }
  
  /* Specs */
  .specs {
    margin-top: 15px;
    padding: 15px;
  }
  
  .specs li {
    padding-left: 15px;
    font-size: 14px;
  }
  
  /* Swipe Indicator */
  .swipe-indicator {
    display: block;
    text-align: center;
    padding: 10px;
    color: #666;
    font-size: 12px;
    background: #f5f5f5;
    margin: 10px 0;
    border-radius: 5px;
  }
}

/*--------------------------------------- SMALL MOBILE (320px - 480px) ------------------------------------------- */

@media screen and (max-width: 480px) {
  .mobile-nav-toggle {
    padding: 10px 12px;
    font-size: 13px;
  }
  
  .horizontal-navigation .option {
    padding: 12px 15px !important;
    font-size: 13px;
  }
  
  .intro-text {
    padding: 15px 10px;
  }
  
  .company-record {
    padding: 10px 5px;
    min-height: calc(100vh - 60px);
  }
  
  .sidebar .option {
    padding: 8px 15px;
    font-size: 13px;
    margin: 0 3px;
  }
  
  .secondary-content {
    padding: 12px 8px;
    min-height: calc(100vh - 120px);
  }
  
  h1 {
    font-size: 18px;
    padding: 5px 20px;
    
  }
  
  .specs {
    padding: 12px;
  }
  
  .specs li {
    font-size: 13px;
  }
}

/*--------------------------------------- LANDSCAPE MOBILE ------------------------------------------- */

@media screen and (max-height: 500px) and (max-width: 900px) and (orientation: landscape) {
  .company-record {
    flex-direction: row;
    min-height: auto;
  }
  
  .sidebar {
    width: 35%;
    min-width: 200px;
    flex: 0 0 200px;
    border-radius: 0 10px 10px 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    overflow-y: auto;
    overflow-x: visible;
    padding: 15px 0;
  }
  
  .sidebar .option {
    display: block;
    margin: 2px 0;
    padding: 8px 15px;
  }
  
  .secondary-content {
    width: 65%;
    padding: 15px 20px;
  }
}