/* style.css - Main styles for Thakkar Trading Company */
body {
    font-family: Manrope, sans-serif;
    margin: 0;
    padding: 0;
    background: #ffffff;
    color: #222;
    
}
*, *::before, *::after {
    box-sizing: border-box;
}

/* --- HEADER STYLES --- */
header {
    background: #fff;
    color: #1a237e;
    padding: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    position: sticky;
    top: 0;
    z-index: 1000;
    animation: slideDown 0.7s cubic-bezier(.77,0,.18,1);
    transition: transform 0.4s cubic-bezier(.77,0,.18,1), opacity 0.3s;
}
@keyframes slideDown {
    from { transform: translateY(-60px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
header.hide-header {
    transform: translateY(-100%);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(.77,0,.18,1), opacity 0.3s;
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1100px;
    margin: 0 auto;
    padding: 1px 20px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}
.logo img {
    height: 100%;
    width: 134px;
    animation: popIn 0.7s cubic-bezier(.77,0,.18,1);
}
@keyframes popIn {
    from { transform: scale(0.7); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}
nav {
    display: flex;
    gap: 30px;
    align-items: center;
    position: relative;
}
.nav-item {
    position: relative;
    display: flex;
    align-items: center;
}
.has-submenu > a {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}
.submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 210px;
    background: #fff;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    border-radius: 8px;
    padding: 10px 0;
    z-index: 1001;
    flex-direction: column;
    animation: fadeInSubmenu 0.3s cubic-bezier(.77,0,.18,1);
}
@keyframes fadeInSubmenu {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
.nav-item.has-submenu:hover .submenu,
.nav-item.has-submenu:focus-within .submenu {
    display: flex;
}
.submenu a {
    display: block;
    padding: 10px 24px;
    color: #1a237e;
    font-weight: 500;
    border-radius: 6px;
    margin: 2px 10px;
    background: none;
    transition: background 0.25s, color 0.2s, box-shadow 0.2s;
    position: relative;
    cursor: pointer;
}
.submenu a:hover {
    color: #2f2f2f;
    background: linear-gradient(90.85deg, #ffeada 2.92%, #f5f0e5 61.17%, #f4f2ee 98.14%);
    box-shadow: 0 2px 8px rgba(26,35,126,0.08);
}
nav a {
    color: #2f2f2f;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.08rem;
    padding: 8px 16px;
    border-radius: 6px;
    transition: color 0.2s, transform 0.2s;
    position: relative;
    z-index: 1;
    animation: fadeInMenu 0.7s cubic-bezier(.77,0,.18,1);
    overflow: hidden;
}
nav a::after {
    content: '';
    display: block;
    height: 3px;
    width: 0;
    background: linear-gradient(90deg, #0063b1, #db0721, #ffc638);
    border-radius: 2px;
    transition: width 0.3s cubic-bezier(.77,0,.18,1);
    position: absolute;
    left: 16px;
    bottom: 4px;
    z-index: 2;
}
nav a:hover {
    color: #1a237e;
    background: none;
    transform: translateY(-2px) scale(1.07);
}
nav a:hover::after {
    width: calc(100% - 32px);
}
@keyframes fadeInMenu {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}
.social-icons {
    display: flex;
    gap: 26px;
    align-items: center;
}
.social-icons a {
    color: #2f2f2f;
    font-size: 1.3rem;
    transition: color 0.2s, transform 0.2s;
}
.social-icons a:hover {
    color: #e4b822;
    transform: scale(1.15);
}
@media (max-width: 800px) {
    .header-inner {
        flex-direction: column;
        gap: 10px;
        padding: 10px 6px;
    }
    nav {
        gap: 14px;
    }
}

.sub-header {
    background: #e4b822;
    color: #1d1d1f;
    font-size: 0.98rem;
    padding: 7px 0;
    width: 100%;
    box-shadow: 0 1px 4px rgba(0,0,0,0.03);
    z-index: 1100;
}
.sub-header-inner {
    max-width: 1377px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: center;
    padding: 0 20px;
}
.sub-header-left {
    display: flex;
    gap: 18px;
    align-items: center;
}
.sub-header-right {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-left: auto;
}
.sub-header i {
    margin-right: 6px;
    color: #2f2f2f;
}
.sub-header a {
    color: #2f2f2f;
    text-decoration: none; /* optional: removes underline */
}

.sub-header a:hover {
    color: #000000; /* optional: darker color on hover */
}
@media (max-width: 768px) {
    .logo-bni {
        margin-right: 0px !important;
    }
    .sub-header-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
        padding: 0 8px;
    }
    .sub-header-left, .sub-header-right {
        width: 100%;
        justify-content: flex-start;
        margin-left: 0;
        margin-bottom: 4px;
    }
}
.logo-bni {
  margin-right: -161px;
}
.logo-bni img {
  width: 121px;
}
/* HAMBURGER STYLE */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1100;
}
.mobile-menu-toggle span {
  width: 22px;
  height: 2px;
  background: #1a237e;
  display: block;
  transition: all 0.3s ease;
}
/* TOGGLE VISIBILITY ON MOBILE */
@media (max-width: 800px) {
  .mobile-menu-toggle {
      display: flex;
  }

  nav,
  .social-icons,
  .sub-header {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    padding: 10px 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    animation: dropdownSlide 0.3s ease forwards;
    z-index: 999;
  }

  nav.open,
  .social-icons.open,
  .sub-header.open {
      display: flex;
      flex-direction: column;
      width: 100%;
      background: #fff;
      padding: 10px 16px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  }

  .header-inner {
      flex-direction: row;
      justify-content: space-between;
      align-items: center;
  }
}
/*.download-btn {*/
/*  display: inline-flex;*/
/*  align-items: center;*/
/*  gap: 8px;*/
/*  padding: 8px 14px;*/
/*  background: linear-gradient(90deg, #0063b1, #db0721, #ffc638);*/
/*  color: #fff;*/
/*  text-decoration: none;*/
/*  font-weight: 600;*/
/*  font-size: 0.95rem;*/
/*  border-radius: 8px;*/
/*  box-shadow: 0 4px 12px rgba(0,0,0,0.15);*/
/*  transition: transform 0.2s ease, box-shadow 0.2s ease;*/
/*}*/

/*.download-btn svg {*/
/*  width: 18px;*/
/*  height: 18px;*/
/*}*/

/*.download-btn:hover {*/
/*  transform: translateY(-2px);*/
/*  box-shadow: 0 6px 16px rgba(0,0,0,0.2);*/
/*}*/
.botao {
  width: 188px;
  height: 45px;
  border-radius: 20px;
  border: none;
  box-shadow: 1px 1px rgb(218 134 134 / 37%);
  padding: 5px 10px;
  /*background: rgb(47,93,197);*/
  background: linear-gradient(160deg, rgb(228 184 34) 0%, rgb(228 184 34) 5%, rgb(228 184 34) 11%, rgb(236 28 36) 57%, rgb(215 25 33) 71%);
  color: #fff;
  font-family: Roboto, sans-serif;
  font-weight: 505;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  filter: drop-shadow(0 0 10px rgba(218, 134, 134, 0.568));
  transition: .10s linear;
}

.botao .mysvg {
  display: none;
}

.botao:hover {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  transition: .10s linear;
}

.botao:hover .texto {
  display: none;
}

.botao:hover .mysvg {
  display: inline;
}

.botao:hover::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -0px;
  width: 100%;
  height: 100%;
  border: 3.5px solid transparent;
  border-top: 3.5px solid #fff;
  border-right: 3.5px solid #fff;
  border-radius: 50%;
  animation: animateC 2s linear infinite;
}

@keyframes animateC {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}
@media (max-width: 768px) {
  .botao {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    padding: 0;
  }

  .botao .texto {
    display: none;
  }

  .botao .mysvg {
    display: inline;
  }
}

.banner-video-section {
  position: relative;
  width: 100%;
  height: 638px;
  overflow: hidden;
  margin-bottom: 32px;
}
.banner-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
}
.banner-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  padding: 0 7vw;
  z-index: 2;
  flex-wrap: wrap;
}
.banner-card {
  background: rgba(255,255,255,0.97);
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.10);
  padding: 0px 42px 28px 28px;
  min-width: 270px;
  max-width: 445px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  animation: popIn 0.8s cubic-bezier(.77,0,.18,1);
}
.banner-card h2 {
  font-size: 34px;
  margin-bottom: 18px;
  color: #e4b822;
  font-weight: 700;
}
.banner-text {
  color: #fff;
  text-align: right;
  max-width: 480px;
  margin-right: -44px;
  animation: fadeInMenu 0.9s cubic-bezier(.77,0,.18,1);
}
.banner-text h1 {
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: 1px;
}
.banner-text p {
  font-size: 1.18rem;
  font-weight: 400;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  width: 100%;
  margin-top: 10px;
}
@media (min-width: 500px) {
  .service-grid {
      grid-template-columns: repeat(3, 1fr);
  }
}
.service-grid-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  background: #f5f0e5;
  border-radius: 10px;
  padding: 18px 8px 10px 8px;
  text-align: center;
  text-decoration: none;
  color: #222;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.18s;
  min-width: 90px;
  min-height: 120px;
}
.service-grid-item img {
  width: 65px;
  height: 70px;
  object-fit: contain;
  margin-bottom: 10px;
  transition: transform 0.2s;
}
.service-grid-item span {
  font-size: 1.01rem;
  font-weight: 500;
  margin-top: 2px;
}
.service-grid-item:hover {
  box-shadow: 0 4px 16px rgba(26,35,126,0.10);
  transform: translateY(-3px) scale(1.04);
}
.service-grid-item:hover img {
  transform: scale(1.13) rotate(-6deg);
}

