/* ===============================
CUSTOM FONTS 
================================= */
@font-face {
  font-family: 'Mont';
  src: url('../fonts/Mont-ExtraLightDEMO.otf') format('opentype');
  font-weight: 200;
  font-style: normal;
}

@font-face {
  font-family: 'Mont';
  src: url('../fonts/Mont-HeavyDEMO.otf') format('opentype');
  font-weight: 800;
  font-style: normal;
}

/* Fonts */
:root {
  --default-font: "Mont", sans-serif;
  --heading-font: "Mont", sans-serif;
  --nav-font: "Mont", sans-serif;
}

/* ===============================
FONT CONTROL 
================================= */

/* Body → light */
body,
p,
span,
li,
a,
input,
textarea {
  font-family: "Mont", sans-serif;
  font-weight: 200;
}

/* Headings → bold */
h1, h2, h3, h4, h5, h6 {
  font-family: "Mont", sans-serif;
  font-weight: 800;
}

/* Buttons & nav */
button,
.btn,
.navmenu a {
  font-family: "Mont", sans-serif;
  font-weight: 800;
}


#about-alt strong {
  font-weight: 800;
  color: var(--accent-color);
  margin-right: 4px;
  letter-spacing: 0.3px;
}

/* 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: #43556c; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #2290b9; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #36b1cb; /* 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: rgba(255, 255, 255, 0.72); /* Glass surface color */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
  --accent-secondary: #2290b9;
  --accent-gold: #c8a96a;
  --glass-border: rgba(255, 255, 255, 0.28);
  --glass-shadow: 0 20px 60px rgba(34, 144, 185, 0.16);
}

/* 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: #2290b9;  /* The default color of the main navmenu links */
  --nav-hover-color: #c8a96a; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: rgba(255, 255, 255, 0.94); /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: rgba(255, 255, 255, 0.96); /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #2290b9; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #36b1cb; /* 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: #f3fbfd;
  --surface-color: rgba(255, 255, 255, 0.78);
}

.dark-background {
  --background-color: #061b25;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: rgba(255, 255, 255, 0.08);
  --contrast-color: #ffffff;
}

.accent-background {
  --background-color: #36b1cb;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --accent-color: #ffffff;
  --surface-color: rgba(255, 255, 255, 0.2);
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background:
    radial-gradient(circle at top left, rgba(54, 177, 203, 0.08), transparent 28%),
    radial-gradient(circle at bottom right, rgba(34, 144, 185, 0.08), transparent 30%),
    var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.35s cubic-bezier(.2,.8,.2,1);
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 18%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* 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;
  box-shadow: 0 18px 36px rgba(54, 177, 203, 0.28);
}

.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;
  }
}

/* ===============================
CONTACT FORM FIX (NO php-email-form)
================================= */

#contactForm {
  background: rgba(255,255,255,0.78);
  padding: 40px;
  border-radius: 22px;
  box-shadow: 0 25px 70px rgba(34,144,185,0.12);
  border: 1px solid rgba(255,255,255,0.48);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

/* Inputs */
#contactForm input,
#contactForm textarea {
  border-radius: 18px;
  padding: 15px 18px;
  font-size: 14px;
  border: 1px solid #d9eef4;
  background: rgba(255,255,255,0.8);
  width: 100%;
}

/* Focus */
#contactForm input:focus,
#contactForm textarea:focus {
  border-color: #36b1cb;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(54,177,203,0.15);
  outline: none;
}

/* Button */
#contactForm button {
  color: #fff;
  background: linear-gradient(135deg, #36b1cb, #2290b9);
  border: none;
  padding: 12px 34px;
  border-radius: 999px;
  box-shadow: 0 14px 34px rgba(54,177,203,0.22);
  transition: all 0.3s ease;
}

#contactForm button:hover {
  transform: translateY(-2px);
}

/* Loading state */
button.loading {
  opacity: 0.7;
  pointer-events: none;
}

/* Alert */
.custom-alert {
  position: relative;
  margin-top: 15px;
  width: 100%;
  min-width: 260px;
  max-width: 320px;
  padding: 14px 18px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 9999;

  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  border: 1px solid rgba(255,255,255,0.4);
  box-shadow: 0 20px 60px rgba(34,144,185,0.15);

  font-size: 14px;
  color: #43556c;

  animation: slideIn 0.4s ease;
}

/* ICON */
.custom-alert i {
  font-size: 20px;
  flex-shrink: 0;
}

/* TEXT */
.custom-alert span {
  flex: 1;
}

/* SUCCESS */
.custom-alert.success {
  border-left: 4px solid #36b1cb;
}

.custom-alert.success i {
  color: #36b1cb;
}

/* ERROR */
.custom-alert.error {
  border-left: 4px solid #dc3545;
}

.custom-alert.error i {
  color: #dc3545;
}

#formAlert {
  display: flex;
  justify-content: center;
}

/* ANIMATION */
@keyframes slideIn {
  from {
    transform: translateX(120%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}


/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  position: fixed;     
  top: 0;
  left: 0;
  width: 100%;

  color: var(--default-color);
  background: rgba(255, 255, 255, 0.72);
  padding: 20px 0;
  transition: all 0.5s;
  z-index: 9999;      
  border-bottom: 1px solid rgba(255,255,255,0.42);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 10px 30px rgba(34, 144, 185, 0.08);
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 42px;
  margin-right: 12px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 300;
  color: var(--heading-color);
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: linear-gradient(135deg, var(--accent-color), var(--accent-secondary));
  font-size: 14px;
  padding: 10px 26px;
  margin: 0 0 0 30px;
  border-radius: 999px;
  transition: 0.35s cubic-bezier(.2,.8,.2,1);
  box-shadow: 0 12px 30px rgba(54, 177, 203, 0.25);
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: linear-gradient(135deg, var(--accent-secondary), var(--accent-color));
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(54, 177, 203, 0.30);
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 8px 18px;
  }

  .header .navmenu {
    order: 3;
  }
}

