:root {

  /**
   * colors
   */

  --dark-jungle-green: hsl(188, 63%, 7%);
  --prussian-blue: hsl(200, 69%, 14%);
  --raisin-black-1: hsl(227, 29%, 13%);
  --raisin-black-2: hsl(229, 17%, 19%);
  --yellow-green: hsl(89, 72%, 45%);
  --orange-soda: hsl(9, 100%, 62%);
  --cultured-1: hsl(0, 0%, 93%);
  --cultured-2: hsl(192, 24%, 96%);
  --misty-rose: hsl(7, 56%, 91%);
  --alice-blue: hsl(210, 100%, 97%);
  --seashell: hsl(8, 100%, 97%);
  --cadet: hsl(200, 15%, 43%);
  --white: hsl(0, 0%, 100%);
  --black: hsl(0, 0%, 0%);
  --opal: hsl(180, 20%, 62%);

  /**
   * typography
   */

  --ff-nunito-sans: "Nunito Sans", sans-serif;
  --ff-poppins: "Poppins", sans-serif;

  --fs-1: 1.875rem;
  --fs-2: 1.5rem;
  --fs-3: 1.375rem;
  --fs-4: 1.125rem;
  --fs-5: 0.875rem;
  --fs-6: 0.813rem;
  --fs-7: 0.75rem;

  --fw-500: 500;
  --fw-600: 600;
  --fw-700: 700;

  /**
   * transition
   */

  --transition: 0.25s ease;

  /**
   * spacing
   */

  --section-padding: 100px;

  /**
   * shadow
   */

  --shadow-1: 0 5px 20px 0 hsla(219, 56%, 21%, 0.1);
  --shadow-2: 0 16px 32px hsla(188, 63%, 7%, 0.1);

}





/*-----------------------------------*\
  #RESET
\*-----------------------------------*/

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

li { list-style: none; }

a { text-decoration: none; }

a,
img,
span,
button,
ion-icon { display: block; }

button {
  border: none;
  background: none;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

address { font-style: normal; }

ion-icon { pointer-events: none; }

html {
  font-family: var(--ff-nunito-sans);
  scroll-behavior: smooth;
}

body {
  background: var(--white);
  overflow-x: hidden;
}

::-webkit-scrollbar {
  width: 10px;
  height: 8px;
}

::-webkit-scrollbar-track { background: var(--white); }

::-webkit-scrollbar-thumb {
  background: var(--cadet);
  border-left: 2px solid var(--white);
}





/*-----------------------------------*\
  #REUSED STYLE
\*-----------------------------------*/

.container { padding-inline: 15px; }

button, a { transition: var(--transition); }

.h1,
.h2,
.h3 {
  color: var(--dark-jungle-green);
  font-family: var(--ff-poppins);
  line-height: 1.3;
}

.h1 {
  font-size: var(--fs-1);
  line-height: 1;
}

.h2 { font-size: var(--fs-2); }

.h3 {
  font-size: var(--fs-4);
  font-weight: var(--font-weight, 700);
}

.h3 > a { color: inherit; }

.btn {
  position: relative;
  background: var(--orange-soda);
  color: var(--white);
  font-family: var(--ff-poppins);
  font-size: var(--fs-5);
  text-transform: var(--text-transform, capitalize);
  border: 1px solid var(--orange-soda);
  padding: 10px 20px;
  z-index: 1;
}

.btn:is(:hover, :focus) {
  background: var(--black);
  color: var(--dark-jungle-green);
  border-color: var(--black);
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: var(--white);
  transition: var(--transition);
  z-index: -1;
}

.btn:is(:hover, :focus)::before { width: 100%; }

.w-100 { width: 100%; }

.section-subtitle {
  color: var(--orange-soda);
  font-size: var(--fs-5);
  font-weight: var(--fw-600);
  padding: 5px 20px;
  background: hsla(9, 100%, 62%, 0.1);
  width: max-content;
  border-radius: 50px;
  margin-inline: auto;
  margin-bottom: 15px;
}

.section-title {
  text-align: var(--text-align, center);
  margin-bottom: var(--margin-bottom, 50px);
}

.card-badge {
  background: var(--black);
  color: var(--white);
  font-size: var(--fs-7);
  text-transform: uppercase;
  position: absolute;
  top: 15px;
  right: 15px;
  padding: 4px 10px;
}

.card-badge.green { background: var(--yellow-green); }

.card-badge.orange { background: var(--orange-soda); }

.has-scrollbar {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  overflow-x: auto;
  margin-inline: -15px;
  padding-inline: 15px;
  scroll-padding-left: 15px;
  padding-bottom: 60px;
  scroll-snap-type: inline mandatory;
}

.has-scrollbar > li {
  min-width: 100%;
  scroll-snap-align: start;
}

.has-scrollbar::-webkit-scrollbar-track {
  background: var(--cultured-2);
  outline: 2px solid var(--cadet);
  border-radius: 10px;
}

.has-scrollbar::-webkit-scrollbar-thumb {
  background: var(--cadet);
  border: 1px solid var(--cultured-2);
  border-radius: 10px;
}

.has-scrollbar::-webkit-scrollbar-button { width: 15%; }




/*-----------------------------------*\
  #HEADER
\*-----------------------------------*/

.header {
  position: relative;
  z-index: 2;
}

.header-bottom {
  background: var(--white);
  padding-block: 25px;
}

.header-bottom-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: 2.2rem;
  letter-spacing: 2px;
  color: #1a237e;
  margin: 0;
  text-shadow: 0 2px 8px rgba(44,62,80,0.10);
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1.1;
}

