/* Fonts */
:root {
  --default-font: "Roboto",  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";
  --heading-font: "Raleway",  sans-serif;
  --nav-font: "Inter",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #444444; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #273d4e; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #ff4a17; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #e5eaee;  /* The default color of the main navmenu links */
  --nav-hover-color: #ff4a17; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #444444; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #ff4a17; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f1f4fa;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #000910;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #28323a;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* Bigger Section Titles */
.section-title h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: #002c5f;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
}


/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Pulsating Play Button
------------------------------*/
.pulsating-play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--accent-color) 50%, color-mix(in srgb, var(--accent-color), transparent 75%) 52%);
  border-radius: 50%;
  display: block;
  position: relative;
  overflow: hidden;
}

.pulsating-play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-play-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid color-mix(in srgb, var(--accent-color), transparent 30%);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.pulsating-play-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.pulsating-play-btn:hover:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

.pulsating-play-btn:hover:after {
  border-left: 15px solid var(--accent-color);
  transform: scale(20);
}

@keyframes pulsate-play-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/* =====================================================
   Header & Navbar
===================================================== */
#header {
  position: fixed;         /* make header stick */
  top: 0;
  left: 0;
  right: 0;
  background: rgba(245, 246, 247, 1);
  border-bottom: 2px solid #ff6600;
  transition: background 0.35s ease, padding 0.35s ease, box-shadow 0.35s ease;
  padding: 18px 0;
  z-index: 9999;
}
body {
  padding-top: 90px; /* adjust depending on header height */
}


#header.scrolled {
  background: rgba(245, 246, 247, 0.92);
  padding: 8px 0;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
  backdrop-filter: blur(4px);
}

/* Logo */
.logo img {
  height: 60px;
  margin-right: 12px;
  transition: height 0.35s ease;
}

#header.scrolled .logo img {
  height: 46px;
}

.logo small {
  font-size: 12px;
  color: #777; /* tagline gray */
}

/* ===== Desktop Navbar ===== */
#navbar ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 20px;
}

#navbar li {
  position: relative;
}

#navbar a {
  font-size: 15px;
  font-weight: 500;
  color: #002c5f;
  padding: 6px 4px;
  transition: color 0.3s;
}

#navbar a:hover,
#navbar .active {
  color: #ff6600;
}

/* ===== Mobile Navbar ===== */
@media (max-width: 991px) {
  /* Hide menu by default on mobile */
  #navbar ul {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    background: #fff;
    position: absolute;
    top: 100%;
    right: 0;
    width: 240px;
    padding: 25px 20px;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    z-index: 9999;

    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.3s ease;
  }

  /* Show menu when toggled */
  #navbar.navbar-mobile ul {
    display: flex;
    max-height: 600px;
    opacity: 1;
  }

  #navbar li {
    width: 100%;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
  }

  #navbar li:last-child {
    border-bottom: none;
    padding-bottom: 20px;
  }

  #navbar a {
    width: 100%;
    display: block;
    font-size: 15px;
    color: #002c5f;
  }

  /* Mobile Nav Toggle Button */
  .mobile-nav-toggle {
    display: block; /* show only on mobile */
    position: absolute;
    right: 20px;
    top: 50%; 
    font-size: 28px;
    cursor: pointer;
    color: #002c5f;
    transform: translateY(-50%);
    z-index: 10000;
  }
}

/* ===== Desktop: ensure toggle hidden ===== */
@media (min-width: 992px) {
  .mobile-nav-toggle {
    display: none;
  }
}


/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
/* ===== Footer ===== */
.footer {
  background: #002c5f;
  color: #ddd;
  padding: 40px 0 20px;
  font-size: 14px;
}

.footer h4 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 16px;
  position: relative;
}

/* Links */
.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer ul li {
  margin-bottom: 10px;
}

.footer ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer ul li a:hover {
  color: #ff6600;
}

/* Footer Columns with Orange Divider */
@media (min-width: 992px) {
  .footer .col-lg-4:not(:last-child) {
    border-right: 1px solid #ff6600;
  }
  .footer .col-lg-4 {
    padding-right: 25px;
    padding-left: 25px;
  }
}