/* Tablet and below */
@media (min-width: 768px) and (max-width: 1024px) {
  .banner-overlay {
      flex-direction: column;
      align-items: flex-start;
      justify-content: center;
      padding: 0 4vw;
  }
  .banner-card {
    margin-bottom: 24px;
    max-width: 49%;
  }
  .service-grid-item span {
    font-size: 13px;
  }
  .banner-text {
      text-align: left;
      margin: 0;
      max-width: 100%;
  }
  .banner-text h1 {
      font-size: 1.8rem;
  }
}

/* Mobile below 600px */
@media (max-width: 768px) {
  .banner-overlay {
      /* flex-direction: column; */
      padding: 12px 16px;
      text-align: center;
  }

  .banner-card {
      max-width: 100%;
      padding: 16px;
      border-radius: 14px;
  }

  .banner-card h2 {
      font-size: 20px;
      margin-bottom: 10px;
  }

  .service-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 10px;
  }

  .service-grid-item {
      padding: 10px 6px;
      min-height: auto;
  }

  .service-grid-item img {
      width: 40px;
      height: 40px;
  }

  .service-grid-item span {
      font-size: 0.9rem;
  }

  .banner-text {
      margin-right: 33px;
      padding: 0 12px;
      max-width: 100%;
      text-align: center;
  }

  .banner-text h1 {
      font-size: 1.1rem;
      line-height: 1.4;
  }
}

.about-section {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto 0px auto;
    padding: 36px 32px 36px 32px;
    background: #fff;
}
.about-left {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 320px;
}
.about-label {
    color: #db0721;
    font-weight: 700;
    font-size: 1.08rem;
    margin-bottom: 12px;
}
.about-title {
    position: relative;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 18px;
    line-height: 1.35;
    letter-spacing: -1px;
    /*background: linear-gradient(90deg, #0063b1, #db0721, #ffc638);*/
     background: linear-gradient(90deg, #db0721, #db0721, #db0721);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    display: inline-block;
    overflow: hidden;
}
.about-title::after {
  content: '';
  position: absolute;
  top: 0;
  left: -60%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.7) 50%, rgba(255,255,255,0) 100%);
  transform: skewX(-20deg);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s;
}
.about-title:hover::after {
  animation: flash-light 0.9s linear;
  opacity: 1;
}
.about-desc {
    font-size: 1.18rem;
    color: #222;
    margin-bottom: 28px;
    line-height: 1.5;
    text-align: justify;
}
.about-btn {
  display: inline-block;
  margin-top: 18px;
  margin-right: 261px;
  padding: 12px 28px;
  font-weight: 600;
  font-size: 1.08rem;
  color: #000000;
  background: linear-gradient(90.85deg, #ffeada 2.92%, #f5f0e5 61.17%, #f4f2ee 98.14%);
  border: none;
  border-radius: 32px;
  box-shadow: 0 4px 18px rgba(0,99,177,0.08);
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: background 0.3s, transform 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}
.about-btn:hover, .about-btn:focus {
  background: linear-gradient(90.85deg, #f4f2ee 100.14%, #f5f0e5 61.17%, #ffeada 2.92%);
  color: #000000;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 6px 24px rgba(219,7,33,0.13);
  text-decoration: none;
}
.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0px 32px;
    margin-top: 10px;
}
.about-stat {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 17px 0px;
}
.stat-main {
    color: #0063b1;
    font-size: 1.45rem;
    font-weight: 800;
    margin-bottom: 2px;
}
.stat-label {
    color: #222;
    font-size: 1.01rem;
    font-weight: 500;
    opacity: 0.8;
}
.about-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-right img {
    width: 500px;
    max-width: 100%;
    border-radius: 22px;
    object-fit: cover;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
}
@media (max-width: 1000px) {
    .about-section {
        flex-direction: column;
        gap: 24px;
        padding: 24px 8px;
    }
    .about-right {
        justify-content: flex-start;
    }
    .about-right img {
        width: 100%;
        max-width: 420px;
    }
    .about-title {
        font-size: 2.1rem;
    }
}
@media (max-width: 600px) {
    .about-left{
      padding: 0px 12px;
    }
    .about-section {
        padding: 12px 12px;
    }
    .about-btn{
      margin-right: 9px;
    }
    .about-title {
        font-size: 30px;
    }
    .about-stats {
        grid-template-columns: 1fr 1fr;
        gap: 12px 10px;
        padding: 0px 12px;
    }
    .about-right img {
        width: 381px;
    }
    .about-slide {
      position: relative !important;
    }
    .about-right {
      padding: 0px 12px;
    }
    .about-slider {
      height: 356px;
    }
}

.about-slider {
    position: relative;
    width: 500px;
    max-width: 100%;
    height: 689px;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
    background: #f5f0e5;
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-slide {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 22px;
    opacity: 0;
    transition: opacity 0.7s cubic-bezier(.77,0,.18,1);
    z-index: 1;
}
.about-slide.active {
    opacity: 1;
    z-index: 2;
}
@media (max-width: 1000px) {
    .about-slider {
        width: 100%;
        height: 320px;
    }
}

.services-slider-section {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0px;
    max-width: 100vw;
    margin: 0 auto 48px auto;
    padding: 36px 32px 36px 32px;
    background: #f5f0e5;
    box-shadow: 0 2px 16px rgba(0,0,0,0.04);
    overflow: hidden;
}
.services-slider-left {
    flex: 1.1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-width: 320px;
    max-width: 371px;
    padding-top: 170px;
}
.services-logo {
    width: 120px;
    margin-bottom: 18px;
    border-radius: 12px;
}
.services-slider-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 12px;
    line-height: 1.08;
    position: relative;
    background: linear-gradient(90deg, #0063b1, #db0721, #ffc638);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    display: inline-block;
    overflow: hidden;
}
.services-slider-title::after {
  content: '';
  position: absolute;
  top: 0;
  left: -60%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.7) 50%, rgba(255,255,255,0) 100%);
  transform: skewX(-20deg);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s;
}
.services-slider-title:hover::after {
  animation: flash-light 0.9s linear;
  opacity: 1;
}
.services-slider-desc {
    font-size: 1.18rem;
    color: #222;
    margin-bottom: 32px;
    line-height: 1.5;
}
.services-slider-btn {
    display: inline-block;
    background: #fff;
    color: #222;
    font-weight: 600;
    font-size: 1.08rem;
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    border: 2px solid #a5734f;
    transition: background 0.2s, color 0.2s, border 0.2s;
    margin-bottom: 12px;
    margin-right: 146px;
}
.services-slider-btn:hover {
    background: #a5734f;
    color: #fff;
    border: 2px solid #a5734f;
}
.services-slider-right {
    flex: 2.5;
    position: relative;
    width: 90%;
    min-width: 0;
    margin-left: 77px;
}
.services-slider {
    display: flex;
    gap: 28px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 18px;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
}
.services-slider::-webkit-scrollbar {
    display: none;
}
.service-card {
    min-width: 268px;
    max-width: 340px;
    background: #f5f0e5;
    border-radius: 18px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: box-shadow 0.2s, transform 0.18s;
    scroll-snap-align: start;
}
.service-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 18px 18px 0 0;
    transition: transform 0.3s ease;
    transform: scale(1.05); /* Slight zoom by default */
}
.service-card img:hover {
    transform: scale(1); /* Zoom out on hover */
}
.service-card-info {
    background: rgba(255,255,255,0.92);
    padding: 0px 18px 0px 18px;
    border-radius: 0 0 18px 18px;
    position: relative;
    min-height: 90px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.service-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #222;
    margin: 17px 0 17px 0;
}
.service-card-desc {
    font-size: 1.01rem;
    color: #555;
    margin-bottom: 8px;
    padding-right: 50px;
}
.service-card-link {
    position: absolute;
    right: 18px;
    bottom: 26px;
    font-size: 1.5rem;
    color: #a5734f;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.service-card-link a{
  text-decoration: none;
  color: #a5734f;
  transition: color 0.2s;
}
.service-card-link a:hover {
  color: #0063b1;
}
.slider-arrows {
    position: absolute;
    right: 12px;
    bottom: -36px;
    display: flex;
    gap: 12px;
    z-index: 10;
}
.slider-arrow {
    background: #fff;
    border: 1.5px solid #a5734f;
    color: #a5734f;
    border-radius: 50%;
    width: 29px;
    height: 38px;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border 0.2s;
}
.slider-arrow:hover {
    background: #a5734f;
    color: #fff;
    border: 1.5px solid #a5734f;
}
@media (max-width: 1100px) {
    .services-slider-section {
        flex-direction: column;
        gap: 24px;
        padding: 24px 8px;
    }
    .services-slider-left {
        max-width: 100%;
        margin-right: 0;
        align-items: flex-start;
    }
    .services-slider {
        gap: 18px;
    }
}
@media (max-width: 700px) {
    .service-card {
        min-width: 220px;
        max-width: 240px;
    }
    .service-card img {
        height: 120px;
    }
    .services-slider-section {
        padding: 10px 2px;
    }
}