.scrolled .header {
  border-color: rgba(255,255,255,0.48);
  box-shadow: 0px 0 18px rgba(34, 144, 185, 0.12);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/

/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 12px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 18px;
    z-index: 99;
    box-shadow: 0px 20px 45px rgba(34, 144, 185, 0.16);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.46);
  }

  .navmenu .dropdown ul li {
    min-width: 220px;
  }

  .navmenu .dropdown ul a {
    padding: 12px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* ===============================
  MOBILE NAV 
================================= */
@media (max-width: 1199px) {

  /* TOGGLE BUTTON */
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    cursor: pointer;
    z-index: 1000002;
    transition: 0.3s;
  }

  /* OVERLAY */
  .mobile-nav-active .navmenu {
    position: fixed;
    inset: 0;
    z-index: 999999;
    background: rgba(20, 55, 73, 0.55);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: 0.3s;
  }

  /* SIDE DRAWER */
  .navmenu ul {
    list-style: none;
    position: fixed;
    top: 0;
    right: -340px;
    width: 320px;
    height: 100vh;

    padding: 100px 20px 30px;

    background: rgb(255, 255, 255);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);

    border-left: 1px solid rgba(255,255,255,0.4);

    box-shadow:
      -10px 0 40px rgba(34, 144, 185, 0.18),
      inset 0 0 20px rgba(255,255,255,0.25);

    transition: right 0.4s cubic-bezier(.22,.9,.24,1);

    z-index: 1000000;
    display: block;
  }

  /* SLIDE IN */
  .mobile-nav-active .navmenu ul {
    right: 0;
  }

  /* MENU ITEMS BASE */
  .navmenu li {
    opacity: 0;
    transform: translateX(40px);
  }

  /* STAGGER ANIMATION */
  .mobile-nav-active .navmenu li {
    animation: slideInItem 0.5s forwards;
  }

  .mobile-nav-active .navmenu li:nth-child(1) { animation-delay: 0.08s; }
  .mobile-nav-active .navmenu li:nth-child(2) { animation-delay: 0.14s; }
  .mobile-nav-active .navmenu li:nth-child(3) { animation-delay: 0.20s; }
  .mobile-nav-active .navmenu li:nth-child(4) { animation-delay: 0.26s; }
  .mobile-nav-active .navmenu li:nth-child(5) { animation-delay: 0.32s; }
  .mobile-nav-active .navmenu li:nth-child(6) { animation-delay: 0.38s; }

  @keyframes slideInItem {
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  /* LINKS */
  .navmenu a {
    position: relative;
    color: var(--nav-dropdown-color);
    padding: 14px 18px;
    font-size: 18px;
    font-weight: 550;
    display: block;
    border-radius: 14px;
    transition: all 0.25s ease;
  }

  /*HOVER GLOW */
  .navmenu a:hover {
    background: rgba(54,177,203,0.12);
    color: var(--accent-color);
    transform: translateX(6px);
  }

  /* ACTIVE ITEM INDICATOR */
  .navmenu .active {
    background: rgba(54,177,203,0.15);
    color: var(--accent-color);
  }

  .navmenu .active::before {
    content: "";
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 60%;
    border-radius: 4px;
    background: linear-gradient(180deg, #36b1cb, #2290b9);
  }

  /* ICON STYLE */
  .navmenu a i {
    margin-left: auto;
    background: rgba(54,177,203,0.12);
    border-radius: 50%;
    padding: 6px;
    transition: 0.3s;
  }

  .navmenu a:hover i {
    background: var(--accent-color);
    color: #fff;
  }

  /* DROPDOWN */
  .navmenu .dropdown ul {
    display: none;
    margin-top: 8px;
    margin-left: 10px;
    padding: 10px;
    background: rgba(255,255,255,0.65);
    border-radius: 12px;
  }

  .navmenu .dropdown > .dropdown-active {
    display: block;
  }

  /* CLOSE BUTTON */
  .mobile-nav-active .mobile-nav-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    font-size: 32px;
    color: #fff;
    z-index: 1000002;
  }

  /* LOCK SCROLL */
  .mobile-nav-active {
    overflow: hidden;
  }

/*CLOSE BUTTON */
.mobile-nav-active .mobile-nav-toggle {
  position: fixed;
  top: 18px;
  right: 18px;

  width: 44px;
  height: 44px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 24px;
  line-height: 1;

  color: var(--accent-color) !important;

  border-radius: 50%; 
  aspect-ratio: 1 / 1;

  background: rgba(255,255,255,0.35);

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  box-shadow: 0 8px 20px rgba(34,144,185,0.25);

  z-index: 1000002;
}

/*EXTRA GLASS DEPTH */
.navmenu ul {
 background: rgba(255, 255, 255, 0.92); 

  backdrop-filter: blur(10px) saturate(120%);
  -webkit-backdrop-filter: blur(10px) saturate(120%);;

  border-left: 1px solid rgba(255,255,255,0.5);

  box-shadow:
    -10px 0 50px rgba(34,144,185,0.18),
    inset 0 0 20px rgba(255,255,255,0.25);
}

/* BLUR PAGE BEHIND MENU*/
.mobile-nav-active .navmenu {
  background: rgba(20, 55, 73, 0.55); 

  backdrop-filter: blur(16px); 
  -webkit-backdrop-filter: blur(16px);
}


/* GLOSSY TOP LIGHT */
.navmenu ul::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(
    to bottom,
    rgba(255,255,255,0.55),
    rgba(255,255,255,0.05),
    transparent
  );
  pointer-events: none;
}

/* SPRING FEEL (OVERSHOOT) */
.mobile-nav-active .navmenu ul {
  animation: navSpring 0.55s cubic-bezier(.22,1.2,.3,1) forwards;
}

@keyframes navSpring {
  0%   { right: -340px; }
  70%  { right: 10px; }   /* overshoot */
  100% { right: 0; }
}
}

