/* background elemets */
.bg-top-left, .bg-top-right, .bg-mid, .bg-bot {
  position: absolute;
  z-index: 0;
  pointer-events: none;
}
.bg-top-left{
  top: 0;
  left: 0;
}
.bg-top-right{
  top: 50px;
  right: 0;
}
.bg-mid{
  top: 2000px;
  left: 0;

}

.bg-bot{
  top: 6000px;
  right: 0;
}

@media screen and (max-width: 1024px){
.bg-top-right{
    top: 1500px;
}
}


#contents{
  position: relative;
  z-index: 1;
}
body{
  color: #333333;
}

.bg-gray{
  background-color: #f7f8f9;
}

.main-body {
  position: relative;
}
/* header */
#header {
  display: flex;
  flex-direction: column;
}

.site-info-image {
  margin-right: 155px;
  position: relative;
  z-index: 1;
}

.header-logo {
  justify-content: center;
  display: flex;
  margin: 55px 0;
  position: relative;
}

.btn-container {
  display: flex;
  gap: 8px;
  position: absolute;
  z-index: 1;
  transform: translateX(74%);
}

.blue-btn {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.blue-btn .subtext {
  color: #0068b7;
  font-size: 18px;
  font-weight: bold;
  text-align: center;

}

.red-btn,
.blue-btn-data {
  letter-spacing: 3px;
  display: flex;
  align-items: center;
  color: #ffffff !important;
  font-weight: bold;
  font-size: 22px;
  border-radius: 10px;
  gap: 22px;
  text-decoration: none;
}

.red-btn {
  background-color: #e60012;
  height: fit-content;
  padding: 12px 15px;
  transition: background-color 0.3s ease;
}

.red-btn:hover {
  background-color: #cc0010;
}

.blue-btn-data:hover {
  background-color: #025b9e;
}

.blue-btn-data {
  transition: background-color 0.3s ease;
  padding: 15px 20px 15px 40px;
  background-color: #0068b7;
}

.blue-btn-data img,
.red-btn .arrow-img {
  width: auto;
  height: 25px;
}

.red-btn .user-img {
  width: auto;
  height: 40px;
}

.header-nav {
  position: relative;
  z-index: 1;
  background: #00696e;
  background: linear-gradient(
    90deg,
    rgba(0, 105, 110, 1) 0%,
    rgba(0, 100, 112, 1) 26%,
    rgba(0, 92, 117, 1) 50%,
    rgba(0, 92, 117, 1) 73%,
    rgba(0, 54, 87, 1) 100%
  );
  transition: all 0.3s ease-in-out;
}

.header-nav ul {
  display: flex;
  gap: 95px;
  color: #ffffff;
  padding: 32px 0;
  font-size: 20px;
  justify-content: center;
  list-style: none;
  margin: 0;
  transition: all 0.3s ease;
}

.header-nav ul li a {
  color: #ffffff;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.header-nav ul li a:hover {
  opacity: 0.8;
}

.header-nav .header-arrow-down {
  font-size: 18px;
  position: relative;
  top: -3px;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  position: absolute;
  right: 20px;
  top: 20px;
  z-index: 1000;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background-color: #333;
  margin: 3px 0;
  transition: 0.3s;
}

/* Responsive Styles */
@media screen and (max-width: 1600px) {
  .red-btn,
  .blue-btn-data {
    font-size: 16px;
    border-radius: 10px;
    gap: 22px;
    text-decoration: none;
  }
  .red-btn {
    padding: 7px 10px;
  }
  .blue-btn-data {
    padding: 15px 20px 15px 40px;
  }
  .btn-container {
    margin: 0 10px;
  }
  .btn-container {
    transform: translateX(80%);
  }
  .header-nav ul {
    padding: 20px 0;
  }
}

@media screen and (max-width: 1200px) {
  .btn-container {
    transform: translateX(78%);
  }

  .site-info-image {
    margin-right: 50px;
    max-width: 180px;
  }

  .header-nav ul {
    gap: 50px;
    font-size: 14px !important;
  }
  .header-nav .header-arrow-down {
    font-size: 12px;
    top: -2px;
  }
  .blue-btn-data,
  .red-btn {
    font-size: 18px;
    gap: 15px;
    letter-spacing: 2px;
  }

  .blue-btn .subtext {
    font-size: 12px;
  }
  .red-btn,
  .blue-btn-data {
    font-size: 12px;
    border-radius: 10px;
    gap: 22px;
    text-decoration: none;
  }
  .red-btn {
    padding: 1px 10px;
    gap: 6px;
  }
  .blue-btn-data {
    gap: 6px;
    padding: 8px 12px 8px 20px;
  }
  .btn-container {
    margin: 0 10px;
  }
}

@media screen and (max-width: 768px) {
  .header-logo {
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin: 30px 0;
  }

  .site-info-image {
    margin-right: 0;
    max-width: 200px;
  }

  .btn-container {
    position: static;
    transform: none;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 350px;
  }

  .blue-btn-data,
  .red-btn {
    font-size: 16px;
    padding: 12px 20px;
    justify-content: center;
  }
  .red-btn {
    padding: 4px 10px;
  }
  .blue-btn .subtext {
    font-size: 14px;
  }

  .mobile-menu-toggle {
    display: flex;
    right: 20px;
    top: 4px;
  }

  .header-nav ul {
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    text-align: center;
  }

  .header-nav {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.4s ease-in-out;
  }

  .header-nav.active {
    max-height: 300px;
    opacity: 1;
    transform: translateY(0);
  }
}

@media screen and (max-width: 480px) {
  .header-logo {
    margin: 20px 0;
  }

  .site-info-image {
    max-width: 150px;
  }

  .btn-container {
    max-width: 280px;
  }

  .blue-btn-data,
  .red-btn {
    font-size: 14px;
    padding: 10px 15px;
  }

  .blue-btn .subtext {
    font-size: 12px;
  }

  .blue-btn-data img,
  .red-btn .arrow-img {
    height: 20px;
  }

  .red-btn .user-img {
    height: 30px;
  }

  .header-nav ul {
    font-size: 18px;
  }
}

/* Mobile menu animation */
.mobile-menu-toggle span {
  transition: all 0.3s ease-in-out;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

/* title */
.title {
  display: flex;
  flex-direction: column;
  gap: 28px;
  text-align: center;
}

.title h1 {
  font-size: 20px;
  font-weight: bold;
  color: #e60012;
  font-family: "Tahoma";
}
.title p {
  font-size: 22px;
  font-weight: bold;
  font-family: "Hiragino Kaku Gothic ProN";
  color: #333333;
  margin: 0;
}

/* mainvis */
#mainvis {
  background-image: url("./img/hero-img.png");
  background-color: #ffffff;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px 0 35px 0;
  position: relative;
  overflow: hidden;
}
.main-box {
  width: 100%;
  max-width: 1800px;
  padding: 0 40px;
}
.main {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 60px 0;
  text-align: left;
}

.main-text {
  margin-bottom: 40px;
}

.main-text .main-header {
  white-space: nowrap;
  font-size: clamp(32px, 5vw, 73px);
  font-weight: bold;
  color: #001d3f;
  line-height: 1.2;
  margin-bottom: 20px;
}

.main-text .main-subheader {
  white-space: nowrap;
  font-weight: bold;
  font-size: clamp(16px, 2.5vw, 28px);
  color: #333333;
  line-height: 1.6;
}

.main-btn-box {
  width: 100%;
}

.main-btn {
  background-color: #0068b7;
  color: #ffffff !important;
  font-weight: bold;
  font-size: clamp(18px, 2.2vw, 28px);
  width: 100%;
  max-width: 455px;
  padding: 20px 25px;
  position: relative;
  text-align: center;
  border-radius: 20px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.main-btn:hover {
  background-color: #0056a3;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 104, 183, 0.3);
}

.main-btn .arrow-img {
  position: absolute;
  height: clamp(24px, 3vw, 38px);
  width: auto;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
}

/* Tablet styles */
@media (max-width: 1024px) {
  #mainvis {
    min-height: 80vh;
    margin: 15px 0 25px 0;
  }

  .main {
    width: 100% !important;
    padding: 40px 0;
  }

  .main-text {
   width: 100%;
    margin-bottom: 30px;
  }
  .main-text .main-header , .main-text .main-subheader{
    white-space: normal;
  }
}

/* Mobile styles */
@media (max-width: 768px) {
  #mainvis {
    min-height: 70vh;
    margin: 10px 0 20px 0;
    background-position: center top;
  }

  .main {
    width: 100%;
    max-width: 100%;
    padding: 30px 0;
    align-items: center;
    text-align: center;
  }

  .main-text {
    margin-bottom: 25px;
    text-align: center;
  }

  .main-text .main-header {
    white-space: normal;
    margin-bottom: 15px;
  }
  .responsive-br {
    display: none;
  }
  .main-text .main-subheader {
    white-space: normal;
  }
  .main-btn {
    max-width: 100%;
    padding: 18px 20px;
  }

  .main-btn .arrow-img {
    right: 20px;
  }
}