.why-choose-slider-section {
    background: #7ad3c1;
    border-radius: 18px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.04);
    margin: 64px auto 48px auto;
    padding: 48px 32px 48px 32px;
    max-width: 85vw;
    overflow: hidden;
}
.why-choose-slider-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 18px;
    text-align: left;
    letter-spacing: -1px;
    line-height: 1.35;
    position: relative;
    /*background: linear-gradient(90deg, #0063b1, #db0721, #ffc638);*/
      background: linear-gradient(90deg, #db0721, #db0721, #db0721);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    display: inline-block;
    overflow: hidden;
}
.why-choose-slider-title::after {
  content: '';
  position: absolute;
  top: 0;
  left: -60%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.7) 50%, rgba(255,255,255,0) 100%);
  transform: skewX(-20deg);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s;
}
.why-choose-slider-title:hover::after {
  animation: flash-light 0.9s linear;
  opacity: 1;
}
.why-choose-slider-desc {
    font-size: 1.18rem;
    color: #fff;
    margin-bottom: 38px;
    text-align: left;
    line-height: 1.5;
    max-width: 900px;
}
.why-choose-slider-wrapper {
    position: relative;
    width: 100%;
}
.why-choose-slider {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 18px;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
}
.why-choose-slider::-webkit-scrollbar {
    display: none;
}
.why-choose-card {
    min-width: 370px;
    max-width: 400px;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 32px 28px 28px 28px;
    position: relative;
    transition: box-shadow 0.2s, transform 0.18s;
    scroll-snap-align: start;
}
.why-choose-icon {
    width: 54px;
    height: 54px;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.why-choose-icon img {
    width: 100px;
    height: 100px;
    object-fit: contain;
}
.why-choose-card-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #0063b1;
    margin-bottom: 18px;
    line-height: 1.2;
}
.why-choose-card-title .highlight {
    background: #1a237e;
    color: #fff;
    border-radius: 5px;
    padding: 2px 8px;
    margin-right: 4px;
    font-size: 1.1rem;
    font-weight: 800;
}
.why-choose-card-points {
    list-style: none;
    color: #222;
    font-size: 1.08rem;
    margin: 0;
    padding-left: 0;
    line-height: 1.7;
}
.why-choose-card-points li {
    margin-bottom: 10px;
    padding-left: 0;
}
.slider-arrows.why-choose-arrows {
    position: absolute;
    right: 12px;
    top: 28%;
    transform: translateY(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}
.slider-arrow-why-choose-arrows {
    background: #fff;
    border: 1.5px solid #a5734f;
    color: #a5734f;
    border-radius: 50%;
    width: 29px;
    height: 38px;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border 0.2s;
}
.slider-arrow-why-choose-arrows:hover {
    background: #f5f0e5;
    color: #000000;
    border: 1.5px solid #f5f0e5;
}

@media (max-width: 1100px) {
    .why-choose-slider {
        gap: 18px;
    }
    .why-choose-card {
        min-width: 270px;
        max-width: 320px;
        padding: 18px 10px 16px 10px;
    }
}
@media (max-width: 700px) {
    .why-choose-slider-section {
        padding: 18px 12px;
        margin: 0 auto 0 auto;
    }
    .why-choose-slider-title {
        font-size: 1.5rem;
    }
    .why-choose-card {
        min-width: 70vw;
        max-width: 98vw;
        padding: 26px 28px;
    }
    .site-footer {
      padding: 56px 12px 0 12px !important;
    }
}
.site-footer {
    background: #f5f0e5;
    color: #000000;
    padding: 56px 0 0 0;
    font-size: 1.05rem;
    margin-top: 0;
}
.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px 32px 32px;
    gap: 48px;
}
.footer-col {
    flex: 1 1 0;
    min-width: 180px;
    margin-right: 24px;
}
.footer-logo-col {
    min-width: 260px;
    margin-right: 48px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.footer-logo {
  width: 186px;
  margin-top: -29px;
  margin-bottom: 30px;
}
.footer-company {
    margin-bottom: 18px;
    line-height: 1.6;
}
.footer-title {
    font-weight: 700;
    font-size: 1.18rem;
    margin-bottom: 12px;
    border-bottom: 1px solid #2361a9;
    padding-bottom: 6px;
}
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  line-height: 1.5;
}
.footer-links li i {
  margin-right: 10px;
  min-width: 20px; /* optional: helps align all icons neatly */
  font-size: 16px;
}
.footer-links a {
    color: #000000;
    text-decoration: none;
    transition: color 0.2s;
}
.footer-links a:hover {
    color: #ffc638;
}
.footer-contact {
    display: block;
    margin-bottom: 4px;
    color: #fff;
    font-size: 1.01rem;
}
.footer-social {
    margin-top: 10px;
    display: flex;
    gap: 18px;
}
.footer-social a {
    color: #000000;
    font-size: 1.3rem;
    transition: color 0.2s, transform 0.2s;
}
.footer-social a:hover {
    color: #ffc638;
    transform: scale(1.15);
}
.footer-bottom {
    text-align: center;
    padding: 18px 0 12px 0;
    background: #0a4d99;
    color: #fff;
    font-size: 1.01rem;
    border-top: 1px solid #2361a9;
    margin-top: 0;
}
.footer-bottom a {
    color: #fff;
    text-decoration: none;
    transition: color 0.2s;
}
.footer-bottom a:hover {
    color: #ffc638;
}
@media (max-width: 1000px) {
    .footer-main {
        flex-direction: column;
        gap: 18px;
        padding: 0 12px 18px 12px;
    }
    .footer-col, .footer-logo-col {
        margin-right: 0;
        min-width: 0;
        align-items: flex-start;
    }
    .footer-logo-col {
        margin-bottom: 18px;
    }
}

.blog-section {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1px;
    max-width: 100vw;
    margin: 0 auto 48px auto;
    padding: 36px 32px 36px 87px;
    background: #fff;
    overflow: hidden;
}
.blog-left {
    flex: 1.1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-width: 320px;
    max-width: 400px;
    margin-right: -138px;
    padding-top: 219px;
}
.blog-title-main {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.35;
    position: relative;
    /*background: linear-gradient(90deg, #0063b1, #db0721, #ffc638);*/
     background: #db0721;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    display: inline-block;
    overflow: hidden;
}
.blog-title-main::after {
  content: '';
  position: absolute;
  top: 0;
  left: -60%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.7) 50%, rgba(255,255,255,0) 100%);
  transform: skewX(-20deg);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s;
}   
.blog-title-main:hover::after {
  animation: flash-light 0.9s linear;
  opacity: 1;
}
.blog-right {
    flex: 4.5;
    position: relative;
    width: 100%;
    min-width: 0;
}
.blog-slider {
    display: flex;
    gap: 37px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 18px;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
}
.blog-slider::-webkit-scrollbar {
    display: none;
}
.blog-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    min-width: 370px;
    max-width: 400px;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0 0 24px 0;
    position: relative;
    transition: box-shadow 0.2s, transform 0.18s;
    scroll-snap-align: start;
}
.blog-image {
    width: 100%;
    height: 220px;
    position: relative;
    overflow: hidden;
    border-radius: 18px 18px 0 0;
    background: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
}
.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 18px 18px 0 0;
}
.blog-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #000000;
    margin: 24px 24px 10px 24px;
    line-height: 1.5;
}
.blog-excerpt {
    font-size: 1.08rem;
    color: #222;
    margin: 0 24px 10px 24px;
    min-height: 60px;
    line-height: 1.7;
}
.blog-meta {
    font-size: 0.98rem;
    color: #a5734f;
    margin: 0 24px;
}
.blog-arrows {
    position: absolute;
    right: 12px;
    bottom: -32px;
    display: flex;
    gap: 12px;
    z-index: 10;
}
.blog-arrow {
    background: #fff;
    border: 1.5px solid #a5734f;
    color: #a5734f;
    border-radius: 50%;
    width: 29px;
    height: 38px;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border 0.2s;
}
.blog-arrow:hover {
    background: #a5734f;
    color: #fff;
    border: 1.5px solid #a5734f;
}
.blog-btn {
  display: inline-block;
  margin: auto 195px 10px 21px;
  padding: 12px 28px;
  font-weight: 600;
  font-size: 1.08rem;
  color: #000000;
  background: linear-gradient(90.85deg, #ffeada 2.92%, #f5f0e5 61.17%, #f4f2ee 98.14%);
  border: none;
  border-radius: 32px;
  box-shadow: 0 4px 18px rgba(0,99,177,0.08);
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: background 0.3s, transform 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}
.blog-btn:hover, .blog-btn:focus {
  background: linear-gradient(90.85deg, #f4f2ee 99.14%, #f5f0e5 61.17%, #ffeada 2.92%);
  color: #000000;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 6px 24px rgba(219,7,33,0.13);
  text-decoration: none;
}
@media (max-width: 1100px) {
    .blog-slider {
        gap: 18px;
    }
    .blog-btn {
        margin: 18px 10px 0 10px;
    }
}
@media (max-width: 700px) {
    .blog-section {
        flex-direction: column;
        gap: 18px;
        padding: 35px 12px;
        margin-top: -6px;
    }
    .blog-left {
      padding-top: 0px;
      text-align: center;
        width: 100%;
    }
    .blog-title-main {
        font-size: 1.5rem;
    }
    .blog-card {
        min-width: 90vw;
        max-width: 98vw;
    }
}

.all-blogs-section {
    max-width: 1300px;
    margin: 0 auto 48px auto;
    padding: 48px 16px 24px 16px;
}
.all-blogs-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #222;
    margin-bottom: 32px;
    text-align: left;
}
.all-blogs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 36px;
}
@media (max-width: 900px) {
    .all-blogs-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .all-blogs-title {
        font-size: 1.7rem;
    }
}

