
:root {
  --font-default: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-primary: "Montserrat", sans-serif;
  --font-secondary: "Raleway", sans-serif;
}

/* Colors */
:root {
  --color-default: #2b180d;
  --color-primary: #283474;
  --color-secondary:white;;
}

/* Smooth scroll behavior */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: var(--font-default);
  color: var(--color-default);
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: #061d61;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-primary);
}


/*-----------------------SUMBANGAN SECTION----------------------------*/
.sumbangan-section {
  background: linear-gradient(135deg, #f5f8ff 0%, #e6eeff 100%);
  padding: 60px 20px;
}

.sumbangan-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  max-width: 950px;
  width: 100%;
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sumbangan-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Image side */
.sumbangan-image img {
  width: 100%;
  height: 100%;
  max-width: 400px;
  object-fit: cover;
  border-right: 5px solid #007bff;
}

/* Text side */
.sumbangan-text {
  flex: 1;
  padding: 40px;
  color: #2a2a2a;
}

.sumbangan-text .bank-title {
  font-size: 28px;
  font-weight: 700;
  color: #283474;
  margin-bottom: 20px;
}

.sumbangan-text p {
  font-size: 18px;
  margin-bottom: 10px;
  color: #333;
}

.donate-btn {
  display: inline-block;
  margin-top: 20px;
  background: linear-gradient(90deg, #007bff, #00bfff);
  color: #fff;
  font-size: 16px;
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
  box-shadow: 0 6px 15px rgba(0, 123, 255, 0.3);
}

.donate-btn:hover {
  background: linear-gradient(90deg, #0066d1, #00a2e0);
  transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 900px) {
  .sumbangan-card {
    flex-direction: column;
    text-align: center;
  }

  .sumbangan-image img {
    max-width: 100%;
    border-right: none;
    border-bottom: 5px solid #007bff;
  }

  .sumbangan-text {
    padding: 25px;
  }

  .sumbangan-text .bank-title {
    font-size: 24px;
  }

  .sumbangan-text p {
    font-size: 16px;
  }
}

/*====================================================================================================================================================*/ 

/*--------------------------------------------------------------SDrR
# Sections & Section Header
--------------------------------------------------------------*/
section {
  overflow: hidden;
  padding: 0px 5px;
}

.section-header {
  text-align: center;
  padding-bottom: 30px;
}

.section-header h2 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-header h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 2px;
  background: var(--color-primary);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-header p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------

/*--------------------------------------------------------------
# Google Translate
/* Style the container of the Google Translate widget */

/* Style the container of the Google Translate widget */
#google_translate_element {
  font-size: 10px; /* Adjust the font size as needed */
  padding: 5px;   /* Adjust the padding as needed */
  width: 60px;   /* Adjust the width as needed */
}

/* Style the Google Translate button */
.goog-te-menu-value {
  font-size: 10px; /* Adjust the font size of the language dropdown */
}

/*-------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 140px 0 60px 0;
  min-height: 30vh;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.breadcrumbs:before {
  content: "";
  background-color: rgba(27, 47, 69, 0.7);
  position: absolute;
  inset: 0;
}

.breadcrumbs h2 {
  font-size: 56px;
  font-weight: 500;
  color: #fff;
  font-family: var(--font-secondary);
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-primary);
}

.breadcrumbs ol a {
  color: rgba(255, 255, 255, 0.8);
  transition: 0.3s;
}

.breadcrumbs ol a:hover {
  text-decoration: underline;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #fff;
  content: "/";
}

/*--------------------------------------------------------------
# Scroll top button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background: var(--color-primary);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.scroll-top:hover {
  background: #061d61;
  color: #fff;
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid var(--color-primary);
  border-top-color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}
/*--image slider----*/
.imageSlider {
  max-width: 100%;
  height: auto;
}
/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/* ---------- Header with gradient (right -> left) ---------- */
.header {
  transition: all 0.4s ease;
  z-index: 999;
  padding: 12px 40px;
  /* gradient right->left: light blue -> white */
  background: linear-gradient(to left, #66b2ff 0%, #ffffff 100%);
  /* fallback */
  background-color: rgba(102,178,255,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

/* darker when sticky */
.header.sticked {
  background: linear-gradient(to left, #4a6cf7 0%, #eaf3ff 100%);
  padding: 10px 30px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

/* Logo behavior unchanged */
.header .logo img {
  max-height: 60px;
  transition: transform 0.3s ease;
}
.header .logo img:hover {
  transform: scale(1.05);
}

/* ===================================================================================================================================== */
/* ---------- Navbar & dropdowns ---------- */
/* ===================================================================================================================================== */

/* Navbar base */
.navbar {
  padding: 0;
  transition: all 0.3s ease;
}

/* Desktop view */
.navbar ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 15px;
  align-items: center;
}

.navbar a {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 30px;
  background: rgba(255,255,255,0.08);
  color: #012970;
  font-weight: 600;
  font-size: 13px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.navbar a:hover {
  background: rgba(255,255,255,0.18);
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

/* Dropdowns (desktop) */
.navbar .dropdown ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border-radius: 12px;
  padding: 8px 0;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.navbar .dropdown:hover > ul {
  display: block;
}

/* ===================================================================================================== */
/* ========================== MOBILE NAVBAR (drawer + overlay + accordion) ============================== */
/* ===================================================================================================== */
@media (max-width: 1279px) {
  /* Toggle icon */
  .mobile-nav-toggle {
    display: block;
    font-size: 28px;
    color: #012970;
    cursor: pointer;
    z-index: 10002;          /* above overlay and drawer */
    transition: transform 0.3s ease;
  }
  .mobile-nav-toggle.active { transform: rotate(90deg); }

  /* Drawer */
  .navbar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 86%;
    max-width: 360px;
    height: 100vh;
    /* 👇 SOLID LIGHT BLUE BACKGROUND (new change) */
    background: #e3f0ff; /* Light solid blue tone */
    box-shadow: -2px 0 22px rgba(0,0,0,0.12);
    border-left: 1px solid rgba(255,255,255,0.45);
    transition: right .45s cubic-bezier(.77,0,.175,1);
    padding-top: 80px;
    z-index: 10001;          /* sits above overlay */
    overflow-y: auto;        /* scroll vertically */
    overflow-x: visible;     /* allow inner indents without clipping */
    overscroll-behavior: contain;
  }
  .navbar.navbar-mobile-active { right: 0; }

  /* Page overlay */
  body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    opacity: 0;
    pointer-events: none;
    transition: opacity .35s ease;
    z-index: 10000;          /* below drawer, above page */
  }
  body.nav-open::before {
    opacity: 1;
    pointer-events: auto;    /* clickable to close */
  }
  body.nav-open { overflow: hidden; } /* lock page scroll */

  /* Drawer list & items */
  .navbar ul {
    display: block;
    padding: 0 10px 30px 10px;
    margin: 0;
  }

  .navbar li {
    list-style: none;
    opacity: 0;
    transform: translateX(18px);
    animation: fadeSlideIn .38s forwards;
  }
  .navbar li:nth-child(1){animation-delay:.08s}
  .navbar li:nth-child(2){animation-delay:.12s}
  .navbar li:nth-child(3){animation-delay:.16s}
  .navbar li:nth-child(4){animation-delay:.20s}
  .navbar li:nth-child(5){animation-delay:.24s}
  @keyframes fadeSlideIn { to { opacity:1; transform:translateX(0);} }

  /* Links */
  .navbar a {
    display: block;
    padding: 14px 18px;
    color: #012970;
    font-weight: 600;
    font-size: 15px;
    border-radius: 10px;
    text-decoration: none;
    transition: background .25s ease, transform .25s ease;
  }
  .navbar a:hover {
    background: rgba(0,32,91,0.08);
    transform: translateX(4px);
  }

  /* Accordion dropdowns (all levels inline, never absolute) */
  .navbar .dropdown { width: 100%; position: relative; }

  .navbar .dropdown > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
  }

  /* caret */
  .navbar .dropdown > a i {
    font-size: 16px;
    transition: transform .28s ease;
  }
  .navbar .dropdown.open > a i { transform: rotate(180deg); }

  /* submenu panel (kept INSIDE drawer) */
  .navbar .dropdown ul {
    position: static !important;     /* no fly-outs */
    display: block;                  /* we animate height instead */
    margin: 6px 0 10px 0;            /* no pushing outside drawer */
    background: #d2e6ff; /* lighter solid blue tone for submenus */
    border-left: 2px solid #fbbf24;
    border-radius: 10px;
    padding: 0;
    box-shadow: none;
    overflow: hidden;
    max-height: 0;                   /* collapsed by default */
    opacity: 0;
    transform: translateY(-6px);
    transition: max-height .35s ease, opacity .3s ease, transform .3s ease;
  }
  .navbar .dropdown.open > ul {
    max-height: 700px;               /* large enough for content */
    opacity: 1;
    transform: translateY(0);
  }

  /* submenu items */
  .navbar .dropdown ul li { padding: 0; }
  .navbar .dropdown ul a {
    padding: 11px 16px 11px 22px;    /* indent */
    font-size: 14px;
    font-weight: 500;
    border-radius: 8px;
  }
  .navbar .dropdown ul a:hover {
    background: rgba(0,32,91,0.08);
  }

  /* second (and deeper) levels — slightly more indent */
  .navbar .dropdown ul .dropdown > ul a {
    padding-left: 34px;
  }
}


/* MUAT TURUN dropdown base */
/* ===================================================================================================================== */
/*=============================================================================================================================================== */


/* ===== Dropdown Section Titles ===== */
/* --- Clean centered dropdown section title --- */
/* --- Dropdown Section Title (bold, uppercase, underlined with spacing) --- */
.dropdown-section-title {
  text-align: center;
  font-weight: 700;              
  font-size: 14px;
  color: #004a99;
  text-transform: uppercase;     
  border-bottom: 2px solid #004a99; 
  display: block;
  margin: 10px 0 6px 0;          
  padding-bottom: 4px;           
  letter-spacing: 0.8px;
  cursor: default;
}

/* Divider line */
.dropdown-divider {
  height: 1px;
  background-color: #ddd;
  margin: 8px 0;
}

/* Light background section (optional) */
.dropdown-light-bg {
  background: #fafafa;
  border-radius: 4px;
  padding: 4px 0;
}

/* Default nested dropdown direction (kept as backup) */
.navbar .dropdown ul ul {
  top: 0;
  left: 100%;
  margin-left: 0.2rem;
  background: #fff;
  border-radius: 8px;
}

/* ===== Submenu Base ===== */
.dropdown-submenu {
  display: none;
  position: absolute;
  top: 0;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  min-width: 220px;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: all 0.25s ease;
}

/* ===== Open submenu to the LEFT ===== */
.left-submenu {
  right: 100% !important;
  left: auto !important;
  margin-right: 8px;
  margin-left: 0;
}

/* ===== Show submenu on hover ===== */
.dropdown:hover > .dropdown-submenu {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* ===== Links inside submenu ===== */
.dropdown-submenu li a {
  display: block;
  padding: 10px 16px;
  color: #333;
  font-weight: 500;
  text-decoration: none;
  transition: 0.25s;
  white-space: nowrap;
}

.dropdown-submenu li a:hover {
  background: #eaf3ff;
  color: #0056b3;
  transform: translateX(-2px);
}

/* ===== Arrow icon styling ===== */
.bi-chevron-left {
  font-size: 0.9rem;
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.dropdown:hover > a .bi-chevron-left {
  transform: translateX(-2px);
}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  position: relative;
  background: linear-gradient(to top, #001f4d, #66b2ff); /* Full hero gradient */
  padding-bottom: 50px;
  z-index: 3;
  overflow: hidden; /* Prevents any extra spacing from children */
  padding-top: 150px;
}

/* Keep the image positioned on the right */
.hero .image-container img {
  position: absolute;
  right: 0;
  bottom: 0;
  max-height: 100%;
  object-fit: contain;
  z-index: 2;
  margin-bottom: 50px;
}

/* Hero Left Content Adjustments */
.hero .col-lg-4 {
  text-align: center;        /* Center all content inside column */
}

.hero .col-lg-4 img {
  display: block;
  margin: 0 auto 15px auto;  /* Center logo */
  max-width: 300px;
}

.hero .col-lg-4 p {
  color: #fff;
  font-size: 16px;
  line-height: 1.5;
  margin: 0 auto 20px auto;  /* Center text with spacing below */
  text-align: center;
  max-width: 90%;            /* Keep text nicely wrapped */
}

.hero .col-lg-4 .d-flex {
  justify-content: center !important; /* Center the button */
}

.hero .col-lg-4 .btn-get-started {
  margin: 0 auto;            /* Ensure button stays in the middle */
}


@media (max-width: 1034px) {
  .hero:before {
    background: rgba(5, 54, 107, 0.906);
  }
}

.hero .container {
  z-index: 1;
}

@media (min-width: 1365px) {
  .hero {
    background-attachment: fixed;
  }
}

.hero h2 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  font-family: var(--font-secondary);
}

.hero blockquote {
  color: #fff;
  padding-left: 20px;
  font-size: 15px;
  font-family: var(--font-default);
  border-left: 2px solid var(--color-primary);
  margin: 40px 0;
}

.hero .btn-get-started {
  font-family: var(--font-secondary);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 30px;
  border-radius: 50px;
  transition: 0.5s;
  color: #fff;
  background: var(--color-primary);
}

.hero .btn-get-started:hover {
  background: rgba(86, 184, 230, 0.8);
}

.hero .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
}

.hero .btn-watch-video i {
  color: var(--color-primary);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.hero .btn-watch-video:hover {
  color: #fff;
}

.hero .btn-watch-video:hover i {
  color: #82cbed;
}

@media (max-width: 640px) {
  .hero h2 {
    font-size: 36px;
    line-height: 1;
  }

  .hero .btn-get-started,
  .hero .btn-watch-video {
    font-size: 13px;
  }
}


/*--------------------------------------------------------------
# Why Choose Us Section
--------------------------------------------------------------*/
.why-us {
  padding-bottom: 0;
}

.why-us .img-bg {
  height: 100%;
  min-height: 400px;
  background-size: cover;
}

.why-us .slides {
  background-color: #f7f9fc;
}

.why-us h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-secondary);
}

.why-us h4 {
  font-size: 18px;
  font-weight: 400;
  color: #29486a;
  font-family: var(--font-secondary);
}

.why-us .swiper {
  margin: 10px 120px 10px 120px;
  overflow: hidden;
}

.why-us .swiper-button-prev:after,
.why-us .swiper-button-next:after {
  font-size: 24px;
  color: red;
}

.why-us .swiper-button-prev {
  left: 80px;
}

.why-us .swiper-button-next {
  right: 80px;
}

.why-us .swiper-pagination {
  margin-top: 30px;
  position: relative;
}

.why-us .swiper-pagination .swiper-pagination-bullet {
  background-color: var(--color-secondary);
}

.why-us .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--color-primary);
}

@media (max-width: 1200px) {
  .why-us .swiper {
    margin: 60px 60px 40px 60px;
  }

  .why-us .swiper-button-prev,
  .why-us .swiper-button-next {
    display: none;
  }
}

@media (max-width: 575px) {
  .why-us .swiper {
    margin: 40px 40px 20px 40px;
  }
}

.page-about .why-us {
  padding: 0 0 80px 0;
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 700;
  font-size: 36px;
  font-family: var(--font-secondary);
  color: var(--color-secondary);
}

.about .content p {
  margin: 30px 0;
  color: #29486a;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding: 0 0 15px 26px;
  position: relative;
  font-size: 15px;
  font-weight: 600;
}

.about .content ul i {
  position: absolute;
  font-size: 20px;
  left: 0;
  top: -3px;
  color: var(--color-primary);
}

/*--------------------------------------------------------------
# Services List Section
--------------------------------------------------------------*/
.services-list .service-item {
  position: relative;
}

.services-list .service-item .icon i {
  font-size: 32px;
  line-height: 0;
  margin-right: 20px;
  color: #38618e;
}

.services-list .service-item .title {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
}

.services-list .service-item .title a {
  color: var(--color-secondary);
}

.services-list .service-item .title a:hover {
  color: #38618e;
}

.services-list .service-item .description {
  line-height: 24px;
  font-size: 14px;
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  background: linear-gradient(rgba(27, 47, 69, 0.8), rgba(27, 47, 69, 0.8)), url("../img/cta-bg.webp") center center;
  background-size: cover;
  padding: 80px 0;
}

@media (min-width: 1365px) {
  .call-to-action {
    background-attachment: fixed;
  }
}

.call-to-action h3 {
  color: #fff;
  font-size: 28px;
  margin-bottom: 25px;
  font-weight: 700;
}

.call-to-action p {
  color: #fff;
  margin-bottom: 25px;
}

.call-to-action .cta-btn {
  font-family: var(--font-default);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  color: #fff;
  background: #2aa5df;
}

.call-to-action .cta-btn:hover {
  background: var(--color-primary);
}
/*----------------------------------------------------------*/
/*--------------------Lagu Section------------------------- */
/*--------------------Lagu Section------------------------- */
.menu .nav-tabs {
  border: 0;
  color: maroon;
  flex-wrap: wrap;
  justify-content: center;
}

.menu .nav-link {
  margin: 0 10px;
  padding: 10px 5px;
  transition: 0.3s;
  color: maroon;
  border-radius: 0;
  cursor: pointer;
  border: 0;
  border-bottom: 2px solid #b6b6bf;
}

.menu .nav-link h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  font-family: var(--font-secondary);
}

.menu .nav-link:hover {
  color: maroon;
}

.menu .nav-link.active {
  color: black;
  border-color: var(--color-primary);
}

.menu .tab-content .tab-header {
  padding: 30px 0 10px 0;
}

.menu .tab-content .tab-header h3 {
  font-size: 32px;
  font-weight: 600;
  color: maroon;
}

/* --------------------------------------
------------- Lagu Layout ---------------------*/
.laguborder {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap; /* ✅ Allow wrapping for mobile */
  gap: 20px;
  margin: 40px auto;
  padding: 10px;
  max-width: 1100px;
}

.video {
  flex: 1 1 480px; /* ✅ shrink on smaller screens */
  display: flex;
  justify-content: center;
}

.video iframe {
  width: 100%;
  max-width: 530px;
  height: auto;
  aspect-ratio: 16 / 9; /* ✅ responsive video height */
  border-radius: 10px;
  border: 3px solid rgba(40, 51, 116, 0.2);
}

.textlagu {
  flex: 1 1 400px;
  text-align: left;
  padding: 10px;
}

.textlagu h4 {
  color: maroon;
  font-weight: 600;
  margin-bottom: 10px;
}

.textlagu p {
  font-size: 18px;
  line-height: 1.6;
}

/* ✅ Mobile optimization */
@media (max-width: 768px) {
  .laguborder {
    flex-direction: column;
    align-items: center;
    margin: 20px auto;
    text-align: center;
  }

  .textlagu {
    padding: 0 15px;
  }

  .menu .nav-link h3 {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .textlagu p {
    font-size: 16px;
  }

  .menu .tab-content .tab-header h3 {
    font-size: 26px;
  }
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features {
  padding-bottom: 0;
}

.features h3 {
  color: var(--color-secondary);
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 30px;
}

.features .icon-list i {
  margin-right: 10px;
  font-size: 24px;
  line-height: 1.2;
}

.features .icon-list span {
  font-size: 18px;
  color: #29486a;
}

.features .phone-wrap {
  position: absolute;
  right: 0;
}

@media (max-width: 768px) {
  .features .phone-wrap {
    position: relative;
  }
}

.features .phone-wrap img {
  width: 340px;
}

@media (max-width: 992px) {
  .features .phone-wrap img {
    margin-top: 30px;
  }
}

@media (max-width: 768px) {
  .features .phone-wrap img {
    width: 100%;
  }
}

.features .details {
  margin-top: 80px;
  padding: 120px 0;
  background-color: #f7f9fc;
}

.features .details h4 {
  color: var(--color-secondary);
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
}

.features .details p {
  margin-bottom: 20px;
  font-size: 15px;
}

.features .details .btn-get-started {
  font-family: var(--font-primary);
  display: inline-block;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  padding: 10px 32px;
  border-radius: 50px;
  transition: 0.5s;
  background-color: var(--color-primary);
  color: #fff;
}

.features .details .btn-get-started:hover {
  background: #2aa5df;
}

/*--------------------------------------------------------------
# Recent Blog Posts Section
--------------------------------------------------------------*/
.recent-posts .post-box {
  transition: 0.3s;
  height: 100%;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}

.recent-posts .post-box .post-img {
  overflow: hidden;
  position: relative;
}

.recent-posts .post-box .post-img img {
  transition: 0.5s;
}

.recent-posts .post-box .meta {
  margin-top: 15px;
}

.recent-posts .post-box .meta .post-date {
  font-size: 15px;
  font-weight: 400;
  color: var(--color-primary);
}

.recent-posts .post-box .meta .post-author {
  font-size: 15px;
  font-weight: 400;
  color: var(--color-secondary);
}

.recent-posts .post-box .post-title {
  font-size: 18px;
  color: var(--color-secondary);
  font-weight: 700;
  margin: 15px 0 0 0;
  position: relative;
  transition: 0.3s;
}

.recent-posts .post-box p {
  margin: 15px 0 0 0;
  color: rgba(27, 47, 69, 0.7);
}

.recent-posts .post-box .readmore {
  display: flex;
  align-items: center;
  font-weight: 600;
  line-height: 1;
  transition: 0.3s;
  margin-top: 15px;
}

.recent-posts .post-box .readmore i {
  line-height: 0;
  margin-left: 4px;
  font-size: 18px;
}

.recent-posts .post-box:hover .post-title {
  color: var(--color-primary);
}

.recent-posts .post-box:hover .post-img img {
  transform: scale(1.1);
}

/* --------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .team-member {
  overflow: hidden;
  background: #fff;
  position: center;
}

.team .team-member .member-img {
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 119px;     /* fixed width */
  height: 178px;    /* fixed height */
  margin: 0 auto;   /* centers inside column */
}

.team .team-member .member-img img {
  width: 119px !important;     /* force exact size */
  height: 178px !important;    /* force exact size */
  object-fit: cover;           /* fill box neatly */
  object-position: center;
  display: block;
  border-radius: 6px;          /* optional: consistent corners */
}

.team .team-member .social {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;       /* perfectly fits image box */
  height: 100%;      /* perfectly fits image box */
  background: rgba(0, 0, 0, 0.5);  /* dark overlay on hover */
  opacity: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  transition: opacity 0.3s ease;
  border-radius: 6px;
  pointer-events: none;  /* prevents accidental hover blocking */
}

.team .team-member .social a {
  color: #fff;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.team .team-member .social a i {
  line-height: 0;
}

.team .team-member .social a:hover {
  background: #ffcc00; /* hover color */
  color: #000;
}

.team .team-member .social i {
  font-size: 18px;
  margin: 0 2px;
}

.team .team-member .member-info {
  padding: 25px 15px 0 15px;
  text-align: center;
}

.team .team-member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
  color: var(--color-secondary);
}

.team .team-member .member-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: #6c757d;
}