/* Logo + Tagline */
.footer-bottom .logo img {
  height: 46px;
  margin-right: 8px;
  background: #fff;         /* gives contrast */
  border-radius: 8px;       /* rounded edges */
  padding: 4px;             /* breathing space */
}

.footer-brand {
  font-weight: 700;
  font-size: 16px;
  color: #fff;
}

.footer-tagline {
  font-size: 11px;
  color: #aaa;
}

.footer-copy {
  margin-top: 10px;
  font-size: 13px;
  color: #bbb;
}

/* Footer Social Icons */
.footer-socials a {
  font-size: 22px;
  color: #ccc;
  margin: 0 12px;
  transition: color 0.3s, transform 0.3s;
  display: inline-block;
}

.footer-socials a:hover {
  color: #ff6600;
  transform: scale(1.2);
}


/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 160px 0 80px 0;
  text-align: center;
  position: relative;
}

.page-title:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  inset: 0;
}

.page-title h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 76px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  position: relative;
}


.section-title p {
  color: var(--heading-color);
  margin: 0;
  font-size: 36px;
  font-weight: 800;
  text-transform: uppercase;
  font-family: var(--heading-font);
}

@media (max-width: 768px) {
  .section-title p {
    font-size: 24px;
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero .container {
  position: relative;
  z-index: 3;
}

.hero h2 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  text-transform: uppercase;
}

.hero p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 10px 0 0 0;
  font-size: 24px;
}

.hero .btn-get-started {
  background: var(--accent-color);
  color: var(--contrast-color);
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 30px;
  border-radius: 4px;
  transition: 0.3s;
  text-transform: uppercase;
}

.hero .btn-get-started:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.hero .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  font-weight: 400;
  color: var(--default-color);
}