/* Small mobile styles */
@media (max-width: 480px) {
  #mainvis {
    min-height: 60vh;
    margin: 5px 0 15px 0;
  }

  .main-box {
    padding: 0 15px;
  }

  .main {
    padding: 20px 0;
  }

  .main-text {
    margin-bottom: 20px;
  }

  .main-btn {
    padding: 15px 18px;
    border-radius: 15px;
  }

  .main-btn .arrow-img {
    right: 18px;
  }
}

/* Large screens */
@media (min-width: 1400px) {
  #mainvis {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
  }
}

/* Very small screens */
@media (max-width: 320px) {
  .main-text .main-header {
    font-size: 24px;
  }

  .main-text .main-subheader {
    font-size: 14px;
  }

  .main-btn {
    font-size: 16px;
    padding: 12px 15px;
  }
}

/* sect1 */
#sect1 {
  text-align: center;
  padding: 30px 20px 100px 20px;
}
.sect1-title,
.sect4-title {
  font-size: 48px;
  font-weight: bold;
  color: #001d40;
}
.sec1-content {
  padding: 20px;
  line-height: 60px;
  font-size: 22px;
  font-weight: bold;
  color: #333333;
}
.sect1-btn-box {
  place-items: center;
}
.sect1-btn-text {
  font-size: 22px;
  color: #ffffff !important;
}

.sect1-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #0068b7;
  color: #ffffff !important;
  font-weight: bold;
  width: 520px;
  padding: 25px 0;
  position: relative;
  text-align: center;
  border-radius: 20px;
  transition: all 0.3s ease;
  cursor: pointer;
}
.sect1-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 104, 183, 0.3);
}
.sect1-btn .sect1-arrow-img {
  transform: translate(230%, 0%);
}
.sect1-arrow-img {
  width: 40px;
  height: auto;
}

.sect1-title {
  padding-top: 50px;
  padding-bottom: 5px;
}

@media screen and (max-width: 768px) {
  #sect1 {
    padding: 20px 15px 70px 15px;
  }
  .title {
    gap: 14px;
  }
  .sect1-title {
    font-size: 32px;
    padding: 30px 0 0;
  }

  .sec1-content {
    font-size: 18px;
    line-height: 45px;
  }

  .sect1-btn {
    width: 400px;
    max-width: 90%;
    padding: 14px 0;
  }

  .sect1-btn-text {
    font-size: 18px;
  }
  .sect1-btn .sect1-arrow-img {
    transform: translate(115%, 0%);
  }
}

@media screen and (max-width: 480px) {
  #sect1 {
    padding: 20px 15px 10px 15px;
  }
  .sect1-title {
    font-size: 22px;
    padding: 20px 0 0;
  }

  .sec1-content {
    line-height: 30px;
    font-size: 14px;
    padding: 0;
    margin: 20px 0;
  }

  .sect1-btn {
    width: 300px;
    max-width: 90%;
  }

  .sect1-btn-text {
    font-size: 14px;
  }
  .sect1-btn .sect1-arrow-img {
    transform: translate(95%, 0%);
  }

  .sect1-arrow-img {
    width: 30px;
  }
  .title p {
    font-size: 14px;
  }
  .title h1 {
    font-size: 18px;
  }
}