.team .team-member .member-info p {
  font-style: italic;
  font-size: 14px;
  line-height: 26px;
  color: #6c757d;
}

.team .team-member:hover .social {
  opacity: 1;
} */  */

/*--------------------------------------------------------------
# Services Cards Section
--------------------------------------------------------------*/
.services-cards {
  background: #f7f9fc;
}

.services-cards .card-item {
  border: 1px solid rgba(27, 47, 69, 0.1);
  background: #fff;
  position: relative;
  border-radius: 0;
}

.services-cards .card-item .card-bg {
  min-height: 300px;
  background-size: cover;
  background-repeat: no-repeat;
}

.services-cards .card-item .card-body {
  padding: 30px;
}

.services-cards .card-item h4 {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--color-secondary);
}

.services-cards .card-item p {
  color: var(--color-secondary);
  margin: 0;
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-flters {
  padding: 0;
  margin: 0 auto 30px auto;
  list-style: none;
  text-align: center;
}

.portfolio .portfolio-flters li {
  color: var(--color-secondary);
  cursor: pointer;
  display: inline-block;
  padding: 0;
  font-size: 18px;
  font-weight: 400;
  margin: 0 10px;
  line-height: 1;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.portfolio .portfolio-flters li:hover,
.portfolio .portfolio-flters li.filter-active {
  color: var(--color-primary);
}

.portfolio .portfolio-flters li:first-child {
  margin-left: 0;
}

.portfolio .portfolio-flters li:last-child {
  margin-right: 0;
}

@media (max-width: 575px) {
  .portfolio .portfolio-flters li {
    font-size: 14px;
    margin: 0 5px;
  }
}

.portfolio .portfolio-item {
  position: relative;
}

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: rgba(255, 255, 255, 0.9);
  padding: 15px;
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-default);
  padding-right: 50px;
}