.hero .btn-watch-video i {
  color: var(--accent-color);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.hero .btn-watch-video:hover {
  color: var(--accent-color);
}

.hero .btn-watch-video:hover i {
  color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

@media (max-width: 768px) {
  .hero h2 {
    font-size: 32px;
  }

  .hero p {
    font-size: 18px;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about h3 {
  font-weight: 700;
  font-size: 28px;
  margin-bottom: 20px;
}

.about .fst-italic {
  color: color-mix(in srgb, var(--default-color), var(--contrast-color) 50%);
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding: 0 0 10px 30px;
  position: relative;
}

.about .content ul i {
  position: absolute;
  font-size: 20px;
  left: 0;
  top: -3px;
  color: var(--accent-color);
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .pulsating-play-btn {
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats .stats-item {
  background-color: var(--surface-color);
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
  padding: 30px;
}

.stats .stats-item i {
  color: var(--accent-color);
  font-size: 42px;
  line-height: 0;
  margin-right: 20px;
}

.stats .stats-item span {
  color: var(--heading-color);
  font-size: 36px;
  display: block;
  font-weight: 600;
}

.stats .stats-item p {
  padding: 0;
  margin: 0;
  font-family: var(--heading-font);
  font-size: 16px;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .img {
  border-radius: 8px;
  overflow: hidden;
}

.services .img img {
  transition: 0.6s;
}

.services .details {
  background: color-mix(in srgb, var(--surface-color), transparent 5%);
  padding: 50px 30px;
  margin: -100px 30px 0 30px;
  transition: all ease-in-out 0.3s;
  position: relative;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0px 0 25px rgba(0, 0, 0, 0.1);
}

.services .details .icon {
  margin: 0;
  width: 72px;
  height: 72px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 6px solid var(--contrast-color);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 28px;
  transition: ease-in-out 0.3s;
  position: absolute;
  top: -36px;
  left: calc(50% - 36px);
}

.services .details h3 {
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: 22px;
  transition: ease-in-out 0.3s;
}

.services .details p {
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .service-item:hover .details h3 {
  color: var(--accent-color);
}

.services .service-item:hover .details .icon {
  background: var(--surface-color);
  border: 2px solid var(--accent-color);
}

.services .service-item:hover .details .icon i {
  color: var(--accent-color);
}

.services .service-item:hover .img img {
  transform: scale(1.2);
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients {
  padding: 20px 0;
}

.clients .client-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.clients .client-logo img {
  padding: 20px 40px;
  max-width: 90%;
  transition: 0.3s;
  opacity: 0.5;
  filter: grayscale(100);
}

.clients .client-logo img:hover {
  filter: none;
  opacity: 1;
}

@media (max-width: 640px) {
  .clients .client-logo img {
    padding: 20px;
  }
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .nav-tabs {
  border: 0;
}

.features .nav-link {
  background-color: var(--surface-color);
  color: var(--heading-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  padding: 15px 20px;
  transition: 0.3s;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  height: 100%;
}

.features .nav-link i {
  padding-right: 15px;
  font-size: 48px;
}

.features .nav-link h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

.features .nav-link:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.features .nav-link.active {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
}

.features .nav-link.active h4 {
  color: var(--contrast-color);
}

@media (max-width: 768px) {
  .features .nav-link i {
    padding: 0;
    line-height: 1;
    font-size: 36px;
  }
}

@media (max-width: 575px) {
  .features .nav-link {
    padding: 15px;
  }

  .features .nav-link i {
    font-size: 24px;
  }
}

.features .tab-content {
  margin-top: 30px;
}

.features .tab-pane h3 {
  color: var(--heading-color);
  font-weight: 700;
  font-size: 26px;
}

.features .tab-pane ul {
  list-style: none;
  padding: 0;
}

.features .tab-pane ul li {
  padding-bottom: 10px;
}

.features .tab-pane ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--accent-color);
}

.features .tab-pane p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Services 2 Section
--------------------------------------------------------------*/
.services-2 .service-item {
  background-color: var(--surface-color);
  padding: 30px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  transition: 0.3s;
}

.services-2 .service-item .icon {
  font-size: 36px;
  line-height: 0;
  margin-right: 30px;
  color: var(--accent-color);
}

.services-2 .service-item .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 20px;
}

.services-2 .service-item .title a {
  color: var(--heading-color);
}

.services-2 .service-item .description {
  line-height: 24px;
  font-size: 14px;
  margin: 0;
}

.services-2 .service-item:hover {
  border-color: var(--accent-color);
}

.services-2 .service-item:hover .title a {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/

.testimonial-card p {
  font-style: italic;
  color: #444;
  font-size: 15px;
  margin: 20px 0;
}

.testimonial-card h5 {
  font-weight: 600;
  margin-top: 10px;
  color: #aabbcf;
}

.testimonial-card span {
  font-size: 13px;
  color: #777;
}

/* Testimonials Quotes */
.testimonials-section {
  background: url('/Dewi-1.0.0/assets/img/testimonials-bg.jpg') no-repeat center center;
  background-size: cover;
  padding: 60px 0;
  position: relative;
}

.testimonials-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(138, 193, 255, 0.75); /* dark overlay */
}

.testimonials-section .container {
  position: relative;
  z-index: 2;
}

.testimonial-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  padding: 40px 20px 30px;
  text-align: center;
  position: relative;
}

.testimonial-card .quote-open,
.testimonial-card .quote-close {
  font-size: 40px;
  font-weight: bold;
  color: #ff6600;
}



.testimonial-card .quote-open {
  position: absolute;
  top: 10px;
  left: 15px;
}

.testimonial-card .quote-close {
  position: absolute;
  bottom: 10px;
  right: 15px;
}


/* Swiper Pagination */
.swiper-pagination-bullet {
  background: #ccc;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: #ff6600;
}


/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item {
  background-color: var(--surface-color);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  padding: 24px 0 30px 0;
}

.contact .info-item i {
  font-size: 20px;
  color: var(--accent-color);
  width: 56px;
  height: 56px;
  font-size: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
  border-radius: 50%;
  border: 2px dotted color-mix(in srgb, var(--accent-color), transparent 40%);
}

.contact .info-item h3 {
  font-size: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 18px;
  font-weight: 700;
  margin: 10px 0;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .php-email-form {
  background-color: var(--surface-color);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  height: 100%;
  padding: 30px;
}

@media (max-width: 575px) {
  .contact .php-email-form {
    padding: 20px;
  }
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: var(--surface-color);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}


/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .services-list {
  background-color: var(--surface-color);
  padding: 10px 30px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  margin-bottom: 20px;
}

.service-details .services-list a {
  display: block;
  line-height: 1;
  padding: 8px 0 8px 15px;
  border-left: 3px solid color-mix(in srgb, var(--default-color), transparent 70%);
  margin: 20px 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.service-details .services-list a.active {
  color: var(--heading-color);
  font-weight: 700;
  border-color: var(--accent-color);
}

.service-details .services-list a:hover {
  border-color: var(--accent-color);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}

.service-details h4 {
  font-size: 20px;
  font-weight: 700;
}

.service-details p {
  font-size: 15px;
}

.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}


/* Navbar */
/* Navbar Default */
#header {
  background: rgba(245, 246, 247, 1);
  border-bottom: 2px solid #ff6600; /* orange line - instant */
  transition: background 0.35s ease, padding 0.35s ease, box-shadow 0.35s ease; /* exclude border */
  padding: 18px 0;
  z-index: 9999;
}

/* Navbar when scrolled */
#header.scrolled {
  background: rgba(245, 246, 247, 0.92);
  padding: 8px 0;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
  backdrop-filter: blur(4px);
  border-bottom: 2px solid #ff6600; /* keep orange line visible */
}

.logo img {
  height: 60px;
  margin-right: 12px;
  transition: height 0.35s ease;
}
#header.scrolled .logo img {
  height: 46px;
}

/* ===== Offerings Section Cards ===== */
#offerings .offering-card {
  min-height: 420px; 
  flex: 1;
}

#offerings .col-lg-4 {
  display: flex;
}

#offerings .offering-card {
  position: relative;
  flex: 1;
  border: none;
  border-radius: 16px;
  background-size: cover;
  background-position: center;
  overflow: hidden;

  /* Flex to pin content at bottom */
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;

  text-align: center;
  min-height: 380px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#offerings .offering-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}

#offerings .offering-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75), rgba(0,0,0,0.25));
  z-index: 1;
}

/* Frosted glass content box */
#offerings .offering-card .card-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 16px 20px;
  width: 90%;
  margin-bottom: 18px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 12px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  text-align: center;
}

#offerings .offering-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffcc80; /* soft orange heading */
  margin-bottom: 10px;
}