/* sect2 */
.sect2 {
  position: relative;
  padding-top: 127px !important;
  overflow: hidden;
}

.sect2-container {
  background-color: #0e2849;
  position: relative;
  padding-bottom: 26px;
}
/* top curve */
.curve-top {
  position: absolute;
  top: 6px;
  right: 0;
  width: 100%;
  height: 192px;
  background: #0e2849;
  clip-path: ellipse(54% 100% at 50% 100%);
}

.sect2-header {
  text-align: center;
  margin-bottom: 60px;
}

.sect2-label {
  color: #005f72;
  position: absolute;
  bottom: 0;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 2px;
  margin-bottom: 20px;
  position-area: center;
  font-family: 'Tahoma';
}

.sect2-title {
  color: white;
  font-size: 48px;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 10px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
  padding: 0 15px;
}

.service-card {
  background: white;
  border-radius: 12px;
  padding: 20px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 170px;
  height: 125px;
  background: #1e40af;
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

.service-card:nth-child(1)::before {
  background: #0068b7;
}

.service-card:nth-child(2)::before {
  background: #e60012;
}

.service-card:nth-child(3)::before {
  background: #009944;
}

.service-title {
  padding: 25px 0;
  font-size: 24px;
  font-weight: bold;
  color: #0e2849;
  text-align: center;
}

.sect2-service-img {
  position: relative;
  width: 100%;
  height: auto;
}

.service-description {
  font-size: 18px;
  color: #333333;
  margin: 0;
  line-height: 1.6;
  font-weight: bold;
}

/* Responsive design */

@media (max-width: 1024px) {
  .service-card .responsive-br {
    display: none;
  }
  .sect2-title {
    font-size: 32px;
  }
  .curve-top {
    top: 39px;
    right: 0;
    height: 140px;
  }
}
@media (max-width: 768px) {
  .section-title {
    font-size: 24px;
  }
  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .service-description {
    text-align: center;
  }
  .sect2-label {
    font-size: 16px;
  }
  .curve-top {
    top: 54px;
    height: 95px;
    clip-path: ellipse(58% 100% at 50% 100%);
  }
  .sect2-title {
    margin-top: 20px;
  }
}
@media (max-width: 425px) {
  .curve-top {
    top: 60px;
    height: 98px;
    clip-path: ellipse(67% 100% at 50% 100%);
  }
  .service-title {
    font-size: 20px;
    padding: 18px 0;
  }
  .service-description {
    font-size: 14px;
  }
  .sect2-label {
    font-size: 14px;
  }
  .sect2-title {
    font-size: 22px;
  }
  .sect2-header {
    margin: 30px 0;
    padding: 0 15px;
  }
}

/* sect3 */
.sect3 {
  margin-top: 80px;
  position: relative;
}
.sect3-container {
  display: flex;
  flex-direction: column;
  gap: 99px;
}

.point-left,
.point-right {
  display: flex;
  justify-content: space-around;
  position: relative;
  z-index: 10;
  gap: 50px;
  padding-bottom: 27px;
}

.point-left-background {
  background-color: #f7f8f9;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100vw;
  height: 85%;
  z-index: -1;
}

.point-right-background {
  background-color: #f7f8f9;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100vw;
  height: 85%;
  z-index: -1;
}

.point-left-desc,
.point-right-desc {
  font-weight: bold;
  position: relative;
}
.point-right-desc {
  padding-right: 30px;
}
.point-left-desc {
  padding-left: 30px;
  width: 540px;
}

.point-left-title,
.point-right-title {
  font-family: 'Tahoma';
  color: #ccced3;
  font-weight: bold;
  font-size: 96px;
}

.point-left-subtitle,
.point-right-subtitle {
  line-height: 45px;
  color: #001d3f;
  font-size: 36px;
}

.point-right-para {
  padding: 35px 0;
  margin: 0;
}

.point-left-para,
.point-right-para {
  line-height: 34px;
  font-size: 18px;
  color: #333333;
}
.point-left-para {
  padding: 10px 0 35px 0;
}
.point-left-line,
.point-right-line {
  position: relative;
}

.point-right-line::before {
  content: "";
  position: absolute;
  left: -40px;
  top: 0;
  bottom: 0;
  width: 4px;
  background-color: #0e2849;
  border-radius: 2px;
}

.point-left-line::before {
  content: "";
  position: absolute;
  left: -14px;
  top: 0;
  bottom: 0;
  width: 4px;
  background-color: #0e2849;
  border-radius: 2px;
}

.point-left-img,
.point-right-img {
  width: 565px;
  object-fit: cover;
}

.point-left-img {
  width: 572px;
  height: auto;
  padding-right: 20px;
}
.point-right-img {
  padding-left: 20px;
}
.point-check-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.point-check {
  padding: 6px 6px;
  background-color: #0e2849;
  border-radius: 40px;
  display: flex;
  gap: 13px;
  align-items: center;
}

.point-check img {
  width: 41px;
  height: 41px;
}

.point-check-text {
  font-size: 20px;
  font-weight: bold;
  color: #ffffff;
}
.point-right-container {
  padding: 80px 0;
}
@media screen and (max-width: 1024px) {
  .point-left,
  .point-right {
    gap: 50px;
    padding: 0 20px 27px;
  }

  .point-left-img,
  .point-right-img {
    width: 400px !important;
    height: 400px;
    align-self: center;
  }

  .point-left-title,
  .point-right-title {
    font-size: 72px;
  }

  .point-check-text {
    font-size: 16px;
  }

  .point-left-subtitle,
  .point-right-subtitle {
    font-size: 28px;
  }
  .point-left-background,
  .point-right-background {
    height: 87%;
  }
  .responsive-br {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .sect3-container {
    gap: 60px;
    margin: 20px 0;
  }
  .point-right-container {
    padding: 0;
  }
  .point-right-para {
    padding: 22px 0;
  }
  .point-left,
  .point-right {
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding: 0 15px 27px;
  }

  .point-left-img,
  .point-right-img {
    width: 300px;
    order: 1;
  }

  .point-left-desc,
  .point-right-desc {
    order: 2;
    text-align: center;
    padding-left: 20px;
    padding-right: 15px;
    width: 540px;
  }
  .point-right-line::before {
    left: -10px;
  }

  .point-right .point-right-img {
    order: 1;
  }

  .point-right .point-right-desc {
    order: 2;
  }

  .point-left-title,
  .point-right-title {
    font-size: 48px;
  }

  .point-left-subtitle,
  .point-right-subtitle {
    font-size: 22px;
  }

  .point-left-para,
  .point-right-para {
    font-size: 16px;
  }

  .point-check-text {
    font-size: 16px;
  }

  .point-check img {
    width: 32px;
    height: 32px;
  }
}

/* Add this media query to your existing CSS */
@media screen and (max-width: 600px) {
  .sect3-container {
    gap: 30px;
    margin: 15px 0;
  }

  .point-right-container {
    padding: 0;
  }

  .point-right-para {
    padding: 20px 0;
  }

  .point-left,
  .point-right {
    flex-direction: column;
    align-items: center;
    gap: 25px;
    padding: 0 10px 20px;
  }

  .point-left-img,
  .point-right-img {
    width: 280px;
    height: auto;
    order: 1;
    padding: 0 20px !important;
    box-sizing: border-box;
  }

  .point-left-desc,
  .point-right-desc {
    order: 2;
    text-align: center;
    padding-left: 15px;
    padding-right: 15px;
    width: 100%;
    max-width: 500px;
  }

  .point-right-line::before {
    left: -8px;
  }

  .point-left-line::before {
    left: -8px;
    width: 3px;
  }

  .point-right .point-right-img {
    order: 1;
  }

  .point-right .point-right-desc {
    order: 2;
  }

  .point-left-title,
  .point-right-title {
    font-size: 42px;
  }

  .point-left-subtitle,
  .point-right-subtitle {
    font-size: 20px;
    line-height: 32px;
  }

  .point-left-para,
  .point-right-para {
    font-size: 15px;
    line-height: 28px;
  }

  .point-left-para {
    padding: 15px 0 30px 0;
  }

  .point-check {
    padding: 5px 5px;
    gap: 10px;
  }

  .point-check-text {
    font-size: 15px;
  }

  .point-check img {
    width: 30px;
    height: 30px;
  }

  .point-left-background,
  .point-right-background {
    height: 85%;
  }
}

@media screen and (max-width: 320px) {
  .point-left-img,
  .point-right-img {
    width: 320px !important;
    height: auto;
    order: 1;
    padding: 0 20px !important;
    box-sizing: border-box;
  }
}

/* sect4 */
.sect4 {
  padding: 80px 20px;
  text-align: center;
}

.sect4-title h1 {
  font-size: 20px;
  color: #e50012;
  margin-bottom: 50px;
    font-family: 'Tahoma';
    font-weight: bold;
}

.sect4-title {
  font-size: 48px;
  color: #001d3f;
  margin-bottom: 60px;
  font-weight: bold;
  line-height: 1.4;
}
.sect4-card {
  height: 560px;
  max-width: 100%;
  width: 625px;
  font-weight: bold;
  padding: 50px 20px 30px;
}
.sect4-card-title {
  font-size: 48px;
  color: #ffffff;
}
.sect4-card-subtitle {
  font-size: 28px;
  color: #ffe100;
}
.sect4-box {
  background-color: #ffffff;
  height: 130px;
  border-radius: 20px;
  margin: 20px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.sect4-box-text {
  font-size: 18px;
  color: #333333;
  text-align: left;
}
.sect4-check-items {
  font-size: 18px;
  color: #ffffff;
  margin: 0;
  font-weight: normal;
}
.sect4-check-container {
  text-align: left;
  height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
.triangle-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.sect4-card {
  background: #001d3f;
  border-radius: 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  z-index: 2;
}

.sect4-card::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 90%;
  height: 95%;
  background: #0e2849;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: -10;
}

.top-row {
  display: flex;
  justify-content: center;
}

.bottom-row {
  display: flex;
  gap: 80px;
  justify-content: center;
}

/* Connection lines */
.connection-lines {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  pointer-events: none;
}

.line {
  position: absolute;
  background-color: #333;
  height: 3px;
  border-radius: 2px;
}

/* Line from top card to left bottom card */
.line-1 {
  top: 573px;
  left: calc(31% - 180px);
  width: 200px;
  transform: rotate(-57deg);
  transform-origin: center;
}

/* Line from top card to right bottom card */
.line-2 {
  top: 573px;
  left: calc(70% - 20px);
  width: 200px;
  transform: rotate(57deg);
  transform-origin: center;
}

/* Line connecting bottom two cards */
.line-3 {
  top: 920px;
  left: calc(50% - 240px);
  width: 480px;
  transform: rotate(0deg);
}

/* Tablet responsive */
@media (max-width: 1350px) {
  .sect4 {
    padding: 60px 20px;
  }

  .sect4-title {
    font-size: 36px;
    margin-bottom: 40px;
  }

  .triangle-section {
    gap: 60px;
    max-width: 900px;
  }

  .sect4-card {
    height: 450px;
    width: 450px;
    padding: 40px 20px 25px;
  }

  .sect4-card-title {
    font-size: 40px;
  }

  .sect4-card-subtitle {
    font-size: 24px;
  }

  .sect4-box {
    height: 100px;
    margin: 18px 0;
  }

  .sect4-box-text {
    font-size: 16px;
  }

  .sect4-check-items {
    font-size: 16px;
  }

  .sect4-check-container {
    height: 140px;
  }

  .bottom-row {
    gap: 60px;
  }

  /* Adjust connection lines for tablet */
  .line-1 {
    top: 472px;
    left: calc(33% - 150px);
    width: 170px;
  }

  .line-2 {
    top: 472px;
    left: calc(66% - 20px);
    width: 170px;
  }

  .line-3 {
    top: 760px;
    left: calc(50% - 210px);
    width: 420px;
  }
}

/* Mobile landscape styles (481px - 767px) */
@media (max-width: 768px) {
  .sect4 {
    padding: 40px 20px;
  }

  .sect4-title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .sect4-title h1 {
    font-size: 18px;
    margin-bottom: 30px;
  }

  .triangle-section {
    gap: 40px;
    flex-direction: column;
  }

  .top-row,
  .bottom-row {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .sect4-card {
    height: 400px;
    width: 100%;
    max-width: 400px;
    padding: 30px 20px 20px;
  }

  .sect4-card-title {
    font-size: 32px;
  }

  .sect4-card-subtitle {
    font-size: 20px;
  }

  .sect4-box {
    height: 105px;
    margin: 15px 0;
    padding: 20px 10px;
  }

  .sect4-box-text {
    font-size: 14px;
    padding: 0 10px;
  }

  .sect4-check-items {
    font-size: 14px;
  }

  .sect4-check-container {
    height: 120px;
  }

  /* Show vertical connection lines on mobile */
  .connection-lines {
    display: block;
  }

  /* Vertical line between first and second card */
  .line-1 {
    top: 400px;
    left: 50%;
    width: 3px;
    height: 40px;
    transform: translateX(-50%) rotate(0deg);
    transform-origin: center;
  }

  /* Vertical line between second and third card */
  .line-2 {
    top: 840px;
    left: 50%;
    width: 3px;
    height: 40px;
    transform: translateX(-50%) rotate(0deg);
    transform-origin: center;
  }

  /* Hide the horizontal line */
  .line-3 {
    display: none;
  }
}

/* Mobile portrait styles (max-width: 480px) */
@media (max-width: 480px) {
  .sect4 {
    padding: 30px 20px;
  }

  .sect4-title {
    font-size: 24px;
    margin-bottom: 25px;
    line-height: 1.3;
  }

  .sect4-title h1 {
    font-size: 16px;
    margin-bottom: 25px;
  }

  .triangle-section {
    gap: 30px;
  }

  .sect4-card {
    height: 380px;
    width: 100%;
    max-width: 350px;
    padding: 25px 15px 15px;
  }

  .sect4-card-title {
    font-size: 28px;
  }

  .sect4-card-subtitle {
    font-size: 18px;
  }

  .sect4-box {
    height: 100px;
    margin: 12px 0;
    border-radius: 15px;
  }

  .sect4-box-text {
    font-size: 12px;
    padding: 0 8px;
  }

  .sect4-check-items {
    font-size: 12px;
  }

  .sect4-check-container {
    height: 110px;
  }

  /* Adjust vertical lines for smaller mobile */
  .line-1 {
    top: 380px;
    height: 30px;
  }

  .line-2 {
    top: 790px;
    height: 45px;
  }
  .bottom-row {
    gap: 30px;
  }
}

/* Extra small mobile (max-width: 360px) */
@media (max-width: 360px) {
  .sect4 {
    padding: 25px 20px;
  }

  .sect4-title {
    font-size: 22px;
  }

  .sect4-card {
    height: 330px;
    max-width: 320px;
    padding: 20px 12px 12px;
  }

  .sect4-card-title {
    font-size: 26px;
  }

  .sect4-card-subtitle {
    font-size: 16px;
  }

  .sect4-box {
    height: 75px;
    margin: 10px 0;
  }

  .sect4-box-text {
    font-size: 12px;
    padding: 0 6px;
  }

  .sect4-check-items {
    font-size: 12px;
  }

  .sect4-check-container {
    height: 105px;
  }

  /* Adjust vertical lines for extra small mobile */
  .line-1 {
    top: 320px;
    height: 45px;
  }

  .line-2 {
    top: 680px;
    height: 45px;
  }
}

/* sect5 */

.sect5 {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.sect5-title {
  font-size: 20px;
  line-height: 24px;
  color: #e50012;
  font-weight: bold;
  text-align: center;
  margin-top: 50px;
  font-weight: bold;
}

.sect5-tagline {
  font-size: 22px;
  letter-spacing: 3px;
  line-height: 62px;
  color: #333333;
  text-align: center;
  margin-top: 26px;
  font-weight: bold;
}

.sect5-line {
  font-size: 48px;
  letter-spacing: 6px;
  line-height: 58px;
  color: #001d3f;
  margin-top: 45px;
  justify-self: center;
  font-weight: bold;
}

.pricing-cards {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 61px;
}

.price {
  font-weight: bold;
  font-family: "L IN ESeed JP_ OT F";
}

.card {
  background: #ffffff;
  padding: 20px 10px;
  border-radius: 8px;
  box-shadow: 6px 5px 0px -1px rgba(207, 212, 219, 0.75);
  width: 100%;
  max-width: 380px;
  text-align: center;
  border: 2px solid #001d3f;
  position: relative;
  border-top: 8px solid #001d3f;
}

.trial {
  position: absolute;
  top: 0;
  right: 0;
  padding: auto;
  background: #ffd24d;
  color: black;
  padding: 3px;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  font-size: 14px;
  font-weight: bold;
}

.plan {
  color: #e50012;
  text-align: left;
  font-size: 16px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-weight: bold;
    font-family: 'Tahoma';

}
.plan-sub {
  font-size: 26px;
  color: #333333;
}

.price {
  font-size: 74px;
  font-weight: bold;
  color: #333333;
  margin: 0;
}
.price-sub {
  font-size: 20px;
}
.price-desc {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 30px;
}
.features {
  margin-top: 40px;
  text-align: left;
  padding: 0;
}

.features li {
  list-style: none;
  padding: 5px 0;
  font-size: 16px;
  display: flex;
  align-items: center;
  font-weight: bold;
}

.features li::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background-image: url("img/green-check.png");
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 10px;
  font-weight: bold;
}


.btn {
  display: inline-block;
  padding: 12px 22px;
  background: #e60012;
  color: #ffffff !important;
  text-decoration: none;
  border-radius: 15px;
  font-size: 16px;
  font-weight: bold;
  width: 240px;
  transition: background 0.3s;
}

.btn:hover {
  background: #d62f3c;
}

.note {
  margin-left: auto;
  font-size: 14px;
  color: #424243;
  margin-top: 15px;
  text-align: right;
}

/* sect6 */

.sect6 {
  margin: auto;
  padding: 20px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  position: relative;
}
table {
  width: 100%;
  border-collapse: collapse;
  border: none;
  overflow: hidden;
  border-radius: 12px;
  background-color: white;
  table-layout: auto;
}
.fc {
  margin-top: 70px;
  font-size: 22px;
  letter-spacing: 3px;
  line-height: 62px;
  color: #333333;
}

th {
  padding: 10px;
  text-align: center;
  background-color: #001d3f;
  color: white;
  font-size: 22px;
}
th:first-child {
    width: 1%; 
    white-space: nowrap;
    text-align: left;
}


th:not(:first-child) {
    width: 33%; 
}

.th-span{
  font-size: 11px;
  color: #0096d5;
}
td {
  color: #333333;
  font-weight: bold;
  border-top: 2px solid #001d3f;
  border-bottom: 2px solid #001d3f;
  padding: 10px;
  text-align: left;
  font-size: 20px;
}
td:first-child {
    width: 1%; /* Forces minimum width */
    white-space: nowrap; /* Prevents text wrapping */
    text-align: left;
}

/* Other columns get equal width and center alignment */
td:not(:first-child) {
    width: 33%; /* Equal distribution */
    text-align: center;
}

td:not(:last-child) {
  border-right: 3px dotted #001d3f;
  padding: 20px;
}
tbody td {
  padding: 20px;
}

.check {
  text-align: center;
}

.dash {
  color: #dddddd;
  font-size: 25px;
  text-align: center;
}
.info-section {
  background-color: #f8f8f8;
  border-radius: 15px;
  margin-top: 20px;
  padding: 20px;
  background-color: white;
}
.info-section h2 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #333;
  font-weight: bold;
}
.info-section ul {
  margin-bottom: 30px;
  text-align: left;
  font-size: 18px;
}
.info-section ul li {
  margin-bottom: 10px;
  line-height: 1.5;
  text-align: left;
  color: #333333;
}

.info-section li::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background-image: url("img/dot.png");
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 10px;
  font-weight: bold;
}

/* Responsive Styles */

/* Desktop (1025px and up) */
@media (min-width: 1025px) {
  #contents {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
}

/* Desktop Small (1024px) */
@media (max-width: 1024px) {
  #contents {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  th {
    font-size: 20px;
    padding: 8px;
  }
  
  td {
    font-size: 18px;
    padding: 15px;
  }
  
  tbody td {
    padding: 15px;
  }
  
  .info-section h2 {
    font-size: 20px;
  }
  
  .info-section ul {
    font-size: 16px;
  }
}

/* Tablet (768px) */
@media (max-width: 768px) {
  .sect6 {
    padding: 15px;
  }
  
  #contents {
    padding: 0 15px;
  }
  
  .fc {
    margin-top: 50px;
    font-size: 20px;
    letter-spacing: 2px;
    line-height: 50px;
  }
  
  /* Table becomes scrollable horizontally */
  .table-container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  
  table {
    min-width: 600px;
  }
  
  th {
    font-size: 16px;
    padding: 8px 5px;
    min-width: 120px;
  }
  
  th:first-child {
    min-width: 200px;
    white-space: normal;
  }
  
  .th-span {
    font-size: 10px;
  }
  
  td {
    font-size: 14px;
    padding: 12px 5px;
    min-width: 120px;
  }
  
  td:first-child {
    min-width: 200px;
    white-space: normal;
    font-size: 13px;
  }
  
  tbody td {
    padding: 12px 5px;
  }
  
  .dash {
    font-size: 20px;
  }
  
  .info-section {
    margin-top: 30px;
    padding: 20px 15px;
  }
  
  .info-section h2 {
    font-size: 18px;
  }
  
  .info-section ul {
    font-size: 15px;
  }
  
  .info-section li::before {
    width: 14px;
    height: 14px;
  }
}