body {
  padding-top: 100px; /* adjust if header height changes */
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: rgba(255,255,255,0.78);
  border-top: 1px solid rgba(255,255,255,0.48);
  font-size: 14px;
  padding-bottom: 50px;
  position: relative;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.footer .footer-top {
  padding-top: 50px;
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  color: var(--heading-color);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: var(--heading-font);
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.46);
  font-size: 16px;
  color: var(--accent-color);
  margin-right: 10px;
  transition: 0.35s cubic-bezier(.2,.8,.2,1);
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 10px 24px rgba(34, 144, 185, 0.08);
}

.footer .social-links a:hover {
  background: linear-gradient(135deg, var(--accent-color), var(--accent-secondary));
  color: var(--contrast-color);
  border-color: transparent;
  transform: translateY(-3px);
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  padding-top: 25px;
  padding-bottom: 25px;
  background: linear-gradient(135deg, var(--accent-color), var(--accent-secondary));
  color: var(--contrast-color);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 4px;
  font-size: 13px;
}

.footer .credits a {
  color: color-mix(in srgb, var(--contrast-color), transparent 30%);
}

/*--------------------------------------------------------------
# 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-secondary) 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: linear-gradient(135deg, var(--accent-color), var(--accent-secondary));
  width: 46px;
  height: 46px;
  border-radius: 14px;
  transition: all 0.4s;
  box-shadow: 0 12px 30px rgba(54, 177, 203, 0.28);
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background: linear-gradient(135deg, var(--accent-secondary), var(--accent-color));
  color: var(--contrast-color);
  transform: translateY(-3px);
}

.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);
  padding: 120px 0;
  text-align: center;
  position: relative;
}

.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 a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.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 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: transparent;
  padding: 60px 0;
  scroll-margin-top: 100px;
  overflow: clip;
}

@media (max-width: 1199px) {
  section,
  .section {
    scroll-margin-top: 76px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: calc(100vh - 100px);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 0 60px 0;
  overflow: hidden;
}

.hero:before {
  content: "";
  background:
    linear-gradient(135deg, rgba(34, 144, 185, 0.48), rgba(54, 177, 203, 0.24), rgba(255,255,255,0.1));
  position: absolute;
  inset: 0;
  z-index: 2;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.hero img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 3;
}

.hero h1 {
  margin: 0;
  font-size: 56px;
  font-weight: 800;
  line-height: 72px;
  color: #ffffff;
  letter-spacing: -1px;
}

.hero p {
  margin: 10px 0 0 0;
  font-size: 22px;
  color: rgba(255,255,255,0.88);
}

@media (max-width: 992px) {
  .hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  .hero p {
    font-size: 18px;
    line-height: 24px;
  }
}

.hero .btn-get-started {
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent-color), var(--accent-secondary));
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.5px;
  display: inline-block;
  padding: 14px 50px;
  border-radius: 999px;
  transition: 0.5s;
  margin-top: 30px;
  box-shadow: 0 18px 40px rgba(34, 144, 185, 0.24);
}

.hero .btn-get-started:hover {
  background: linear-gradient(135deg, var(--accent-secondary), var(--accent-color));
  transform: translateY(-4px);
}

.hero .icon-box {
  background: rgba(255, 255, 255, 0.10);
  padding: 50px 30px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(15, 44, 59, 0.20);
  transition: all 0.35s cubic-bezier(.2,.8,.2,1);
  border-radius: 24px;
  z-index: 1;
  height: 100%;
  width: 100%;
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.hero .icon-box .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

.hero .icon-box .title a {
  color: #ffffff;
  transition: 0.3s;
}

.hero .icon-box .description {
  font-size: 15px;
  margin-bottom: 0;
  color: rgba(255,255,255,0.82);
}

.hero .icon-box .icon {
  margin-bottom: 20px;
  padding-top: 10px;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  font-size: 36px;
  line-height: 1;
  color: var(--accent-gold);
}

@media (min-width: 640px) {
  .hero .icon-box:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 24px 60px rgba(15, 44, 59, 0.26);
  }

  .hero .icon-box:hover .title a {
    color: #ffffff;
  }
}

.object-fit-cover {
  object-fit: cover;
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about ul {
  list-style: none;
  padding: 0;
}

.about ul li {
  padding-bottom: 5px;
  display: flex;
  align-items: center;
}

.about ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--accent-gold);
}

.about .read-more {
  background: linear-gradient(135deg, var(--accent-color), var(--accent-secondary));
  color: var(--contrast-color);
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 12px 30px;
  border-radius: 999px;
  transition: 0.35s cubic-bezier(.2,.8,.2,1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 34px rgba(54, 177, 203, 0.18);
}

.about .read-more i {
  font-size: 18px;
  margin-left: 5px;
  line-height: 0;
  transition: 0.3s;
  color: #ffffff;
}

.about .read-more:hover {
  background: linear-gradient(135deg, var(--accent-secondary), var(--accent-color));
  transform: translateY(-2px);
}

.about .read-more:hover i {
  transform: translate(5px, 0);
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats {
  padding: 30px 0;
}

.stats .stats-item {
  padding: 30px;
  width: 100%;
}

.stats .stats-item span {
  font-size: 48px;
  display: block;
  color: var(--accent-color);
  font-weight: 800;
}

.stats .stats-item p {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 0;
  margin: 0;
  font-family: var(--heading-font);
  font-size: 15px;
  font-weight: 600;
}

/*--------------------------------------------------------------
# About Alt Section
--------------------------------------------------------------*/
.about-alt .content h3 {
  font-size: 1.75rem;
  font-weight: 700;
}

.about-alt .content ul {
  list-style: none;
  padding: 0;
}

.about-alt .content ul li {
  padding: 10px 0 0 0;
  display: flex;
}

.about-alt .content ul i {
  color: var(--accent-gold);
  margin-right: 0.5rem;
  line-height: 1.2;
  font-size: 1.25rem;
}

.about-alt .content p:last-child {
  margin-bottom: 0;
}