/* NAVBAR GENERAL */
.navbar-link {
  color: var(--cadet);
  font-size: var(--fs-5);
  font-weight: var(--fw-600);
  text-transform: uppercase;
}

.navbar-link:is(:hover, :focus) {
  color: var(--orange-soda);
}

/* Overlay */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  opacity: 0;
  visibility: hidden;
  transition: 0.25s ease;
  z-index: 900;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

/*=========================================
  📱 MOBILE NAVIGATION (Dropdown From Top)
=========================================*/
@media (max-width: 900px) {

  .navbar {
    position: absolute;
    top: 100%;   /* appears under the header */
    left: 0;
    width: 100%;
    background: #fff;
    max-height: 0;      /* hidden initially */
    overflow: hidden;
    visibility: hidden;
    transition: max-height 0.4s ease, visibility 0.4s ease;
    z-index: 2000;
    padding: 0 0 10px 0;
  }

  .navbar.active {
    max-height: 600px;   /* menu opens DOWNWARD */
    visibility: visible;
  }

  .navbar-list {
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  .navbar-link {
    padding: 14px 20px;
    border-bottom: 1px solid #eee;
    width: 100%;
  }

  /* Close overlay for downward style */
  .overlay {
    display: none !important;
  }

  /* Mobile Dropdowns */
  .dropdown-menu {
    display: none !important;
    background: #f5f5f5;
    padding-left: 20px;
    border-left: 3px solid #eee;
  }

  .navbar-dropdown.open .dropdown-menu {
    display: block !important;
  }
}

/*=========================================
  🖥️ DESKTOP NAVIGATION
=========================================*/
@media (min-width: 901px) {

  .navbar {
    all: unset;  /* reset mobile behavior */
  }

  .navbar-list {
    display: flex;
    align-items: center;
    gap: 30px;
  }

  .navbar-link {
    color: var(--dark-jungle-green);
    --fs-5: 1.125rem;
    text-transform: capitalize;
  }

  /* Desktop dropdown menu */
  .navbar-dropdown {
    position: relative;
  }

  .dropdown-menu {
    display: none;
    position: absolute;
    background: #fff;
    min-width: 180px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    border-radius: 4px;
    z-index: 100;
  }

  .navbar-dropdown:hover .dropdown-menu {
    display: block;
  }

  .dropdown-link {
    padding: 10px 18px;
    color: #333;
  }

  .dropdown-link:hover {
    background: #f2f2f2;
  }

  /* Desktop header behavior */
  .header {
    padding-bottom: 114px;
  }

  .header-bottom {
    left: 0;
    bottom: 0;
    width: 100%;
  }

  .header.active .header-bottom {
    position: fixed;
    bottom: auto;
    top: -94px;
    padding-block: 20px;
    box-shadow: 0 10px 50px hsla(237, 71%, 52%, 0.2);
    animation: slideDown 0.25s ease-out forwards;
  }

  @keyframes slideDown {
    0% { transform: translateY(0); }
    100% { transform: translateY(100%); }
  }
}



.menu-icon { display: block; }
.close-icon { display: none; }

.navbar.active ~ .nav-toggle-btn .menu-icon {
  display: none;
}

.navbar.active ~ .nav-toggle-btn .close-icon {
  display: block;
}

.navbar-dropdown > .navbar-link {
  display: inline-flex !important;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}




/*-----------------------------------*\
  #HERO
\*-----------------------------------*/

.hero {
  background: var(--cultured-2);
  padding-block: var(--section-padding);
}

.hero-content { margin-bottom: 60px; }

.hero-subtitle {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 5px;
  margin-bottom: 20px;
}

.hero-subtitle ion-icon { color: var(--orange-soda); }

.hero-subtitle span {
  color: var(--dark-jungle-green);
  font-size: var(--fs-5);
  font-weight: var(--fw-700);
}

.hero-title { margin-bottom: 20px; }

.hero-text {
  color: var(--cadet);
  font-size: var(--fs-5);
  line-height: 1.8;
  padding-left: 15px;
  border-left: 1px solid;
  margin-bottom: 30px;
}


/*-----------------------------------*\
  #FOUNDER
\*-----------------------------------*/

.founder-flex {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 2.5rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.founder-banner {
  flex: 0 0 320px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 6px 32px rgba(44, 62, 80, 0.13);
  padding: 18px;
  margin-bottom: 18px;
  width: 320px;
  height: 380px;
  overflow: hidden;
}
.founder-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  border: 5px solid #e3ecf7;
  background: #fff;
  display: block;
  margin: 0;
}
.founder-content {
  flex: 1 1 350px;
  max-width: 800px;
}
.founder-content .section-subtitle {
  color: #2b6cb0;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
}
.founder-content h3, .founder-content h4 {
  margin-top: 1.2rem;
  margin-bottom: 0.5rem;
}
.founder-text {
  margin-bottom: 1rem;
  line-height: 1.7;
  color: #444;
}
.founder-list {
  margin: 0 0 1.5rem 1.2rem;
  padding: 0;
  list-style: disc;
  color: #333;
}
.founder-list li {
  margin-bottom: 0.7rem;
  line-height: 1.6;
}
.founder-list strong {
  color: #2b6cb0;
  font-weight: 600;
}
.founder-quote {
  margin-top: 2rem;
  padding: 1.2rem 1.5rem;
  background: #f7f9fb;
  border-left: 4px solid #2b6cb0;
  border-radius: 6px;
  font-style: italic;
  color: #2b3a4a;
  box-shadow: 0 2px 8px rgba(44, 62, 80, 0.04);
}
@media (max-width: 900px) {
  .founder-flex {
    flex-direction: column;
    align-items: center;
  }
  .founder-content {
    max-width: 100%;
  }
  .founder-banner {
    width: 90vw;
    max-width: 360px;
    height: 320px;
    padding: 10px;
  }
  .founder-banner img {
    border-radius: 10px;
  }
}
@media (max-width: 600px) {
  .founder-banner {
    width: 98vw;
    max-width: 98vw;
    height: 220px;
    padding: 4px;
  }
  .founder-banner img {
    border-radius: 8px;
  }
}

/*-----------------------------------*\
  #ABOUT
\*-----------------------------------*/

.about { padding-block: var(--section-padding); }

.about-banner {
  background: #ffffff;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  padding: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 100%;
  margin: 20px auto;
}

.about-banner img {
  border-radius: 10px;
  max-width: 100%;
  height: auto;
  display: block;
}

.about .section-subtitle { margin-inline: 0; }

.about .section-title {
  --text-align: left;
  --margin-bottom: 15px;
}

.about-text {
  color: var(--cadet);
  font-size: var(--fs-5);
  line-height: 1.7;
  margin-bottom: 30px;
}

.about-list { margin-bottom: 30px; }

.about-item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.about-item-icon {
  background: var(--misty-rose);
  height: 45px;
  min-width: 45px;
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.about-item-icon ion-icon {
  color: var(--orange-soda);
  font-size: 18px;
}

.about-item-text {
  color: var(--cadet);
  font-size: var(--fs-5);
}

.about .callout {
  background: hsla(7, 78%, 53%, 0.05);
  color: var(--cadet);
  font-size: var(--fs-5);
  font-weight: var(--fw-500);
  line-height: 1.8;
  padding: 20px 25px;
  border-left: 4px solid var(--orange-soda);
  margin-bottom: 40px;
}

.about .btn {
  max-width: max-content;
  --text-transform: uppercase;
}





/*-----------------------------------*\
  #SERVICE
\*-----------------------------------*/

.service {
  background: var(--cultured-2);
  padding-block: var(--section-padding);
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.service-card {
  position: relative;
  background: var(--white);
  text-align: center;
  padding: 40px 30px;
  box-shadow: var(--shadow-2);
}

.service-card .card-icon {
  width: max-content;
  margin-inline: auto;
  margin-bottom: 20px;
}

.service-card .card-title { margin-bottom: 15px; }

.service-card .card-title > a:is(:hover, :focus) { color: var(--orange-soda); }

.service-card .card-text {
  color: var(--cadet);
  font-size: var(--fs-5);
  line-height: 1.8;
  margin-bottom: 25px;
}

.service-card .card-link {
  color: var(--opal);
  font-size: var(--fs-5);
  font-weight: var(--fw-600);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.service-card:is(:hover, :focus) .card-link { color: var(--orange-soda); }

.service-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 4px;
  background: var(--orange-soda);
  transition: var(--transition);
}

.service-card:is(:hover, :focus)::after { width: 100%; }





/*-----------------------------------*\
  #WHY US
\*-----------------------------------*/

.why-us {
  background: var(--cultured-2);
  padding-block: var(--section-padding);
}
.why-us .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}
 /* Why Us Section Styling */
      .why-list {
        margin: 3rem 0 0 0;
        padding: 0;
        list-style: none;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
      }
      .why-list li {
        background: #f7f9fb;
        border-left: 4px solid #2b6cb0;
        margin-bottom: 1.2rem;
        padding: 1rem 1.5rem;
        border-radius: 6px;
        font-size: 1.08rem;
        box-shadow: 0 2px 8px rgba(44, 62, 80, 0.04);
        transition: background 0.2s;
      }
      .why-list li:hover {
        background: #e3ecf7;
      }
      .why-list strong {
        color: #2b6cb0;
        font-weight: 600;
      }


      .callout
      {
        background: hsla(138, 100%, 45%, 0.05);
        color: black;
        font-size: 20px;
        font-weight: 500;
        line-height: 1.8;
        padding: 20px 25px;
        border-left: 4px solid var(--orange-soda);
        margin-bottom: 40px;
      }

      @media (max-width: 600px) {
        .why-list li {
          font-size: 1rem;
          padding: 0.8rem 1rem;
        }
      }
      







/*-----------------------------------*\
  #Process
\*-----------------------------------*/

.process {
  background: var(--cultured-2);
  padding-block: var(--section-padding);
}

.process-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 5rem;
  margin-top: 2.5rem;
  justify-content: center;
}
.process-box {
  background: #f7f9fb;
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(44,62,80,0.07);
  padding: 3rem 1.5rem;
  flex: 1 1 320px;
  max-width: 420px;
  min-width: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.2s, transform 0.2s;
}
.process-box:hover {
  box-shadow: 0 6px 24px rgba(44,62,80,0.13);
  transform: translateY(-6px) scale(1.03);
}
.process-icon {
  font-size: 2.5rem;
  color: #2b6cb0;
  margin-bottom: 1rem;
}
.process-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #2b3a4a;
  margin-bottom: 0.7rem;
  text-align: center;
}
.process-text {
  color: #444;
  text-align: center;
  font-size: 1rem;
  line-height: 1.6;
}
@media (max-width: 900px) {
  .process-grid {
    gap: 1.2rem;
  }
  .process-box {
    flex: 1 1 100%;
    max-width: 100%;
  }
}