/* Mobile (480px) */
@media (max-width: 480px) {
  .sect6 {
    padding: 10px;
  }
  
  #contents {
    padding: 0 10px;
  }
  
  .fc {
    margin-top: 30px;
    font-size: 18px;
    letter-spacing: 1px;
    line-height: 40px;
  }
  
  /* Table becomes scrollable horizontally */
  .table-container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    width: calc(100vw - 40px); /* Screen width minus left/right padding (20px each) */
    margin: 0 -10px; /* Negative margin to offset parent padding */
    padding: 0 20px; /* Left and right padding for scrollable area */
  }
  
  table {
    width: 480px; /* Adjusted to screen size */
    min-width: 480px;
  }
  
  th {
    font-size: 14px;
    padding: 8px 10px;
    white-space: nowrap;
  }
  
  th:first-child {
    width: 160px;
    min-width: 160px;
  }
  
  th:not(:first-child) {
    width: 107px;
    min-width: 107px;
  }
  
  .th-span {
    font-size: 9px;
  }
  
  td {
    font-size: 12px;
    padding: 10px;
    white-space: nowrap;
  }
  
  td:first-child {
    width: 160px;
    min-width: 160px;
    font-size: 11px;
    white-space: nowrap;
  }
  
  td:not(:first-child) {
    width: 107px;
    min-width: 107px;
  }
  
  tbody td {
    padding: 10px;
  }
  
  .dash {
    font-size: 16px;
  }
  
  .info-section {
    margin-top: 25px;
    padding: 15px;
  }
  
  .info-section h2 {
    font-size: 16px;
    margin-bottom: 8px;
  }
  
  .info-section ul {
    font-size: 13px;
    margin-bottom: 20px;
  }
  
  .info-section li {
    margin-bottom: 8px;
    line-height: 1.4;
  }
  
  .info-section li::before {
    width: 12px;
    height: 12px;
    margin-right: 8px;
  }
}