.about-alt .pulsating-play-btn {
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  box-sizing: content-box;
  min-height: 320px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  margin: -40px 0 0 40px;
  position: relative;
  z-index: 2;
  border: 6px solid var(--background-color);
  object-fit: cover;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 45px;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0 0 0 45px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 15px 0 15px;
  padding: 24px 24px 60px 24px;
  background: rgba(255,255,255,0.72);
  position: relative;
  border-radius: 24px;
  z-index: 1;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.46);
  box-shadow: var(--glass-shadow);
}

.testimonials .swiper-wrapper {
  height: auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: var(--background-color);
  opacity: 1;
  border: 1px solid var(--accent-color);
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  background: rgba(255,255,255,0.76);
  box-shadow: var(--glass-shadow);
  height: 100%;
  padding: 60px 30px;
  text-align: center;
  transition: 0.35s cubic-bezier(.2,.8,.2,1);
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.46);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.services .service-item .icon {
  margin: 0 auto;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: ease-in-out 0.3s;
  position: relative;
}

.services .service-item .icon i {
  font-size: 36px;
  transition: 0.5s;
  position: relative;
  color: var(--accent-gold) !important;
}

.services .service-item .icon svg {
  position: absolute;
  top: 0;
  left: 0;
}

.services .service-item .icon svg path {
  transition: 0.5s;
  fill: color-mix(in srgb, var(--accent-color), transparent 88%);
}

.services .service-item h3 {
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: 22px;
}

.services .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .service-item:hover {
  box-shadow: 0px 22px 55px rgba(34, 144, 185, 0.18);
  transform: translateY(-10px);
}

.services .service-item.item-cyan i,
.services .service-item.item-orange i,
.services .service-item.item-teal i,
.services .service-item.item-red i,
.services .service-item.item-indigo i,
.services .service-item.item-pink i {
  color: var(--accent-gold) !important;
}

.services .service-item.item-cyan:hover .icon i,
.services .service-item.item-orange:hover .icon i,
.services .service-item.item-teal:hover .icon i,
.services .service-item.item-red:hover .icon i,
.services .service-item.item-indigo:hover .icon i,
.services .service-item.item-pink:hover .icon i {
  color: #fff !important;
}

.services .service-item.item-cyan:hover .icon path,
.services .service-item.item-orange:hover .icon path,
.services .service-item.item-teal:hover .icon path,
.services .service-item.item-red:hover .icon path,
.services .service-item.item-indigo:hover .icon path,
.services .service-item.item-pink:hover .icon path {
  fill: var(--accent-secondary);
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  padding: 80px 0;
  position: relative;
  clip-path: inset(0);
}

.call-to-action h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--default-color);
}

.call-to-action p {
  color: var(--default-color);
}

.call-to-action .cta-btn {
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 14px 42px;
  border-radius: 999px;
  transition: 0.35s cubic-bezier(.2,.8,.2,1);
  margin: 10px;
  border: 2px solid var(--contrast-color);
  color: var(--contrast-color);
}

.call-to-action .cta-btn:hover {
  background: var(--surface-color);
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-filters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.portfolio .portfolio-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 10px 22px 12px 22px;
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 5px;
  border-radius: 999px;
  transition: all 0.3s ease-in-out;
  font-family: var(--heading-font);
  background: rgba(255,255,255,0.66);
  border: 1px solid rgba(255,255,255,0.46);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 12px 26px rgba(34, 144, 185, 0.08);
}

.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li.filter-active {
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent-color), var(--accent-secondary));
}

.portfolio .portfolio-filters li:first-child {
  margin-left: 0;
}

.portfolio .portfolio-filters li:last-child {
  margin-right: 0;
}

@media (max-width: 575px) {
  .portfolio .portfolio-filters li {
    font-size: 14px;
    margin: 0 0 10px 0;
  }
}

.portfolio .portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
}

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: -100%;
  z-index: 3;
  transition: all ease-in-out 0.5s;
  background: rgba(255,255,255,0.76);
  padding: 18px;
  border-radius: 18px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.46);
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  font-weight: 600;
  padding-right: 50px;
}

.portfolio .portfolio-item .portfolio-info p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  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: color-mix(in srgb, var(--default-color), transparent 30%);
  transition: 0.3s;
  line-height: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: var(--accent-color);
}

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 14px;
  font-size: 28px;
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  bottom: 0;
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .team-member {
  background-color: rgba(255,255,255,0.78);
  overflow: hidden;
  border-radius: 24px;
  box-shadow: var(--glass-shadow);
  height: 100%;
  border: 1px solid rgba(255,255,255,0.46);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.team .team-member .member-img {
  position: relative;
  overflow: hidden;
}

.team .team-member .social {
  position: absolute;
  left: 0;
  bottom: 30px;
  right: 0;
  opacity: 0;
  transition: ease-in-out 0.3s;
  text-align: center;
}

.team .team-member .social a {
  background: rgba(255,255,255,0.86);
  color: var(--accent-gold);
  margin: 0 3px;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  transition: 0.35s cubic-bezier(.2,.8,.2,1);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 10px 24px rgba(15, 44, 59, 0.12);
}

.team .team-member .social a:hover {
  color: #fff;
  background: linear-gradient(135deg, var(--accent-color), var(--accent-secondary));
  transform: translateY(-3px);
}

.team .team-member .social i {
  font-size: 18px;
  line-height: 0;
}

.team .team-member .member-info {
  padding: 25px 15px;
}

.team .team-member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
}