/*-----------------------------------*\
  #INVESTOR INFO SECTION
\*-----------------------------------*/
.investor-info-section {
  width: 100%;
  padding: 40px 20px;
  background: #fafafa;
}

.section-main-title {
  text-align: center;
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 40px;
}

/* TWO COLUMN GRID */
.two-column-grid {
  display: flex;
  gap: 25px;
  justify-content: center;
}

.info-column {
  flex: 1;
  min-width: 320px;
}

/* BOX STYLE */
.info-box {
  background: #fff7e5;
  border: 2px solid #f2d9a6;
  border-radius: 12px;
  padding: 20px 25px;
  margin-bottom: 25px;
}

.info-box h3 {
  color: #d48806;
  font-size: 20px;
  margin-bottom: 12px;
  font-weight: 700;
}

.info-box h4 {
  font-size: 17px;
  font-weight: 600;
  margin-top: 12px;
}

.info-box ul {
  margin-left: 20px;
  list-style: disc;
}

.info-box li {
  margin-bottom: 6px;
}

/* MOBILE VIEW */
@media (max-width: 768px) {
  .two-column-grid {
    flex-direction: column;
  }
  .section-main-title {
    font-size: 24px;
  }
}







/*-----------------------------------*\
  #BLOG
\*-----------------------------------*/