.portfolio .portfolio-item .portfolio-info p {
  color: #6c757d;
  font-size: 14px;
  margin-bottom: 0;
  padding-right: 50px;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 50px;
  font-size: 24px;
  top: calc(50% - 14px);
  color: rgba(27, 47, 69, 0.7);
  transition: 0.3s;
  line-height: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: var(--color-primary);
}

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 14px;
  font-size: 28px;
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  bottom: 20px;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid var(--color-primary);
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--color-primary);
}

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(27, 47, 69, 0.1);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #d6e2ef;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--color-secondary);
}

.portfolio-details .portfolio-description p {
  padding: 0;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact {
  background: url("../img/contact-bg.png") left top no-repeat;
  background-size: contain;
  position: relative;
}

@media (max-width: 640px) {
  .contact {
    background-position: center 50px;
  }
}

.contact:before {
  content: "";
  background: rgba(255, 255, 255, 0.7);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

.contact .info-item+.info-item {
  margin-top: 40px;
}

.contact .info-item i {
  font-size: 20px;
  background: var(--color-primary);
  color: #fff;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .info-item h4 {
  padding: 0;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 5px;
  color: #1c88ba;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .php-email-form {
  width: 100%;
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #df1529;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #059652;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #059652;
  border-top-color: #fff;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  padding: 12px 15px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--color-primary);
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type=submit] {
  background: #1f98d1;
  border: 0;
  padding: 12px 40px;
  color: #fff;
  transition: 0.4s;
}

.contact .php-email-form button[type=submit]:hover {
  background: var(--color-primary);
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Ahli Negeri Section 
--------------------------------------------------------------*/
.tablenegeri {
  display: table;
  width: 80%;
  border-collapse: collapse;
  margin: 40px;
  margin-left: 10%;
}

.rownegeri {
  display: table-row;
  background-color: white;
}
.rownegeri2 {
  display: table-row;
  background-color: #a5d5f3;
}

.cellnegeri {
  display: table-cell;
  width: 120px;
  height: 40px;
  border: 1px solid transparent;
  text-align: center;
  vertical-align: middle;
}

/*--------------------------------------------------------------
# Blog Home Posts List
--------------------------------------------------------------*/
.blog .posts-list article {
  height: 100%;
  border-bottom: 1px solid #d6e2ef;
  padding-bottom: 30px;
}

.blog .posts-list article+article {
  margin-top: 60px;
}

.blog .posts-list .post-img {
  max-height: 240px;
  overflow: hidden;
}

.blog .posts-list .title {
  font-size: 20px;
  font-weight: 600;
  padding: 0;
  margin: 20px 0 0 0;
}

.blog .posts-list .title a {
  color: var(--color-secondary);
  transition: 0.3s;
}

.blog .posts-list .title a:hover {
  color: var(--color-primary);
}

.blog .posts-list .meta-top {
  margin-top: 20px;
  color: #467ab3;
}

.blog .posts-list .meta-top ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.blog .posts-list .meta-top ul li+li {
  padding-left: 20px;
}

.blog .posts-list .meta-top i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
  color: rgba(86, 184, 230, 0.8);
}

.blog .posts-list .meta-top a {
  color: #467ab3;
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.blog .posts-list .content {
  margin-top: 20px;
}

.blog .posts-list .read-more a {
  display: inline-block;
  color: #1f98d1;
  transition: 0.3s;
  font-size: 15px;
  font-weight: 500;
}

.blog .posts-list .read-more a:hover {
  color: var(--color-primary);
}

/*--------------------------------------------------------------
# Blog Details Page
--------------------------------------------------------------*/
.blog .blog-details {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 30px;
}

.blog .blog-details .post-img {
  margin: -30px -30px 20px -30px;
  overflow: hidden;
}

.blog .blog-details .title {
  font-size: 28px;
  font-weight: 700;
  padding: 0;
  margin: 20px 0 0 0;
  color: var(--color-secondary);
}

.blog .blog-details .content {
  margin-top: 20px;
}

.blog .blog-details .content h3 {
  font-size: 22px;
  margin-top: 30px;
  font-weight: bold;
}

.blog .blog-details .content blockquote {
  overflow: hidden;
  background-color: rgba(27, 47, 69, 0.06);
  padding: 60px;
  position: relative;
  text-align: center;
  margin: 20px 0;
}

.blog .blog-details .content blockquote p {
  color: var(--color-default);
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
}

.blog .blog-details .content blockquote:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: var(--color-secondary);
  margin-top: 20px;
  margin-bottom: 20px;
}

.blog .blog-details .meta-top {
  margin-top: 20px;
  color: var(--color-gray);
}

.blog .blog-details .meta-top ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.blog .blog-details .meta-top ul li+li {
  padding-left: 20px;
}

.blog .blog-details .meta-top i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
  color: rgba(86, 184, 230, 0.8);
}

.blog .blog-details .meta-top a {
  color: var(--color-gray);
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.blog .blog-details .meta-bottom {
  padding-top: 10px;
  border-top: 1px solid rgba(27, 47, 69, 0.15);
}

.blog .blog-details .meta-bottom i {
  color: #38618e;
  display: inline;
}

.blog .blog-details .meta-bottom a {
  color: rgba(27, 47, 69, 0.8);
  transition: 0.3s;
}

.blog .blog-details .meta-bottom a:hover {
  color: var(--color-primary);
}

.blog .blog-details .meta-bottom .cats {
  list-style: none;
  display: inline;
  padding: 0 20px 0 0;
  font-size: 14px;
}

.blog .blog-details .meta-bottom .cats li {
  display: inline-block;
}

.blog .blog-details .meta-bottom .tags {
  list-style: none;
  display: inline;
  padding: 0;
  font-size: 14px;
}

.blog .blog-details .meta-bottom .tags li {
  display: inline-block;
}

.blog .blog-details .meta-bottom .tags li+li::before {
  padding-right: 6px;
  color: var(--color-default);
  content: ",";
}

.blog .blog-details .meta-bottom .share {
  font-size: 16px;
}

.blog .blog-details .meta-bottom .share i {
  padding-left: 5px;
}

.blog .post-author {
  padding: 20px;
  margin-top: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .post-author img {
  max-width: 120px;
  margin-right: 20px;
}

.blog .post-author h4 {
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 0px;
  padding: 0;
  color: var(--color-secondary);
}

.blog .post-author .social-links {
  margin: 0 10px 10px 0;
}

.blog .post-author .social-links a {
  color: rgba(27, 47, 69, 0.5);
  margin-right: 5px;
}

.blog .post-author p {
  font-style: italic;
  color: rgba(var(--color-gray-rgb), 0.8);
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Blog Sidebar
--------------------------------------------------------------*/
.blog .sidebar .sidebar-title {
  font-size: 22px;
  font-weight: 400;
  padding: 0;
  margin: 0;
  color: var(--color-secondary);
}

.blog .sidebar .sidebar-item+.sidebar-item {
  margin-top: 40px;
}

.blog .sidebar .search-form form {
  background: #fff;
  border: 1px solid rgba(27, 47, 69, 0.2);
  padding: 3px 10px;
  position: relative;
}

.blog .sidebar .search-form form input[type=text] {
  border: 0;
  padding: 4px;
  border-radius: 4px;
  width: calc(100% - 40px);
}

.blog .sidebar .search-form form input[type=text]:focus {
  outline: none;
}

.blog .sidebar .search-form form button {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 15px;
  margin: -1px;
  background: var(--color-primary);
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  line-height: 0;
}

.blog .sidebar .search-form form button i {
  line-height: 0;
}

.blog .sidebar .search-form form button:hover {
  background: rgba(86, 184, 230, 0.8);
}

.blog .sidebar .categories ul {
  list-style: none;
  padding: 0;
}

.blog .sidebar .categories ul li+li {
  padding-top: 10px;
}

.blog .sidebar .categories ul a {
  color: var(--color-secondary);
  font-size: 15px;
}

.blog .sidebar .categories ul a:hover {
  color: var(--color-default);
}

.blog .sidebar .categories ul a span {
  padding-left: 5px;
  color: rgba(var(--color-default-rgb), 0.4);
  font-size: 14px;
}

.blog .sidebar .recent-posts .post-item {
  display: flex;
  box-shadow: 0px 0 15px rgba(0, 0, 0, 0.08);
  padding: 20px;
}

.blog .sidebar .recent-posts .post-item+.post-item {
  margin-top: 15px;
}

.blog .sidebar .recent-posts img {
  width: 80px;
  margin-right: 15px;
}

.blog .sidebar .recent-posts h4 {
  font-size: 18px;
  font-weight: 400;
}

.blog .sidebar .recent-posts h4 a {
  color: var(--color-secondary);
  transition: 0.3s;
}

.blog .sidebar .recent-posts h4 a:hover {
  color: var(--color-primary);
}

.blog .sidebar .recent-posts time {
  display: block;
  font-style: italic;
  font-size: 14px;
  color: rgba(var(--color-default-rgb), 0.4);
}

.blog .sidebar .tags {
  margin-bottom: -10px;
}

.blog .sidebar .tags ul {
  list-style: none;
  padding: 0;
}

.blog .sidebar .tags ul li {
  display: inline-block;
}

.blog .sidebar .tags ul a {
  color: #38618e;
  font-size: 14px;
  padding: 6px 14px;
  margin: 0 6px 8px 0;
  border: 1px solid rgba(27, 47, 69, 0.15);
  display: inline-block;
  border-radius: 50px;
  transition: 0.3s;
}

.blog .sidebar .tags ul a:hover {
  color: #fff;
  border: 1px solid var(--color-primary);
  background: var(--color-primary);
}

.blog .sidebar .tags ul a span {
  padding-left: 5px;
  color: rgba(27, 47, 69, 0.8);
  font-size: 14px;
}

/*--------------------------------------------------------------
# Blog Comments
--------------------------------------------------------------*/
.blog .comments {
  margin-top: 30px;
}

.blog .comments .comments-count {
  font-weight: bold;
}

.blog .comments .comment {
  margin-top: 30px;
  position: relative;
}

.blog .comments .comment .comment-img {
  margin-right: 14px;
}

.blog .comments .comment .comment-img img {
  width: 60px;
}

.blog .comments .comment h5 {
  font-size: 16px;
  margin-bottom: 2px;
}

.blog .comments .comment h5 a {
  font-weight: bold;
  color: var(--color-default);
  transition: 0.3s;
}

.blog .comments .comment h5 a:hover {
  color: var(--color-primary);
}

.blog .comments .comment h5 .reply {
  padding-left: 10px;
  color: var(--color-secondary);
}

.blog .comments .comment h5 .reply i {
  font-size: 20px;
}

.blog .comments .comment time {
  display: block;
  font-size: 14px;
  color: rgba(27, 47, 69, 0.8);
  margin-bottom: 5px;
}

.blog .comments .comment.comment-reply {
  padding-left: 40px;
}

.blog .comments .reply-form {
  margin-top: 30px;
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .comments .reply-form h4 {
  font-weight: bold;
  font-size: 22px;
}

.blog .comments .reply-form p {
  font-size: 14px;
}

.blog .comments .reply-form input {
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
}

.blog .comments .reply-form input:focus {
  box-shadow: none;
  border-color: rgba(86, 184, 230, 0.8);
}

.blog .comments .reply-form textarea {
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
}

.blog .comments .reply-form textarea:focus {
  box-shadow: none;
  border-color: rgba(86, 184, 230, 0.8);
}

.blog .comments .reply-form .form-group {
  margin-bottom: 25px;
}

.blog .comments .reply-form .btn-primary {
  border-radius: 4px;
  padding: 10px 20px;
  border: 0;
  background-color: var(--color-secondary);
}

.blog .comments .reply-form .btn-primary:hover {
  background-color: rgba(27, 47, 69, 0.8);
}

/*--------------------------------------------------------------
# Blog Home Pagination
--------------------------------------------------------------*/
.blog .blog-pagination {
  margin-top: 30px;
  color: #38618e;
}

.blog .blog-pagination ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.blog .blog-pagination li {
  margin: 0 5px;
  transition: 0.3s;
}

/**/
.blog .blog-pagination li a {
  color: #2aa5df;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  background: #dbf0fa;
  padding: 7px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
/**/
.blog .blog-pagination li.active a,
.blog .blog-pagination li:hover a {
  background: var(--color-primary);
  color: #fff;
}
/*=============================================================================================================================================== */
/*------------------------------------------------------------
#Contact us
--------------------------------------------------------------*/
.bodycontact {
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto;
  margin-bottom: 0%;
  background-color: #fff;
  min-width: 100%;
}

.containercontact {
  display: flex;
  max-width: 1000px;
  background: #e7e7ebec;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  overflow: hidden;
  margin-top: 20px;
}

.imagecontact {
  flex: 1;
  padding: 40px 40px;
}

.imagecontact img {
  max-width: 100%;
  height: auto;
  display: block;
}

.textcontact {
  flex: 2;
  padding: 30px;
}

.textcontact h1 {
  font-size: 30px;
}

.textcontact p {
  font-size: 18px;
}


/* ------------------------------------------------------------------------------------------------------------------------- */
/* ===== Force 2 cards per row, larger layout, with extra spacing ===== */
#hubungi .containercontact {
  max-width: 1400px;      /* fits two large cards nicely */
  width: 98%;
  margin: 0 auto;
  padding: 30px 20px;     /* adds outer breathing space */
}

/* Grid setup: exactly 2 cards per row with spacing */
.state-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;              /* 👈 adds space between both rows and columns */
  align-items: stretch;
  justify-content: center;
}

/* Card layout with image left, text right */
.state-card {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  background: linear-gradient(135deg, #f5f9ff 0%, #e9f3ff 100%); /* 👈 light gradient */
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  min-height: 160px;
}

/* hover animation */
.state-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.12);
  background: linear-gradient(135deg, #edf6ff 0%, #dff0ff 100%);
}
/* Image */
.state-img {
  width: 230px;
  height: 150px;
  object-fit: cover;
  border-radius: 10px;
  margin-right: 24px;
  flex-shrink: 0;
}

/* Text container */
.state-info {
  flex: 1;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Text styling */
.state-info h3 {
  font-size: 20px;
  font-weight: 700;
  color: #007bff;
  margin-bottom: 10px;
}

.state-info p {
  font-size: 15px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 6px;
}

.state-info a {
  color: #007bff;
  text-decoration: none;
}

.state-info a:hover {
  text-decoration: underline;
}

/* Waze button */
.waze-btn {
  display: inline-block;
  background: #00b3ff;
  color: #fff !important;
  padding: 8px 16px;
  border-radius: 6px;
  margin-top: 10px;
  font-size: 14px;
  align-self: flex-start;
  transition: background 0.25s ease, transform 0.25s ease;
}

.waze-btn:hover {
  background: #008bd6;
  transform: translateY(-2px);
}

.waze-btn i {
  margin-right: 6px;
}

/* ===== Responsive Adjustments ===== */
@media (max-width: 900px) {
  .state-grid {
    grid-template-columns: 1fr;
  }

  .state-card {
    flex-direction: column;
    text-align: center;
  }

  .state-img {
    width: 100%;
    height: 220px;
    margin: 0 0 15px 0;
  }

  .state-info {
    text-align: center;
    align-items: center;
  }

  .waze-btn {
    align-self: center;
  }
}
/*=============================================================================================================================================== */
/* -----CONTACT US SECTION----- */
/*=============================================================================================================================================== */
/*=============================================================================================================================================== */
/* -----FOOTER SECTION----- */
/*=============================================================================================================================================== */

/* ======= Footer Modern Styling ======= */
.footer {
  margin-top: 0;
  font-family: "Poppins", sans-serif;
}

/* 🔹 Upper Part (Blue Section) */
.footer-top {
  background: linear-gradient(to top, #000000, #a2a2a2); /* PPP Blue */
  color: white;
  padding: 50px 0;
}

.footer-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #fff;
  text-transform: uppercase;
  border-left: 4px solid #ffcc00;
  padding-left: 10px;
}

/* 🔗 Useful Links */
.useful-links {
  list-style: none;
  padding: 0;
}

.useful-links li {
  margin-bottom: 10px;
}

.useful-links a {
  color: #ffffffcc;
  text-decoration: none;
  transition: color 0.3s;
}

.useful-links a:hover {
  color: #ffcc00;
}

/* 📱 Social Media Icons */
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin: 0 6px;
  background: #fff;
  color: #004aad;
  border-radius: 50%;
  font-size: 20px;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: #ffcc00;
  color: #004aad;
  transform: scale(1.1);
}

/* 📍 Contact Section */
.footer p {
  color: #ffffffcc;
  font-size: 15px;
  line-height: 1.6;
}

/* ⚖️ Legal Section (Black) */
.footer-legal {
  background: #000;
  color: #fff;
  padding: 15px 0;
  font-size: 14px;
}

.footer-legal a {
  color: #ffcc00;
  text-decoration: none;
}

.footer-legal a:hover {
  text-decoration: underline;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .footer-top {
    text-align: center;
  }
  .footer-social a {
    margin-bottom: 10px;
  }
}

/*=============================================================================================================================================== */
/* -----FOOTER SECTION END----- */
/*=============================================================================================================================================== */
/*=============================================================================================================================================== */
/* -----BANNER SECTION----- */
/*=============================================================================================================================================== */

.banner-section {
  margin-top: 100px;              /* pushes banner down from navbar */
  margin-bottom: 40px;           /* extra spacing before hero section */
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;       /* center the banner */
}

/* Banner Section Floating Effect */
.banner-section .carousel {
  border-radius: 20px;                 /* smooth rounded corners */
  overflow: hidden;                    /* keeps images clipped */
  background: #fff;                    /* subtle background */
  max-width: 1400px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.325); /* floating shadow */
  border: 4px solid rgba(40, 51, 116, 0.42);    /* outline effect */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effect: lift up slightly */
.banner-section .carousel:hover {
  transform: translateY(-8px);          /* float upward */
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

/* Banner images */
.banner-section img {
  height: 600px;
  object-fit: cover;
  width: 100%;
  display: block;
}

/* Custom controls (bottom right) */
.banner-controls {
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: flex;
  gap: 10px;
  z-index: 2;
}

.banner-controls button {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
}

.banner-controls button.active,
.banner-controls button:hover {
  background: #283474; /* theme dark blue */
  transform: scale(1.2);
}

/* Banner button bottom left */
.banner-button {
  position: absolute;
  bottom: 30px;
  left: 130px;
  z-index: 3;
}

.btn-banner {
  display: inline-block;
  padding: 12px 28px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 30px;
  background: linear-gradient(135deg, #283474, #4a6cf7);
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-banner:hover {
  background: linear-gradient(135deg, #4a6cf7, #283474);
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

/* ----- RESPONSIVE DESIGN ----- */

/* Large Tablets (≤1200px) */
@media (max-width: 1200px) {
  .banner-section img {
    height: 500px;
  }
  .banner-button {
    left: 80px;
  }
}

/* Tablets (≤992px) */
@media (max-width: 992px) {
  .banner-section img {
    height: 420px;
  }
  .banner-button {
    left: 50px;
  }
  .btn-banner {
    padding: 10px 24px;
    font-size: 15px;
  }
}

/* Small Tablets & Large Phones (≤768px) */
@media (max-width: 768px) {
  .banner-section img {
    height: 360px;
  }
  .banner-button {
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
  }
  .btn-banner {
    font-size: 14px;
    padding: 10px 22px;
  }
  .banner-controls {
    right: 50%;
    transform: translateX(50%);
  }
}

/* Phones (≤576px) */
@media (max-width: 576px) {
  .banner-section img {
    height: 170px;
  }
  .banner-button {
    bottom: 10px;
    left: 13%;
    transform: translateX(-50%);
	
  }
  .btn-banner {
    font-size: 10px;
    padding: 7px 12px;
    border-radius: 25px;
  }
  .banner-controls {
    bottom: 15px;
    right: 50%;
    transform: translateX(50%);
    gap: 8px;
  }
  .banner-controls button {
    width: 12px;
    height: 12px;
  }
}

/*=============================================================================================================================================== */
/* -----BANNER SECTION END----- */
/* =============================================================================================================================================== */
/*=============================================================================================================================================== */
/* -----ACTIVITY SECTION----- */
/*=============================================================================================================================================== */

.btn-square {
  width: 200px;
  height: 100px;
  font-size: 16px;
  border-radius: 12px;
  font-weight: 600;
}

.btn-circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #ddd;
  overflow: hidden;
  padding: 0;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.btn-circle:hover {
  transform: scale(1.1);
  border-color: #007bff;
}

.flag-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

/* Fade effect */
.fade-box {
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}

.fade-box.fade-out {
  opacity: 0;
}
/*=============================================================================================================================================== */
/* -----ACTIVITY SECTION END----- */
/* =============================================================================================================================================== */
/*=============================================================================================================================================== */
/* ====== TERKINI SECTION ====== */
/*=============================================================================================================================================== */
.terkini-section {
  margin: 80px 0;
}

.terkini-box {
  background: linear-gradient(to top, #66b2ff, #ffffff);
  border-radius: 20px;
  overflow: hidden;
  padding: 20px;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.shadow-box {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.terkini-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
}

/* Square buttons */
.square-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.btn-square {
  width: 180px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: linear-gradient(135deg, #283474, #4a6cf7);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.btn-square:hover {
  background: linear-gradient(135deg, #4a6cf7, #283474);
  transform: scale(1.05);
}

/* Circle buttons */
.circle-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}

.circle-buttons a {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #f6f9ff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: 0.3s;
}

.circle-buttons a img {
  width: 70%;
  height: auto;
}

.circle-buttons a:hover {
  background: #283474;
  transform: translateY(-5px);
}

/* Custom indicators below the carousel */
.custom-indicators {
  position: static;
  margin-top: 15px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.custom-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background-color: rgba(40, 52, 116, 0.3);
  transition: all 0.3s ease;
}

.custom-indicators button.active {
  background-color: #283474;
  transform: scale(1.2);
}

.custom-indicators button:hover {
  background-color: #4a6cf7;
}

.carousel-text {
  margin-top: 10px;
  font-size: 14px;
  color: #283474;
  font-weight: 500;
  text-align: center;
}

/* Force all boxes in the row to equal height */
.terkini-section .row {
  display: flex;
  flex-wrap: wrap;
}

.terkini-section .col-lg-4 {
  display: flex;
}

.terkini-box {
  flex: 1;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* ====== Social Media Card ====== */
.social-icons {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.social-icons .social {
  font-size: 2rem;
  color: #283474;
  background: #f6f9ff;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  transition: 0.3s ease;
}

.social-icons .social:hover {
  transform: translateY(-8px) scale(1.1);
  color: #fff;
}

/* ====== Image above social media icons ====== */
.social-image {
  display: flex;
  justify-content: center;
}

.social-banner {
  width: 100%;
  max-width: 240px;        /* Adjust width */
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-banner:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.15);
}


.social.fb:hover { background: #1877f2; }
.social.ig:hover { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); }
.social.yt:hover { background: #ff0000; }
.social.tk:hover { background: #000000; }

/* ====== Star Progressive TV ====== */
.video-player iframe {
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.video-thumbnails {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.video-thumbnails img {
  width: 80px;
  height: 50px;
  border-radius: 8px;
  object-fit: cover;
  cursor: pointer;
  opacity: 0.7;
  transition: 0.3s ease;
  border: 2px solid transparent;
}

.video-thumbnails img:hover {
  opacity: 1;
  transform: scale(1.05);
}

.video-thumbnails img.active {
  border-color: #283474;
  opacity: 1;
}
/*=============================================================================================================================================== */
/* ====================================================================================================================================== */
/* ====== ACTIVITI PAGE ====== */
/*=============================================================================================================================================== */
/* Floating Box */
/* Floating Box */
.floating-box-section {
  margin: 60px 0;   /* space above and below the box */
  display: flex;
  justify-content: center;
}

.floating-box {
  background: linear-gradient(to top, #66b2ff, #ffffff);
  border-radius: 20px;
  padding: 30px;             /* more padding for bigger box */
  width: 360px;              /* increased width */
  min-height: 280px;         /* taller box */
  text-align: center;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
}

.floating-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.25);
}

/* Bigger Image */
.floating-box-img {
  width: 300px;              /* was 150px → bigger image */
  height: auto;
  border-radius: 16px;
  margin-bottom: 16px;
}

.floating-box-text {
  font-size: 18px;           /* slightly bigger text */
  font-weight: 600;
  color: #283474;
}


/* Modal Styling */
.modal-content {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

.modal-header {
  background: linear-gradient(to left, #66b2ff, #ffffff);
  border-bottom: 1px solid rgba(0,0,0,0.1);
  padding: 15px 20px;
}

/* Photo Gallery Grid */
.photo-gallery {
  margin-top: 20px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 0.3s ease;
  border-radius: 12px;
}

/* Hover Effects */
.gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.gallery-item:hover img {
  transform: scale(1.05);
}


/* Sidebar for states */
/* Sidebar for states */
.state-sidebar {
  width: 200px;
  border-right: 2px solid #ddd;
  padding-right: 15px;
}

.state-sidebar .nav-link {
  background: #f8f9fa;
  margin-bottom: 10px;
  border-radius: 8px;
  padding: 10px;
  font-weight: 600;
  color: #333;
  transition: 0.3s;
}

.state-sidebar .nav-link:hover,
.state-sidebar .nav-link.active {
  background: linear-gradient(to right, #66b2ff, #ffffff);
  color: #fff;
  box-shadow: 0 3px 10px rgba(0,0,0,0.15);
}

/* Photo Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 images per row */
  gap: 20px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item img {
  width: 100%;
  height: 220px;        /* increase height for bigger pictures */
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Responsive (for smaller screens) */
@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 per row on tablets */
  }
}
@media (max-width: 576px) {
  .gallery-grid {
    grid-template-columns: 1fr; /* 1 per row on mobile */
  }
}

/* Make the new popup modal wider and fixed height */
#popupModal1 .modal-dialog,
#popupModal2 .modal-dialog,
#popupModal3 .modal-dialog,
#popupModal5 .modal-dialog,
#popupModal6 .modal-dialog,
#popupModal7 .modal-dialog,
#popupModal8 .modal-dialog,
#popupModal9 .modal-dialog,
#popupModal4 .modal-dialog {
  max-width: 1400px;   /* wider than Bootstrap's default */
  width: 95%;          /* responsive: takes 95% of screen width */
  height: 98vh;        /* fixed height: 95% of viewport height */
  margin: auto;        /* center vertically */
  display: flex;
  flex-direction: column;
}

#popupModal1 .modal-content,
#popupModal2 .modal-content,
#popupModal3 .modal-content,
#popupModal5 .modal-content,
#popupModal6 .modal-content,
#popupModal7 .modal-content,
#popupModal8 .modal-content,
#popupModal9 .modal-content,
#popupModal4 .modal-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  height: 100%;        /* match dialog height */
}

#popupModal1 .modal-body,
#popupModal2 .modal-body,
#popupModal3 .modal-body,
#popupModal5 .modal-body,
#popupModal6 .modal-body,
#popupModal7 .modal-body,
#popupModal8 .modal-body,
#popupModal9 .modal-body,
#popupModal4 .modal-body {
  flex: 1;             /* take remaining space */
  overflow-y: auto;    /* scroll if content too tall */
  max-height: none;    /* remove previous height restriction */
}


/* Ensure modals always appear above navbar and header */
.modal-backdrop {
  z-index: 30000 !important;  /* backdrop behind modal */
}

.modal {
  z-index: 30001 !important;  /* modal container */
}

.modal-dialog {
  z-index: 30002 !important;  /* dialog window itself */
}

.modal-open .navbar,
.modal-open header,
.modal-open #header {
  z-index: 1000 !important; /* push navbar below modal */
}




/* Sidebar for states */


/* ====== ACTIVITI PAGE END ====== */


/* === Your original styling (keep this) === */
#google_translate_element {
  display: inline-block;
  margin-left: 10px;
}

.goog-te-gadget {
  font-size: 14px !important;
  color: black !important;
}

.goog-te-gadget select {
  background: white;
  border: 1px solid #ccc;
  padding: 4px 8px;
  border-radius: 5px;
  font-size: 14px;
}

/* === My fixes (add these) === */
#google_translate_element {
  position: absolute;       /* force position */
  top: 15px;                /* adjust vertical position */
  right: 20px;              /* stick inside header */
  z-index: 9999;
  transform: scale(0.85);   /* make it smaller */
  transform-origin: right top;
}

/* Hide the big Google Translate top bar */
.goog-te-banner-frame.skiptranslate {
  display: none !important;
}
body {
  top: 0px !important;
}
/*=============================================================================================================================================== */
/* ===================================================================================================================== */

/* ===================================================================================================================== */

/* ===== Networking & Official Links - Advanced UI ===== */
:root{
  --navy: #012970;
  --primary: #2793ff;
  --light1: #eaf4ff;
  --light2: #d2e9ff;
  --card-bg: #ffffff;
  --muted: #6b7280;
}

/* ======= Networking & Official Links ======= */
.networking-section {
  background: linear-gradient(to bottom, #ffffff 0%, #eaf4ff 100%);
}

.section-header h2 {
  font-weight: 700;
  color: #012970;
  letter-spacing: 1px;
}

.section-header p {
  color: #555;
}

/* Category Cards */
.category-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  cursor: pointer;
  transition: all 0.35s ease;
  height: 100%;
}

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
  background: linear-gradient(to bottom right, #e8f1ff, #cde2ff);
}

.category-card .icon {
  font-size: 40px;
  color: #0d6efd;
  margin-bottom: 10px;
}

.category-card h4 {
  font-weight: 700;
  color: #012970;
  margin-bottom: 10px;
}

/* Partner Cards inside Modals */
.partner-card {
  background: #fff;
  border-radius: 12px;
  text-align: center;
  padding: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.partner-card img {
  width: 100%;
  max-width: 130px;
  height: auto;
  margin-bottom: 10px;
  border-radius: 10px;
}

.partner-card p {
  font-size: 14px;
  font-weight: 600;
  color: #012970;
  margin-bottom: 0;
}

.partner-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.15);
}

/* Clickable link cards (for government agencies) */
.link-card {
  text-decoration: none;
  display: block;
}
.link-card p { color: #012970; }





/* Official links panel */
.official-links{
  margin-top: 0;
  padding: 80px;
  background: linear-gradient(180deg, rgba(234,244,255,1) 0%, rgba(34, 142, 242, 1) 100%);
  box-shadow: 0 18px 50px rgba(2,33,67,0.06);
  /*border: 1px solid rgba(2,33,67,0.04);*/
}

/* Official header */
.official-links h3 {
  font-size: 32px;
  font-weight: 700;
  color: var(--navy);
  padding-bottom: 20px;
}

/* Service grid inside the panel */
.service-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  align-items: stretch;
  margin-top: 10px;
}

/* Service link card */
.service-link{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:flex-start;
  gap:8px;
  background: var(--card-bg);
  padding: 18px 12px;
  border-radius: 12px;
  text-decoration: none;
  color: var(--navy);
  box-shadow: 0 6px 20px rgba(3,30,66,0.06);
  border: 1px solid rgba(2,33,67,0.04);
  transition: transform .28s cubic-bezier(.2,.9,.3,1), box-shadow .28s, background .28s;
  text-align:center;
  min-height: 120px;
}

/* icon */
.service-link img{
  width:56px;
  height:56px;
  object-fit:contain;
}

/* labels */
.service-link .service-title{
  margin-top:6px;
  font-weight:700;
  color:var(--navy);
  font-size:15px;
}
.service-link .service-sub{
  color:var(--muted);
  font-size:13px;
  line-height:1.2;
}

/* hover/focus */
.service-link:hover,
.service-link:focus{
  transform: translateY(-8px);
  box-shadow: 0 22px 48px rgba(2,33,67,0.12);
  background: linear-gradient(180deg, #fff 0%, #f4fbff 100%);
  outline: none;
}

/* CTA button */
.btn-cta{
  background: linear-gradient(90deg, var(--navy), var(--primary));
  color: #fff;
  padding: 15px 26px;
  border-radius: 30px;
  border: none;
  font-weight:700;
  transition: transform .2s, box-shadow .2s;
  display:inline-block;
  margin-top: 20px;
}
.btn-cta:hover{
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(39,147,255,0.16);
}

/* Responsive tweaks */
@media (max-width: 767px){
  #networking.networking-section { padding-top: 40px; padding-bottom: 40px; }
  .network-card { width: 140px; padding: 12px; }
  .service-link { min-height: 110px; padding: 14px 10px; }
}

/* Accessibility focus */
.service-link:focus,
.network-card:focus {
  box-shadow: 0 0 0 4px rgba(39,147,255,0.14);
  transform: translateY(-6px);
}

/* ------------------------------------------------------------------------------------------------------------------------- */
/* -----HISTORY SECTION----- */

.history-content {
  min-height: 180px;
  transition: all 0.3s ease-in-out;
  background: #ffffff; /* Keep the text box white for contrast */
  border-radius: 8px;
}

.history h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--navy);
  padding-bottom: 20px;
}

.history p {
  font-weight: 500;
}
/* Horizontal Ruler */
.history-ruler-wrapper {
  overflow-x: auto;
  white-space: nowrap;
}

.history-ruler {
  display: inline-flex;
  gap: 20px;
  padding: 15px;
  border-top: 3px solid #ffffff;
  border-bottom: 3px solid #ffffff;
  scroll-behavior: smooth; /* Smooth auto-scroll */
}

.history-ruler .year {
  padding: 10px 20px;
  background: #ffffff;
  border-radius: 50px;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s;
  white-space: nowrap;
  flex-shrink: 0;
}

.history-ruler .year:hover {
  background: #007bff;
  color: #fff;
}

.history-ruler .year.active {
  background: #007bff;
  color: #fff;
  box-shadow: 0 0 10px rgba(0, 123, 255, 0.6);
}

/* -----HISTORY SECTION END----- */
/* ------------------------------------------------------------------------------------------------------------------------- */
/* COMBINED GRADIENT BACKGROUND */
.gradient-combined {
  background: linear-gradient(
    180deg,
    rgba(234, 244, 255, 1) 0%,
    rgb(46, 146, 240) 100%
  );
  padding-top: 80px;
  padding-bottom: 80px;
}

/* Remove separate gradients so they blend seamlessly */
.official-links,
.history {
  background: transparent !important;
  box-shadow: none;
}

/* Official links styling (unchanged except no gradient) */
.official-links {
  margin-top: 0;
  padding: 60px 0;
}









/* ===================================================================================================================== */
/* ORGANIZATION CHART*/
.leadership .member-img {
  overflow: hidden;
  border-radius: 12px 12px 0 0;
}

.leadership .member-img img {
  transition: transform 0.4s ease;
}

.leadership .member-img:hover img {
  transform: scale(1.05);
}

.leadership .social {
  opacity: 0;
  transition: opacity 0.4s ease;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 10px;
  padding: 6px;
}

.leadership .member-img:hover .social {
  opacity: 1;
}

.leadership .social a {
  color: inherit;
  line-height: 1;
}

.leadership .social a:hover i {
  transform: scale(1.2);
}

.leadership i {
  transition: all 0.3s ease;
}

.card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}