.team .team-member .member-info span {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.team .team-member:hover .social {
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-item {
  background: rgba(255,255,255,0.76);
  padding: 60px 40px;
  box-shadow: var(--glass-shadow);
  height: 100%;
  position: relative;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.46);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.pricing h3 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 20px;
}

.pricing h4 {
  font-size: 48px;
  color: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 700;
}

.pricing h4 sup {
  font-size: 28px;
}

.pricing h4 span {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  font-size: 18px;
}

.pricing ul {
  padding: 20px 0;
  list-style: none;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  text-align: left;
  line-height: 20px;
}

.pricing ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.pricing ul i {
  color: var(--accent-gold);
  font-size: 24px;
  padding-right: 3px;
}

.pricing ul .na {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing ul .na i {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing ul .na span {
  text-decoration: line-through;
}

.pricing .buy-btn {
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent-color), var(--accent-secondary));
  display: inline-block;
  padding: 10px 36px 12px 36px;
  border-radius: 999px;
  border: none;
  transition: 0.35s cubic-bezier(.2,.8,.2,1);
  font-size: 16px;
  font-weight: 600;
  font-family: var(--heading-font);
  box-shadow: 0 14px 34px rgba(54, 177, 203, 0.20);
}

.pricing .buy-btn:hover {
  background: linear-gradient(135deg, var(--accent-secondary), var(--accent-color));
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.pricing .featured {
  z-index: 10;
}

.pricing .featured .pricing-item {
  background: linear-gradient(135deg, #2290b9, #36b1cb);
}

@media (min-width: 992px) {
  .pricing .featured .pricing-item {
    transform: scale(1.02, 1.1);
  }
}

.pricing .featured h3,
.pricing .featured h4,
.pricing .featured h4 span,
.pricing .featured ul,
.pricing .featured ul .na,
.pricing .featured ul i,
.pricing .featured ul .na i {
  color: var(--contrast-color);
}

.pricing .featured .buy-btn {
  background: rgba(255,255,255,0.16);
  color: var(--contrast-color);
  border: 1px solid rgba(255,255,255,0.46);
  box-shadow: none;
}

.pricing .featured .buy-btn:hover {
  background: color-mix(in srgb, var(--background-color), transparent 92%);
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-container .faq-item {
  background: rgba(255,255,255,0.76);
  position: relative;
  padding: 22px;
  margin-bottom: 15px;
  border: 1px solid rgba(255,255,255,0.46);
  border-radius: 20px;
  overflow: hidden;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 14px 30px rgba(34, 144, 185, 0.08);
}

.faq .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  margin: 0 30px 0 0;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.faq .faq-container .faq-item h3 .num {
  color: var(--accent-gold);
  padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 22px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-active {
  background: linear-gradient(135deg, var(--accent-color), var(--accent-secondary));
  border-color: transparent;
  color: var(--contrast-color);
  box-shadow: 0 20px 44px rgba(34, 144, 185, 0.18);
}

.faq .faq-container .faq-active h3 {
  color: var(--contrast-color);
}

.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item+.info-item {
  margin-top: 40px;
}

.contact .info-item i {
  color: var(--accent-gold);
  background: linear-gradient(135deg, var(--accent-color), var(--accent-secondary));
  font-size: 20px;
  width: 48px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 16px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
  box-shadow: 0 12px 28px rgba(54, 177, 203, 0.18);
}

.contact .info-item h3 {
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .php-email-form {
  height: 100%;
}

/* ICONS → WHITE */
.contact .info-item i {
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent-color), var(--accent-secondary));
  box-shadow: 0 10px 25px rgba(34, 144, 185, 0.15);
}

/* ===============================
CONTACT FORM - SOFT GLASS
================================= */
.contact .php-email-form .form-control {
  border: 1.5px solid rgba(200, 169, 106, 0.25) !important; /* softer gold */
  border-radius: 18px;
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 14px 18px;
  transition: all 0.35s ease;
}

/* soft hover */
.contact .php-email-form .form-control:hover {
  border-color: rgba(200, 169, 106, 0.4);
  box-shadow: 0 6px 18px rgba(34, 144, 185, 0.08);
}

/* focus → soft blue */
.contact .php-email-form .form-control:focus {
  border-color: var(--accent-color) !important;
  box-shadow:
    0 0 0 2px rgba(54, 177, 203, 0.12),
    0 8px 25px rgba(34, 144, 185, 0.10);
  outline: none;
}

/* subtle glossy shine */
.contact .php-email-form .form-control::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 20%,
    rgba(255,255,255,0.18) 40%,
    transparent 60%
  );
  opacity: 0;
  transition: 0.4s;
}

/* hover → soft glossy */
.contact .php-email-form .form-control:hover {
  border-color: rgba(200, 169, 106, 0.5);
  box-shadow: 0 8px 25px rgba(34, 144, 185, 0.08);
}

.contact .php-email-form .form-control:hover::after {
  opacity: 1;
}

/* focus → BLUE but still soft */
.contact .php-email-form .form-control:focus {
  border-color: var(--accent-color) !important;
  box-shadow:
    0 0 0 3px rgba(54, 177, 203, 0.12),
    0 10px 30px rgba(34, 144, 185, 0.12);
  outline: none;
}

/* placeholder */
.contact .php-email-form .form-control::placeholder {
  color: rgba(67, 85, 108, 0.5);
}

.contact .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: linear-gradient(135deg, var(--accent-color), var(--accent-secondary));
  border: 0;
  padding: 12px 34px;
  transition: 0.35s cubic-bezier(.2,.8,.2,1);
  border-radius: 999px;
  box-shadow: 0 14px 34px rgba(54, 177, 203, 0.22);
}

.contact .php-email-form button[type=submit]:hover {
  background: linear-gradient(135deg, var(--accent-secondary), var(--accent-color));
  transform: translateY(-2px);
}

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .swiper-wrapper {
  height: auto;
}

.portfolio-details .swiper-button-prev,
.portfolio-details .swiper-button-next {
  width: 48px;
  height: 48px;
}

.portfolio-details .swiper-button-prev:after,
.portfolio-details .swiper-button-next:after {
  color: rgba(255, 255, 255, 0.8);
  background-color: rgba(34, 144, 185, 0.28);
  font-size: 24px;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.portfolio-details .swiper-button-prev:hover:after,
.portfolio-details .swiper-button-next:hover:after {
  background-color: rgba(34, 144, 185, 0.42);
}

@media (max-width: 575px) {
  .portfolio-details .swiper-button-prev,
  .portfolio-details .swiper-button-next {
    display: none;
  }
}

.portfolio-details .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.portfolio-details .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.portfolio-details .portfolio-info h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-gold);
  left: 0;
  bottom: 0;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li {
  display: flex;
  flex-direction: column;
  padding-bottom: 15px;
}

.portfolio-details .portfolio-info ul strong {
  text-transform: uppercase;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 14px;
}

.portfolio-details .portfolio-info .btn-visit {
  padding: 10px 40px;
  background: linear-gradient(135deg, var(--accent-color), var(--accent-secondary));
  color: var(--contrast-color);
  border-radius: 999px;
  transition: 0.35s cubic-bezier(.2,.8,.2,1);
  box-shadow: 0 14px 34px rgba(54, 177, 203, 0.22);
}

.portfolio-details .portfolio-info .btn-visit:hover {
  background: linear-gradient(135deg, var(--accent-secondary), var(--accent-color));
  transform: translateY(-2px);
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}

.portfolio-details .portfolio-description .testimonial-item {
  padding: 30px 30px 0 30px;
  position: relative;
  background: rgba(255,255,255,0.76);
  margin-bottom: 50px;
  border-radius: 24px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.46);
}