.blog { padding-block: var(--section-padding); }

.blog-card { box-shadow: var(--shadow-2); }

.blog-card .card-banner {
  overflow: hidden;
  aspect-ratio: 2 / 1.5;
}

.blog-card .card-banner img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.blog-card:is(:hover, :focus) .card-banner img { transform: scale(1.1); }

.blog-content { padding: 30px; }

.blog-card .card-meta-list {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.blog-card :is(.card-meta-link, .publish-date) {
  color: var(--cadet);
  font-size: var(--fs-7);
  font-weight: var(--fw-600);
  display: flex;
  align-items: center;
  gap: 5px;
  transition: var(--transition);
}

.blog-card :is(.card-meta-link, .publish-date) ion-icon { color: var(--orange-soda); }

.blog-card .card-meta-link:is(:hover, :focus) { color: var(--orange-soda); }

.blog-title {
  font-size: 1rem;
  --font-weight: var(--fw-600);
}

.blog-card .blog-title:is(:hover, :focus) { color: var(--orange-soda); }

.blog-content-bottom {
  padding-top: 20px;
  border-top: 1px solid hsla(0, 0%, 0%, 0.1);
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.blog-card .read-more-btn {
  color: var(--orange-soda);
  font-size: var(--fs-7);
  font-weight: var(--fw-600);
  text-transform: uppercase;
}

/* Responsive Blog Feed for Mobile */
@media (max-width: 900px) {
  .blog-list.has-scrollbar {
    flex-direction: column;
    gap: 24px;
    overflow-x: unset;
    overflow-y: unset;
    margin-inline: 0;
    padding-inline: 0;
    padding-bottom: 0;
    scroll-padding-left: 0;
  }
  .blog-list.has-scrollbar > li {
    min-width: 100%;
    width: 100%;
    scroll-snap-align: unset;
  }
  .blog-card {
    box-shadow: var(--shadow-2);
    margin-bottom: 18px;
    border-radius: 12px;
    overflow: hidden;
  }
  .blog-card .card-banner {
    aspect-ratio: 16/9;
    border-radius: 12px 12px 0 0;
  }
  .blog-content {
    padding: 18px 12px;
  }
  .blog-content-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding-top: 14px;
    margin-top: 14px;
  }
}
@media (max-width: 600px) {
  .blog-card .card-banner {
    aspect-ratio: 16/10;
  }
  .blog-content {
    padding: 12px 6px;
  }
  .blog-title {
    font-size: 1rem;
  }
}
/*-----------------------------------*\
  #FOOTER
\*-----------------------------------*/



.footer-left {
  flex: 1 1 350px;
  min-width: 260px;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  background: rgba(255,255,255,0.07);
  border-radius: 14px;
  padding: 32px 28px 28px 28px;

  color: #000000;
}

.footer-left .contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-left .contact-link {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #000000;
  text-decoration: none;
  font-size: 1.08rem;
  margin-bottom: 18px;
  transition: color 0.2s;
  word-break: break-word;
}

.footer-left .contact-link ion-icon {
  font-size: 1.4rem;
  color: #020202;
  margin-top: 2px;
}

.footer-left .contact-link:hover {
  color: #000000;
}

.footer-left address {
  font-style: normal;
  color: #000000;
  font-size: 1.02rem;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .footer-left {
    max-width: 100%;
    padding: 22px 12px 18px 12px;
    gap: 18px;
  }
}

.footer-right {
  flex: 1 1 320px;
  min-width: 260px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 28px;
  background: rgba(255,255,255,0.07);
  border-radius: 14px;
  padding: 32px 28px 28px 28px;
  box-shadow: 0 4px 24px rgba(44,62,80,0.08);
}

.footer-map {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(44,62,80,0.10);
  width: 100vw;
  max-width: 100vw;
  min-width: 0;
  border: 2px solid #ffe082;
  margin-bottom: 10px;
  margin-left: 50%;
  transform: translateX(-50%);
}

.footer-map iframe {
  width: 100vw;
  min-width: 0;
  height: 320px;
  border: 0;
  display: block;
}

.footer-social {
  width: 100%;
  text-align: right;
}

.footer-social .section-subtitle {
  color: #ffe082;
  font-weight: 700;
  margin-bottom: 8px;
  font-size: 1.08rem;
  letter-spacing: 1px;
}

.social-list {
  display: flex;
  gap: 18px;
  margin-top: 8px;
  margin-bottom: 0;
  padding-left: 0;
  justify-content: flex-end;
}

.social-link {
  background: #ffe082;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(44, 62, 80, 0.10);
  font-size: 2rem;
  color: #2b6cb0;
  position: relative;
  overflow: hidden;
}

.social-link:hover,
.social-link:focus {
  background: #fff;
  color: #2b6cb0;
  transform: scale(1.13) rotate(-8deg);
  box-shadow: 0 6px 24px rgba(44, 62, 80, 0.18);
}

.social-link ion-icon {
  font-size: 2rem;
  color: inherit;
  transition: color 0.2s;
}

@media (max-width: 900px) {
  .footer-right {
    max-width: 100%;
    min-width: unset;
    align-items: flex-start;
    padding: 22px 12px 18px 12px;
    gap: 18px;
  }
  .footer-social {
    text-align: left;
    width: 100%;
  }
  .social-list {
    justify-content: flex-start;
  }
}




.footer-bottom {
  background: #9b9ecc;
  padding: 18px 0 12px 0;
  text-align: center;
  border-top: 2px solid #ffe082;
  box-shadow: 0 -2px 16px rgba(43, 129, 214, 0.08);
  display: flex;
  text-decoration: solid;
  justify-content: center;
  align-items: center;
}
.footer-bottom-text {
  color: #080808;
  font-size: 0.9rem;
  font-weight: 500;
}
.footer-bottom-text a {
  color: #131212;
  text-decoration: underline;
  transition: color 0.2s;
}

.footer-top {
  background: #ffffff; /* Dark blue */
}

/*-----------------------------------*\
  #MEDIA QUERIES
\*-----------------------------------*/

/**
 * responsive for larger than 600px screen
 */

@media (min-width: 600px) {

  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
     * typography
     */

    --fs-2: 1.875rem;

  }



  /**
   * REUSED STYLE
   */

  .container {
    max-width: 550px;
    margin-inline: auto;
  }

  .has-scrollbar {
    gap: 25px;
    margin-inline: -25px;
    padding-inline: 25px;
    scroll-padding-left: 25px;
  }

  .has-scrollbar > li { min-width: calc(50% - 12.5px); }



  /**
   * SERVICE
   */

  .service-list > li { width: calc(50% - 15px); }



  /**
   * PROPERTY
   */

  .property .container {
    max-width: unset;
    padding-inline: 25px;
  }



  /**
   * CTA
   */

  .cta-card { --fs-2: 1.5rem; }



  /**
   * FOOTER
   */

  .footer-link-box {
    display: flex;
    justify-content: space-between;
    gap: 20px;
  }

}