/* Mobile Small (320px) */
@media (max-width: 320px) {
  .sect6 {
    padding: 8px;
  }
  
  #contents {
    padding: 0 8px;
  }
  
  .fc {
    font-size: 16px;
    line-height: 35px;
    margin-top: 25px;
  }
  
  /* Table becomes scrollable horizontally */
  .table-container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    width: calc(100vw - 32px); /* Screen width minus left/right padding (16px each) */
    margin: 0 -8px; /* Negative margin to offset parent padding */
    padding: 0 16px; /* Left and right padding for scrollable area */
  }
  
  table {
    width: 320px; /* Adjusted to screen size */
    min-width: 320px;
  }
  
  th {
    font-size: 12px;
    padding: 6px 8px;
    white-space: nowrap;
  }
  
  th:first-child {
    width: 120px;
    min-width: 120px;
  }
  
  th:not(:first-child) {
    width: 67px;
    min-width: 67px;
  }
  
  td {
    font-size: 11px;
    padding: 8px;
    white-space: nowrap;
  }
  
  td:first-child {
    width: 120px;
    min-width: 120px;
    font-size: 10px;
    white-space: nowrap;
  }
  
  td:not(:first-child) {
    width: 67px;
    min-width: 67px;
  }
  
  tbody td {
    padding: 8px;
  }
  
  .info-section {
    padding: 12px;
  }
  
  .info-section h2 {
    font-size: 14px;
  }
  
  .info-section ul {
    font-size: 12px;
  }
  
  .info-section li::before {
    width: 10px;
    height: 10px;
    margin-right: 6px;
  }
}
/* sect7 */
.sect7{
  padding: 30px 0;
}
.testimonial-section {
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 51px;
  margin-top: 80px;
}
.profile-container {
  display: flex;
  width: 100%;
  gap: 20px;
}
.testimonial {
  background-color: #f9f9f9;
  border-radius: 68px 17px 68px 68px;
  padding: 20px;
  width: 520px;
  height: 271px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.profile .name {
  display: flex;
  gap: 12px;
  font-size: 26px;
  color: #333333;
}
.profile .position {
  font-size: 18px;
  margin: 0;
  align-self: end;
}
.stars {
  color: gold;
  margin-bottom: 10px;
}

.quote {
  font-size: 1.2em;
  margin-bottom: 10px;
  font-size: 24px;
  letter-spacing: 3px;
  line-height: 34px;
  color: #333333;
  font-weight: bold;
}

.name {
  font-weight: bold;
  margin-bottom: 5px;
}

.position {
  color: gray;
  margin-bottom: 10px;
}

.comments {
  color: #333333;
  padding: 10px 18px;

}

/* FOOTER */

.footer {
  background-color: #f7f8f9;
  padding: 40px;
  text-align: center;
  margin-top: 45px;
}

.footer-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
}