.portfolio-details .portfolio-description .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50px;
  border: 6px solid var(--background-color);
  float: left;
  margin: 0 10px 0 0;
}

.portfolio-details .portfolio-description .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 15px 0 5px 0;
  padding-top: 20px;
}

.portfolio-details .portfolio-description .testimonial-item h4 {
  font-size: 14px;
  color: #6c757d;
  margin: 0;
}

.portfolio-details .portfolio-description .testimonial-item .quote-icon-left,
.portfolio-details .portfolio-description .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
  font-size: 26px;
  line-height: 0;
}

.portfolio-details .portfolio-description .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.portfolio-details .portfolio-description .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.portfolio-details .portfolio-description .testimonial-item p {
  font-style: italic;
  margin: 0 0 15px 0 0 0;
  padding: 0;
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .services-list {
  background: rgba(255,255,255,0.76);
  padding: 10px 30px;
  border: 1px solid rgba(255,255,255,0.46);
  margin-bottom: 20px;
  border-radius: 24px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.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-gold);
}

.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-gold);
}

/* ===== TEAM CARDS (FINAL PREMIUM) ===== */
#team .col-lg-5th {
  position: relative;
}

@media (min-width: 992px) {
  #team .col-lg-5th {
    flex: 0 0 20%;
    max-width: 20%;
  }
}

/* ===============================
CARD
================================= */
#team .team-member {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.72);
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(34, 144, 185, 0.14);
  border: 1px solid rgba(255,255,255,0.46);
  transition: all 0.35s ease;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

#team .team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 70px rgba(34, 144, 185, 0.22);
}

/* ===============================
IMAGE
================================= */
#team .member-img {
  position: relative;
  height: 320px;
  overflow: hidden;
  background: linear-gradient(135deg, #e8f8fc, #f5fdff);
}

#team .member-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.45s ease;
}

#team .team-member:hover .member-img img {
  transform: scale(1.05);
}

/* Gradient overlay */
#team .member-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 39, 50, 0.72) 0%,
    rgba(10, 39, 50, 0.18) 35%,
    rgba(10, 39, 50, 0.02) 70%,
    transparent 100%
  );
  pointer-events: none;
}

/* ===============================
SOCIAL ICONS - HARD CENTER FIX
================================= */
#team .social {
  position: absolute;
  bottom: 15px;
  width: 100%;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  transform: none;
  padding: 0;
  margin: 0;
}

#team .social a {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  color: var(--accent-gold);
  font-size: 18px;
  border: 1px solid rgba(255,255,255,0.56);
  padding: 0 !important;
  line-height: 1 !important;
  text-align: center;
  flex: 0 0 42px;
  box-shadow: 0 10px 24px rgba(10, 39, 50, 0.14);
}

#team .social a i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  line-height: 1;
}

/* ===============================
MEMBER INFO
================================= */
#team .member-info {
  min-height: 128px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  padding: 20px 16px 22px;
  background: linear-gradient(180deg, rgba(255,255,255,0.92) 0%, rgba(245,252,254,0.92) 100%);
}

#team .member-info h4 {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  text-align: center;
  font-size: 18px;
  font-weight: 800;
  color: #2290b9;
  line-height: 1.3;
}

#team .member-info span {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #6b7280;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.45;
}

/* Accent line */
#team .member-info::before {
  content: "";
  width: 56px;
  height: 4px;
  border-radius: 20px;
  margin: 0 auto 14px;
  background: linear-gradient(90deg, #36b1cb, #2290b9);
  display: block;
}

/* ===============================
MOBILE IMAGE IMPROVEMENT
================================= */
@media (max-width: 767.98px) {
  #team .member-img {
    height: 300px;
  }

  #team .member-img img {
    object-position: top;
  }

  #team .member-info h4 {
    font-size: 17px;
    min-height: auto;
  }

  #team .member-info span {
    min-height: auto;
  }
}

:root {
  --accent-color: #36b1cb;
  --accent-azure: #36b1cb;
  --accent-azure-deep: #2290b9;
  --accent-gold: #c8a96a;
}

/* Smooth premium transitions */
* {
  transition: all 0.3s ease;
}

/* ===============================
HERO - GLASS / GLOSSY EFFECT
================================= */
.hero {
  position: relative;
  overflow: hidden;
}

/* Glass gradient overlay */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  background: linear-gradient(
    135deg,
    rgba(34, 144, 185, 0.58),
    rgba(54, 177, 203, 0.34),
    rgba(200, 169, 106, 0.12)
  );
}

/* Gloss shine layer */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  background: linear-gradient(
    120deg,
    transparent 20%,
    rgba(255,255,255,0.15) 40%,
    transparent 60%
  );
  animation: shine 6s infinite;
}