#offerings .offering-card p {
  font-size: 0.95rem;
  line-height: 1.45;
  margin-bottom: 12px;
  color: #f1f1f1;
}

#offerings .offering-card .btn-know {
  background: #ff6600;
  display: inline-block;
  margin-top: 8px;
  border: none;
  color: #fff;
  padding: 6px 18px;
  border-radius: 30px;
  font-size: 0.85rem;
  transition: background 0.3s ease, transform 0.2s ease;
}

#offerings .offering-card .btn-know:hover {
  background: #e05500;
  transform: scale(1.08);
  box-shadow: 0 0 10px rgba(255, 102, 0, 0.6);
}

#offerings .section-title h2 {
  font-size: 2.2rem;     
  font-weight: 800;      
  color: #002c5f;        
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Client Logos */

.logo-box {
  flex: 0 0 200px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-box img {
  max-height: 110px;   /* force logos taller */
  width: auto;         /* keep aspect ratio */
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.85;
  transition: filter 0.3s ease, transform 0.3s ease;
}

.logo-box img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.15);
}



/* Carousel container */
.logo-carousel {
  overflow: hidden;
  width: 100%;
  padding: 20px 0;
  position: relative;
}

/* Track with 2 sets of logos */
.logo-track {
  display: flex;
  gap: 60px; /* keep wider spacing */
  width: max-content;
  animation: scrollLogos 15s linear infinite;
}

.logo-track:hover {
  animation-play-state: paused;
}

/* Logo box */
.logo-box {
  flex: 0 0 200px;   /* much wider */
  height: 120px;     /* taller box */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Logos inside */
.logo-box img {
  width: 100%;       /* take full box width */
  height: 100%;      /* take full box height */
  object-fit: contain; /* keep proportions, no distortion */
  filter: grayscale(100%);
  opacity: 0.85;
  transition: filter 0.3s ease, transform 0.3s ease;
}

.logo-box img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.15); /* slightly bigger zoom on hover */
}