.page-banner {
    position: relative;
    min-height: 400px;
    width: 100%;
    overflow-x: hidden;
}
.page-banner-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,31%);
    z-index: 1;
}
.page-banner-overlay1 {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.45);
  z-index: 1;
}
.banner-content-main1{
  flex: 0 1 0;
  min-width: 1000px;
  margin-top: 155px;
}
.page-banner-content1, .banner-flex1 {
  position: relative;
}
.page-banner-content1 h1{
  font-size: 3rem;
  font-weight: 700;
  margin: 0 0 18px 0;
  line-height: 1.1;
}
.page-banner-breadcrumb {
    position: absolute;
    top: 0;
    left: 0;
    /* width: 100%; */
    padding: 28px 0 0 8vw;
    z-index: 3;
    font-size: 1.08rem;
    color: #fff;
    opacity: 0.92;
    font-weight: 400;
    letter-spacing: 0.01em;
    pointer-events: none;
}
.page-banner-breadcrumb span {
    background: rgba(0,0,0,0.12);
    padding: 2px 16px 2px 8px;
    border-radius: 0 16px 16px 0;
}
.page-banner-content,
.banner-flex {
    width: 100%;
    height: 100%;
    max-width: 100vw;
    position: relative;
    z-index: 2;
    color: #fff;
    padding: 0 0 0 8vw;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
}
.page-banner-content h1 {
    font-size: 4rem;
    font-weight: 700;
    margin: 0 0 18px 0;
    line-height: 1.1;
}
.page-banner-content p {
    font-size: 1.35rem;
    margin: 0 0 10px 0;
    font-weight: 400;
}
@media (max-width: 900px) {
    .page-banner {
        min-height: 200px;
        background-position: right !important;
    }
    .page-banner-content,
    .banner-flex {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 4vw;
    }
    .banner-flex{
      min-height: auto;
    }
    .page-banner-breadcrumb {
        padding-left: 4vw;
        padding-top: 16px;
        font-size: 0.98rem;
    }
    .page-banner-content h1 {
        font-size: 2.3rem;
        margin-top: -38px;
    }
}
@media (max-width: 768px) {
  .banner-flex{
    min-height: auto !important;
  }
  .page-banner {
        min-height: 600px;
        background-position: right !important;
  }
}
/* About Hero Section - Centered Layout & Vertical Circles */
.about-hero-section {
  width: 100%;
  background: #fff;
  position: relative;
  overflow: hidden;
}
.about-hero-container.centered {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 5vw;
  min-height: 480px;
}
.about-hero-left {
  flex: 1 1 60%;
  z-index: 2;
  text-align: center;
  padding-right: 40px;
}
.about-hero-overline {
  color: #db0721;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}
.about-hero-title {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 24px;
  margin-top: 0px;
  color: #222;
  line-height: 1.1;
  letter-spacing: -.48px;
  padding: 0px 108px;
}
.about-hero-desc {
  font-size: 1.18rem;
  color: #222;
  line-height: 1.6;
  margin: 0 auto;
  max-width: 762px;
}
.about-hero-right {
  flex: 0 0 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  min-height: 400px;
  position: relative;
}
.about-circles-vertical {
  position: relative;
  width: 160px;
  height: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.about-circle {
  border-radius: 50%;
  background: #ffc638;
  transition: all 0.8s cubic-bezier(.77,0,.18,1);
  opacity: 1;
  position: absolute;
  left: 0; right: 0;
  margin: 0 auto;
}
.about-circle-main {
  width: 160px;
  height: 160px;
  top: 130px;
  z-index: 2;
}
.about-circle-1, .about-circle-2 {
  width: 160px;
  height: 160px;
  opacity: 0;
  z-index: 1;
}
.about-circle-1 { top: 0; }
.about-circle-2 { top: 260px; }

/* When split, hide main, show three vertically */
.about-circles-vertical.split .about-circle-main {
  opacity: 0;
  transform: scale(0.7);
}
.about-circles-vertical.split .about-circle-1,
.about-circles-vertical.split .about-circle-2 {
  opacity: 1;
  transform: scale(1.05);
}

/* Centered Stats Bar */
.about-hero-stats.centered-stats {
  display: flex;
  justify-content: center;
  align-items: stretch;
  background: #0063b1;
  color: #fff;
  border-radius: 24px;
  margin: 12px auto 26px auto;
  max-width: 1100px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  overflow: hidden;
}
.aboutus-stat {
  flex: 1 1 0;
  padding: 32px 12px 24px 12px;
  font-size: 1.15rem;
  border-right: 1px solid rgba(255,255,255,0.18);
  display: flex;
  flex-direction: column;
  text-align: center;
}
.aboutus-stat:last-child {
  border-right: none;
}
.about-stat-main {
  font-size: 2.2rem;
  font-weight: 700;
  color: #ffc638;
  display: block;
  margin-bottom: 6px;
}
@media (max-width: 900px) {
  .about-hero-container.centered {
    flex-direction: column;
    min-height: unset;
    padding: 0 2vw;
  }
  .about-hero-left {
    padding-right: 0;
  }
  .about-hero-right {
    min-width: 160px;
    min-height: 160px;
    margin-top: 32px;
  }

  .aboutus-stat {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.18);
    padding: 20px 8px 16px 8px;
    font-size: 1rem;
  }
  .aboutus-stat:last-child {
    border-bottom: none;
  }
  .about-stat-main {
    font-size: 1.3rem;
  }
}
@media (max-width: 768px) {
  .about-hero-container.centered {
    flex-direction: column;
    padding: 0;
    min-height: unset;
  }

  .about-hero-left {
    padding-right: 0;
    text-align: center;
  }

  .about-hero-title {
    font-size: 30px;
    line-height: 1.3;
    padding: 0 12px;
    margin-bottom: 16px;
  }

  .about-hero-overline {
    font-size: 1rem;
    margin-bottom: 8px;
  }

  .about-hero-desc {
    font-size: 1.18rem;
    line-height: 1.6;
    padding: 0 12px;
    margin: 0 auto;
  }

  .about-hero-right {
    display: none; /* Optional: hide decorative circle section for cleaner mobile view */
  }

  .about-hero-stats.centered-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-radius: 16px;
    margin: 20px 16px;
    overflow: hidden;
  }

  .aboutus-stat {
    font-size: 0.95rem;
    padding: 16px 10px;
    border-bottom: 1px solid rgba(255,255,255,0.18);
    border-right: 1px solid rgba(255,255,255,0.18);
  }

  .aboutus-stat:nth-child(2n) {
    border-right: none;
  }

  .aboutus-stat:nth-last-child(-n+2) {
    border-bottom: none;
  }

  .about-stat-main {
    font-size: 1.5rem;
    margin-bottom: 4px;
  }
}

@media (max-width: 600px) {
  .about-hero-container.centered {
    padding: 0;
  }

  .about-hero-left {
    text-align: center;
  }

  .about-hero-title {
    font-size: 30px;
    padding: 0 12px;
  }

  .about-hero-overline {
    font-size: 0.9rem;
    margin-bottom: 8px;
  }

  .about-hero-desc {
    font-size: 1.18rem;
    line-height: 1.5;
    padding: 0 12px;
    margin: 0;
  }

  .about-hero-right {
    display: none; /* hide right circle section on mobile for cleaner view */
  }

  .about-hero-stats.centered-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: 16px;
    margin: 16px 16px 26px 16px;
    overflow: hidden;
  }

  .aboutus-stat {
    font-size: 0.95rem;
    padding: 16px 6px;
    border-right: 1px solid rgba(255,255,255,0.18);
    border-bottom: 1px solid rgba(255,255,255,0.18);
  }

  .aboutus-stat:nth-child(2n) {
    border-right: none;
  }

  .aboutus-stat:nth-child(5),
  .aboutus-stat:nth-child(6) {
    border-bottom: none;
  }

  .about-stat-main {
    font-size: 1.4rem;
  }
}