@keyframes shine {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* Text styling */
.hero h1 {
  font-size: 64px;
  font-weight: 800;
  letter-spacing: -1px;
  color: #fff;
}

.hero p {
  color: rgba(255,255,255,0.8);
}

/* Premium button */
.hero .btn-get-started {
  background: linear-gradient(135deg, #36b1cb, #2290b9);
  color: #fff;
  font-weight: 700;
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(54,177,203,0.4);
}

.hero .btn-get-started:hover {
  transform: translateY(-3px) scale(1.02);
}

/* Hero button */
.hero .btn-get-started:hover {
  color: #ffffff !important;
}

/* Read more button */
.read-more:hover {
  color: #ffffff !important;
}

/* CTA button */
.cta-btn:hover {
  color: #ffffff !important;
}

/* Pricing / general buttons */
.buy-btn:hover,
button:hover {
  color: #ffffff !important;
}

/* Contact form button */
.contact .php-email-form button[type=submit]:hover {
  color: #ffffff !important;
}

/* ===============================
ICON BOX (HERO CARDS)
================================= */
.hero .icon-box {
  border-radius: 18px;
  backdrop-filter: blur(12px);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 10px 40px rgba(0,0,0,0.25);
}

.hero .icon-box:hover {
  transform: translateY(-8px) scale(1.03);
}

/* ===============================
SECTION TITLES
================================= */
.section-title h2 {
  font-size: 36px;
  letter-spacing: 1px;
  position: relative;
}

.section-title h2::after {
  content: "";
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #36b1cb, #2290b9);
  display: block;
  margin: 12px auto 0;
  border-radius: 50px;
}

/* ===============================
SERVICES - PREMIUM CARDS
================================= */
.service-item {
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(255,255,255,0.88), rgba(245,251,253,0.92));
  box-shadow: 0 15px 50px rgba(0,0,0,0.08);
  border: 1px solid rgba(255,255,255,0.48);
}

.service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 70px rgba(34,144,185,0.18);
}

/* ===============================
PRICING - LUXURY STYLE
================================= */
.pricing .featured .pricing-item {
  background: linear-gradient(135deg, #2290b9, #36b1cb);
  color: #fff;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(34,144,185,0.30);
}

.pricing .featured h4 {
  color: #c8a96a;
}

/* ===============================
BUTTONS GLOBAL
================================= */
button, .buy-btn, .cta-btn {
  border-radius: 50px;
  font-weight: 600;
}

.client-card img {
  max-width: 100%;
  max-height: 50px;
  filter: none;
  opacity: 0.9;
  transition: all 0.3s ease;
}

/* Hover = slight pop */
.client-card:hover img {
  transform: scale(1.08);
  opacity: 1;
}

/* ===============================
TEAM - MORE PREMIUM
================================= */
#team .team-member {
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(34,144,185,0.14);
}

#team .member-info::before {
  background: linear-gradient(90deg, #36b1cb, #2290b9);
}

/* ===============================
HERO CARDS - HIGH VISIBILITY FIX
================================= */
.hero .icon-box {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

/* ICON */
.hero .icon-box .icon {
  color: #c8a96a !important;
  font-size: 40px;
}

/* TITLE */
.hero .icon-box .title a {
  color: #ffffff !important;
  font-weight: 700;
}

/* DESCRIPTION */
.hero .icon-box .description {
  color: rgba(255,255,255,0.85) !important;
}

/* Hover effect (premium glow) */
.hero .icon-box:hover {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  transform: translateY(-8px);
}

/* Icon glow on hover */
.hero .icon-box:hover .icon {
  color: #c8a96a !important;
  text-shadow: 0 0 20px rgba(200,169,106,0.6);
}

/* ===============================
PREMIUM ABOUT SECTION
================================= */
.premium-about .about-text {
  padding-right: 20px;
}

/* Lead text */
.premium-about .lead {
  font-size: 18px;
  color: #555;
  margin-bottom: 20px;
}

/* Premium list */
.premium-list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.premium-list li {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  font-size: 15px;
  color: #444;
}

.premium-list i {
  color: #c8a96a;
  margin-right: 10px;
  font-size: 18px;
}

/* ===============================
IMAGE LAYOUT (RIGHT SIDE)
================================= */
.about-images {
  position: relative;
  height: 420px;
}

/* Main image */
.about-images .img-main img {
  width: 85%;
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.25);
  position: absolute;
  top: 0;
  right: 0;
}

/* Floating image */
.about-images .img-float img {
  width: 55%;
  border-radius: 18px;
  position: relative;
  bottom: 0;
  left: 0;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
  border: 6px solid #fff;
}

/* Glass shine effect */
.about-images img {
  transition: all 0.4s ease;
}

.about-images img:hover {
  transform: scale(1.03);
}

/* ===============================
MOBILE FIX
================================= */
@media (max-width: 991px) {
  .about-images {
    height: auto;
    margin-top: 40px;
  }

  .about-images .img-main img,
  .about-images .img-float img {
    position: relative;
    width: 100%;
    margin-bottom: 20px;
  }
}

/* ===============================
PREMIUM STATS SECTION
================================= */
.premium-stats {
  background: linear-gradient(135deg, #2290b9, #36b1cb);
  color: #fff;
}

/* Card */
.stats-card {
  padding: 40px 25px;
  border-radius: 20px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 15px 50px rgba(0,0,0,0.22);
  transition: all 0.35s ease;
}

/* Hover */
.stats-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 25px 70px rgba(0,0,0,0.28);
}

/* Icon */
.stats-card i {
  font-size: 40px;
  color: #c8a96a;
  margin-bottom: 15px;
  display: inline-block;
}

/* Number */
.stats-card span {
  font-size: 42px;
  font-weight: 800;
  display: inline-block;
}

/* + and % */
.stats-card .plus,
.stats-card .percent {
  font-size: 26px;
  margin-left: 3px;
  color: #c8a96a;
  font-weight: 700;
}

/* Text */
.stats-card p {
  margin-top: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.8);
}

/* Glow effect */
.stats-card:hover i {
  text-shadow: 0 0 20px rgba(200,169,106,0.7);
}

/* ===============================
PREMIUM CONTACT SECTION (FINAL)
================================= */

/* Limit width and center */
.contact-wrapper {
  max-width: 1100px;
  margin: 0 auto;
}