/* Smooth infinite scroll */
@keyframes scrollLogos {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Tablets (≤ 992px) */
@media (max-width: 992px) {
  .logo-box {
    flex: 0 0 150px;   /* smaller box */
    height: 100px;
  }
  .logo-box img {
    max-height: 90px; /* shrink logo */
  }
  .logo-track {
    gap: 40px;        /* tighter spacing */
    animation: scrollLogos 18s linear infinite; /* slightly slower */
  }
}

/* Mobiles (≤ 576px) */
@media (max-width: 576px) {
  .logo-box {
    flex: 0 0 110px;  /* narrower box */
    height: 80px;
  }
  .logo-box img {
    max-height: 70px; /* smaller logo size */
  }
  .logo-track {
    gap: 25px;        /* minimal spacing */
    animation: scrollLogos 20s linear infinite; /* smoother, slower */
  }
}


/* Section Titles - Consistent Look */
.section-title h2 {
  font-size: 2rem;          /* desktop/tablet */
  font-weight: 700;
  color: #002c5f;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: center;       /* keeps it neat on mobile */
}

/* Force About Us to match others */
#about .section-title h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #001b3a;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: center;
}

/* Mobile adjustment */
@media (max-width: 576px) {
  .section-title h2 {
    font-size: 1.6rem;      /* smaller size for phones */
    margin-bottom: 16px;
  }
}


.logo-track {
  display: flex;
  gap: 60px;
  width: max-content;
  animation: scrollLogos 15s linear infinite;
  cursor: grab;
  overflow-x: auto;         /* allow drag scroll */
  scrollbar-width: none;    /* hide scrollbar Firefox */
}
.logo-track::-webkit-scrollbar {
  display: none;            /* hide scrollbar Chrome/Safari */
}

/* Global Locations with Backgrounds */
.location-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 220px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-size: cover;
  background-position: center;
}

.location-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

/* Zoom effect on background */
.location-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: inherit;
  background-size: cover;
  background-position: center;
  transform: scale(1);
  transition: transform 0.6s ease;
  z-index: 0;
}

.location-card:hover::before {
  transform: scale(1.1); /* zooms in */
}

/* Dark gradient overlay for clarity */
.location-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.25));
  z-index: 1;
}

.location-card .content {
  position: relative;
  z-index: 2;
}

.location-card .icon {
  font-size: 2rem;
  color: #ff6600;
  margin-bottom: 10px;
}

.location-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 5px;
  color: #fff;
}

.location-card p {
  font-size: 1rem;
  margin: 0;
  color: #f1f1f1; /* lighter grey for better readability */
}


/* Background images */
.bg-usa {
  background: url('/Dewi-1.0.0/assets/img/locations/usa.jpg') center/cover no-repeat;
}
.bg-uk {
  background: url('/Dewi-1.0.0/assets/img/locations/uk.jpg') center/cover no-repeat;
}
.bg-uae {
  background: url('/Dewi-1.0.0/assets/img/locations/uae.jpg') center/cover no-repeat;
}
.bg-india {
  background: url('/Dewi-1.0.0/assets/img/locations/india.jpg') center/cover no-repeat;
}

#contact .form-control {
  border-radius: 8px;
  border: 1px solid #ccc;
  padding: 10px;
  font-size: 1rem;
}

#contact .form-control:focus {
  border-color: #ff6600;
  box-shadow: 0 0 6px rgba(255, 102, 0, 0.4);
  outline: none;
}

#contact button[type=submit] {
  background: #ff6600;
  border: none;
  padding: 10px 24px;
  border-radius: 30px;
  color: #fff;
  transition: background 0.3s ease;
}

#contact button[type=submit]:hover {
  background: #e05500;
}

.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 20px;
  bottom: 20px;
  z-index: 9999;
  background: #ff6600;
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: all 0.4s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.scroll-top:hover {
  background: #e05500;
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}