/* About Hero Section - Absolute Circles on Right */
.about-hero-section.about-hero-relative {
  position: relative;
  overflow: visible;
}
.about-hero-circles-absolute {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 260px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  pointer-events: none;
  z-index: 2;
}
.about-circles-vertical-img {
  position: relative;
  width: 240px;
  height: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.about-circle-img {
  position: absolute;
  left: 0; right: 0;
  margin: 0 auto;
  width: 193px;
  height: 201px;
  opacity: 1;
  transition: transform 0.8s cubic-bezier(.77,0,.18,1), opacity 0.5s;
  z-index: 1;
  pointer-events: none;
  top: 200px;
  transform: translateY(0);
}
.about-circle-img-main {
  z-index: 2;
}
.about-circle-img-1,
.about-circle-img-2 {
  opacity: 0;
}
/* When split, animate up/down and show */
.about-circles-vertical-img.split .about-circle-img-main {
  opacity: 1;
  transform: translateY(0);
}
.about-circles-vertical-img.split .about-circle-img-1 {
  opacity: 1;
  transform: translate(-4%, -95%) scale(1.05);
}
.about-circles-vertical-img.split .about-circle-img-2 {
  opacity: 1;
  transform: translate(2%, 93%) scale(1.05);
}
/* Add right padding to container so text doesn't overlap circles */

@media (max-width: 1200px) {
  .about-hero-circles-absolute {
    width: 180px;
  }
  .about-circles-vertical-img {
    width: 140px;
    height: 400px;
  }
  .about-circle-img {
    width: 110px;
    height: 110px;
    top: 140px;
  }
  .about-circles-vertical-img.split .about-circle-img-1 {
    transform: translate(50%, -80%) scale(1.05);
  }
  .about-circles-vertical-img.split .about-circle-img-2 {
    transform: translate(-90%, 50%) scale(1.05);
  }
  .about-hero-container.about-hero-padding {
    padding-right: 180px;
  }
}
@media (max-width: 900px) {
  .about-hero-circles-absolute {
    display: none;
  }
  .about-hero-container.about-hero-padding {
    padding-right: 0;
  }
}

/* --- OUR PHILOSOPHY SECTION --- */
.philosophy-section.philosophy-yellow-bg {
    background: #ffc638;
  position: relative;
  overflow: hidden;
  padding: 0;
}
.philosophy-container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  max-width: 1600px;
  margin: 0 auto;
  padding: 100px 60px 80px 120px;
  position: relative;
  z-index: 2;
}
.philosophy-left {
  flex: 1 1 0;
  max-width: 54%;
}
.philosophy-overline {
  color: #222;
  font-weight: 800;
  font-size: 2rem;
  margin-bottom: 0.5rem;
  letter-spacing: 0.04em;
}
.philosophy-title {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 32px;
  margin-top: 0px;
  color: #222;
  line-height: 1.1;
  letter-spacing: -.48px;
}
.philosophy-desc {
  font-size: 1.18rem;
  color: #222;
  line-height: 1.6;
  margin: 0;
  max-width: 800px;
}
.philosophy-right {
  flex: 1 1 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  z-index: 2;
}
.philosophy-img {
  width: 480px;
  max-width: 100%;
  border-radius: 20px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.10);
}

/* Circles absolute positioning */
.philosophy-circles-absolute {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}
.philosophy-circles-slant-img {
  position: absolute;
  right: -4vw;
  top: 2vh;
  width: 600px;
  height: 600px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  transition: all 0.7s cubic-bezier(.77,0,.18,1);
}
.philosophy-circle-img {
  position: absolute;
  opacity: 0.9;
  width: 156px;
  height: 170px;
  transition: all 0.7s cubic-bezier(.77,0,.18,1);
  filter: drop-shadow(0 2px 16px rgba(0,0,0,0.04));
}
.philosophy-circle-img-main {
  top: -6px;
  right: 212px;
  z-index: 1;
  opacity: 1;
  transform: translate(-153px, 0) scale(1);
}
.philosophy-circle-img-1,
.philosophy-circle-img-2 {
    opacity: 0;
    z-index: 0;
    top: -6px; /* Same as main image */
    right: 212px; /* Same as main image */
    transform: translate(-153px, 0) scale(0);
}
/* When slanted, animate to slant and show */
.philosophy-circles-slant-img.slant .philosophy-circle-img-main {
    opacity: 1;
    top: -6px;
    right: 212px;
    transform: translate(-153px, 0) scale(1);
}
.philosophy-circles-slant-img.slant .philosophy-circle-img-1 {
    opacity: 1;
    top: -10px;
    right: 66px;
    transform: translate(-90px, -90px) scale(1);
}
.philosophy-circles-slant-img.slant .philosophy-circle-img-2 {
    opacity: 1;
    top: 17px;
    right: 686px;
    transform: translate(90px, 90px) scale(1);
}

@media (max-width: 1200px) {
  .philosophy-container {
    flex-direction: column;
    padding: 60px 20px 60px 20px;
    text-align: left;
  }
  .philosophy-left, .philosophy-right {
    max-width: 100%;
    width: 100%;
  }
  .philosophy-right {
    justify-content: center;
    margin-top: 32px;
  }
  .philosophy-circles-absolute {
    display: none;
  }
}
@media (max-width: 768px) {
  .philosophy-title{
    font-size: 30px;
  }
}

/* --- VISION & VALUES SECTION --- */
.vision-values-section {
  width: 100%;
  background: #fff;
  padding: 0;
  margin: 0;
}
.vision-values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  width: 100%;
  margin: 0 auto 0 auto;
  min-height: 520px;
  border-radius: 0;
  overflow: hidden;
}
.vv-cell {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 48px 98px 48px 98px;
  min-height: 260px;
  font-family: inherit;
}
.vv-icon {
  background: #fff;
  align-items: center;
  justify-content: center;
}
.vv-icon img {
  /* max-width: 760px;
  max-height: 420px;
  width: 100%; */
  height: auto;
  margin: 0 auto;
  display: block;
}
.vv-vision {
  background: rgb(122, 211, 193);
  color: #fff;
  align-items: flex-start;
}
.vv-vision h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 32px;
  margin-top: 0px;
  color: #ffffff;
  line-height: 1.1;
  letter-spacing: -.48px;
}
.vv-vision p {
  color: #fff;
  font-size: 1.18rem;
  line-height: 1.6;
  margin-bottom: 10px;
  margin-top: 0;
  text-align: justify;
}
.vv-values {
  background: #db0721;
  color: #fff;
  align-items: flex-start;
}
.vv-values h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 32px;
  margin-top: 0px;
  color: #ffffff;
  line-height: 1.1;
  letter-spacing: -.48px;
}
.vv-values p {
  color: #fff;
  font-size: 1.18rem;
  line-height: 1.6;
  margin-bottom: 10px;
  margin-top: 0;
  text-align: justify;
}
.vv-icon-top-left {
  border-bottom: 1px solid #f0f0f0;
  border-right: 1px solid #f0f0f0;
}
.vv-vision {
  border-bottom: 1px solid #f0f0f0;
}
.vv-values {
  border-right: 1px solid #f0f0f0;
}

@media (max-width: 900px) {
  .vision-values-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 1fr);
    min-height: unset;
  }
  .vv-cell {
    padding: 32px 18px;
    min-height: 120px;
    align-items: center;
    text-align: center;
  }
  .vv-vision, .vv-values {
    align-items: center;
  }
}