/* Form card */
.contact .php-email-form {
  background: rgba(255,255,255,0.78);
  padding: 40px;
  border-radius: 22px;
  box-shadow: 0 25px 70px rgba(34,144,185,0.12);
  border: 1px solid rgba(255,255,255,0.48);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

/* Form header */
.form-header h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 5px;
  color: #2290b9;
}

.form-header p {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 25px;
}

/* Inputs (MORE ROUNDED) */
.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 18px;
  padding: 15px 18px;
  font-size: 14px;
  border: 1px solid #d9eef4;
  background: rgba(255,255,255,0.8);
}

/* Focus */
.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: #36b1cb;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(54,177,203,0.15);
}

/* Button spacing */
.contact .btn-get-started {
  margin-top: 10px;
}

/* ===============================
CONTACT INFO
================================= */
.contact .info-item {
  background: rgba(255,255,255,0.78);
  padding: 18px 20px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(34,144,185,0.08);
  margin-bottom: 15px;
  border: 1px solid rgba(255,255,255,0.48);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.contact .info-item i {
  color: #ffffff; /* changed from gold to white */
  background: linear-gradient(135deg, var(--accent-color), var(--accent-secondary));
  font-size: 20px;
  width: 48px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 16px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
  box-shadow: 0 12px 28px rgba(54, 177, 203, 0.18);
}

.contact .info-item h3 {
  font-size: 15px;
  margin-bottom: 3px;
}

.contact .info-item p {
  font-size: 14px;
  color: #555;
}

/* ===============================
MOBILE
================================= */
@media (max-width: 991px) {
  .contact-wrapper {
    padding: 0 15px;
  }
}

/* ===============================
CTA TEAL PREMIUM OVERRIDE
================================= */
.call-to-action {
  background: linear-gradient(135deg, #36b1cb, #2290b9);
  color: #ffffff;
}

.call-to-action h3 {
  color: #ffffff;
  font-weight: 800;
}

.call-to-action p {
  color: rgba(255, 255, 255, 0.88);
}

.call-to-action .cta-btn {
  background: #ffffff;
  color: #2290b9;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  padding: 12px 40px;
}

.call-to-action .cta-btn:hover {
  background: #f8fafc;
  color: #2290b9 !important;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.18);
}

.call-to-action::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 30%,
    rgba(255,255,255,0.2),
    transparent 70%
  );
  opacity: 0.4;
  pointer-events: none;
}

/* ===============================
PREMIUM SERVICES BACKGROUND
================================= */
.premium-services {
  position: relative;
  background: url("../img/globe.jpg") center/cover no-repeat;
  padding: 80px 0;
}

/* Dark overlay */
.premium-services::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(14, 49, 63, 0.88);
  z-index: 1;
}

/* Keep content above overlay */
.premium-services .container {
  position: relative;
  z-index: 2;
}

/* ===============================
SECTION TEXT
================================= */
.premium-services h2,
.premium-services h3 {
  color: #ffffff;
}

.premium-services p {
  color: rgba(255,255,255,0.85);
}

/* ===============================
SERVICE CARDS (FINAL FIX)
================================= */
.premium-services .service-item {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 20px;
  padding: 40px 25px;
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: 0 15px 50px rgba(0,0,0,0.45);
  transition: all 0.35s ease;
}

.premium-services .service-item h3,
.premium-services .service-item p {
  color: #ffffff;
}

/* ===============================
ICON (DEFAULT STATE)
================================= */
.icon-circle {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #36b1cb, #2290b9);
  box-shadow: 0 10px 30px rgba(54,177,203,0.35);
  transition: all 0.35s ease;
}

.icon-circle i {
  font-size: 28px;
  color: var(--accent-gold);
  transition: all 0.35s ease;
}

/* ===============================
HOVER (STRIPE-LIKE LIFT)
================================= */
.service-item:hover {
  transform: translateY(-10px);
  background: rgba(255,255,255,0.14);
  box-shadow: 0 25px 70px rgba(0,0,0,0.6);
}

.service-item:hover h3,
.service-item:hover p {
  color: #ffffff;
}

.service-item:hover .icon-circle {
  background: linear-gradient(135deg, #2290b9, #36b1cb);
  box-shadow: 0 15px 40px rgba(54,177,203,0.36);
}

.service-item:hover .icon-circle i {
  color: #c8a96a;
}

/* ===============================
PREMIUM CLIENTS SECTION
================================= */
.premium-clients {
  background: #ffffff;
  padding: 80px 0;
}

/* Section header */
.section-header h2 {
  font-size: 32px;
  font-weight: 800;
  color: #36b1cb;
}

.section-header p {
  color: #6b7280;
  font-size: 15px;
}

/* Client cards */
.client-card {
  background: rgba(255,255,255,0.82);
  border-radius: 20px;
  padding: 25px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.46);
  box-shadow: 0 10px 30px rgba(34,144,185,0.06);
  transition: all 0.3s ease;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

/* Logos */
.client-card img {
  max-width: 100%;
  max-height: 90px;
  transition: all 0.3s ease;
}

/* Hover effect */
.client-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(34,144,185,0.12);
}

.client-card:hover img {
  filter: none;
  opacity: 1;
  transform: scale(1.05);
}

/* ===============================
CLIENT CARDS - SOFT GLASS PREMIUM
================================= */
.client-card {
  position: relative;
  border: 1.5px solid rgba(54, 177, 203, 0.25); /* soft blue */
  border-radius: 18px;
  padding: 18px;
  background: rgba(255,255,255,0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.35s ease;
  overflow: hidden;
}

/* glossy shine */
.client-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 20%,
    rgba(255,255,255,0.2) 40%,
    transparent 60%
  );
  opacity: 0;
  transition: 0.4s;
}

/* hover → soft lift + blur shadow */
.client-card:hover {
  transform: translateY(-6px);
  border-color: rgba(54, 177, 203, 0.4);
  box-shadow:
    0 15px 40px rgba(34, 144, 185, 0.15),
    0 5px 20px rgba(34, 144, 185, 0.08);
}

/* activate gloss */
.client-card:hover::after {
  opacity: 1;
}