/**
 * responsive for larger than 768px screen
 */

@media (min-width: 768px) {

  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
     * typography
     */

    --fs-1: 2.5rem;
    --fs-5: 0.938rem;
    --fs-6: 0.875rem;

  }



  /**
   * REUSED STYLE
   */

  .container { max-width: 720px; }

  .btn {
    --fs-5: 1rem;
    padding: 12px 28px;
  }



  /**
   * HEADER
   */

  .header-top { padding-block: 5px; }

  .header-top .wrapper { margin-left: auto; }

  .header-top-social-list { gap: 12px; }

  .header-top-social-link { font-size: 1rem; }

  .header-top-btn { padding: 10px 20px; }

  .header-bottom-actions {
    all: unset;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .header-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .header-bottom-actions-btn ion-icon { margin-bottom: 0; }

  .header-bottom-actions-btn span { display: none; }

  .header-bottom-actions-btn {
    background: var(--white);
    width: 50px;
    height: 50px;
    box-shadow: var(--shadow-2);
  }



  /**
   * HERO
   */

  .hero-content { max-width: 400px; }

 .hero-content .hero-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }

    
 .hero-content .hero-text {
    padding-left: 30px;
    max-width: 500px;
    margin-bottom: 40px;

  }


    


  /**
   * ABOUT
   */

  .about .section-title { max-width: 30ch; }

  .about-text { max-width: 55ch }

  .about-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }



  /**
   * FEATURES
   */

  .features-list > li { width: calc(33.33% - 13.33px); }

  .features-card { gap: 20px; }

  .features-card .card-icon {
    width: 80px;
    height: 80px;
    font-size: 32px;
  }

  .features-card .card-title { --fs-6: 1.125rem; }



  /**
   * BLOG
   */

  .blog-card { --fs-7: 0.875rem; }

  .blog-title { font-size: 1.25rem; }

  .blog .card-meta-list { gap: 30px; }



  /**
   * CTA
   */

  .cta-card { --fs-2: 1.625rem; }



  /**
   * FOOTER
   */

  .footer { margin-bottom: 0; }

}