@keyframes fadeInUpVV {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.vision-values-grid .vv-cell {
  opacity: 0;
  animation: fadeInUpVV 0.8s cubic-bezier(.77,0,.18,1) forwards;
}
.vision-values-grid .vv-cell:nth-child(1) { animation-delay: 0.1s; }
.vision-values-grid .vv-cell:nth-child(2) { animation-delay: 0.3s; }
.vision-values-grid .vv-cell:nth-child(3) { animation-delay: 0.5s; }
.vision-values-grid .vv-cell:nth-child(4) { animation-delay: 0.7s; }

.vision-values-section.in-view .vv-cell {
  opacity: 1;
}
@media (max-width: 768px) {
  .vision-values-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .vv-cell {
    padding: 24px 16px;
    text-align: center;
    align-items: center;
  }

  .vv-icon img {
    max-width: 90%;
    height: auto;
  }

  .vv-vision, .vv-values {
    align-items: center;
    text-align: center;
  }

  .vv-vision h2,
  .vv-values h2 {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .vv-vision p,
  .vv-values p {
    font-size: 1rem;
    line-height: 1.5;
    padding: 0 6px;
  }
}

@media (max-width: 480px) {
  .vv-cell {
    padding: 20px 12px;
  }

  .vv-vision h2,
  .vv-values h2 {
    font-size: 30px;
  }

  .vv-vision p,
  .vv-values p {
    font-size: 1.18rem;
  }
}

/* Service Banner Form Styling */
.service-banner-form {
  position: absolute;
  top: 40px;
  right: 83px;
  width: 279px;
  background: rgba(255,255,255,0.60);
  box-shadow: 0 4px 24px rgba(0,0,0,0.10);
  border-radius: 18px;
  padding: 18px 24px 18px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 10;
}
.service-banner-form input,
.service-banner-form button {
  font-family: inherit;
  font-size: 1rem;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  outline: none;
  margin-bottom: 0;
}
.service-banner-form input:focus {
  border-color: #ffc638;
  box-shadow: 0 0 0 2px #ffc63833;
}

.service-banner-form button {
  display: inline-block;
  padding: 12px 28px;
  font-weight: 600;
  font-size: 1.08rem;
  color: #000000;
  cursor: pointer;
  background: linear-gradient(90.85deg, #ffeada 2.92%, #f5f0e5 61.17%, #f4f2ee 98.14%);
  border: none;
  border-radius: 32px;
  box-shadow: 0 4px 18px rgba(0,99,177,0.08);
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: background 0.3s, transform 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}
.service-banner-form button:hover, .service-banner-form button:focus {
  background: linear-gradient(90.85deg, #f4f2ee 99.14%, #f5f0e5 61.17%, #ffeada 2.92%);
  color: #000000;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 6px 24px rgba(219,7,33,0.13);
  text-decoration: none;
}
@media (max-width: 900px) {
  .service-banner-form {
    position: static;
    width: 87%;
    margin-top: 24px;
    margin-bottom: 23px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    padding: 18px 10px 12px 10px;
  }
}
/* Banner Flex Layout for Service Banner */
.banner-flex {
  display: flex;
  flex-direction: row;
  align-items: anchor-center;
  position: relative;
  min-height: 260px;
}
.banner-content-main {
  margin-top: 127px;
  flex: 1 1 0;
  min-width: 0;
  z-index: 2;
}
@media (max-width: 900px) {
  .banner-flex {
    flex-direction: column;
    align-items: flex-start;
  }
}

.page-banner-content,
.banner-flex {
  position: relative;
}
.innovation-section1 {
  position: relative;
  width: 100%;
  background: #fff;
  padding: 32px 0 32px 0;
  overflow: hidden;
  min-height: 441px;
}
/* Innovation Section Styles */
.innovation-section {
  position: relative;
  width: 100%;
  background: #fff;
  padding: 90px 0 0px 0;
  overflow: hidden;
  min-height: 441px;
}
.innovation-bg-circles {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  pointer-events: none;
  z-index: 1;
}
.circle {
  position: absolute;
  border-radius: 50%;
  background: #ffd600;
  opacity: 1;
}
.circle-top-right {
  width: 220px; height: 220px;
  top: -80px; right: 8vw;
}
.circle-center {
  width: 180px; height: 180px;
  top: 220px; left: 50vw;
  transform: translateX(-50%);
}
.circle-bottom-left {
  width: 160px; height: 160px;
  bottom: -60px; left: 38vw;
}
.innovation-container {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1px;
  padding: 0 5vw;
}
.innovation-left {
  flex: 1.0;
  min-width: 320px;
}
.innovation-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 18px;
  text-align: left;
  line-height: 1.1;
}
.innovation-desc {
  font-size: 1.18rem;
  color: #222;
  line-height: 1.7;
  margin: 0;
  max-width: 600px;
  text-align: justify;
}
.innovation-right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 320px;
}
.innovation-product-box {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 560px;
  min-height: 322px;
}
.innovation-products-img {
  max-width: 100%;
  max-height: 318px;
  object-fit: cover;
  display: block;
}
@media (max-width: 1100px) {
  .innovation-container {
    flex-direction: column;
    gap: 32px;
    padding: 0 2vw;
  }
  .innovation-left, .innovation-right {
    min-width: 0;
    width: 100%;
  }
  .innovation-product-box {
    min-width: 0;
    width: 100%;
    padding: 24px 10px 12px 10px;
  }
  .innovation-title {
    font-size: 2.1rem;
  }
}

/* Updated Animated Yellow Circle for Innovation Section */
.yellow-circle-img {
  position: absolute;
  left: 49%;
  top: 32%;
  width: 160px;
  height: 160px;
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  transition: transform 0.9s cubic-bezier(.77,0,.18,1), opacity 0.7s cubic-bezier(.77,0,.18,1);
  z-index: 1;
  will-change: transform, opacity;
}
.yellow-circle-img-main.split-center {
  opacity: 1;
  transform: translate(21%, -98%) scale(1);
}
.yellow-circle-img-1.split-up {
  opacity: 1;
  transform: translate(125%, -163%) scale(1.05); /* more gap, true 45deg up-right */
}
.yellow-circle-img-2.split-down {
  opacity: 1;
  transform: translate(-83%, -23%) scale(1.05); /* more gap, true 45deg down-left */
}
.yellow-circle-img-1,
.yellow-circle-img-2 {
  opacity: 0;
}
.yellow-circle-img-1.split-up,
.yellow-circle-img-2.split-down {
  opacity: 1;
}
@media (max-width: 900px) {
  .yellow-circle-img, .yellow-circle-img-1, .yellow-circle-img-2 {
    width: 110px;
    height: 110px;
  }
  .yellow-circle-img-1.split-up {
    transform: translate(50%, -80%) scale(1.05);
  }
  .yellow-circle-img-2.split-down {
    transform: translate(-90%, 50%) scale(1.05);
  }
}
.innovation-section { position: relative; z-index: 2; }
.innovation-container { position: relative; z-index: 3; }

@media (max-width: 768px) {
  .innovation-section {
    padding: 0px 0 0px 0;
    min-height: auto;
  }

  .innovation-container {
    flex-direction: column;
    gap: 24px;
    padding: 0 4vw;
  }

  .innovation-left,
  .innovation-right {
    width: 100%;
    min-width: 0;
    text-align: center;
  }

  .innovation-title {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 14px;
  }

  .innovation-desc {
    font-size: 1.18rem;
    text-align: justify;
    line-height: 1.6;
  }

  .innovation-product-box {
    padding: 0;
    width: 100%;
    min-width: 0;
    min-height: auto;
  }

  .innovation-products-img {
    width: 100%;
    max-height: 250px;
    height: auto;
    object-fit: contain;
  }
  .innovation-circles-anim {
      display: none;
  }
}


/* New Our Services Grid Section */
.services-section-grid {
  width: 100vw;
  max-width: 100%;
  background: #f5f0e5;
  padding: 20px 0 48px 0;
  margin: 0 auto 32px auto;
}
.services-section-header {
  max-width: 1200px;
  margin: 0 auto 32px auto;
  text-align: center;
}
.services-section-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 18px;
  line-height: 1.35;
  letter-spacing: -1px;
  position: relative;
  /*background: linear-gradient(90deg, #0063b1, #db0721, #ffc638);*/
   background: linear-gradient(90deg, #db0721, #db0721, #db0721);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  display: inline-block;
  overflow: hidden;
}
.services-section-title::after {
  content: '';
  position: absolute;
  top: 0;
  left: -60%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.7) 50%, rgba(255,255,255,0) 100%);
  transform: skewX(-20deg);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s;
}
.services-section-title:hover::after {
  animation: flash-light 0.9s linear;
  opacity: 1;
}
.services-section-desc {
  font-size: 1.18rem;
  color: #222;
  margin-bottom: 18px;
}
.services-section-btn {
  display: inline-block;
  background: #fff;
  color: #222;
  font-weight: 600;
  font-size: 1.08rem;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  border: 2px solid #a5734f;
  transition: background 0.2s, color 0.2s, border 0.2s;
  margin-bottom: 12px;
}
.services-section-btn:hover {
  background: #a5734f;
  color: #fff;
  border: 2px solid #a5734f;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

@media (max-width: 700px) {
  .service-card-video {
    height: 390px;
  }
  .services-section-title {
    font-size: 1.5rem;
  }
  .services-slider-right{
    margin-left: 21px;
  }
}

/* Reference-based Exterior Paints Section */
.exterior-paints-section {
  width: 100vw;
  max-width: 100%;
  background: #f5f0e5;
  padding: 30px 0 32px 0;
  margin: 17px auto 0 auto;
}
.exterior-paints-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  padding: 0 20px 0 127px;
}
.exterior-paints-left {
  flex: 1.2;
  min-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.exterior-paints-logo {
  font-size: 2.2rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 18px;
  text-align: left;
  line-height: 1.1;
}
.exterior-paints-images {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 440px;
}
.exterior-paint-img-large {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  background: #eee;
}
.exterior-paints-row {
  display: flex;
  gap: 22px;
}
.exterior-paint-img-small {
  width: 50%;
  height: 120px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  background: #eee;
}
.exterior-paints-right {
  flex: 1.5;
  min-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
.exterior-paints-desc {
  font-size: 1.18rem;
  color: #222;
  line-height: 1.7;
  margin: 0;
  max-width: 600px;
  text-align: justify;
}
@media (max-width: 1100px) {
  .exterior-paints-container {
    flex-direction: column;
    gap: 32px;
    padding: 0 2vw;
  }
  .exterior-paints-left, .exterior-paints-right {
    min-width: 0;
    width: 100%;
    align-items: flex-start;
  }
  .exterior-paints-images {
    width: 100%;
    max-width: 440px;
    margin-bottom: 18px;
  }
  .exterior-paints-desc {
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .exterior-paints-section {
    padding: 24px 0 28px 0;
    margin-top: 12px;
  }

  .exterior-paints-container {
    flex-direction: column;
    gap: 24px;
    padding: 0 4vw;
  }

  .exterior-paints-left,
  .exterior-paints-right {
    width: 100%;
    min-width: 0;
    align-items: center;
  }

  .exterior-paints-logo {
    font-size: 1.6rem;
    text-align: center;
    margin-bottom: 12px;
  }

  .exterior-paints-desc {
    font-size: 1.18rem;
    line-height: 1.6;
    text-align: justify;
    max-width: 100%;
  }

  .exterior-paints-images {
    width: 100%;
    max-width: 100%;
    gap: 16px;
  }

  .exterior-paint-img-large {
    height: 200px;
    width: 100%;
    object-fit: cover;
    border-radius: 14px;
  }

  .exterior-paints-row {
    gap: 12px;
  }

  .exterior-paint-img-small {
    width: 48%;
    height: 140px;
    border-radius: 14px;
    object-fit: cover;
  }
}


/* Wood Coating Section (Reference Layout) */
.wood-coating-section {
  width: 100vw;
  max-width: 100%;
  background: #e2d2bb;
  padding: 0;
  /* margin: 0 auto 32px auto; */
}
.wood-coating-container {
  max-width: 100vw;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  min-height: 340px;
}
.wood-coating-left {
  flex: 2.2;
  min-width: 320px;
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
}
.wood-coating-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: none;
  border-radius: 0;
}
.wood-coating-right {
  flex: 1.5;
  min-width: 320px;
  background: #e2d2bb;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 64px 7vw 64px 7vw;
}
.wood-coating-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #4a3a2c;
  margin-bottom: 18px;
  text-align: left;
  line-height: 1.1;
}
.wood-coating-desc {
  color: #4a3a2c;
  font-size: 1.18rem;
  line-height: 1.7;
  margin: 0;
  max-width: 600px;
  text-align: justify;
}
@media (max-width: 1100px) {
  .wood-coating-container {
    flex-direction: column;
    min-height: unset;
  }
  .wood-coating-left, .wood-coating-right {
    min-width: 0;
    width: 100%;
    align-items: flex-start;
    justify-content: flex-start;
  }
  .wood-coating-img {
    max-height: 220px;
  }
  .wood-coating-right {
    padding: 32px 4vw 32px 4vw;
  }
}
@media (max-width: 768px) {
  .wood-coating-container {
    flex-direction: column;
    min-height: auto;
    overflow-x: hidden; /* Ensures nothing overflows */
  }

  .wood-coating-left,
  .wood-coating-right {
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .wood-coating-img {
    width: 100%;
    height: auto;
    max-height: 220px;
    object-fit: cover;
  }

  .wood-coating-right {
    padding: 24px 5vw;
    align-items: flex-start;
  }

  .wood-coating-title {
    font-size: 1.6rem;
    text-align: center;
    width: 100%;
    margin-bottom: 14px;
  }

  .wood-coating-desc {
    font-size: 1.18rem;
    line-height: 1.6;
    text-align: justify;
  }
}


/* Construction Essentials Section Styles */
.construction-essentials-section {
  padding: 0px 0 30px 0px;
  background: #fff;
}
.construction-essentials-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.construction-essentials-title {
  position: relative;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(90deg, #0063b1, #db0721, #ffc638);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  display: inline-block;
  overflow: hidden;
}
.construction-essentials-title::after {
  content: '';
  position: absolute;
  top: 0;
  left: -60%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.7) 50%, rgba(255,255,255,0) 100%);
  transform: skewX(-20deg);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s;
}
.construction-essentials-title:hover::after {
  animation: flash-light 0.9s linear;
  opacity: 1;
}
@keyframes flash-light {
  0% {
    left: -60%;
    opacity: 0.2;
  }
  30% {
    opacity: 1;
  }
  60% {
    opacity: 1;
  }
  100% {
    left: 120%;
    opacity: 0.2;
  }
}
.construction-essentials-connect {
  font-size: 1.3rem;
  font-weight: 500;
  color: #e94e36;
  margin-bottom: 0;
}
.construction-essentials-connect-btn {
  display: inline-block;
  margin-top: 18px;
  padding: 12px 36px;
  font-size: 1.18rem;
  font-weight: 700;
  color: #000000;
  background: linear-gradient(90.85deg, #ffeada 2.92%, #f5f0e5 61.17%, #f4f2ee 98.14%);
  border: none;
  border-radius: 32px;
  box-shadow: 0 4px 18px rgba(0,99,177,0.08);
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: background 0.3s, transform 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}
.construction-essentials-connect-btn:hover, .construction-essentials-connect-btn:focus {
  background: linear-gradient(90.85deg, #f4f2ee 98.14%, #f5f0e5 61.17%, #ffeada 2.92%);
  color: #000000;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 6px 24px rgba(219,7,33,0.13);
  text-decoration: none;
}

.contact-hero-section {
  width: 100%;
  background: #e4e0dd;
  padding: 43px 0 15px 0;
  box-shadow: 0 2px 12px 0 rgba(0,0,0,0.02);
}
.contact-hero-container {
  max-width: 1200px;
  margin: 0 auto;
}
.contact-hero-title {
  font-size: 80px;
  font-weight: 700;
  color: #232325;
  margin-bottom: 32px;
  letter-spacing: -3px;
  line-height: 1.1em;
}
.contact-hero-desc {
  font-size: 18px;
  color: #555b5e;
  font-weight: 400;
  line-height: 1.3;
  max-width: 900px;
}
@media (max-width: 900px) {
  .contact-hero-title {
    font-size: 56px;
  }
  .contact-hero-desc {
    font-size: 20px;
  }
}
@media (max-width: 600px) {
  .contact-hero-title {
    font-size: 42px;
    line-height: 1.2;
    text-align: center;
    word-wrap: break-word;
  }
  .contact-hero-desc {
    font-size: 16px;
    text-align: center;
    padding: 0 8px;
    max-width: 100%;
  }
  .contact-hero-section {
    padding: 28px 12px 16px 12px;
  }
}
@media (max-width: 768px) {
  .contact-hero-title {
    font-size: 60px;
    line-height: 1.2;
    text-align: left;
    margin-bottom: 24px;
  }

  .contact-hero-desc {
    font-size: 18px;
    text-align: left;
    padding: 0;
  }

  .contact-hero-section {
    padding: 68px 12px;
    overflow-x: hidden; /* This prevents right-side bleed */
  }

  .contact-hero-container {
    padding: 0 8px;
    text-align: left;
  }
}

@media (max-width: 480px) {
  .contact-hero-title {
    font-size: 60px;
    letter-spacing: -1px;
    text-align: left;
  }

  .contact-hero-desc {
    font-size: 18px;
    line-height: 1.5;
  }

  .contact-hero-section {
    padding: 68px 12px;
  }
}

.contact-info-section {
  width: 100%;
  background-size: cover;
  z-index: 1;
  /* background: linear-gradient(to bottom, #f7f4f2 60%, #e4e0dd 100%); */
  min-height: 536px;
  position: relative;
  padding: 0;
  background-size: cover !important;
}
.contact-info-container {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  min-height: 420px;
  position: relative;
}
.contact-info-left {
  z-index: 2;
}
.contact-info-right {
  padding: 0 0 0 93px;
}
.contact-info-block {
  margin-bottom: 38px;
}
.contact-info-block h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #232325;
}
.contact-info-block p, .contact-info-phone {
  font-size: 1.13rem;
  color: #555b5e;
  margin: 0 0 8px 0;
  font-weight: 400;
}
.contact-info-phone {
  color: #7a8a8a;
  font-size: 1.18rem;
  font-weight: 500;
  margin-bottom: 18px;
}
.contact-info-socials {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}
.contact-social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: #aab3ad;
  color: #fff;
  border-radius: 6px;
  font-size: 1.35rem;
  transition: background 0.2s, color 0.2s, transform 0.18s;
  text-decoration: none;
}
.contact-social-icon:hover {
  background: #7a8a8a;
  color: #fff;
  transform: scale(1.08);
}
@media (max-width: 900px) {
  .contact-info-container {
    flex-direction: column;
    padding: 0 2vw;
  }
  .contact-info-left, .contact-info-right {
    padding: 36px 0 0 0;
    min-height: unset;
    background: none !important;
  }
}
@media (max-width: 768px) {
  .contact-info-section {
    background-position: bottom !important;
    background-size: 768px 587px !important;
    padding: 24px 0;
    overflow-x: hidden;
  }

  .contact-info-container {
    flex-direction: column;
    align-items: flex-start;
    padding: 0 5vw;
    min-height: auto;
  }

  .contact-info-left,
  .contact-info-right {
    width: 100%;
    padding: 0;
  }

  .contact-info-block {
    margin-bottom: 28px;
  }

  .contact-info-block h3 {
    font-size: 1.1rem;
    margin-bottom: 6px;
  }

  .contact-info-block p,
  .contact-info-phone {
    font-size: 1rem;
    line-height: 1.5;
    word-break: break-word;
  }

  .contact-info-phone {
    font-size: 1.05rem;
    margin-bottom: 14px;
  }

  .contact-info-socials {
    gap: 10px;
    flex-wrap: wrap;
  }

  .contact-social-icon {
    width: 34px;
    height: 34px;
    font-size: 1.2rem;
  }
}


.contact-form-section {
  width: 100%;
  background: #fff;
  padding: 10px 0 80px 0;
}
.contact-form-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.contact-form-title {
  font-size: 42px;
  line-height: 1.3em;
  font-weight: 500;
  font-weight: 500;
  color: #232325;
  margin-bottom: 8px;
  letter-spacing: -2px;
}
.contact-form-divider {
  width: 80px;
  height: 4px;
  background: #232325;
  margin: 0 auto 28px auto;
  border-radius: 2px;
}
.contact-form-desc {
  font-size: 16px;
  line-height: 1.8em;
  color: #555b5e;
  font-weight: 400;
  margin-bottom: 48px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.contact-form {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-form-row {
  display: flex;
  gap: 32px;
  margin-bottom: 0;
}
.contact-form-row input,
.contact-form-row select {
  flex: 1;
  padding: 18px 18px;
  font-size: 1.18rem;
  border: 1.5px solid #e4e0dd;
  border-radius: 2px;
  background: #fff;
  color: #555b5e;
  font-family: inherit;
  outline: none;
  transition: border 0.2s;
}
.contact-form-row input:focus,
.contact-form-row select:focus {
  border-color: #aab3ad;
}
.contact-form-row textarea {
  width: 100%;
  padding: 18px 18px;
  font-size: 1.18rem;
  border: 1.5px solid #e4e0dd;
  border-radius: 2px;
  background: #fff;
  color: #555b5e;
  font-family: inherit;
  outline: none;
  min-height: 140px;
  resize: vertical;
  transition: border 0.2s;
}
.contact-form-row textarea:focus {
  border-color: #aab3ad;
}
.contact-form-row-btn {
  justify-content: flex-end;
}

.contact-form-btn {
  display: inline-block;
  padding: 12px 28px;
  font-weight: 600;
  font-size: 1.08rem;
  color: #000000;
  background: linear-gradient(90.85deg, #ffeada 2.92%, #f5f0e5 61.17%, #f4f2ee 98.14%);
  border: none;
  border-radius: 32px;
  box-shadow: 0 4px 18px rgba(0,99,177,0.08);
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: background 0.3s, transform 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}
.contact-form-btn:hover, .contact-form-btn:focus {
  background: linear-gradient(90.85deg, #f4f2ee 102.14%, #f5f0e5 61.17%, #ffeada 2.92%);
  color: #000000;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 6px 24px rgba(219,7,33,0.13);
  text-decoration: none;
}
@media (max-width: 900px) {
  .contact-form-title {
    font-size: 36px;
  }
  .contact-form-desc {
    font-size: 16px;
  }
  .contact-form-row {
    flex-direction: column;
    gap: 18px;
  }
  .contact-form-btn {
    width: 100%;
    padding: 16px 0;
  }
  .contact-form-divider {
    margin-bottom: 18px;
  }
}
@media (max-width: 600px) {
  .contact-form-section {
    padding: 40px 12px;
    overflow-x: hidden; /* Prevent overflow */
  }

  .contact-form-container {
    padding: 0 12px;
    box-sizing: border-box;
  }

  .contact-form-title {
    font-size: 28px;
    line-height: 1.2em;
    letter-spacing: -1px;
    margin-bottom: 12px;
  }

  .contact-form-divider {
    width: 60px;
    height: 3px;
    margin-bottom: 20px;
  }

  .contact-form {
    gap: 20px;
  }

  .contact-form-row {
    flex-direction: column;
    gap: 16px;
    width: 100%;
  }

  .contact-form-row input,
  .contact-form-row select,
  .contact-form-row textarea {
    font-size: 1rem;
    padding: 14px;
    width: 100%;
    box-sizing: border-box;
  }

  .contact-form-btn {
    width: 100%;
    padding: 14px 0;
    font-size: 1rem;
    border-radius: 24px;
  }
}

.contact-map-section {
  width: 100vw;
  max-width: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  left: 50%;
  right: 50%;
  transform: translateX(-50%);
  background: #e4e0dd;
}
.contact-map-section iframe {
  display: block;
  width: 100vw;
  max-width: 100%;
  min-height: 320px;
  height: 420px;
  border: none;
}
@media (max-width: 700px) {
  .contact-map-section iframe {
    min-height: 200px;
    height: 220px;
  }
}

/* Floating Social Media Bar Style Starts Here */

.fl-fl {
  text-transform: uppercase;
  letter-spacing: 3px;
  padding: 4px;
  width: 190px;
  position: fixed;
  right: -147px;
  z-index: 1000;
  font: normal normal 10px Arial;
  -webkit-transition: all .25s ease;
  -moz-transition: all .25s ease;
  -ms-transition: all .25s ease;
  -o-transition: all .25s ease;
  transition: all .25s ease;
}

.social-icon {
  font-size: 20px;
  color: #fff;
  padding: 10px 0;
  width: 40px;
  margin-left: 8px;
}


.fl-fl:hover {
  right: 0;
}

.fl-fl a {
  color: #fff !important;
  text-decoration: none;
  text-align: center;
  line-height: 43px!important;
  vertical-align: top!important;
}

.float-wh {
  background: #4caf50;
  top: 480px;
}

.float-ph {
  background: #2196f3;
  top: 545px;
}

.float-em {
  background: #b90000;
  top: 608px;
}
/* Floating Social Media Bar Style Ends Here */
@media (min-width: 1740px) {
  .service-banner-form{
    top: 27px;
    right: 203px;
  }
  .contact-info-section {
    min-height: 683px;
  }
}

.blog-container {
  max-width: 1200px;
  margin: 30px auto;
  padding: 20px;
  background-color: #fff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  border-radius: 10px;
}

.blog-detail-title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
  text-align: center;
}

.blog-detail-image {
  margin: 20px 0;
}

.blog-detail-image img {
  width: 100%;
  border-radius: 10px;
  height: 359px;
}

.image-credit {
  font-size: 12px;
  color: #888;
  margin-top: 4px;
  text-align: center;
}
.blog-content{
  padding: 0 13px;
}
.blog-content h2 {
  margin-top: 30px;
  font-size: 22px;
}
.blog-content P{
  font-size: 18px;
  line-height: 1.9;
  text-align: justify;
}
.blog-content li {
  list-style: none;
  margin-bottom: 10px;
  text-align: justify;
  font-size: 18px;
  line-height: 1.9;
}

/* Section with half-blue background */
.video-section {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 0 40px 0;
  overflow: hidden;
}

/* Blue bottom half background */
.video-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: #e4b822; /* blue */
  z-index: 0;
}

/* Video container */
.video-container {
  position: relative;
  max-width: 1100px;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0px 8px 24px rgba(0,0,0,0.15);
  z-index: 1; /* keep video above blue background */
}

/* Responsive video */
.responsive-video {
  width: 100%;
  height: auto;
  display: block;
}
.video-section-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 18px;
  line-height: 1.35;
  letter-spacing: -1px;
  position: relative;
  /*background: linear-gradient(90deg, #0063b1, #db0721, #ffc638);*/
   background: linear-gradient(90deg, #db0721, #db0721, #db0721);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  display: inline-block;
  overflow: hidden;
}
.video-section-title::after {
  content: '';
  position: absolute;
  top: 0;
  left: -60%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.7) 50%, rgba(255,255,255,0) 100%);
  transform: skewX(-20deg);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s;
}
.video-section-title:hover::after {
  animation: flash-light 0.9s linear;
  opacity: 1;
}
#form-message p {
  padding: 10px;
  border-radius: 5px;
  text-align: center;
}
#service-form-message {
  margin-top: -276px;
  color: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  text-align: right;
}