.partners {
  margin-top: 32px;
}

.top-links {
  display: flex;
  gap: 15px;
  font-size: 18px;
  line-height: 30px;
  color: #333333;
  place-self: flex-end !important;
}

.bottom-links {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  margin-top: 22px;
  display: flex;
  gap: 15px;
  font-size: 18px;
  line-height: 30px;
  color: #929292;
}


.copyright {
  margin-top: 66px;
  font-size: 16px;
  line-height: 27px;
  color: #929292;
}

/* Responsive Styles */

/* Large Desktop (1200px and up) */
@media (min-width: 1200px) {
  #contents {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
}

/* Desktop Small (1024px) */
@media (max-width: 1024px) {
  #contents {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .pricing-cards {
    gap: 20px;
  }
  
  .card {
    max-width: 320px;
  }
  
  .price {
    font-size: 65px;
  }
}

/* Tablet (768px) - Single Column Layout */
@media (max-width: 768px) {
  #contents {
    padding: 0 20px;
  }
  
  .sect5-title {
      font-family: 'Tahoma';
font-weight: bold;
    margin-top: 30px;
    font-size: 18px;
  }
  
  .sect5-tagline {
    font-size: 20px;
    letter-spacing: 2px;
    line-height: 50px;
    margin-top: 20px;
  }
  
  .sect5-line {
    font-size: 40px;
    letter-spacing: 4px;
    line-height: 48px;
    margin-top: 30px;
  }
  
  .pricing-cards {
    flex-direction: column;
    align-items: center;
    gap: 25px;
    margin-top: 40px;
  }
  
  .card {
    max-width: 100%;
    width: 100%;
    max-width: 500px;
    padding: 25px 20px;
  }
  
  .price {
    font-size: 60px;
  }
  
  .price-desc {
    font-size: 18px;
    margin-bottom: 25px;
  }
  
  .btn {
    width: 240px;
    padding: 12px 22px;
    font-size: 16px;
  }
  
  .features {
    margin-top: 35px;
  }
  
  .features li {
    font-size: 16px;
    padding: 8px 0;
  }
  
  .note {
    text-align: center;
    margin: 25px auto 0;
  }
}