/**
 * responsive for larger than 992px screen
 */

@media (min-width: 992px) {

  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
     * typography
     */

    --fs-1: 3.125rem;
    --fs-4: 1.375rem;

  }



  /**
   * REUSED STYLE
   */

  .container { max-width: 970px; }

  .btn { padding: 15px 40px; }



  /**
   * HEADER
   */

  .header-top-list,
  .header-top .wrapper { gap: 30px; }



  /**
   * HERO
   */

  .hero-content {
    max-width: unset;
    margin-bottom: 0;
  }

  .hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }



  /**
   * ABOUT
   */

  .about .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
  }

  .about-banner { margin-bottom: 0; }

  .about-banner > img { width: 100%; }



  /**
   * SERVICE
   */

  .service-list > li { width: calc(33.33% - 20px); }



  /**
   * PROPERTY
   */

  .property-card .card-content { padding-inline: 30px; }

  .card-footer { padding: 20px 30px 30px; }



  /**
   * FEATURES
   */

  .features-list { column-gap: 30px; }

  .features-list > li { width: calc(25% - 30px); }



  /**
   * BLOG
   */

  .blog-title { font-size: 1.375rem; }



  /**
   * CTA
   */

  .cta-card {
    --fs-2: 1.875rem;
    --fs-5: 1rem;

    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px;
  }

  .cta-card :is(.card-content, .cta-btn) { margin: 0; }



  /**
   * FOOTER
   */

  .footer-top .container {
    display: flex;
    justify-content: space-between;
  }

  .footer-brand {
    max-width: 300px;
    margin-bottom: 0;
  }

  .footer-link-box { flex-basis: 550px; }

}