/* Mobile (480px) */
@media (max-width: 480px) {
  #contents {
    padding: 0 15px;
  }
  
  .sect5-title {
    font-size: 16px;
    margin-top: 25px;
  }
  
  .sect5-tagline {
    font-size: 15px;
    letter-spacing: 1px;
    line-height: 32px;
    margin-top: 15px;
  }
  
  .sect5-line {
    font-size: 28px;
    letter-spacing: 2px;
    line-height: 36px;
    margin-top: 25px;
  }
  
  .pricing-cards {
    margin-top: 30px;
    gap: 20px;
  }
  
  .card {
    max-width: 100%;
    padding: 20px 15px;
  }
  
  .plan {
    font-size: 14px;
  }
  
  .plan-sub {
    font-size: 22px;
  }
  
  .price {
    font-size: 48px;
  }
  
  .price-sub {
    font-size: 18px;
  }
  
  .price-desc {
    font-size: 16px;
    margin-bottom: 20px;
  }
  
  .btn {
    width: 220px;
    padding: 10px 18px;
    font-size: 15px;
  }
  
  .features {
    margin-top: 25px;
  }
  
  .features li {
    font-size: 14px;
    padding: 6px 0;
  }
  
  .features li::before {
    width: 14px;
    height: 14px;
    margin-right: 8px;
  }
  
  .trial {
    font-size: 12px;
    padding: 2px;
  }
  
  .note {
    font-size: 12px;
    margin-top: 15px;
  }
}

/* Mobile Small (320px) */
@media (max-width: 320px) {
  #contents {
    padding: 0 10px;
  }
  
  .sect5-line {
    font-size: 24px;
    letter-spacing: 1px;
    line-height: 32px;
    margin-top: 5px;
  }
  
  .card {
    padding: 15px 10px;
  }
  
  .price {
    font-size: 42px;
  }
  
  .btn {
    width: 200px;
    padding: 8px 14px;
    font-size: 14px;
  }
  
  .features li {
    font-size: 13px;
  }
}

/* Testimonial Responsive Styles */

/* Desktop (1024px and down) */
@media (max-width: 1024px) {
  .testimonial-section {
    gap: 40px;
    margin-top: 60px;
  }
  
  .testimonial {
    width: 480px;
    height: auto;
    min-height: 250px;
  }
  
  .quote {
    font-size: 22px;
    letter-spacing: 2px;
    line-height: 32px;
  }
  
  .profile .name {
    font-size: 24px;
  }
  
  .profile .position {
    font-size: 16px;
  }
}

/* Tablet (768px and down) */
@media (max-width: 768px) {
  .testimonial-section {
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-top: 50px;
  }
  
  .profile-container {
    width: 100%;
    max-width: 600px;
    gap: 30px;
  }
  
  .testimonial {
    width: 100%;
    max-width: 100%;
    height: auto;
    min-height: 220px;
    padding: 25px;
    border-radius: 50px 15px 50px 50px;
  }
  
  .quote {
    font-size: 20px;
    letter-spacing: 2px;
    line-height: 30px;
  }
  
  .profile .name {
    font-size: 22px;
    gap: 10px;
  }
  
  .profile .position {
    font-size: 16px;
  }
  
  .comments {
    padding: 8px 15px;
    font-size: 16px;
  }
}

/* Mobile (480px and down) */
@media (max-width: 480px) {
  .testimonial-section {
    gap: 25px;
    margin-top: 40px;
    padding: 0 10px;
  }
  
  .profile-container {
    max-width: 100%;
    gap: 25px;
  }
  .profile-icon .point-check-img{
    width: 80px;
    height: auto;
  }
  .testimonial {
    width: 100%;
    padding: 20px;
    border-radius: 40px 12px 40px 40px;
    min-height: 200px;
  }
  
  .quote {
    font-size: 14px;
    letter-spacing: 1px;
    line-height: 28px;
  }
  
  .profile .name {
    font-size: 16px;
    gap: 8px;
    align-items: flex-start;
  }
  
  .profile .position {
    font-size: 12px;
    margin-top: 5px;
    align-self: flex-start;
  }

  .profile .point-check-img {
    width: 100px;
  }
  
  .comments {
    padding: 6px 12px;
    font-size: 12px;
    line-height: 22px;
  }
  
  .stars {
    margin-bottom: 8px;
  }
}

@media (max-width: 871px) {
.footer-container{
  justify-content: center !important;
}
.footer-right{
  place-items: center ;
}
}

/* Mobile Small (320px and down) */
@media (max-width: 320px) {
  .testimonial-section {
    gap: 20px;
    margin-top: 30px;
    padding: 0 5px;
  }
  
  .testimonial {
    padding: 15px;
    border-radius: 30px 10px 30px 30px;
    min-height: 180px;
  }
  
  .quote {
    font-size: 14px;
    letter-spacing: 0.5px;
    line-height: 24px;
  }
  
  .profile .name {
    font-size: 16px;
    gap: 6px;
    flex-direction: column;
  }
  
  .profile .position {
    font-size: 12px;
  }
  
  .comments {
    padding: 5px 10px;
    font-size: 12px;
    line-height: 20px;
  }
}
/* footer */
.footer {
    background-color: #f7f8f9;
    padding: 40px;
    text-align: center;
    margin: 0;
    padding: 100px 0;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap; 

}
.footer-left{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.partners{
    margin-top: 32px;
}

.top-links {
  display: flex;
  gap: 15px;
  font-size: 18px;
  line-height: 30px;
  color: #333333 !important;
  font-weight: bold;
}
.top-links a{
    color: #333333 !important;
}

.bottom-links{
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  margin-top: 22px;
  display: flex;
  gap: 15px;
  font-size: 18px;
  line-height: 30px;
  color: #929292 !important;
}

.bottom-links a{
  color: #929292 !important;
}
.copyright{
    margin-top: 66px ;
    font-size: 16px;
    line-height: 27px;
    color: #929292;
}
/* Responsive Styles */
@media screen and (max-width: 1024px) {
    .footer {
        padding: 80px 20px;
    }
    
    .top-links {
        font-size: 16px;
        gap: 12px;
          justify-self: flex-end;
    }
    
    .bottom-links {
        font-size: 16px;
        gap: 12px;
    }
}

@media screen and (max-width: 768px) {
    .footer {
        padding: 60px 20px;
    }
    
    .footer-container {
      
        flex-direction: column;
        align-items: flex-start;
        gap: 40px;
    }
    
    .footer-left {
        width: 100%;
        align-items: center;
    }
    
    .footer-right {
        width: 100%;
    }
    
    .top-links {
    
        gap: 10px;
        font-size: 16px;
       justify-self: center;
       
    }
    
    .bottom-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
        font-size: 16px;
    }
    
    .copyright {
        margin-top: 40px;
        font-size: 14px;
        line-height: 24px;
    }
}

@media screen and (max-width: 480px) {
    .footer {
        padding: 40px 15px;
    }
    
    .footer-container {
        gap: 30px;
    }
    
    .logo-img, .globalcast-img {
        max-width: 100%;
        height: auto;
    }
    
    .partners {
        margin-top: 20px;
    }
    
    .top-links {
        flex-direction: column;
        gap: 8px;
        font-size: 14px;
        line-height: 26px;
    }
    
    .bottom-links {
        flex-direction: column;
        gap: 8px;
        font-size: 14px;
        line-height: 26px;
        margin-top: 16px;
    }
    
    .copyright {
        margin-top: 10px;
        font-size: 12px;
        line-height: 20px;
    }
}