/**
 * responsive for larger than 1200px screen
 */

@media (min-width: 1200px) {

  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
     * typography
     */

    --fs-2: 2.75rem;
    --fs-4: 1.5rem;

  }

}

  /**
   * REUSED STYLE
   */

  .container { max-width: 1200px; }

  .has-scrollbar > li { min-width: calc(33.33% - 16.66px); }






 
 

/* FAQ Complaint Report & Enquiry Form Styling */

.faq .container-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
  justify-content: space-between;
  margin-top: 40px;
  margin-bottom: 40px;
  padding: 0 50px;
}

.complaint-report-box {
  background: #fffbe7;
  border: 1.5px solid #ffe082;
  border-radius: 14px;
  padding: 2.2rem 1.5rem 1.5rem 1.5rem;
  max-width: 840px;
  min-width: 460px;
  box-shadow: 0 4px 18px rgba(245, 180, 50, 0.10), 0 1.5px 6px rgba(44,62,80,0.04);
  font-family: 'Segoe UI', sans-serif;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}

.complaint-report-box h3 {
  margin-bottom: 18px;
  font-size: 2.25rem;
  color: #d17b00;
  font-weight: 700;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.complaint-stats {
  list-style: none;
  padding: 0;
  margin: 0 0 14px 0;
  font-size: 1rem;
  color: #333;
  width: 100%;
}

.complaint-stats li {
  margin-bottom: 10px;
  padding-left: 1.5em;
  position: relative;
  font-size: 1.05rem;
  color: #444;
}

.complaint-stats li::before {
  content: "✔";
  color: #d17b00;
  position: absolute;
  left: 0;
  font-size: 1.1rem;
  font-weight: bold;
}

.report-link {
  display: inline-block;
  background-color: #ff9800;
  color: white;
  padding: 8px 18px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
  margin-top: 10px;
  font-size: 1rem;
}

.report-link:hover {
  background-color: #e07c00;
}

/* Enquiry Form Styling */
.faq-enquiry {
  background: #f7f9fb;
  border-radius: 14px;
  box-shadow: 0 4px 18px rgba(44,62,80,0.07);
  padding: 2.2rem 1.5rem 1.5rem 1.5rem;
  max-width: 720px;
  min-width: 350px;
  margin-bottom: 24px;
  margin-left: auto;
  flex: 1 1 340px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.faq .enquiry-title {
  font-size: 1.2rem;
  color: #2b6cb0;
  margin-bottom: 1.2rem;
  text-align: center;
  font-weight: 700;
  letter-spacing: 1px;
}

.enquiry-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.enquiry-form .form-group {
  margin-bottom: 0;
}

.enquiry-form input,
.enquiry-form textarea {
  width: 100%;
  padding: 0.7rem 1rem;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  font-size: 1rem;
  background: #fff;
  color: #222;
  transition: border 0.2s;
  outline: none;
  resize: none;
}

.enquiry-form input:focus,
.enquiry-form textarea:focus {
  border-color: #2b6cb0;
}

.enquiry-btn {
  width: 100%;
  padding: 0.8rem 0;
  background: #2b6cb0;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 1.08rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  letter-spacing: 1px;
  margin-top: 8px;
}

.enquiry-btn:hover {
  background: #17406a;
}

/* Responsive: Stack vertically on small screens */
@media (max-width: 900px) {
  .faq .container-flex {
    flex-direction: column;
    gap: 24px;
    margin-top: 20px;
  }
  .complaint-report-box,
  .faq-enquiry {
    max-width: 100%;
    min-width: unset;
    margin-left: 0;
  }
}



  


/*-----------------------------------*\
  #New Component Box
  
\*-----------------------------------*/
/************************************
   MAIN CONTAINER + TITLE
*************************************/
.complaint-center {
  width: 100%;
  margin: 30px auto;
  text-align: center;
}

.complaint-title {
  background: #fff7e5;
  padding: 15px 25px;
  display: inline-block;
  border-radius: 12px;
  border: 2px solid #f2d9a6;
  font-size: 24px;
  font-weight: 700;
  color: #d48806;
  margin-bottom: 25px;
}


/************************************
   DESKTOP TABLE (Normal)
*************************************/
.complaint-box-responsive {
  width: 100%;
  display: flex;
  justify-content: center;
  overflow: visible;
}

.complaint-center-table {
  width: 90%;
  max-width: 1000px;
  border-collapse: collapse;
  background: #fff;
}

.complaint-center-table th,
.complaint-center-table td {
  border: 1px solid #555;
  padding: 12px;
  text-align: left;
  font-size: 14px;
}

.complaint-center-table th {
  background: #f4f4f4;
  font-weight: 700;
}

.complaint-center-table tr:last-child td {
  background: #eee;
  font-weight: bold;
}


/************************************
   📱 MOBILE RESPONSIVE SECTION
*************************************/
@media (max-width: 768px) {

  .complaint-title {
    font-size: 18px;
    padding: 10px 15px;
  }

  .complaint-box-responsive {
    overflow-x: auto;     /* Enables scroll */
    -webkit-overflow-scrolling: touch;
    justify-content: flex-start;
    padding-bottom: 5px;  /* space for scrollbar */
  }

  .complaint-center-table {
    min-width: 850px;     /* prevents table from shrinking */
    width: 850px;
  }

  .complaint-center-table th,
  .complaint-center-table td {
    padding: 10px;
    font-size: 13px;
  }
}



/*-----------------------------------*\
  #Complaint Two Column Table 
\*-----------------------------------*/


/* Section layout */
.complaint-two-col {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;   /* 🔥 Increased gap between left and right tables */
  margin: 40px 0;
}

/* Each column */
.complaint-two-col .col {
  width: 50%;
}

/* Table styling */
.complaint-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 15px;
  background: #fff;
  font-size: 14px;
}

.complaint-table th,
.complaint-table td {
  border: 1px solid #ddd;
  padding: 10px;
  vertical-align: middle;
}

.complaint-table th {
  background: #f4f4f4;
  font-weight: bold;
}

.grand-total td {
  background: #fafafa;
  font-weight: bold;
}

/* Responsive design */
@media (max-width: 900px) {
  .complaint-two-col {
    flex-direction: column;
  }
  .complaint-two-col .col {
    width: 100%;
  }
}



/*-----------------------------------*\
  #Terms and Conditions   
\*-----------------------------------*/

.terms-section {
  margin-top: 40px;
  width: 100%;
}

.terms-box {
  background: #fff7e5;
  padding: 30px 35px;
  border-radius: 15px;
  border: 2px solid #f2d9a6;
}

.terms-box h3 {
  font-size: 26px;
  font-weight: 700;
  color: #d48806;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.terms-list {
  margin-left: 20px;
  line-height: 1.6;
  font-size: 15px;
  color: #333;
}

.terms-list li {
  margin-bottom: 15px;
}

.terms-list ul {
  margin-top: 10px;
  margin-left: 20px;
  list-style: disc;
}

.terms-list ul li {
  margin-bottom: 8px;
  font-size: 14px;
}
