/**
* Template Name: FlexStart
* Template URL: https://bootstrapmade.com/flexstart-bootstrap-startup-template/
* Updated: Nov 01 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* 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: "Nunito",  sans-serif;
  --nav-font: "Poppins",  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: #012970; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #4154f1; /* 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: #012970;  /* The default color of the main navmenu links */
  --nav-hover-color: #4154f1; /* 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: #212529; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #4154f1; /* 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: #f9f9f9;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --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);
}

/* 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);
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 36px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 15px;
  padding: 8px 25px;
  margin: 0 0 0 30px;
  border-radius: 4px;
  transition: 0.3s;
  font-weight: 500;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 3;
  }
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/* Index Page Header
------------------------------*/
.index-page .header {
  --background-color: rgba(255, 255, 255, 0);
}

/* Index Page Header on Scroll
------------------------------*/
.index-page.scrolled .header {
  --background-color: #ffffff;
}

/*--------------------------------------------------------------
# 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 12px;
    font-size: 15px;
    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: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 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;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
    position: relative;
    z-index: 10001;
    pointer-events: auto;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    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;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/* Listing Dropdown - Desktop */
@media (min-width: 1200px) {
  .navmenu .listing-dropdown {
    position: static;
  }

  .navmenu .listing-dropdown ul {
    margin: 0;
    padding: 10px;
    background: var(--nav-dropdown-background-color);
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 130%;
    left: 0;
    right: 0;
    visibility: hidden;
    opacity: 0;
    display: flex;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
  }

  .navmenu .listing-dropdown ul li {
    flex: 1;
  }

  .navmenu .listing-dropdown ul li a,
  .navmenu .listing-dropdown ul li:hover>a {
    padding: 10px 20px;
    font-size: 15px;
    color: var(--nav-dropdown-color);
    background-color: var(--nav-dropdown-background-color);
  }

  .navmenu .listing-dropdown ul li a:hover,
  .navmenu .listing-dropdown ul li .active,
  .navmenu .listing-dropdown ul li .active:hover {
    color: var(--nav-dropdown-hover-color);
    background-color: var(--nav-dropdown-background-color);
  }

  .navmenu .listing-dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }
}

/* Listing Dropdown - Mobile */
@media (max-width: 1199px) {
  .navmenu .listing-dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .listing-dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .listing-dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  padding-bottom: 50px;
  position: relative;
}

.footer .footer-newsletter {
  background-color: color-mix(in srgb, var(--accent-color), transparent 97%);
  border-top: 1px solid color-mix(in srgb, var(--accent-color), transparent 85%);
  border-bottom: 1px solid color-mix(in srgb, var(--accent-color), transparent 85%);
  padding: 50px 0;
}

.footer .footer-newsletter h4 {
  font-size: 24px;
}

.footer .footer-newsletter .newsletter-form {
  margin-top: 30px;
  margin-bottom: 15px;
  padding: 6px 8px;
  position: relative;
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
  display: flex;
  transition: 0.3s;
  border-radius: 4px;
}

.footer .footer-newsletter .newsletter-form:focus-within {
  border-color: var(--accent-color);
}

.footer .footer-newsletter .newsletter-form input[type=email] {
  border: 0;
  padding: 4px;
  width: 100%;
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  color: var(--default-color);
}

.footer .footer-newsletter .newsletter-form input[type=email]:focus-visible {
  outline: none;
}

.footer .footer-newsletter .newsletter-form input[type=submit] {
  border: 0;
  font-size: 16px;
  padding: 0 20px;
  margin: -7px -8px -7px 0;
  background: var(--accent-color);
  color: var(--contrast-color);
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

.footer .footer-newsletter .newsletter-form input[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.footer .footer-top {
  padding-top: 50px;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 97%);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 85%);
  font-size: 16px;
  color: var(--accent-color);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.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 {
  margin-right: 3px;
  font-size: 12px;
  line-height: 0;
  color: var(--accent-color);
}

.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 {
  display: inline-block;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-about a {
  color: var(--heading-color);
  font-size: 24px;
  font-weight: 600;
  font-family: var(--heading-font);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  padding-top: 25px;
  padding-bottom: 25px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}

.footer .copyright{
    padding:30px 0;
    border-top:1px solid rgba(255,255,255,.08);
}

.footer .credits{
    margin-top:10px;
    font-size:15px;
    color:#94a3b8;
}

.footer .credits a{
    color:var(--durban-gold);
    font-weight:700;
    transition:.3s;
}

.footer .credits a:hover{
    color:#fff;
}

body.dark-mode .footer .credits{
    color:#cbd5e1;
}

body.dark-mode .footer .credits a{
    color:var(--durban-gold);
}


/* ========== FOOTER COPYRIGHT VISIBILITY FIX ========== */
.footer .copyright,
.footer .copyright p,
.footer .copyright span,
.footer .copyright strong,
.footer .copyright .sitename {
  color: rgba(255,255,255,.85) !important;
}

.footer .copyright strong,
.footer .copyright .sitename {
  font-weight: 900;
  color: #ffffff !important;
}

.footer .credits {
  color: rgba(255,255,255,.68) !important;
}

.footer .credits a {
  color: var(--durban-gold) !important;
  font-weight: 900;
}

/*--------------------------------------------------------------
# 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);
  position: relative;
}

.page-title .heading {
  padding: 80px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 700;
}

.page-title nav {
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 20px 0;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

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

.page-title nav 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: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 98px;
  overflow: clip;
}

@media (max-width: 1199px) {

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

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

.section-title h2 {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 700;
  padding: 8px 20px;
  margin: 0;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  display: inline-block;
  text-transform: uppercase;
  border-radius: 50px;
  font-family: var(--default-font);
}

.section-title p {
  color: var(--heading-color);
  margin: 10px 0 0 0;
  font-size: 32px;
  font-weight: 700;
  font-family: var(--heading-font);
}

.section-title p .description-title {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 80px 0 60px 0;
  display: flex;
  align-items: center;
  background: url(../img/hero-bg.png) top center no-repeat;
  background-size: cover;
}


.hero::before{
    content:'';
    position:absolute;
    width:300px;
    height:300px;
    background:rgba(11,132,229,.08);
    border-radius:50%;
    top:100px;
    right:100px;
    animation: floatDurban 8s infinite ease-in-out;
}

.hero::after{
    content:'';
    position:absolute;
    width:200px;
    height:200px;
    background:rgba(244,176,0,.08);
    border-radius:50%;
    bottom:50px;
    left:100px;
    animation: floatDurban 6s infinite ease-in-out;
}

@keyframes floatDurban{
    0%,100%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-25px);
    }
}

.hero h1{
    font-size: 62px;
    line-height: 1.1;
    font-weight: 900;
}


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

.hero .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 40px;
  border-radius: 4px;
  transition: 0.5s;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.hero .btn-get-started i {
  margin-left: 5px;
  font-size: 18px;
  transition: 0.3s;
}

.hero .btn-get-started:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.hero .btn-get-started:hover i {
  transform: translateX(5px);
}

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

.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 15%);
}

.hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

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

@media (max-width: 640px) {
  .hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  .hero p {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  padding: 40px;
}

.about .content h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--accent-color);
  text-transform: uppercase;
}

.about .content h2 {
  font-size: 24px;
  font-weight: 700;
}

.about .content p {
  margin: 15px 0 30px 0;
  line-height: 24px;
}

.about .content .btn-read-more {
  color: var(--contrast-color);
  background: var(--accent-color);
  line-height: 0;
  padding: 15px 40px;
  border-radius: 4px;
  transition: 0.5s;
  box-shadow: 0px 5px 25px rgba(0, 0, 0, 0.1);
}

.about .content .btn-read-more span {
  font-family: var(--default-font);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
}

.about .content .btn-read-more i {
  margin-left: 5px;
  font-size: 18px;
  transition: 0.3s;
}

.about .content .btn-read-more:hover i {
  transform: translateX(5px);
}

/*--------------------------------------------------------------
# Values Section
--------------------------------------------------------------*/
.values .card {
  background-color: var(--surface-color);
  color: var(--default-color);
  padding: 30px;
  box-shadow: 0px 0 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: 0.3s;
  height: 100%;
  border: 0;
}

.values .card img {
  padding: 30px 50px;
  transition: 0.5s;
  transform: scale(1.1);
}

.values .card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 18px;
}

.values .card:hover {
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
}

.values .card:hover img {
  transform: scale(1);
}


/*================ IMPACT ================*/

.durban-impact{
padding:100px 0;
background:
linear-gradient(180deg,#f8fbff,#ffffff);
}

.impact-card{

background:#fff;

border-radius:18px;

padding:40px 25px;

text-align:center;

box-shadow:0 18px 45px rgba(0,0,0,.08);

transition:.35s;
}

.impact-card:hover{

transform:translateY(-10px);

box-shadow:0 25px 55px rgba(0,0,0,.15);

}

.impact-card h3{

font-size:52px;

font-weight:900;

color:#0d6efd;

margin-bottom:10px;

}

.impact-card p{

font-size:17px;

font-weight:600;

margin:0;

}

body.dark-mode .durban-impact{

background:#081828;

}

body.dark-mode .impact-card{

background:#10233d;

color:white;

}

body.dark-mode .impact-card h3{

color:#3ea6ff;

}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .feature-box {
  padding: 24px 20px;
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
  height: 100%;
}

.features .feature-box h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
}

.features .feature-box i {
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--accent-color);
  line-height: 0;
  padding: 4px;
  margin-right: 10px;
  font-size: 24px;
  border-radius: 3px;
  transition: 0.3s;
}

.features .feature-box:hover i {
  background: var(--accent-color);
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Alt Features Section
--------------------------------------------------------------*/
.alt-features .icon-box {
  display: flex;
}

.alt-features .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 10px 0;
}

.alt-features .icon-box i {
  font-size: 44px;
  line-height: 44px;
  color: var(--accent-color);
  margin-right: 15px;
}

.alt-features .icon-box p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 0;
}
/* ================= PREMIUM SERVICES CAROUSEL ================= */
.durban-services-carousel-section {
  background:
    radial-gradient(circle at 8% 20%, rgba(244,176,0,.10), transparent 25%),
    linear-gradient(180deg, #ffffff, #f8fbff);
  overflow: hidden;
}

.services-premium-swiper {
  padding: 18px 0 58px;
}

.services-premium-swiper .swiper-slide {
  height: auto;
  transition: .45s ease;
}

.services-premium-swiper .swiper-slide:not(.swiper-slide-active) {
  opacity: .55;
  transform: scale(.92);
  filter: blur(.2px);
}

.services-premium-swiper .swiper-slide-active {
  opacity: 1;
  transform: scale(1);
  filter: blur(0);
}

.premium-service-card {
  min-height: 430px;
  height: 100%;
  background: #ffffff;
  border: 1px solid rgba(11,132,229,.10);
  border-radius: 26px;
  padding: 34px;
  box-shadow: 0 18px 50px rgba(6,31,82,.08);
  position: relative;
  overflow: hidden;
  transition: .4s ease;
}

.premium-service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 12%, rgba(244,176,0,.18), transparent 26%),
    linear-gradient(135deg, rgba(11,132,229,.10), transparent 45%);
  opacity: 0;
  transition: .4s ease;
}

.services-premium-swiper .swiper-slide-active .premium-service-card::before,
.premium-service-card:hover::before {
  opacity: 1;
}

.premium-service-card > * {
  position: relative;
  z-index: 2;
}

.service-icon {
  width: 76px;
  height: 76px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--durban-blue), var(--durban-deep-blue));
  color: var(--durban-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  margin-bottom: 24px;
  box-shadow: 0 14px 35px rgba(11,132,229,.24);
}

.premium-service-card span {
  display: inline-flex;
  color: var(--durban-blue);
  background: rgba(11,132,229,.09);
  border-radius: 999px;
  padding: 7px 13px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.premium-service-card h3 {
  font-size: 24px;
  line-height: 1.25;
  font-weight: 900;
  margin-bottom: 15px;
  color: var(--durban-navy);
}

.premium-service-card p {
  color: #64748b;
  line-height: 1.75;
  margin-bottom: 24px;
}

.premium-service-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 900;
  color: var(--durban-blue);
}

.premium-service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 80px rgba(6,31,82,.16);
}

.services-premium-swiper .swiper-pagination {
  position: relative;
  margin-top: 34px;
}

.services-premium-swiper .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  opacity: 1;
  background: rgba(11,132,229,.22);
}

.services-premium-swiper .swiper-pagination-bullet-active {
  width: 34px;
  border-radius: 999px;
  background: var(--durban-blue);
}

body.dark-mode .durban-services-carousel-section {
  background: linear-gradient(180deg, #071426, #081a31) !important;
}

body.dark-mode .premium-service-card {
  background: #0c1f3b;
  border-color: rgba(255,255,255,.08);
}

body.dark-mode .premium-service-card h3 {
  color: #ffffff;
}

body.dark-mode .premium-service-card p {
  color: #cfe1ff;
}

@media (max-width: 576px) {
  .services-premium-swiper {
    padding-bottom: 48px;
  }

  .services-premium-swiper .swiper-slide:not(.swiper-slide-active) {
    opacity: 1;
    transform: scale(.96);
    filter: none;
  }

  .premium-service-card {
    min-height: 410px;
    padding: 28px;
    border-radius: 22px;
  }

  .premium-service-card h3 {
    font-size: 22px;
  }

  .premium-service-card p {
    font-size: 14.5px;
  }
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-tem {
  background-color: var(--surface-color);
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
  padding: 40px 20px;
  text-align: center;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  transition: 0.3s;
  height: 100%;
}

@media (min-width: 1200px) {
  .pricing .pricing-tem:hover {
    transform: scale(1.1);
    box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
  }
}

.pricing h3 {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 15px;
}

.pricing .price {
  font-size: 36px;
  color: var(--heading-color);
  font-weight: 600;
  font-family: var(--heading-font);
}

.pricing .price sup {
  font-size: 20px;
  top: -15px;
  left: -3px;
}

.pricing .price span {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  font-weight: 300;
}

.pricing .icon {
  padding: 20px 0;
}

.pricing .icon i {
  font-size: 48px;
}

.pricing ul {
  padding: 0;
  list-style: none;
  color: var(--default-color);
  text-align: center;
  line-height: 26px;
  font-size: 16px;
  margin-bottom: 25px;
}

.pricing ul li {
  padding-bottom: 10px;
}

.pricing ul .na {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
  text-decoration: line-through;
}

.pricing .btn-buy {
  display: inline-block;
  padding: 8px 40px 10px 40px;
  border-radius: 50px;
  color: var(--accent-color);
  transition: none;
  font-size: 16px;
  font-weight: 400;
  font-family: var(--heading-font);
  font-weight: 600;
  transition: 0.3s;
  border: 1px solid var(--accent-color);
}

.pricing .btn-buy:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.pricing .featured {
  width: 200px;
  position: absolute;
  top: 18px;
  right: -68px;
  transform: rotate(45deg);
  z-index: 1;
  font-size: 14px;
  padding: 1px 0 3px 0;
  background: var(--accent-color);
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-container .faq-item {
  position: relative;
  padding: 20px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  overflow: hidden;
}

.faq .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 16px;
  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-color);
  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: 20px;
  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 h3 {
  color: var(--accent-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(--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: 0;
  font-size: 18px;
  font-weight: 500;
  margin: 0 10px;
  line-height: 1;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li.filter-active {
  color: var(--accent-color);
}

.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 5px;
  }
}

.portfolio .portfolio-content {
  position: relative;
  overflow: hidden;
}

.portfolio .portfolio-content img {
  transition: 0.3s;
}

.portfolio .portfolio-content .portfolio-info {
  opacity: 0;
  position: absolute;
  inset: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: rgba(0, 0, 0, 0.6);
  padding: 15px;
}

.portfolio .portfolio-content .portfolio-info h4 {
  font-size: 14px;
  padding: 5px 10px;
  font-weight: 400;
  color: #ffffff;
  display: inline-block;
  background-color: var(--accent-color);
}

.portfolio .portfolio-content .portfolio-info p {
  position: absolute;
  bottom: 10px;
  text-align: center;
  display: inline-block;
  left: 0;
  right: 0;
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

.portfolio .portfolio-content .portfolio-info .preview-link,
.portfolio .portfolio-content .portfolio-info .details-link {
  position: absolute;
  left: calc(50% - 40px);
  font-size: 26px;
  top: calc(50% - 14px);
  color: #fff;
  transition: 0.3s;
  line-height: 1.2;
}

.portfolio .portfolio-content .portfolio-info .preview-link:hover,
.portfolio .portfolio-content .portfolio-info .details-link:hover {
  color: var(--accent-color);
}

.portfolio .portfolio-content .portfolio-info .details-link {
  left: 50%;
  font-size: 34px;
  line-height: 0;
}

.portfolio .portfolio-content:hover .portfolio-info {
  opacity: 1;
}

.portfolio .portfolio-content:hover img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-item {
  background-color: var(--surface-color);
  box-shadow: 0px 0 20px rgba(0, 0, 0, 0.1);
  box-sizing: content-box;
  padding: 30px;
  margin: 40px 30px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  text-align: center;
  transition: 0.3s;
}

.testimonials .testimonial-item .stars {
  margin-bottom: 15px;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  border: 4px solid var(--background-color);
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
}

.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: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.testimonials .swiper-slide {
  opacity: 0.3;
}

@media (max-width: 1199px) {
  .testimonials .swiper-slide-active {
    opacity: 1;
  }

  .testimonials .swiper-pagination {
    margin-top: 0;
  }

  .testimonials .testimonial-item {
    margin: 40px 20px;
  }
}

@media (min-width: 1200px) {
  .testimonials .swiper-slide-next {
    opacity: 1;
    transform: scale(1.12);
  }
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .team-member {
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  border-radius: 5px;
  transition: 0.3s;
}

.team .team-member .member-img {
  position: relative;
  overflow: hidden;
}

.team .team-member .member-img:after {
  position: absolute;
  content: "";
  left: -1px;
  right: -1px;
  bottom: -1px;
  height: 100%;
  background-color: var(--surface-color);
  -webkit-mask: url("../img/team-shape.svg") no-repeat center bottom;
  mask: url("../img/team-shape.svg") no-repeat center bottom;
  -webkit-mask-size: contain;
  mask-size: contain;
  z-index: 1;
}

.team .team-member .social {
  position: absolute;
  right: -100%;
  top: 30px;
  opacity: 0;
  border-radius: 4px;
  transition: 0.5s;
  background: color-mix(in srgb, var(--background-color), transparent 60%);
  z-index: 2;
}

.team .team-member .social a {
  transition: color 0.3s;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin: 15px 12px;
  display: block;
  line-height: 0;
  text-align: center;
}

.team .team-member .social a:hover {
  color: var(--default-color);
}

.team .team-member .social i {
  font-size: 18px;
}

.team .team-member .member-info {
  padding: 10px 15px 20px 15px;
}

.team .team-member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 20px;
}

.team .team-member .member-info span {
  display: block;
  font-size: 14px;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.team .team-member .member-info p {
  font-style: italic;
  font-size: 14px;
  padding-top: 15px;
  line-height: 26px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.team .team-member:hover {
  transform: scale(1.08);
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
}

.team .team-member:hover .social {
  right: 8px;
  opacity: 1;
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients .swiper-slide img {
  transition: 0.3s;
  opacity: 0.5;
}

.clients .swiper-slide img:hover {
  opacity: 1;
}

.clients .swiper-wrapper {
  height: auto;
}

.clients .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.clients .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  opacity: 1;
  background-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.clients .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

/*--------------------------------------------------------------
# Recent Posts Section
--------------------------------------------------------------*/
.recent-posts .post-item {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}

.recent-posts .post-item .post-img img {
  transition: 0.5s;
}

.recent-posts .post-item .post-date {
  position: absolute;
  right: 0;
  bottom: 0;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  text-transform: uppercase;
  font-size: 13px;
  padding: 6px 12px;
  font-weight: 500;
}

.recent-posts .post-item .post-content {
  padding: 30px;
}

.recent-posts .post-item .post-title {
  color: var(--heading-color);
  font-size: 20px;
  font-weight: 700;
  transition: 0.3s;
  margin-bottom: 15px;
}

.recent-posts .post-item .meta i {
  font-size: 16px;
  color: var(--accent-color);
}

.recent-posts .post-item .meta span {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.recent-posts .post-item hr {
  color: color-mix(in srgb, var(--default-color), transparent 80%);
  margin: 20px 0;
}

.recent-posts .post-item .readmore {
  display: flex;
  align-items: center;
  font-weight: 600;
  line-height: 1;
  transition: 0.3s;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.recent-posts .post-item .readmore i {
  line-height: 0;
  margin-left: 6px;
  font-size: 16px;
}

.recent-posts .post-item:hover .post-title,
.recent-posts .post-item:hover .readmore {
  color: var(--accent-color);
}

.recent-posts .post-item:hover .post-img img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item {
  background: color-mix(in srgb, var(--default-color), transparent 96%);
  padding: 30px;
}

.contact .info-item i {
  font-size: 38px;
  line-height: 0;
  color: var(--accent-color);
}

.contact .info-item h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 20px 0 10px 0;
}

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

.contact .php-email-form {
  background: color-mix(in srgb, var(--default-color), transparent 96%);
  padding: 30px;
  height: 100%;
}

.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: color-mix(in srgb, var(--background-color), transparent 50%);
  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] {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 4px;
}

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

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.portfolio-details .portfolio-info {
  background-color: var(--surface-color);
  padding: 30px;
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

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

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .service-box {
  background-color: var(--surface-color);
  padding: 20px;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
}

.service-details .service-box+.service-box {
  margin-top: 30px;
}

.service-details .service-box h4 {
  font-size: 20px;
  font-weight: 700;
  border-bottom: 2px solid color-mix(in srgb, var(--default-color), transparent 92%);
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.service-details .services-list {
  background-color: var(--surface-color);
}

.service-details .services-list a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  display: flex;
  align-items: center;
  padding: 12px 15px;
  margin-top: 15px;
  transition: 0.3s;
}

.service-details .services-list a:first-child {
  margin-top: 0;
}

.service-details .services-list a i {
  font-size: 16px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .services-list a.active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.service-details .services-list a.active i {
  color: var(--contrast-color);
}

.service-details .services-list a:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: var(--accent-color);
}

.service-details .download-catalog a {
  color: var(--default-color);
  display: flex;
  align-items: center;
  padding: 10px 0;
  transition: 0.3s;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .download-catalog a:first-child {
  border-top: 0;
  padding-top: 0;
}

.service-details .download-catalog a:last-child {
  padding-bottom: 0;
}

.service-details .download-catalog a i {
  font-size: 24px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .download-catalog a:hover {
  color: var(--accent-color);
}

.service-details .help-box {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  margin-top: 30px;
  padding: 30px 15px;
}

.service-details .help-box .help-icon {
  font-size: 48px;
}

.service-details .help-box h4,
.service-details .help-box a {
  color: var(--contrast-color);
}

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

.service-details h3 {
  font-size: 26px;
  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);
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}

/*--------------------------------------------------------------
# Blog Posts Section
--------------------------------------------------------------*/
.blog-posts article {
  background-color: var(--surface-color);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 30px;
  height: 100%;
}

.blog-posts .post-img {
  max-height: 440px;
  margin: -30px -30px 0 -30px;
  overflow: hidden;
}

.blog-posts .title {
  font-size: 24px;
  font-weight: 700;
  padding: 0;
  margin: 30px 0;
}

.blog-posts .title a {
  color: var(--heading-color);
  transition: 0.3s;
}

.blog-posts .title a:hover {
  color: var(--accent-color);
}

.blog-posts .meta-top {
  margin-top: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-posts .meta-top ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.blog-posts .meta-top ul li+li {
  padding-left: 20px;
}

.blog-posts .meta-top i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.blog-posts .meta-top a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.blog-posts .content {
  margin-top: 20px;
}

.blog-posts .content .read-more {
  text-align: right;
}

.blog-posts .content .read-more a {
  background: var(--accent-color);
  color: var(--contrast-color);
  display: inline-block;
  padding: 8px 30px;
  transition: 0.3s;
  font-size: 14px;
  border-radius: 4px;
}

.blog-posts .content .read-more a:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Blog Pagination Section
--------------------------------------------------------------*/
.blog-pagination {
  padding-top: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-pagination ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.blog-pagination li {
  margin: 0 5px;
  transition: 0.3s;
}

.blog-pagination li a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 7px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-pagination li a.active,
.blog-pagination li a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.blog-pagination li a.active a,
.blog-pagination li a:hover a {
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Blog Details Section
--------------------------------------------------------------*/
.blog-details {
  padding-bottom: 30px;
}

.blog-details .article {
  background-color: var(--surface-color);
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog-details .post-img {
  margin: -30px -30px 20px -30px;
  overflow: hidden;
}

.blog-details .title {
  color: var(--heading-color);
  font-size: 28px;
  font-weight: 700;
  padding: 0;
  margin: 30px 0;
}

.blog-details .content {
  margin-top: 20px;
}

.blog-details .content h3 {
  font-size: 22px;
  margin-top: 30px;
  font-weight: bold;
}

.blog-details .content blockquote {
  overflow: hidden;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 60px;
  position: relative;
  text-align: center;
  margin: 20px 0;
}

.blog-details .content blockquote p {
  color: var(--default-color);
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
}

.blog-details .content blockquote:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: var(--accent-color);
  margin-top: 20px;
  margin-bottom: 20px;
}

.blog-details .meta-top {
  margin-top: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-details .meta-top ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.blog-details .meta-top ul li+li {
  padding-left: 20px;
}

.blog-details .meta-top i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-details .meta-top a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.blog-details .meta-bottom {
  padding-top: 10px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.blog-details .meta-bottom i {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  display: inline;
}

.blog-details .meta-bottom a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  transition: 0.3s;
}

.blog-details .meta-bottom a:hover {
  color: var(--accent-color);
}

.blog-details .meta-bottom .cats {
  list-style: none;
  display: inline;
  padding: 0 20px 0 0;
  font-size: 14px;
}

.blog-details .meta-bottom .cats li {
  display: inline-block;
}

.blog-details .meta-bottom .tags {
  list-style: none;
  display: inline;
  padding: 0;
  font-size: 14px;
}

.blog-details .meta-bottom .tags li {
  display: inline-block;
}

.blog-details .meta-bottom .tags li+li::before {
  padding-right: 6px;
  color: var(--default-color);
  content: ",";
}

.blog-details .meta-bottom .share {
  font-size: 16px;
}

.blog-details .meta-bottom .share i {
  padding-left: 5px;
}

/*--------------------------------------------------------------
# Blog Author Section
--------------------------------------------------------------*/
.blog-author {
  padding: 10px 0 40px 0;
}

.blog-author .author-container {
  background-color: var(--surface-color);
  padding: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog-author img {
  max-width: 120px;
  margin-right: 20px;
}

.blog-author h4 {
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 0px;
  padding: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.blog-author .social-links {
  margin: 0 10px 10px 0;
}

.blog-author .social-links a {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  margin-right: 5px;
}

.blog-author p {
  font-style: italic;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Blog Comments Section
--------------------------------------------------------------*/
.blog-comments {
  padding: 10px 0;
}

.blog-comments .comments-count {
  font-weight: bold;
}

.blog-comments .comment {
  margin-top: 30px;
  position: relative;
}

.blog-comments .comment .comment-img {
  margin-right: 14px;
}

.blog-comments .comment .comment-img img {
  width: 60px;
}

.blog-comments .comment h5 {
  font-size: 16px;
  margin-bottom: 2px;
}

.blog-comments .comment h5 a {
  font-weight: bold;
  color: var(--default-color);
  transition: 0.3s;
}

.blog-comments .comment h5 a:hover {
  color: var(--accent-color);
}

.blog-comments .comment h5 .reply {
  padding-left: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.blog-comments .comment h5 .reply i {
  font-size: 20px;
}

.blog-comments .comment time {
  display: block;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 5px;
}

.blog-comments .comment.comment-reply {
  padding-left: 40px;
}

/*--------------------------------------------------------------
# Comment Form Section
--------------------------------------------------------------*/
.comment-form {
  padding-top: 10px;
}

.comment-form form {
  background-color: var(--surface-color);
  margin-top: 30px;
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.comment-form form h4 {
  font-weight: bold;
  font-size: 22px;
}

.comment-form form p {
  font-size: 14px;
}

.comment-form form input {
  background-color: var(--surface-color);
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  font-size: 14px;
  border-radius: 4px;
  padding: 10px 10px;
}

.comment-form form input:focus {
  color: var(--default-color);
  background-color: var(--surface-color);
  box-shadow: none;
  border-color: var(--accent-color);
}

.comment-form form input::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.comment-form form textarea {
  background-color: var(--surface-color);
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
  height: 120px;
}

.comment-form form textarea:focus {
  color: var(--default-color);
  box-shadow: none;
  border-color: var(--accent-color);
  background-color: var(--surface-color);
}

.comment-form form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.comment-form form .form-group {
  margin-bottom: 25px;
}

.comment-form form .btn-primary {
  border-radius: 4px;
  padding: 10px 20px;
  border: 0;
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.comment-form form .btn-primary:hover {
  color: var(--contrast-color);
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widgets-container {
  background-color: var(--surface-color);
  padding: 30px;
  margin: 60px 0 30px 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.widget-title {
  color: var(--heading-color);
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  margin: 0 0 20px 0;
}

.widget-item {
  margin-bottom: 40px;
}

.widget-item:last-child {
  margin-bottom: 0;
}

.search-widget form {
  background: var(--background-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  padding: 3px 10px;
  position: relative;
  transition: 0.3s;
}

.search-widget form input[type=text] {
  border: 0;
  padding: 4px;
  border-radius: 4px;
  width: calc(100% - 40px);
  background-color: var(--background-color);
  color: var(--default-color);
}

.search-widget form input[type=text]:focus {
  outline: none;
}

.search-widget form button {
  background: var(--accent-color);
  color: var(--contrast-color);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  font-size: 16px;
  padding: 0 15px;
  margin: -1px;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  line-height: 0;
}

.search-widget form button i {
  line-height: 0;
}

.search-widget form button:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.search-widget form:is(:focus-within) {
  border-color: var(--accent-color);
}

.categories-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.categories-widget ul li {
  padding-bottom: 10px;
}

.categories-widget ul li:last-child {
  padding-bottom: 0;
}

.categories-widget ul a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.categories-widget ul a:hover {
  color: var(--accent-color);
}

.categories-widget ul a span {
  padding-left: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 14px;
}

.recent-posts-widget .post-item {
  display: flex;
  margin-bottom: 15px;
}

.recent-posts-widget .post-item:last-child {
  margin-bottom: 0;
}

.recent-posts-widget .post-item img {
  width: 80px;
  margin-right: 15px;
}

.recent-posts-widget .post-item h4 {
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 5px;
}

.recent-posts-widget .post-item h4 a {
  color: var(--default-color);
  transition: 0.3s;
}

.recent-posts-widget .post-item h4 a:hover {
  color: var(--accent-color);
}

.recent-posts-widget .post-item time {
  display: block;
  font-style: italic;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.tags-widget {
  margin-bottom: -10px;
}

.tags-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tags-widget ul li {
  display: inline-block;
}

.tags-widget ul a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
  padding: 6px 14px;
  margin: 0 6px 8px 0;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 60%);
  display: inline-block;
  transition: 0.3s;
}

.tags-widget ul a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 1px solid var(--accent-color);
}

.tags-widget ul a span {
  padding-left: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  font-size: 14px;
}







/* ================= DURBAN CUSTOM POLISH ================= */
:root {
  --durban-navy: #061f52;
  --durban-blue: #0b84e5;
  --durban-deep-blue: #022b73;
  --durban-gold: #f4b000;
  --durban-green: #19a64a;
  --durban-red: #e72727;
  --durban-soft: #eef6ff;
  --durban-card-shadow: 0 18px 50px rgba(6, 31, 82, 0.12);

  --heading-color: var(--durban-navy);
  --accent-color: var(--durban-blue);
  --nav-hover-color: var(--durban-blue);
}

body.dark-mode {
  --background-color: #071426;
  --default-color: #dbe8ff;
  --heading-color: #ffffff;
  --surface-color: #0c1f3b;
  --contrast-color: #ffffff;
  --nav-color: #ffffff;
  --nav-dropdown-background-color: #0c1f3b;
  --nav-dropdown-color: #dbe8ff;
  background: #071426;
}

body.dark-mode .index-page .header,
body.dark-mode .header,
body.dark-mode.index-page.scrolled .header {
  background: rgba(7, 20, 38, 0.95);
}

body.dark-mode .about .content,
body.dark-mode .stats .stats-item,
body.dark-mode .features .feature-box,
body.dark-mode .service-item,
body.dark-mode .post-item,
body.dark-mode .testimonial-item,
body.dark-mode .contact .info-item,
body.dark-mode .contact .php-email-form,
body.dark-mode .durban-map-card,
body.dark-mode .assistant-panel {
  background: #0c1f3b !important;
  color: #dbe8ff;
  border-color: rgba(255,255,255,0.08);
}

.header .logo img {
  max-height: 70px;
}

.header .logo h1 {
  color: var(--durban-navy);
}

body.dark-mode .header .logo h1 {
  color: #ffffff;
}

.theme-toggle-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(11, 132, 229, 0.25);
  background: #ffffff;
  color: var(--durban-navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 18px;
  box-shadow: 0 8px 24px rgba(6, 31, 82, 0.12);
  transition: 0.3s ease;
}

.theme-toggle-btn:hover {
  transform: translateY(-2px) rotate(8deg);
  background: var(--durban-navy);
  color: #ffffff;
}

body.dark-mode .theme-toggle-btn {
  background: #112b52;
  color: var(--durban-gold);
  border-color: rgba(244, 176, 0, 0.3);
}

.btn-getstarted,
.btn-get-started,
.contact .php-email-form button[type=submit] {
  background: linear-gradient(135deg, var(--durban-blue), var(--durban-deep-blue)) !important;
  border-radius: 999px !important;
  box-shadow: 0 12px 30px rgba(11, 132, 229, 0.25) !important;
}

.btn-getstarted:hover,
.btn-get-started:hover,
.contact .php-email-form button[type=submit]:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, var(--durban-gold), #ff8f00) !important;
}

.hero {
  background:
    radial-gradient(circle at 88% 15%, rgba(244,176,0,.18), transparent 28%),
    radial-gradient(circle at 12% 75%, rgba(25,166,74,.12), transparent 30%),
    linear-gradient(135deg, rgba(238,246,255,.95), rgba(255,255,255,.95));
}

body.dark-mode .hero {
  background:
    radial-gradient(circle at 88% 15%, rgba(244,176,0,.16), transparent 28%),
    radial-gradient(circle at 12% 75%, rgba(11,132,229,.16), transparent 35%),
    linear-gradient(135deg, #071426, #09244a);
}

.durban-badge {
  width: fit-content;
  background: rgba(244, 176, 0, 0.14);
  color: var(--durban-navy);
  border: 1px solid rgba(244, 176, 0, 0.35);
  padding: 9px 16px;
  border-radius: 999px;
  font-weight: 700;
  margin-bottom: 18px;
}

body.dark-mode .durban-badge { color: #fff; }

.service-item,
.values .card,
.stats .stats-item,
.features .feature-box,
.post-item,
.contact .info-item,
.contact .php-email-form {
  border-radius: 20px !important;
  box-shadow: var(--durban-card-shadow) !important;
  transition: transform .35s ease, box-shadow .35s ease;
}

.service-item:hover,
.values .card:hover,
.stats .stats-item:hover,
.features .feature-box:hover,
.post-item:hover,
.durban-info-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 65px rgba(6, 31, 82, 0.18) !important;
}

.durban-map-card {
  background: #fff;
  border-radius: 24px;
  padding: 18px;
  box-shadow: var(--durban-card-shadow);
  overflow: hidden;
}

.durban-map-card iframe {
  width: 100%;
  height: 390px;
  border: 0;
  border-radius: 18px;
}

.map-title {
  display: flex;
  gap: 15px;
  align-items: center;
  margin-bottom: 15px;
}

.map-title i {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--durban-blue), var(--durban-deep-blue));
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.map-title h3 { margin: 0; font-weight: 800; }
.map-title p { margin: 3px 0 0; }

.contact-whatsapp-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  font-weight: 700;
  color: #19a64a;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 82px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  z-index: 9998;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 14px 34px rgba(37, 211, 102, .35);
  animation: durbanPulse 1.8s infinite;
}

.whatsapp-float:hover { color: #fff; transform: scale(1.08); }

.durban-ad-banner,
.durban-ad-footer,
.durban-cookie-banner,
.durban-ad-sidebar,
.durban-ad-popup {
  position: fixed;
  z-index: 999;
  background: #ffffff;
  border: 1px solid rgba(11,132,229,.14);
  box-shadow: 0 18px 46px rgba(6,31,82,.18);
}

.durban-ad-banner {
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  width: min(760px, calc(100% - 32px));
  border-radius: 18px;
  padding: 15px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.durban-ad-banner strong,
.durban-ad-footer strong,
.durban-ad-popup strong {
  display: block;
  color: var(--durban-navy);
  font-weight: 900;
}

.durban-ad-banner span,
.durban-ad-footer span,
.durban-ad-popup p {
  color: #53657d;
  margin: 0;
}

.durban-ad-banner a,
.durban-ad-footer a,
.durban-ad-popup a,
.durban-cookie-banner button[data-cookie-choice="accepted"] {
  color: var(--durban-navy);
  background: var(--durban-gold);
  border: 0;
  border-radius: 999px;
  padding: 9px 16px;
  font-weight: 900;
  white-space: nowrap;
}

.durban-ad-popup {
  right: 22px;
  bottom: 96px;
  width: min(360px, calc(100% - 32px));
  border-radius: 20px;
  padding: 22px;
}

.durban-ad-sidebar {
  right: 22px;
  top: 44%;
  width: min(300px, calc(100% - 32px));
  padding: 18px;
  border-radius: 18px;
  transform: translateY(-50%);
}

.durban-ad-sidebar strong {
  display: block;
  color: var(--durban-navy);
  font-weight: 900;
  margin-bottom: 6px;
}

.durban-ad-sidebar p {
  margin: 0 0 12px;
  color: #53657d;
  line-height: 1.55;
}

.durban-ad-sidebar a {
  display: inline-flex;
  color: var(--durban-navy);
  background: var(--durban-gold);
  border-radius: 12px;
  padding: 9px 13px;
  font-weight: 900;
}

.ad-popup-close {
  position: absolute;
  top: 10px;
  right: 12px;
  border: 0;
  background: transparent;
  color: #5d6b82;
  font-size: 24px;
  line-height: 1;
}

.durban-ad-footer {
  left: 18px;
  bottom: 18px;
  max-width: 420px;
  border-radius: 18px;
  padding: 14px;
  display: grid;
  gap: 10px;
}

.durban-cookie-banner {
  left: 18px;
  right: 18px;
  bottom: 18px;
  max-width: 980px;
  margin: 0 auto;
  border-radius: 18px;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.durban-cookie-banner p {
  margin: 0;
  color: #53657d;
}

.durban-cookie-banner div {
  display: flex;
  gap: 10px;
}

.durban-cookie-banner button {
  border: 1px solid rgba(11,132,229,.18);
  background: #ffffff;
  color: var(--durban-navy);
  border-radius: 999px;
  padding: 9px 16px;
  font-weight: 900;
}

body.dark-mode .durban-ad-banner,
body.dark-mode .durban-ad-footer,
body.dark-mode .durban-cookie-banner,
body.dark-mode .durban-ad-sidebar,
body.dark-mode .durban-ad-popup {
  background: #0c1f3b;
  border-color: rgba(255,255,255,.08);
}

body.dark-mode .durban-ad-banner strong,
body.dark-mode .durban-ad-footer strong,
body.dark-mode .durban-ad-sidebar strong,
body.dark-mode .durban-ad-popup strong {
  color: #ffffff;
}

body.dark-mode .durban-ad-banner span,
body.dark-mode .durban-ad-footer span,
body.dark-mode .durban-ad-sidebar p,
body.dark-mode .durban-ad-popup p,
body.dark-mode .durban-cookie-banner p {
  color: rgba(255,255,255,.74);
}

@keyframes durbanPulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, .45); }
  70% { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.durban-assistant {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 9998;
  font-family: var(--default-font);
}

.assistant-toggle {
  border: 0;
  border-radius: 999px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: #fff;
  background: linear-gradient(135deg, var(--durban-navy), var(--durban-blue));
  box-shadow: 0 14px 35px rgba(6, 31, 82, .28);
  font-weight: 800;
}

.assistant-toggle i { color: var(--durban-gold); font-size: 20px; }

.assistant-panel {
  display: none;
  width: 360px;
  max-width: calc(100vw - 28px);
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(6, 31, 82, .28);
  border: 1px solid rgba(11, 132, 229, .12);
}

.durban-assistant.open .assistant-panel { display: block; animation: assistantUp .28s ease; }
.durban-assistant.open .assistant-toggle { display: none; }

@keyframes assistantUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }

.assistant-header {
  padding: 16px;
  color: #fff;
  background: linear-gradient(135deg, var(--durban-navy), var(--durban-blue));
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.assistant-header small { display:block; opacity:.85; font-size: 12px; margin-top: 3px; }
.assistant-header button { border:0; background:rgba(255,255,255,.16); color:#fff; border-radius:50%; width:32px; height:32px; }

.assistant-messages {
  height: 275px;
  overflow-y: auto;
  padding: 16px;
  background: linear-gradient(180deg, #f6fbff, #ffffff);
}

body.dark-mode .assistant-messages { background: #071426; }

.assistant-message {
  max-width: 86%;
  padding: 10px 12px;
  margin-bottom: 10px;
  border-radius: 14px;
  font-size: 14px;
  line-height: 1.45;
}

.assistant-message.bot { background: #eef6ff; color: #123; border-bottom-left-radius: 4px; }
.assistant-message.user { background: var(--durban-blue); color: #fff; margin-left:auto; border-bottom-right-radius: 4px; }
body.dark-mode .assistant-message.bot { background: #112b52; color:#dbe8ff; }

.assistant-answer-title {
  display: block;
  color: var(--durban-navy);
  font-weight: 900;
  margin-bottom: 8px;
}

.assistant-answer-list {
  display: grid;
  gap: 7px;
  margin: 0;
  padding-left: 18px;
}

.assistant-answer-list li {
  line-height: 1.45;
}

.assistant-answer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.assistant-answer-actions a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 10px;
  border-radius: 10px;
  color: var(--durban-navy);
  background: var(--durban-gold);
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
}

.assistant-answer-actions a:nth-child(even) {
  color: #ffffff;
  background: var(--durban-blue);
}

body.dark-mode .assistant-answer-title {
  color: #ffffff;
}

body.dark-mode .assistant-answer-actions a {
  color: var(--durban-navy);
}

body.dark-mode .assistant-answer-actions a:nth-child(even) {
  color: #ffffff;
}

.assistant-typing {
  display: inline-flex;
  gap: 4px;
  align-items: center;
}
.assistant-typing span {
  width: 6px; height: 6px; border-radius: 50%; background: var(--durban-blue); animation: typingBlink 1s infinite ease-in-out;
}
.assistant-typing span:nth-child(2){ animation-delay:.15s; }
.assistant-typing span:nth-child(3){ animation-delay:.3s; }
@keyframes typingBlink { 0%,80%,100%{ opacity:.25; transform:translateY(0);} 40%{opacity:1; transform:translateY(-3px);} }

.assistant-suggestions {
  padding: 10px 12px 0;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.assistant-suggestions button {
  border: 1px solid rgba(11,132,229,.2);
  background: rgba(11,132,229,.08);
  color: var(--durban-navy);
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 12px;
  font-weight: 700;
}

body.dark-mode .assistant-suggestions button { color:#fff; background:#112b52; }

.assistant-input {
  padding: 12px;
  display: flex;
  gap: 8px;
}
.assistant-input input {
  flex: 1;
  border: 1px solid rgba(6,31,82,.14);
  border-radius: 999px;
  padding: 10px 14px;
  outline: none;
}
.assistant-input button {
  border: 0;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  color: #fff;
  background: var(--durban-blue);
}

@media (max-width: 1199px) {
  .theme-toggle-btn { order: 2; margin-left: 0; margin-right: 12px; width: 38px; height: 38px; }
  .header .btn-getstarted { display: none; }
}

@media (max-width: 576px) {
  .whatsapp-float { right: 14px; bottom: 76px; width: 50px; height: 50px; font-size: 24px; }
  .durban-assistant { left: 12px; bottom: 12px; }
  .assistant-toggle span { display: none; }
  .assistant-toggle { width: 52px; height: 52px; padding: 0; justify-content: center; border-radius: 50%; }
  .assistant-panel { width: calc(100vw - 24px); }
  .assistant-messages { height: 245px; }
  .durban-map-card iframe { height: 300px; }
}


.header {
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    background: rgba(255,255,255,.85);
}

body.dark-mode .header {
    background: rgba(7,20,38,.85);
}



/* ================= DARK MODE FIXES FOR DURBAN SECTIONS ================= */

body.dark-mode .section,
body.dark-mode section {
  background-color: #071426 !important;
  color: #dbe8ff !important;
}

body.dark-mode .light-background {
  background-color: #081a31 !important;
}

body.dark-mode .section-title p,
body.dark-mode .section-title h1,
body.dark-mode .section-title h2,
body.dark-mode .section-title h3 {
  color: #ffffff !important;
}

body.dark-mode .section-title h2 {
  background: rgba(11, 132, 229, 0.16) !important;
  color: #4fb3ff !important;
}
/* ================= PREMIUM INDUSTRIES CAROUSEL ================= */
.durban-industries-carousel-section {
  background:
    radial-gradient(circle at 90% 15%, rgba(244,176,0,.10), transparent 25%),
    linear-gradient(180deg, #f8fbff, #ffffff);
  overflow: hidden;
}

.industries-premium-swiper {
  padding: 18px 0 56px;
}

.industries-premium-swiper .swiper-slide {
  height: auto;
  transition: .45s ease;
}

.industries-premium-swiper .swiper-slide:not(.swiper-slide-active) {
  opacity: .65;
  transform: scale(.94);
}

.industries-premium-swiper .swiper-slide-active {
  opacity: 1;
  transform: scale(1);
}

.premium-industry-card {
  min-height: 300px;
  height: 100%;
  background: #ffffff;
  border-radius: 24px;
  padding: 32px 26px;
  border: 1px solid rgba(11,132,229,.10);
  box-shadow: 0 18px 50px rgba(6,31,82,.08);
  position: relative;
  overflow: hidden;
  transition: .35s ease;
}

.premium-industry-card::before {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 185px;
  height: 185px;
  border-radius: 50%;
  background: rgba(11,132,229,.08);
  transition: .35s ease;
}

.premium-industry-card:hover::before,
.industries-premium-swiper .swiper-slide-active .premium-industry-card::before {
  transform: scale(1.35);
  background: rgba(244,176,0,.14);
}

.premium-industry-card i {
  width: 68px;
  height: 68px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--durban-blue), var(--durban-deep-blue));
  color: var(--durban-gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin-bottom: 22px;
  position: relative;
  z-index: 2;
}

.premium-industry-card h3 {
  font-size: 22px;
  line-height: 1.25;
  font-weight: 900;
  color: var(--durban-navy);
  margin-bottom: 14px;
  position: relative;
  z-index: 2;
}

.premium-industry-card p {
  color: #64748b;
  line-height: 1.7;
  margin: 0;
  position: relative;
  z-index: 2;
}

.premium-industry-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 80px rgba(6,31,82,.16);
}

.industries-premium-swiper .swiper-pagination {
  position: relative;
  margin-top: 32px;
}

.industries-premium-swiper .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  opacity: 1;
  background: rgba(11,132,229,.22);
}

.industries-premium-swiper .swiper-pagination-bullet-active {
  width: 34px;
  border-radius: 999px;
  background: var(--durban-blue);
}

body.dark-mode .durban-industries-carousel-section {
  background: linear-gradient(180deg, #071426, #081a31) !important;
}

body.dark-mode .premium-industry-card {
  background: #0c1f3b;
  border-color: rgba(255,255,255,.08);
}

body.dark-mode .premium-industry-card h3 {
  color: #ffffff;
}

body.dark-mode .premium-industry-card p {
  color: #cfe1ff;
}

@media (max-width: 576px) {
  .industries-premium-swiper .swiper-slide:not(.swiper-slide-active) {
    opacity: 1;
    transform: scale(.96);
  }

  .premium-industry-card {
    min-height: 285px;
    padding: 28px;
    border-radius: 22px;
  }

  .premium-industry-card h3 {
    font-size: 21px;
  }

  .premium-industry-card p {
    font-size: 14.5px;
  }
}

/* Clients */
body.dark-mode #clients,
body.dark-mode .clients {
  background: #081a31 !important;
}

body.dark-mode #clients .section-title p,
body.dark-mode #clients h2,
body.dark-mode #clients p {
  color: #ffffff !important;
}

body.dark-mode .clients .swiper-slide {
  background: #ffffff !important;
  border-radius: 14px;
  padding: 18px;
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
}

body.dark-mode .clients .swiper-slide img {
  opacity: 1 !important;
  filter: none !important;
  max-height: 55px;
  object-fit: contain;
}

/* Updates / Blog */
body.dark-mode #recent-posts,
body.dark-mode .recent-posts {
  background: #071426 !important;
}

body.dark-mode .recent-posts .post-item {
  background: #0c1f3b !important;
  color: #dbe8ff !important;
}

body.dark-mode .recent-posts .post-title,
body.dark-mode .recent-posts h3 {
  color: #ffffff !important;
}

body.dark-mode .recent-posts .meta span,
body.dark-mode .recent-posts .readmore {
  color: #cfe1ff !important;
}

body.dark-mode .swiper-slide{
    transition:all .3s ease;
}

body.dark-mode .swiper-slide:hover{
    transform:translateY(-5px);
}

body.dark-mode .clients .swiper-slide{
    box-shadow:0 8px 25px rgba(0,0,0,.35);
}



/* ================= DURBAN FONT UPDATE ================= */
:root {
  --default-font: "Inter", system-ui, sans-serif;
  --heading-font: "Poppins", sans-serif;
  --nav-font: "Inter", sans-serif;
}

body {
  font-family: var(--default-font);
  letter-spacing: -0.01em;
}

h1, h2, h3, h4, h5, h6,
.navmenu a,
.btn-getstarted,
.btn-get-started {
  font-family: var(--heading-font);
}



/* ================= ABOUT + SERVICES POLISH ================= */
.durban-mini-stat {
  background: #ffffff;
  border: 1px solid rgba(11,132,229,.12);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 10px 28px rgba(6,31,82,.08);
}

.durban-mini-stat strong {
  display: block;
  color: var(--durban-navy);
  font-size: 20px;
  font-family: var(--heading-font);
}

.durban-mini-stat span {
  color: #64748b;
  font-size: 13px;
  font-weight: 700;
}

.durban-about-image {
  position: relative;
  padding: 18px;
}

.durban-about-image img {
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(6,31,82,.16);
}

.durban-about-badge {
  position: absolute;
  left: 35px;
  bottom: 35px;
  background: rgba(255,255,255,.94);
  border-radius: 999px;
  padding: 12px 18px;
  box-shadow: 0 14px 35px rgba(6,31,82,.16);
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: 800;
  color: var(--durban-navy);
}

.durban-about-badge i {
  color: var(--durban-green);
  font-size: 20px;
}

.services .service-item {
  text-align: left;
  padding: 38px 30px;
  overflow: hidden;
}

.services .service-item::before {
  content: "";
  position: absolute;
  width: 110px;
  height: 110px;
  right: -35px;
  top: -35px;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  transition: .4s ease;
}

.services .service-item:hover::before {
  width: 180px;
  height: 180px;
}

.services .service-item .icon {
  width: 68px;
  height: 68px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.services .service-item h3 {
  font-size: 21px;
  line-height: 1.25;
  margin-bottom: 14px;
}

.services .service-item p {
  line-height: 1.7;
}

body.dark-mode .durban-mini-stat,
body.dark-mode .durban-about-badge {
  background: #0c1f3b;
  border-color: rgba(255,255,255,.08);
}

body.dark-mode .durban-mini-stat strong,
body.dark-mode .durban-about-badge {
  color: #ffffff;
}

body.dark-mode .durban-mini-stat span {
  color: #b8c8e6;
}

@media(max-width: 768px) {
  .durban-about-badge {
    position: static;
    margin-top: 14px;
    border-radius: 18px;
  }

  .services .service-item {
    padding: 30px 24px;
  }
}


/* ================= INDUSTRIES POLISH ================= */
#industries .feature-box {
  border-radius: 22px;
  background: #ffffff;
  padding: 28px 22px;
  height: 100%;
  box-shadow: 0 16px 42px rgba(6,31,82,.08);
  border: 1px solid rgba(11,132,229,.10);
}

#industries .feature-box i {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--durban-blue), var(--durban-deep-blue));
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

#industries .feature-box h3 {
  line-height: 1.35;
}

body.dark-mode #industries .feature-box {
  background: #0c1f3b !important;
}



/* ================= COMPLIANCE POLISH ================= */
.compliance-intro {
  background: linear-gradient(135deg, var(--durban-navy), var(--durban-deep-blue));
  color: #ffffff;
  border-radius: 28px;
  padding: 42px;
  box-shadow: 0 22px 60px rgba(6,31,82,.18);
}

.compliance-intro h3 {
  color: #ffffff;
  font-size: 32px;
  line-height: 1.2;
}

.compliance-intro p {
  color: rgba(255,255,255,.82);
  line-height: 1.8;
}

.compliance-intro .btn-read-more {
  color: #ffffff;
  background: var(--durban-gold);
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 800;
}

.compliance-card {
  height: 100%;
  background: #ffffff;
  border-radius: 20px;
  padding: 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 16px 42px rgba(6,31,82,.08);
  border: 1px solid rgba(11,132,229,.10);
  transition: .3s ease;
}

.compliance-card:hover {
  transform: translateY(-6px);
}

.compliance-card i {
  min-width: 48px;
  height: 48px;
  border-radius: 15px;
  background: rgba(11,132,229,.10);
  color: var(--durban-blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.compliance-card span {
  font-weight: 800;
  color: var(--durban-navy);
}

body.dark-mode .compliance-card {
  background: #0c1f3b !important;
  border-color: rgba(255,255,255,.08);
}

body.dark-mode .compliance-card span {
  color: #ffffff;
}

/* ================= COMPANY PROFILES ================= */
.durban-profiles-section {
  position: relative;
}

.durban-profile-card {
  height: 100%;
  display: flex;
  gap: 22px;
  padding: 34px;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid rgba(11,132,229,.10);
  box-shadow: 0 18px 46px rgba(6,31,82,.09);
  transition: .3s ease;
}

.durban-profile-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 62px rgba(6,31,82,.14);
}

.durban-profile-card .profile-icon {
  min-width: 64px;
  height: 64px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--durban-blue), var(--durban-deep-blue));
  color: var(--durban-gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
}

.durban-profile-card span {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--durban-blue);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.durban-profile-card h3 {
  margin-bottom: 12px;
  color: var(--durban-navy);
  font-size: 24px;
  font-weight: 900;
}

.durban-profile-card p {
  margin-bottom: 20px;
  color: #5d6b82;
  line-height: 1.75;
}

.durban-profile-card a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #ffffff;
  background: var(--durban-navy);
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 900;
}

.durban-profile-card a:hover {
  color: var(--durban-navy);
  background: var(--durban-gold);
}

body.dark-mode .durban-profile-card {
  background: #0c1f3b;
  border-color: rgba(255,255,255,.08);
}

body.dark-mode .durban-profile-card h3 {
  color: #ffffff;
}

body.dark-mode .durban-profile-card p {
  color: rgba(255,255,255,.74);
}

@media(max-width:768px) {
  .compliance-intro {
    padding: 30px;
  }

  .compliance-intro h3 {
    font-size: 25px;
  }

  .durban-profile-card {
    flex-direction: column;
    padding: 28px;
  }
}

@media(max-width:768px) {
  .durban-ad-banner,
  .durban-cookie-banner {
    display: grid;
    bottom: 12px;
  }

  .durban-ad-popup {
    right: 12px;
    bottom: 82px;
  }

  .durban-ad-sidebar {
    right: 12px;
    left: 12px;
    top: auto;
    bottom: 92px;
    width: auto;
    transform: none;
  }

  .durban-ad-footer {
    left: 12px;
    right: 12px;
    max-width: none;
  }
}


/* ================= CONTACT POLISH ================= */
.contact .info-item {
  height: 100%;
  border-radius: 22px !important;
  background: #ffffff !important;
  border: 1px solid rgba(11,132,229,.10);
}

.contact .info-item i {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--durban-blue), var(--durban-deep-blue));
  color: #ffffff !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.durban-request-form {
  border-radius: 24px;
  background: #ffffff !important;
  box-shadow: 0 18px 50px rgba(6,31,82,.10);
  border: 1px solid rgba(11,132,229,.10);
}

.durban-request-form input,
.durban-request-form textarea,
.durban-request-form select {
  border-radius: 14px !important;
  padding: 14px 16px !important;
  border: 1px solid rgba(6,31,82,.14) !important;
  background: #f8fbff !important;
}

.durban-request-form input:focus,
.durban-request-form textarea:focus,
.durban-request-form select:focus {
  background: #ffffff !important;
  border-color: var(--durban-blue) !important;
}

body.dark-mode .contact .info-item,
body.dark-mode .durban-request-form {
  background: #0c1f3b !important;
  border-color: rgba(255,255,255,.08);
}

body.dark-mode .durban-request-form input,
body.dark-mode .durban-request-form textarea,
body.dark-mode .durban-request-form select {
  background: #071426 !important;
  color: #ffffff !important;
  border-color: rgba(255,255,255,.12) !important;
}

body.dark-mode .durban-request-form input::placeholder,
body.dark-mode .durban-request-form textarea::placeholder {
  color: #9fb4d6 !important;
}



/* ================= FOOTER POLISH ================= */
.footer {
  background:
    radial-gradient(circle at 90% 10%, rgba(244,176,0,.10), transparent 25%),
    linear-gradient(180deg, #ffffff, #eef6ff);
}

.footer .footer-newsletter {
  background: linear-gradient(135deg, var(--durban-navy), var(--durban-deep-blue));
  color: #ffffff;
}

.footer .footer-newsletter h4,
.footer .footer-newsletter p {
  color: #ffffff;
}

.footer .newsletter-form {
  border-radius: 999px !important;
  overflow: hidden;
}

.footer .newsletter-form input[type=email] {
  padding: 12px 18px !important;
}

.footer .newsletter-form input[type=submit] {
  background: var(--durban-gold) !important;
  color: var(--durban-navy) !important;
  font-weight: 800;
}

.footer .sitename {
  color: var(--durban-navy);
  font-weight: 900;
}

.footer h4 {
  color: var(--durban-navy);
  font-weight: 900;
}

body.dark-mode .footer {
  background:
    radial-gradient(circle at 90% 10%, rgba(244,176,0,.10), transparent 25%),
    linear-gradient(180deg, #071426, #081a31);
}

body.dark-mode .footer .sitename,
body.dark-mode .footer h4 {
  color: #ffffff;
}

body.dark-mode .footer .footer-links ul a,
body.dark-mode .footer .footer-contact p,
body.dark-mode .footer p {
  color: #cfe1ff;
}




/* ========== FORCE FIX MOBILE / TABLET MENU ========== */
@media (max-width: 1199px) {
  body.mobile-nav-active {
    overflow: hidden !important;
  }

  body.mobile-nav-active .navmenu {
    position: fixed !important;
    inset: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background: rgba(7, 20, 38, 0.96) !important;
    z-index: 99999 !important;
    padding: 0 !important;
  }

  body.mobile-nav-active .navmenu > ul {
    display: block !important;
    position: fixed !important;
    top: 88px !important;
    left: 18px !important;
    right: 18px !important;
    bottom: 18px !important;
    width: auto !important;
    height: auto !important;
    max-height: calc(100vh - 110px) !important;
    overflow-y: auto !important;
    background: #ffffff !important;
    border-radius: 24px !important;
    padding: 18px 0 !important;
    margin: 0 !important;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.45) !important;
  }

  body.dark-mode.mobile-nav-active .navmenu > ul {
    background: #0c1f3b !important;
  }

  body.mobile-nav-active .navmenu > ul > li {
    display: block !important;
    width: 100% !important;
  }

  body.mobile-nav-active .navmenu a {
    display: flex !important;
    width: 100% !important;
    padding: 15px 26px !important;
    color: #061f52 !important;
    font-size: 18px !important;
    font-weight: 800 !important;
  }

  body.dark-mode.mobile-nav-active .navmenu a {
    color: #ffffff !important;
  }

  body.mobile-nav-active .mobile-nav-toggle {
    position: fixed !important;
    top: 26px !important;
    right: 26px !important;
    color: #ffffff !important;
    z-index: 100000 !important;
    font-size: 36px !important;
  }
}


/* ========== FINAL MOBILE MENU FIX ========== */
@media (max-width: 1199px) {
  body.mobile-nav-active .navmenu > ul {
    height: calc(100vh - 120px) !important;
    min-height: calc(100vh - 120px) !important;
    max-height: calc(100vh - 120px) !important;
    overflow-y: auto !important;
  }

  body.mobile-nav-active .navmenu > ul > li {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  body.mobile-nav-active .navmenu > ul > li > a {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    color: #061f52 !important;
    background: transparent !important;
  }

  body.mobile-nav-active .navmenu > ul > li > a.active {
    background: rgba(11, 132, 229, 0.12) !important;
    color: #0b84e5 !important;
  }

  body.dark-mode.mobile-nav-active .navmenu > ul > li > a {
    color: #ffffff !important;
  }

  body.dark-mode.mobile-nav-active .navmenu > ul > li > a.active {
    background: rgba(11, 132, 229, 0.22) !important;
    color: #4fb3ff !important;
  }
}


/* ================= CLIENTS SECTION FIX ================= */
.clients {
  overflow: hidden;
}

.durban-clients-slider .swiper-slide {
  height: 115px;
  background: #ffffff;
  border-radius: 22px;
  padding: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 40px rgba(6,31,82,.08);
  border: 1px solid rgba(11,132,229,.10);
}

.durban-clients-slider .swiper-slide img {
  max-height: 60px;
  width: auto;
  object-fit: contain;
  opacity: .85;
  filter: grayscale(15%);
}

.durban-clients-slider .swiper-slide:hover img {
  opacity: 1;
  filter: grayscale(0%);
}

body.dark-mode .durban-clients-slider .swiper-slide {
  background: #ffffff !important;
}

@media(max-width: 576px) {
  .durban-clients-slider .swiper-slide {
    height: 95px;
    padding: 16px;
  }

  .durban-clients-slider .swiper-slide img {
    max-height: 48px;
  }
}

/* ================= FINAL UX POLISH ================= */
.header {
  border-bottom: 1px solid rgba(11,132,229,.08);
  backdrop-filter: blur(18px);
}

.index-page .header {
  background: rgba(255,255,255,.82);
}

.index-page.scrolled .header,
.scrolled .header {
  background: rgba(255,255,255,.95);
}

.navmenu a,
.navmenu a:focus {
  border-radius: 999px;
}

.navmenu a:hover,
.navmenu .active,
.navmenu .active:focus {
  background: rgba(11,132,229,.09);
}

.theme-toggle-btn,
.mobile-nav-toggle {
  transition: transform .25s ease, background .25s ease;
}

.theme-toggle-btn:hover,
.mobile-nav-toggle:hover {
  transform: translateY(-2px);
}

.hero-pro-badge {
  box-shadow: 0 12px 32px rgba(11,132,229,.10);
}

.hero-pro-content h1 {
  max-width: 720px;
}

.hero-pro-actions a {
  min-height: 54px;
}

.hero-carousel-card {
  isolation: isolate;
}

.hero-carousel-card::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255,255,255,.36);
  border-radius: 28px;
  pointer-events: none;
  z-index: 5;
}

.section-title {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.section-title h2 {
  border-radius: 999px;
  padding: 8px 16px;
  background: rgba(11,132,229,.08);
}

.premium-service-card,
.durban-news-card,
.durban-profile-card,
.success-card,
.careers-box,
.contact .info-item,
.durban-request-form {
  border-radius: 20px !important;
}

.premium-service-card a,
.durban-news-card a,
.careers-box a,
.btn-read-more,
.about-main-btn,
.about-link-btn {
  min-height: 44px;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(244,176,0,.72);
  outline-offset: 3px;
}

.whatsapp-float,
.assistant-toggle {
  box-shadow: 0 18px 38px rgba(6,31,82,.20);
}

body.dark-mode .index-page .header,
body.dark-mode.index-page .header,
body.dark-mode.index-page.scrolled .header,
body.dark-mode .scrolled .header {
  background: rgba(7,20,38,.92);
  border-bottom-color: rgba(255,255,255,.08);
}

body.dark-mode .navmenu a:hover,
body.dark-mode .navmenu .active,
body.dark-mode .navmenu .active:focus {
  background: rgba(244,176,0,.14);
}

@media (max-width: 1199px) {
  .header .container-xl {
    gap: 10px;
  }

  .theme-toggle-btn {
    order: 2;
  }

  .header .btn-getstarted {
    order: 3;
  }

  .header .navmenu {
    order: 4;
  }
}

@media (max-width: 768px) {
  .durban-hero-pro {
    padding-top: 116px !important;
  }

  .hero-pro-content {
    text-align: left;
  }

  .hero-pro-badge {
    font-size: 12px;
    padding: 8px 12px;
  }

  .hero-pro-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .hero-pro-actions a {
    width: 100%;
  }

  .hero-floating-card {
    max-width: calc(100% - 28px);
  }

  .section-title p {
    font-size: 28px;
    line-height: 1.18;
  }

  .durban-ad-banner,
  .durban-cookie-banner,
  .durban-ad-footer {
    z-index: 998;
  }

  .whatsapp-float {
    bottom: 84px;
  }

  .durban-assistant {
    bottom: 142px;
  }
}

@media (max-width: 480px) {
  .header .logo h1 {
    font-size: 22px;
  }

  .header .logo img {
    max-height: 40px;
  }

  .hero-pro-content h1 {
    font-size: 36px !important;
  }

  .hero-pro-content h1 .typing-holder {
    min-height: 44px;
  }

  .hero-carousel-card::after {
    inset: 10px;
    border-radius: 20px;
  }
}



/* ================= DURBAN CLIENTS ================= */

.premium-client-card{
    background:#ffffff;
    border-radius:24px;
    padding:35px 25px;
    text-align:center;
    height:260px;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    border:1px solid rgba(11,132,229,.08);

    box-shadow:0 18px 45px rgba(6,31,82,.08);

    transition:.4s ease;
}

.premium-client-card:hover{
    transform:translateY(-8px);
    box-shadow:0 25px 65px rgba(6,31,82,.15);
}

.premium-client-card img{
    max-height:65px;
    width:auto;
    object-fit:contain;
    margin-bottom:22px;
}

.premium-client-card h4{
    font-size:18px;
    font-weight:800;
    margin-bottom:8px;
}

.premium-client-card span{
    color:#64748b;
    font-size:14px;
    font-weight:600;
}

.clients .swiper-pagination{
    margin-top:35px;
    position:relative;
}

.clients .swiper-pagination-bullet{
    width:12px;
    height:12px;
}

.clients .swiper-pagination-bullet-active{
    background:var(--durban-blue);
}

body.dark-mode .premium-client-card{
    background:#0c1f3b;
    border-color:rgba(255,255,255,.08);
}

body.dark-mode .premium-client-card h4{
    color:#ffffff;
}

body.dark-mode .premium-client-card span{
    color:#cfe1ff;
}



/* ================= SUCCESS STORIES ================= */
.success-stories {
  background:
    radial-gradient(circle at 12% 20%, rgba(244,176,0,.12), transparent 25%),
    linear-gradient(180deg, #ffffff, #f8fbff);
}

.success-card {
  height: 100%;
  background: #ffffff;
  border-radius: 26px;
  padding: 34px 26px;
  box-shadow: 0 18px 50px rgba(6,31,82,.08);
  border: 1px solid rgba(11,132,229,.10);
  transition: .35s ease;
}

.success-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 70px rgba(6,31,82,.15);
}

.success-card i {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--durban-blue), var(--durban-deep-blue));
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 22px;
}

.success-card h3 {
  font-size: 21px;
  font-weight: 900;
  margin-bottom: 12px;
}

.success-card p {
  color: #64748b;
  line-height: 1.7;
  margin: 0;
}

body.dark-mode .success-stories {
  background: linear-gradient(180deg, #071426, #081a31) !important;
}

body.dark-mode .success-card {
  background: #0c1f3b;
  border-color: rgba(255,255,255,.08);
}

body.dark-mode .success-card p {
  color: #cfe1ff;
}



/* ================= CAREERS SECTION ================= */
.careers-box {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 28px;
  align-items: stretch;
}

.careers-content {
  background: #ffffff;
  border-radius: 30px;
  padding: 42px;
  box-shadow: 0 18px 50px rgba(6,31,82,.08);
  border: 1px solid rgba(11,132,229,.10);
}

.careers-content span {
  display: inline-flex;
  padding: 8px 15px;
  border-radius: 999px;
  background: rgba(11,132,229,.10);
  color: var(--durban-blue);
  font-weight: 900;
  margin-bottom: 18px;
}

.careers-content h3 {
  font-size: 34px;
  font-weight: 900;
}

.careers-content p {
  color: #64748b;
  line-height: 1.8;
}

.careers-list {
  margin-top: 24px;
  display: grid;
  gap: 14px;
}

.careers-list div {
  font-weight: 800;
  color: var(--durban-navy);
}

.careers-list i {
  color: var(--durban-green);
  margin-right: 8px;
}

.careers-status {
  border-radius: 30px;
  padding: 42px;
  color: #ffffff;
  background:
    radial-gradient(circle at 85% 15%, rgba(244,176,0,.20), transparent 28%),
    linear-gradient(135deg, var(--durban-navy), var(--durban-deep-blue));
  box-shadow: 0 24px 70px rgba(6,31,82,.18);
}

.careers-status > i {
  font-size: 48px;
  color: var(--durban-gold);
  margin-bottom: 18px;
}

.careers-status h4 {
  color: #ffffff;
  font-size: 25px;
  font-weight: 900;
}

.careers-status p {
  color: #cfe1ff;
  line-height: 1.7;
}

.careers-status a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  padding: 13px 22px;
  border-radius: 999px;
  color: var(--durban-navy);
  background: var(--durban-gold);
  font-weight: 900;
}

body.dark-mode .careers-content {
  background: #0c1f3b;
  border-color: rgba(255,255,255,.08);
}

body.dark-mode .careers-content p {
  color: #cfe1ff;
}

body.dark-mode .careers-list div {
  color: #ffffff;
}

@media(max-width: 991px) {
  .careers-box {
    grid-template-columns: 1fr;
  }

  .careers-content,
  .careers-status {
    padding: 30px;
  }

  .careers-content h3 {
    font-size: 28px;
  }
}

/* ================= PREMIUM TEAM BOOK SECTION ================= */
.durban-team-section {
  background:
    radial-gradient(circle at 12% 18%, rgba(244,176,0,.10), transparent 24%),
    linear-gradient(180deg, #ffffff, #f8fbff);
}

.team-book-slider {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.team-book-card {
  background: #ffffff;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(11,132,229,.10);
  box-shadow: 0 18px 50px rgba(6,31,82,.08);
  transition: .45s ease;
  position: relative;
}

.team-book-card:hover {
  transform: translateY(-10px) rotateX(3deg);
  box-shadow: 0 28px 80px rgba(6,31,82,.18);
}

.team-photo {
  height: 340px;
  overflow: hidden;
  position: relative;
}

.team-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(6,31,82,.62));
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: .6s ease;
}

.team-book-card:hover .team-photo img {
  transform: scale(1.08);
}

.team-info {
  padding: 24px;
  text-align: center;
}

.team-info h3 {
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 8px;
  color: var(--durban-navy);
}

.team-info span {
  color: var(--durban-blue);
  font-weight: 800;
  font-size: 14px;
}

.team-book-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 28px;
  pointer-events: none;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.28), transparent);
  transform: translateX(-120%);
  transition: .7s ease;
  z-index: 3;
}

.team-book-card:hover::before {
  transform: translateX(120%);
}

body.dark-mode .durban-team-section {
  background: linear-gradient(180deg, #071426, #081a31) !important;
}

body.dark-mode .team-book-card {
  background: #0c1f3b;
  border-color: rgba(255,255,255,.08);
}

body.dark-mode .team-info h3 {
  color: #ffffff;
}

/* Desktop/tablet */
@media(max-width: 1199px) {
  .team-book-slider {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile book-page effect */
@media(max-width: 576px) {
  .team-book-slider {
    display: block;
    position: relative;
    min-height: 500px;
    perspective: 1200px;
  }

  .team-book-card {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: rotateY(90deg);
    transform-origin: left center;
    transition: transform .8s ease, opacity .8s ease;
    backface-visibility: hidden;
  }

  .team-book-card.active {
    opacity: 1;
    transform: rotateY(0deg);
    z-index: 5;
  }

  .team-photo {
    height: 385px;
  }

  .team-info {
    padding: 22px 18px;
  }

  .team-info h3 {
    font-size: 22px;
  }
}


/* ================= DURBAN FAQ ================= */

.faq-container{
    max-width:900px;
    margin:auto;
}

.faq-item{
    background:#ffffff;
    border-radius:20px;
    margin-bottom:18px;
    padding:25px 25px;
    box-shadow:0 15px 40px rgba(6,31,82,.08);
    border:1px solid rgba(11,132,229,.08);
}

.faq-item h3{
    font-size:18px;
    font-weight:800;
}

.faq-item .num{
    color:var(--durban-gold);
    font-weight:900;
}

.faq-item .faq-content p{
    line-height:1.8;
    color:#64748b;
}

.faq-item.faq-active{
    border-left:5px solid var(--durban-blue);
}

body.dark-mode .faq-item{
    background:#0c1f3b;
    border-color:rgba(255,255,255,.08);
}

body.dark-mode .faq-item h3{
    color:#ffffff;
}

body.dark-mode .faq-item .faq-content p{
    color:#cfe1ff;
}


/* ================= NEWS & INSIGHTS ================= */
.durban-news-card {
  height: 100%;
  background: #ffffff;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(6,31,82,.08);
  border: 1px solid rgba(11,132,229,.10);
  transition: .35s ease;
}

.durban-news-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 70px rgba(6,31,82,.15);
}

.news-img {
  position: relative;
  height: 230px;
  overflow: hidden;
}

.news-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .5s ease;
}

.durban-news-card:hover .news-img img {
  transform: scale(1.08);
}

.news-img span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  background: var(--durban-gold);
  color: var(--durban-navy);
  padding: 7px 14px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 13px;
}

.news-content {
  padding: 26px;
}

.news-content h3 {
  font-size: 21px;
  font-weight: 900;
  line-height: 1.35;
}

.news-content p {
  color: #64748b;
  line-height: 1.7;
}

.news-content a {
  font-weight: 900;
}

body.dark-mode .durban-news-card {
  background: #0c1f3b;
  border-color: rgba(255,255,255,.08);
}

body.dark-mode .news-content p {
  color: #cfe1ff;
}



/* ================= FOOTER V2 ================= */

.footer{
    background:
      linear-gradient(
      135deg,
      #061f52,
      #022b73
      ) !important;

    color:#ffffff;
    padding-top:80px;
    padding-bottom:0;
}

.footer-main{
    padding-bottom:50px;
}

.footer-logo{
    max-height:75px;
    margin-bottom:18px;
}

.footer-brand h3{
    color:#ffffff;
    font-size:24px;
    font-weight:900;
    margin-bottom:15px;
}

.footer-brand p{
    color:rgba(255,255,255,.75);
    line-height:1.8;
}

.footer h4{
    color:#ffffff;
    font-weight:900;
    margin-bottom:20px;
}

.footer-links{
    list-style:none;
    padding:0;
}

.footer-links li{
    margin-bottom:12px;
}

.footer-links a{
    color:rgba(255,255,255,.75);
}

.footer-links a:hover{
    color:var(--durban-gold);
}

.footer-contact p{
    color:rgba(255,255,255,.75);
    margin-bottom:12px;
}

.footer-social{
    display:flex;
    gap:12px;
    margin-top:20px;
}

.footer-social a{
    width:42px;
    height:42px;
    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    background:rgba(255,255,255,.10);

    color:#ffffff;

    transition:.3s ease;
}

.footer-social a:hover{
    background:var(--durban-gold);
    color:#061f52;
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.10);
    padding:22px 0;
    text-align:center;
}

.copyright{
    color:rgba(255,255,255,.75);
    font-size:14px;
}

.footer-visitors {
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    margin:8px 0 0;
    color:rgba(255,255,255,.78);
    font-weight:700;
}

.post-detail-page .footer-bottom {
  text-align: center;
}

.post-detail-page .footer-bottom .container > p:not(.career-footer-copy) {
  display: none;
}

.career-footer-copy {
  color: rgba(255,255,255,.75);
  font-size: 14px;
  margin: 0 0 8px;
}

/* ================= PREMIUM STATS ================= */
.premium-stats {
  background:
    radial-gradient(circle at 10% 20%, rgba(244,176,0,.14), transparent 25%),
    linear-gradient(135deg, var(--durban-navy), var(--durban-deep-blue));
}

.premium-stat-card {
  height: 100%;
  text-align: center;
  border-radius: 28px;
  padding: 38px 24px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 20px 60px rgba(0,0,0,.18);
  transition: .35s ease;
}

.premium-stat-card:hover {
  transform: translateY(-8px);
  background: rgba(255,255,255,.12);
}

.premium-stat-card i {
  font-size: 42px;
  color: var(--durban-gold);
  margin-bottom: 16px;
  display: block;
}

.premium-stat-card span {
  display: block;
  font-size: 42px;
  font-weight: 900;
  color: #ffffff;
  font-family: var(--heading-font);
}

.premium-stat-card p {
  color: #cfe1ff;
  font-weight: 800;
  margin: 0;
}

body.dark-mode .premium-stats {
  background:
    radial-gradient(circle at 10% 20%, rgba(244,176,0,.14), transparent 25%),
    linear-gradient(135deg, #061f52, #071426) !important;
}

/* ================= PRELOADER + SCROLL TOP ================= */
.durban-preloader {
  position: fixed;
  inset: 0;
  background: #ffffff;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .5s ease;
}

.durban-preloader.hide {
  opacity: 0;
  visibility: hidden;
}

.preloader-content {
  text-align: center;
  color: var(--durban-navy);
  display: grid;
  justify-items: center;
  gap: 16px;
}

.preloader-logo-ring {
  width: clamp(150px, 18vw, 220px);
  height: clamp(150px, 18vw, 220px);
  position: relative;
  display: grid;
  place-items: center;
}

.preloader-logo-ring img {
  width: 58%;
  height: 58%;
  object-fit: contain;
  position: relative;
  z-index: 2;
}

.preloader-ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 6px solid rgba(9,39,93,.12);
  border-top-color: var(--durban-blue);
  border-right-color: var(--durban-gold);
  border-radius: 50%;
  margin: 0;
  animation: preloaderSpin 1s linear infinite;
}

.preloader-content p {
  color: var(--durban-navy);
  font-weight: 800;
  letter-spacing: .5px;
}

@keyframes preloaderSpin {
  to {
    transform: rotate(360deg);
  }
}

.scroll-top {
  border-radius: 50% !important;
  background: linear-gradient(135deg, var(--durban-blue), var(--durban-deep-blue)) !important;
  box-shadow: 0 12px 30px rgba(11,132,229,.35);
}

.scroll-top:hover {
  background: var(--durban-gold) !important;
}

/* ================= PREMIUM ABOUT FINAL ================= */
.durban-about-premium {
  position: relative;
  padding: 0 !important;
  overflow: hidden;
  background:
    radial-gradient(circle at 5% 90%, rgba(11,132,229,.08), transparent 25%),
    linear-gradient(90deg, #ffffff 0%, #ffffff 48%, #eef6ff 48%, #eef6ff 100%);
}

.about-premium-wrap {
  width: 100%;
  min-height: 860px;
  display: grid;
  grid-template-columns: 48% 52%;
  align-items: stretch;
}

.about-premium-left {
  padding: 110px 70px 80px 8%;
  position: relative;
  z-index: 3;
}

.about-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--durban-blue), var(--durban-deep-blue));
  color: #ffffff;
  border-radius: 999px;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 14px 35px rgba(11,132,229,.25);
  margin-bottom: 26px;
}

.about-pill i {
  color: var(--durban-gold);
}

.about-premium-left h2 {
  font-size: 47px;
  line-height: 1.12;
  font-weight: 900;
  color: var(--durban-navy);
  margin-bottom: 16px;
}

.about-premium-left h2 span {
  display: block;
  color: var(--durban-gold);
}

.about-line {
  width: 68px;
  height: 4px;
  border-radius: 999px;
  background: var(--durban-gold);
  margin: 24px 0;
}

.about-premium-left p {
  color: #314158;
  font-size: 16px;
  line-height: 1.85;
  margin-bottom: 20px;
}

.about-premium-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 32px;
}

.about-stat-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 16px 42px rgba(6,31,82,.10);
  border: 1px solid rgba(11,132,229,.08);
}

.about-stat-card i {
  min-width: 54px;
  height: 54px;
  border-radius: 15px;
  background: linear-gradient(135deg, var(--durban-blue), var(--durban-deep-blue));
  color: var(--durban-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 23px;
}

.about-stat-card strong {
  display: block;
  color: var(--durban-navy);
  font-size: 23px;
  font-weight: 900;
  font-family: var(--heading-font);
}

.about-stat-card span {
  font-size: 13px;
  font-weight: 800;
  color: #64748b;
}

.about-premium-actions {
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
}

.about-main-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--durban-blue), var(--durban-deep-blue));
  color: #ffffff;
  border-radius: 999px;
  padding: 15px 26px;
  font-weight: 900;
  box-shadow: 0 14px 36px rgba(11,132,229,.26);
}

.about-main-btn:hover {
  color: var(--durban-navy);
  background: var(--durban-gold);
  transform: translateY(-2px);
}

.about-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--durban-deep-blue);
  font-weight: 900;
  border-bottom: 2px solid var(--durban-deep-blue);
  padding-bottom: 5px;
}

.about-link-btn:hover {
  color: var(--durban-gold);
  border-color: var(--durban-gold);
}

.about-premium-right {
  position: relative;
  min-height: 860px;
  overflow: hidden;
}

.about-image-shape {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.about-image-shape::before {
  content: "";
  position: absolute;
  left: -135px;
  top: 0;
  width: 340px;
  height: 100%;
  background: #ffffff;
  transform: skewX(-10deg);
  z-index: 2;
}

.about-image-shape::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 38% 82%, rgba(11,132,229,.20), transparent 26%),
    linear-gradient(180deg, transparent 45%, rgba(6,31,82,.92) 100%);
  z-index: 2;
}

.about-image-shape img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.08) contrast(1.03);
}

.about-gold-line {
  position: absolute;
  left: -20px;
  top: 0;
  width: 12px;
  height: 100%;
  background: var(--durban-gold);
  transform: skewX(-10deg);
  z-index: 4;
  box-shadow: 0 0 35px rgba(244,176,0,.35);
}

.floating-about-card {
  position: absolute;
  z-index: 5;
  background: rgba(255,255,255,.94);
  border-radius: 24px;
  padding: 22px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  width: 290px;
  box-shadow: 0 22px 55px rgba(0,0,0,.16);
  backdrop-filter: blur(12px);
}

.floating-about-card i {
  min-width: 58px;
  height: 58px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--durban-navy), var(--durban-deep-blue));
  color: var(--durban-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.floating-about-card strong {
  display: block;
  color: var(--durban-navy);
  font-size: 21px;
  font-weight: 900;
  margin-bottom: 8px;
}

.floating-about-card span {
  color: #314158;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.55;
}

.card-top {
  top: 110px;
  left: 15%;
}

.card-side {
  right: 7%;
  top: 47%;
}

.about-trust-banner {
  position: absolute;
  left: 13%;
  right: 8%;
  bottom: 70px;
  z-index: 5;
  background: rgba(6,31,82,.86);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 26px;
  padding: 28px 34px;
  display: flex;
  align-items: center;
  gap: 24px;
  box-shadow: 0 24px 65px rgba(0,0,0,.28);
  backdrop-filter: blur(14px);
}

.trust-icon {
  min-width: 76px;
  height: 76px;
  border-radius: 50%;
  background: var(--durban-gold);
  color: var(--durban-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 38px;
}

.about-trust-banner h3 {
  color: #ffffff;
  font-size: 29px;
  font-weight: 900;
  margin: 0 0 7px;
}

.about-trust-banner p {
  color: #dbe8ff;
  margin: 0;
  font-weight: 600;
}

/* Dark mode */
body.dark-mode .durban-about-premium {
  background:
    linear-gradient(90deg, #071426 0%, #071426 48%, #081a31 48%, #081a31 100%) !important;
}

body.dark-mode .about-image-shape::before {
  background: #071426;
}

body.dark-mode .about-premium-left h2,
body.dark-mode .about-stat-card strong {
  color: #ffffff;
}

body.dark-mode .about-premium-left p {
  color: #cfe1ff;
}

body.dark-mode .about-stat-card,
body.dark-mode .floating-about-card {
  background: #0c1f3b;
  border-color: rgba(255,255,255,.08);
}

body.dark-mode .about-stat-card span,
body.dark-mode .floating-about-card span {
  color: #cfe1ff;
}

body.dark-mode .floating-about-card strong {
  color: #ffffff;
}

body.dark-mode .about-link-btn {
  color: #ffffff;
  border-color: #ffffff;
}

/* Responsive */
@media (max-width: 1199px) {
  .about-premium-wrap {
    grid-template-columns: 1fr;
  }

  .about-premium-left {
    padding: 90px 8% 50px;
  }

  .about-premium-right {
    min-height: 620px;
  }

  .about-image-shape::before,
  .about-gold-line {
    display: none;
  }

  .card-top {
    left: 30px;
    top: 40px;
  }

  .card-side {
    right: 30px;
    top: 45%;
  }

  .about-trust-banner {
    left: 30px;
    right: 30px;
    bottom: 40px;
  }
}

@media (max-width: 768px) {
  .about-premium-left h2 {
    font-size: 34px;
  }

  .about-premium-stats {
    grid-template-columns: 1fr;
  }

  .about-premium-right {
    min-height: auto;
    padding: 0 20px 40px;
  }

  .about-image-shape {
    position: relative;
    border-radius: 28px;
    min-height: auto;
    overflow: visible;
  }

  .about-image-shape::after {
    border-radius: 28px;
  }

  .about-image-shape img {
    height: 420px;
    border-radius: 28px;
  }

  .floating-about-card,
  .about-trust-banner {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 14px;
  }

  .about-trust-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
  }

  .about-trust-banner h3 {
    font-size: 23px;
  }
}

@media (max-width: 480px) {
  .about-premium-left {
    padding: 75px 20px 35px;
  }

  .about-premium-left h2 {
    font-size: 30px;
  }

  .about-stat-card {
    padding: 16px;
  }

  .about-premium-actions {
    gap: 16px;
  }

  .about-main-btn,
  .about-link-btn {
    width: 100%;
    justify-content: center;
  }
}


/* ================= PREMIUM HERO PRO ================= */
.durban-hero-pro {
  position: relative;
  min-height: 100vh;
  padding: 145px 0 80px !important;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 80%, rgba(25,166,74,.10), transparent 26%),
    radial-gradient(circle at 88% 18%, rgba(244,176,0,.18), transparent 28%),
    linear-gradient(135deg, #f8fbff, #ffffff);
}

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

.hero-pro-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.88) 45%, rgba(238,246,255,.65) 100%);
  z-index: 1;
}

.hero-pro-bg::before {
  content: "";
  position: absolute;
  right: -110px;
  top: 150px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(244,176,0,.12);
}

.hero-pro-bg::after {
  content: "";
  position: absolute;
  left: -90px;
  bottom: 60px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(11,132,229,.10);
}

.hero-pro-content {
  max-width: 650px;
}

.hero-pro-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(11,132,229,.10);
  color: var(--durban-deep-blue);
  border: 1px solid rgba(11,132,229,.18);
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 900;
  margin-bottom: 24px;
}

.hero-pro-badge i {
  color: var(--durban-gold);
}

.hero-pro-content h1 {
  font-size: 66px;
  line-height: 1.05;
  font-weight: 900;
  color: var(--durban-navy);
  margin-bottom: 24px;
  letter-spacing: -0.045em;
}

.hero-pro-content h1 .typing-holder {
  display: block;
  color: var(--durban-blue);
  min-height: 76px;
}

#heroTypingText::after {
  content: "|";
  color: var(--durban-gold);
  margin-left: 5px;
  animation: heroCursorBlink .8s infinite;
}

@keyframes heroCursorBlink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

.hero-pro-content p {
  max-width: 600px;
  color: #5c6b7e;
  font-size: 19px;
  line-height: 1.75;
  margin-bottom: 32px;
}

.hero-pro-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 34px;
}

.hero-primary-btn,
.hero-secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  padding: 15px 28px;
  font-weight: 900;
  transition: .3s ease;
}

.hero-primary-btn {
  color: #ffffff;
  background: linear-gradient(135deg, var(--durban-blue), var(--durban-deep-blue));
  box-shadow: 0 16px 40px rgba(11,132,229,.28);
}

.hero-primary-btn:hover {
  color: var(--durban-navy);
  background: var(--durban-gold);
  transform: translateY(-2px);
}

.hero-secondary-btn {
  color: var(--durban-navy);
  background: #ffffff;
  border: 1px solid rgba(11,132,229,.16);
  box-shadow: 0 12px 32px rgba(6,31,82,.08);
}

.hero-secondary-btn:hover {
  color: #ffffff;
  background: var(--durban-navy);
  transform: translateY(-2px);
}

.hero-trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 620px;
}

.hero-trust-row div {
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(11,132,229,.10);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 12px 35px rgba(6,31,82,.06);
}

.hero-trust-row strong {
  display: block;
  color: var(--durban-navy);
  font-weight: 900;
  font-size: 16px;
}

.hero-trust-row span {
  color: #64748b;
  font-size: 13px;
  font-weight: 800;
}

.hero-carousel-card {
  position: relative;
  height: 560px;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: 0 30px 90px rgba(6,31,82,.18);
  border: 1px solid rgba(11,132,229,.10);
  background: var(--durban-navy);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease, transform 5s ease;
  transform: scale(1.04);
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-image-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 35%, rgba(6,31,82,.85) 100%),
    radial-gradient(circle at 15% 80%, rgba(11,132,229,.45), transparent 30%);
  z-index: 2;
}

.hero-floating-card {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,.94);
  border-radius: 20px;
  padding: 16px 18px;
  width: 285px;
  box-shadow: 0 20px 55px rgba(0,0,0,.16);
  backdrop-filter: blur(12px);
}

.hero-floating-card i {
  min-width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--durban-blue), var(--durban-deep-blue));
  color: var(--durban-gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 23px;
}

.hero-floating-card strong {
  display: block;
  color: var(--durban-navy);
  font-weight: 900;
}

.hero-floating-card span {
  display: block;
  color: #64748b;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}

.hero-floating-card.top-card {
  top: 26px;
  left: 26px;
}

.hero-floating-card.bottom-card {
  right: 26px;
  bottom: 72px;
}

.hero-slide-dots {
  position: absolute;
  left: 32px;
  bottom: 32px;
  z-index: 5;
  display: flex;
  gap: 9px;
}

.hero-slide-dots button {
  width: 11px;
  height: 11px;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.45);
  transition: .3s ease;
}

.hero-slide-dots button.active {
  width: 34px;
  background: var(--durban-gold);
}

/* Dark mode */
body.dark-mode .durban-hero-pro {
  background:
    radial-gradient(circle at 12% 80%, rgba(11,132,229,.15), transparent 30%),
    radial-gradient(circle at 88% 18%, rgba(244,176,0,.14), transparent 28%),
    linear-gradient(135deg, #071426, #081a31) !important;
}

body.dark-mode .hero-pro-bg {
  background: linear-gradient(90deg, rgba(7,20,38,.98), rgba(8,26,49,.85));
}

body.dark-mode .hero-pro-content h1,
body.dark-mode .hero-trust-row strong {
  color: #ffffff;
}

body.dark-mode .hero-pro-content p,
body.dark-mode .hero-trust-row span {
  color: #cfe1ff;
}

body.dark-mode .hero-trust-row div,
body.dark-mode .hero-floating-card {
  background: #0c1f3b;
  border-color: rgba(255,255,255,.08);
}

body.dark-mode .hero-floating-card strong {
  color: #ffffff;
}

body.dark-mode .hero-floating-card span {
  color: #cfe1ff;
}

/* Responsive */
@media (max-width: 1199px) {
  .hero-pro-content h1 {
    font-size: 54px;
  }

  .hero-carousel-card {
    height: 500px;
  }
}

@media (max-width: 991px) {
  .durban-hero-pro {
    padding-top: 125px !important;
    min-height: auto;
  }

  .hero-pro-content h1 {
    font-size: 46px;
  }

  .hero-carousel-card {
    height: 460px;
  }

  .hero-trust-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .durban-hero-pro {
    padding: 115px 0 55px !important;
  }

  .hero-pro-content h1 {
    font-size: 36px;
    letter-spacing: -0.03em;
  }

  .hero-pro-content h1 .typing-holder {
    min-height: 88px;
  }

  .hero-pro-content p {
    font-size: 16px;
  }

  .hero-pro-actions a {
    width: 100%;
  }

  .hero-carousel-card {
    height: 390px;
    border-radius: 26px;
  }

  .hero-floating-card {
    position: relative;
    width: calc(100% - 30px);
    left: 15px !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    margin-top: 12px;
  }

  .hero-carousel-card {
    overflow: visible;
    margin-bottom: 150px;
  }

  .hero-slide,
  .hero-image-overlay {
    border-radius: 26px;
    overflow: hidden;
  }

  .hero-slide-dots {
    bottom: 16px;
    left: 22px;
  }

  .hero-floating-card.top-card {
    margin-top: 405px;
  }
}

/* ================= HERO TYPING HEIGHT FIX ================= */
.hero-pro-content h1 {
  min-height: 225px;
}

.hero-pro-content h1 .typing-holder {
  display: block;
  min-height: 150px;
}

@media (max-width: 1199px) {
  .hero-pro-content h1 {
    min-height: 190px;
  }

  .hero-pro-content h1 .typing-holder {
    min-height: 120px;
  }
}

@media (max-width: 576px) {
  .hero-pro-content h1 {
    min-height: 210px;
  }

  .hero-pro-content h1 .typing-holder {
    min-height: 125px;
  }
}



/* ================= PREMIUM HEADER DROPDOWN ================= */
@media (min-width: 1200px) {
  .navmenu .dropdown > ul {
    border-radius: 18px !important;
    padding: 12px !important;
    min-width: 235px;
    background: rgba(255,255,255,.96) !important;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(11,132,229,.10);
    box-shadow: 0 24px 70px rgba(6,31,82,.16) !important;
  }

  .navmenu .dropdown > ul a {
    border-radius: 12px;
    padding: 12px 14px !important;
    font-weight: 800;
    color: var(--durban-navy) !important;
  }

  .navmenu .dropdown > ul a:hover {
    background: rgba(11,132,229,.10) !important;
    color: var(--durban-blue) !important;
  }

  body.dark-mode .navmenu .dropdown > ul {
    background: rgba(12,31,59,.96) !important;
    border-color: rgba(255,255,255,.08);
  }

  body.dark-mode .navmenu .dropdown > ul a {
    color: #ffffff !important;
  }

  body.dark-mode .navmenu .dropdown > ul a:hover {
    background: rgba(11,132,229,.20) !important;
    color: #4fb3ff !important;
  }
}

/* Mobile dropdown polish */
@media (max-width: 1199px) {
  body.mobile-nav-active .navmenu .dropdown > ul {
    display: none !important;
    position: static !important;
    margin: 4px 18px 10px 18px !important;
    padding: 8px !important;
    background: rgba(11,132,229,.08) !important;
    border-radius: 16px !important;
    border: 1px solid rgba(11,132,229,.10) !important;
    box-shadow: none !important;
  }

  body.mobile-nav-active .navmenu .dropdown > ul.dropdown-active {
    display: block !important;
  }

  body.mobile-nav-active .navmenu .dropdown > ul a {
    font-size: 16px !important;
    padding: 12px 18px !important;
    border-radius: 12px;
  }

  body.mobile-nav-active .navmenu .dropdown > ul a:hover {
    background: rgba(11,132,229,.12) !important;
  }

  body.mobile-nav-active .navmenu .dropdown > a i {
    transition: .3s ease;
  }

  body.mobile-nav-active .navmenu .dropdown.active > a i {
    transform: rotate(180deg);
  }
}



/* ========== HERO MOBILE OVERLAY FIX ========== */
@media (max-width: 576px) {
  .hero-carousel-card {
    overflow: hidden !important;
    margin-bottom: 0 !important;
  }

  .hero-floating-card {
    position: absolute !important;
    width: auto !important;
    max-width: calc(100% - 32px);
    left: 16px !important;
    right: 16px !important;
    margin-top: 0 !important;
    padding: 12px 14px;
    border-radius: 16px;
  }

  .hero-floating-card.top-card {
    top: 16px !important;
    bottom: auto !important;
  }

  .hero-floating-card.bottom-card {
    top: auto !important;
    bottom: 52px !important;
  }

  .hero-floating-card i {
    min-width: 42px;
    height: 42px;
    font-size: 18px;
  }

  .hero-floating-card strong {
    font-size: 14px;
  }

  .hero-floating-card span {
    font-size: 11px;
  }
}

/* Kama bado zinabanana sana kwenye very small phones, zifiche kabisa */
@media (max-width: 390px) {
  .hero-floating-card {
    display: none !important;
  }
}

/* ========== MOBILE HERO + HEADER POLISH ========== */
@media (max-width: 576px) {
  .header {
    padding: 10px 0 !important;
  }

  .header .logo img {
    max-height: 48px !important;
  }

  .header .logo h1 {
    font-size: 25px !important;
  }

  .theme-toggle-btn {
    width: 36px !important;
    height: 36px !important;
  }

  .mobile-nav-toggle {
    font-size: 30px !important;
    margin-right: 0 !important;
  }

  .durban-hero-pro {
    padding-top: 95px !important;
  }

  .hero-pro-content h1 {
    font-size: 34px !important;
    min-height: 185px !important;
  }

  .hero-pro-content p {
    font-size: 15.5px !important;
    line-height: 1.7 !important;
  }

  .hero-trust-row {
    display: none !important;
  }

  .hero-carousel-card {
    height: 330px !important;
  }
}



/* ================= DURBAN GALLERY ================= */
.durban-gallery-section {
  background: linear-gradient(180deg, #ffffff, #f8fbff);
}

.durban-gallery-section .portfolio-filters {
  margin-bottom: 34px;
}

.durban-gallery-section .portfolio-filters li {
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(11,132,229,.08);
  color: var(--durban-navy);
  font-weight: 900;
  font-size: 15px;
}

.durban-gallery-section .portfolio-filters li.filter-active,
.durban-gallery-section .portfolio-filters li:hover {
  background: linear-gradient(135deg, var(--durban-blue), var(--durban-deep-blue));
  color: #ffffff;
}

.durban-gallery-card {
  position: relative;
  height: 310px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(6,31,82,.10);
}

.durban-gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .55s ease;
}

.durban-gallery-card:hover img {
  transform: scale(1.08);
}

.gallery-info {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 18px;
  border-radius: 20px;
  background: rgba(6,31,82,.86);
  color: #ffffff;
  transform: translateY(15px);
  opacity: 0;
  transition: .35s ease;
  backdrop-filter: blur(12px);
}

.durban-gallery-card:hover .gallery-info {
  transform: translateY(0);
  opacity: 1;
}

.gallery-info h4 {
  color: #ffffff;
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 6px;
}

.gallery-info p {
  margin: 0;
  color: #dbe8ff;
  font-weight: 600;
}

body.dark-mode .durban-gallery-section {
  background: linear-gradient(180deg, #071426, #081a31) !important;
}

body.dark-mode .durban-gallery-section .portfolio-filters li {
  background: #0c1f3b;
  color: #ffffff;
}

@media(max-width: 576px) {
  .durban-gallery-card {
    height: 260px;
  }

  .gallery-info {
    opacity: 1;
    transform: none;
  }
}

/* ================= GALLERY PROFESSIONAL MOBILE FIX ================= */

/* Reduce over-rounded look */
.durban-gallery-section .portfolio-filters li {
  border-radius: 10px !important;
  padding: 9px 16px !important;
  font-size: 14px !important;
  line-height: 1.2;
}

.durban-gallery-card {
  border-radius: 16px !important;
}

.durban-gallery-card img {
  border-radius: 16px !important;
}

.gallery-info {
  border-radius: 14px !important;
}

/* Better filter layout on mobile */
@media (max-width: 576px) {
  .durban-gallery-section .section-title {
    padding-bottom: 28px !important;
  }

  .durban-gallery-section .section-title p {
    font-size: 30px !important;
    line-height: 1.25 !important;
  }

  .durban-gallery-section .portfolio-filters {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 10px !important;
    overflow-x: auto !important;
    justify-content: flex-start !important;
    padding: 0 4px 12px !important;
    margin-bottom: 28px !important;
    scrollbar-width: none;
  }

  .durban-gallery-section .portfolio-filters::-webkit-scrollbar {
    display: none;
  }

  .durban-gallery-section .portfolio-filters li {
    flex: 0 0 auto;
    margin: 0 !important;
    border-radius: 10px !important;
    padding: 10px 15px !important;
    font-size: 13px !important;
    white-space: nowrap;
  }

  .durban-gallery-card {
    height: 250px !important;
    border-radius: 16px !important;
  }

  /* Hide overlay by default on mobile */
  .gallery-info {
    opacity: 0 !important;
    transform: translateY(12px) !important;
    left: 12px !important;
    right: 12px !important;
    bottom: 12px !important;
    padding: 14px !important;
    border-radius: 14px !important;
  }

  /* Show only when user taps / focuses / hovers */
  .durban-gallery-card:hover .gallery-info,
  .durban-gallery-card:focus-within .gallery-info,
  .durban-gallery-card:active .gallery-info {
    opacity: 1 !important;
    transform: translateY(0) !important;
  }

  .gallery-info h4 {
    font-size: 17px !important;
    line-height: 1.2 !important;
    margin-bottom: 5px !important;
  }

  .gallery-info p {
    font-size: 13px !important;
    line-height: 1.45 !important;
  }
}

/* Extra small phones */
@media (max-width: 390px) {
  .durban-gallery-section .section-title p {
    font-size: 27px !important;
  }

  .durban-gallery-card {
    height: 230px !important;
  }
}

/* ================= LAST-MILE RESPONSIVE OVERRIDES ================= */
.index-page .header {
  background: rgba(255,255,255,.86) !important;
  backdrop-filter: blur(18px);
}

.index-page.scrolled .header,
.scrolled .header {
  background: rgba(255,255,255,.96) !important;
}

.hero-pro-content h1 {
  letter-spacing: 0 !important;
}

.hero-pro-actions a {
  min-height: 54px;
}

.hero-carousel-card::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255,255,255,.36);
  border-radius: 28px;
  pointer-events: none;
  z-index: 5;
}

body.dark-mode.index-page .header,
body.dark-mode.index-page.scrolled .header,
body.dark-mode .scrolled .header {
  background: rgba(7,20,38,.94) !important;
}

@media (max-width: 768px) {
  .durban-hero-pro {
    min-height: auto !important;
    padding-top: 116px !important;
  }

  .hero-pro-content h1 {
    font-size: 42px !important;
    line-height: 1.12 !important;
  }

  .hero-pro-content p {
    font-size: 16px !important;
    line-height: 1.68 !important;
  }

  .hero-pro-actions {
    display: grid !important;
    grid-template-columns: 1fr;
    gap: 12px !important;
  }

  .hero-pro-actions a {
    width: 100%;
    justify-content: center;
  }

  .whatsapp-float {
    bottom: 84px !important;
  }

  .durban-assistant {
    bottom: 142px !important;
  }
}

@media (max-width: 480px) {
  .hero-pro-content h1 {
    font-size: 35px !important;
  }

  .hero-pro-content h1 .typing-holder {
    min-height: 44px !important;
  }
}

/* ================= SHAPE + BUTTON CONSISTENCY ================= */
:root {
  --durban-radius-xs: 6px;
  --durban-radius-sm: 8px;
  --durban-radius-md: 10px;
  --durban-radius-lg: 12px;
  --durban-radius-xl: 14px;
}

.premium-service-card,
.durban-news-card,
.durban-profile-card,
.premium-client-card,
.premium-industry-card,
.success-card,
.careers-box,
.team-book-card,
.faq-item,
.compliance-intro,
.compliance-card,
.contact .info-item,
.durban-request-form,
.durban-map-card,
.durban-gallery-card,
.about-stat-card,
.floating-about-card,
.about-trust-banner,
.hero-carousel-card,
.hero-floating-card,
.durban-ad-banner,
.durban-ad-popup,
.durban-ad-footer,
.durban-cookie-banner,
.assistant-panel {
  border-radius: var(--durban-radius-xl) !important;
}

.premium-service-card,
.durban-news-card,
.durban-profile-card,
.success-card,
.careers-box,
.faq-item,
.compliance-card,
.contact .info-item,
.durban-request-form,
.premium-client-card,
.premium-industry-card {
  box-shadow: 0 14px 36px rgba(6,31,82,.08) !important;
}

.premium-service-card:hover,
.durban-news-card:hover,
.durban-profile-card:hover,
.success-card:hover,
.compliance-card:hover,
.premium-client-card:hover,
.premium-industry-card:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 18px 46px rgba(6,31,82,.12) !important;
}

.service-icon,
.profile-icon,
.compliance-card i,
.contact .info-item i,
.floating-about-card i,
.trust-icon,
.hero-floating-card i {
  border-radius: var(--durban-radius-md) !important;
}

.section-title h2,
.about-pill,
.premium-service-card span,
.news-img span,
.durban-profile-card span,
.portfolio-filters li {
  border-radius: var(--durban-radius-sm) !important;
}

.hero-primary-btn,
.hero-secondary-btn,
.header .btn-getstarted,
.premium-service-card a,
.durban-news-card a,
.durban-profile-card a,
.careers-box a,
.about-main-btn,
.about-link-btn,
.btn-read-more,
.durban-request-form button,
.durban-ad-banner a,
.durban-ad-footer a,
.durban-ad-popup a,
.durban-cookie-banner button,
.assistant-suggestions button,
.assistant-input button {
  border-radius: var(--durban-radius-sm) !important;
  min-height: 44px;
  transition: transform .22s ease, background .22s ease, color .22s ease, border-color .22s ease, box-shadow .22s ease !important;
}

.hero-primary-btn:hover,
.hero-secondary-btn:hover,
.header .btn-getstarted:hover,
.premium-service-card a:hover,
.durban-news-card a:hover,
.durban-profile-card a:hover,
.careers-box a:hover,
.about-main-btn:hover,
.about-link-btn:hover,
.btn-read-more:hover,
.durban-request-form button:hover,
.durban-ad-banner a:hover,
.durban-ad-footer a:hover,
.durban-ad-popup a:hover,
.durban-cookie-banner button:hover,
.assistant-suggestions button:hover,
.assistant-input button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(6,31,82,.14);
}

.hero-primary-btn:active,
.hero-secondary-btn:active,
.header .btn-getstarted:active,
.premium-service-card a:active,
.durban-news-card a:active,
.durban-profile-card a:active,
.careers-box a:active,
.about-main-btn:active,
.about-link-btn:active,
.btn-read-more:active,
.durban-request-form button:active,
.durban-cookie-banner button:active {
  transform: translateY(0) scale(.98);
}

.durban-request-form input,
.durban-request-form textarea,
.durban-request-form select,
.assistant-input,
.assistant-input input {
  border-radius: var(--durban-radius-sm) !important;
}

.hero-slide img,
.about-image-shape,
.about-image-shape img,
.news-img,
.team-photo,
.durban-gallery-card img {
  border-radius: var(--durban-radius-lg) !important;
}

.whatsapp-float,
.scroll-top,
.assistant-toggle,
.mobile-nav-toggle,
.theme-toggle-btn,
.hero-slide-dots button,
.swiper-pagination-bullet,
.footer-social a {
  border-radius: 50% !important;
}

@media (max-width: 768px) {
  .premium-service-card,
  .durban-news-card,
  .durban-profile-card,
  .premium-client-card,
  .premium-industry-card,
  .success-card,
  .careers-box,
  .faq-item,
  .compliance-intro,
  .compliance-card,
  .contact .info-item,
  .durban-request-form,
  .durban-map-card,
  .durban-gallery-card,
  .hero-carousel-card {
    border-radius: var(--durban-radius-lg) !important;
  }
}

/* ================= FLOATING ACTIONS FINAL ================= */
.floating-action {
  width: 56px !important;
  height: 56px !important;
  padding: 0 !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  border-radius: 50% !important;
}

.floating-action i {
  line-height: 1;
}

.floating-action-label {
  position: absolute;
  left: 50%;
  top: -34px;
  transform: translateX(-50%);
  min-width: max-content;
  padding: 6px 12px;
  border-radius: 9px;
  color: var(--durban-navy);
  background: #fff;
  box-shadow: 0 10px 28px rgba(6, 31, 82, .16);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  pointer-events: none;
}

.whatsapp-float {
  position: fixed;
  left: auto !important;
  right: 38px !important;
  bottom: 34px !important;
  box-shadow: 0 18px 38px rgba(37, 211, 102, .32) !important;
}

.durban-assistant {
  left: 38px !important;
  right: auto !important;
  bottom: 34px !important;
}

.assistant-toggle {
  position: relative;
  gap: 0 !important;
  min-width: 56px;
}

.assistant-toggle i {
  color: var(--durban-gold);
  font-size: 22px;
}

.durban-assistant.open .assistant-toggle {
  display: inline-flex !important;
}

.durban-assistant.open .assistant-toggle i {
  color: #fff;
}

.assistant-panel {
  position: fixed;
  left: 24px;
  right: auto;
  bottom: 120px;
}

.scroll-top {
  left: auto !important;
  right: 44px !important;
  bottom: 168px !important;
}

body.dark-mode .floating-action-label {
  color: #eaf3ff;
  background: rgba(12, 31, 59, .96);
  box-shadow: 0 12px 28px rgba(0, 0, 0, .25);
}

@media (max-width: 768px) {
  .floating-action-label {
    display: none;
  }

  .whatsapp-float {
    left: auto !important;
    right: 16px !important;
    bottom: 18px !important;
    width: 52px !important;
    height: 52px !important;
  }

  .durban-assistant {
    left: 16px !important;
    right: auto !important;
    bottom: 18px !important;
  }

  .assistant-toggle {
    position: relative;
    width: 52px !important;
    height: 52px !important;
    min-width: 52px;
  }

  .assistant-panel {
    left: 12px;
    right: auto;
    bottom: 86px;
    width: calc(100vw - 24px);
  }

  .scroll-top {
    left: auto !important;
    right: 20px !important;
    bottom: 126px !important;
  }
}

/* ================= HEADER NAV ACTIVE FINAL ================= */
@media (min-width: 1200px) {
  .navmenu > ul {
    gap: 8px;
  }

  .navmenu > ul > li > a,
  .navmenu > ul > li > a:focus {
    position: relative;
    padding: 14px 10px !important;
    border-radius: 10px !important;
    color: var(--durban-navy) !important;
    background: transparent !important;
    font-weight: 800;
    transition: color .25s ease, transform .25s ease;
  }

  .navmenu > ul > li > a::before {
    content: "";
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: 7px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--durban-blue), var(--durban-gold));
    opacity: 0;
    transform: scaleX(.25);
    transform-origin: center;
    transition: opacity .25s ease, transform .25s ease;
  }

  .navmenu > ul > li:hover > a,
  .navmenu > ul > li > a:hover,
  .navmenu > ul > li > a.active,
  .navmenu > ul > li > a.active:focus {
    color: var(--durban-blue) !important;
    background: transparent !important;
    transform: translateY(-1px);
  }

  .navmenu > ul > li:hover > a::before,
  .navmenu > ul > li > a:hover::before,
  .navmenu > ul > li > a.active::before,
  .navmenu > ul > li > a.active:focus::before {
    opacity: 1;
    transform: scaleX(1);
  }

  .navmenu > ul > li.dropdown:hover > a i {
    transform: translateY(1px) rotate(180deg);
  }

  body.dark-mode .navmenu > ul > li > a,
  body.dark-mode .navmenu > ul > li > a:focus {
    color: #eaf3ff !important;
    background: transparent !important;
  }

  body.dark-mode .navmenu > ul > li:hover > a,
  body.dark-mode .navmenu > ul > li > a:hover,
  body.dark-mode .navmenu > ul > li > a.active,
  body.dark-mode .navmenu > ul > li > a.active:focus {
    color: var(--durban-gold) !important;
    background: transparent !important;
  }
}

@media (max-width: 1199px) {
  body.mobile-nav-active .navmenu > ul > li > a.active {
    border-radius: 10px !important;
    background: linear-gradient(90deg, rgba(11,132,229,.14), rgba(244,176,0,.10)) !important;
    border-left: 3px solid var(--durban-blue);
  }
}

/* ================= HEADER SUBMENU FINAL ================= */
@media (min-width: 1200px) {
  .navmenu .dropdown > ul {
    padding: 10px !important;
    border-radius: 14px !important;
    border: 1px solid rgba(11, 132, 229, .12) !important;
    background: rgba(255, 255, 255, .98) !important;
    box-shadow: 0 24px 70px rgba(6, 31, 82, .16) !important;
  }

  .navmenu .dropdown > ul::before {
    content: "";
    position: absolute;
    top: -6px;
    left: 28px;
    width: 12px;
    height: 12px;
    background: inherit;
    border-left: 1px solid rgba(11, 132, 229, .12);
    border-top: 1px solid rgba(11, 132, 229, .12);
    transform: rotate(45deg);
  }

  .navmenu .dropdown > ul a,
  .navmenu .dropdown > ul a:focus {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px 12px 18px !important;
    border-radius: 10px !important;
    color: var(--durban-navy) !important;
    background: transparent !important;
    font-weight: 800;
    transition: color .24s ease, background .24s ease, transform .24s ease;
  }

  .navmenu .dropdown > ul a::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    flex: 0 0 7px;
    background: var(--durban-gold);
    opacity: 0;
    transform: scale(.25);
    transition: opacity .24s ease, transform .24s ease;
  }

  .navmenu .dropdown > ul a::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(11,132,229,.12), rgba(244,176,0,.08));
    opacity: 0;
    z-index: -1;
    transition: opacity .24s ease;
  }

  .navmenu .dropdown > ul a:hover,
  .navmenu .dropdown > ul .active,
  .navmenu .dropdown > ul .active:hover,
  .navmenu .dropdown > ul li:hover > a {
    color: var(--durban-blue) !important;
    background: transparent !important;
    transform: translateX(3px);
  }

  .navmenu .dropdown > ul a:hover::before,
  .navmenu .dropdown > ul .active::before,
  .navmenu .dropdown > ul li:hover > a::before,
  .navmenu .dropdown > ul a:hover::after,
  .navmenu .dropdown > ul .active::after,
  .navmenu .dropdown > ul li:hover > a::after {
    opacity: 1;
    transform: scale(1);
  }

  body.dark-mode .navmenu .dropdown > ul {
    background: rgba(12, 31, 59, .98) !important;
    border-color: rgba(255, 255, 255, .08) !important;
    box-shadow: 0 28px 80px rgba(0, 0, 0, .34) !important;
  }

  body.dark-mode .navmenu .dropdown > ul::before {
    border-color: rgba(255, 255, 255, .08);
  }

  body.dark-mode .navmenu .dropdown > ul a,
  body.dark-mode .navmenu .dropdown > ul a:focus {
    color: #eaf3ff !important;
  }

  body.dark-mode .navmenu .dropdown > ul a:hover,
  body.dark-mode .navmenu .dropdown > ul .active,
  body.dark-mode .navmenu .dropdown > ul li:hover > a {
    color: var(--durban-gold) !important;
  }
}

@media (max-width: 1199px) {
  body.mobile-nav-active .navmenu .dropdown > ul a {
    position: relative;
    border-radius: 10px !important;
    transition: background .24s ease, color .24s ease, transform .24s ease;
  }

  body.mobile-nav-active .navmenu .dropdown > ul a:hover,
  body.mobile-nav-active .navmenu .dropdown > ul a.active {
    color: var(--durban-blue) !important;
    background: rgba(11,132,229,.12) !important;
    transform: translateX(2px);
  }
}

/* ================= DARK MODE CONTRAST FIXES ================= */
body.dark-mode .hero-pro-badge {
  color: #eaf3ff !important;
  background: rgba(11, 132, 229, .16) !important;
  border-color: rgba(79, 179, 255, .42) !important;
  box-shadow: 0 14px 34px rgba(0, 0, 0, .22) !important;
}

body.dark-mode .hero-pro-badge i {
  color: var(--durban-gold) !important;
}

/* ================= HERO IMAGE TOP ALIGN FINAL ================= */
@media (min-width: 992px) {
  .durban-hero-pro .row {
    align-items: flex-start !important;
  }

  .durban-hero-pro .col-lg-6.order-lg-2 {
    padding-top: 18px;
  }

  .hero-carousel-card {
    transform: translateY(-34px);
  }
}

@media (min-width: 1200px) {
  .durban-hero-pro .col-lg-6.order-lg-2 {
    padding-top: 0;
  }

  .hero-carousel-card {
    transform: translateY(-58px);
  }
}

@media (max-width: 991px) {
  .hero-carousel-card {
    transform: none;
  }
}

/* ================= CORE VALUES ICONS FINAL ================= */
.values .card {
  position: relative;
  overflow: hidden;
  padding-top: 38px !important;
}

.values .card::before {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  right: -58px;
  top: -58px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(11,132,229,.13), transparent 70%);
  pointer-events: none;
}

.durban-value-icon {
  width: 86px;
  height: 86px;
  margin: 0 auto 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 22px;
  color: var(--durban-gold);
  background: linear-gradient(135deg, var(--durban-blue), var(--durban-deep-blue));
  box-shadow: 0 18px 42px rgba(11, 132, 229, .28);
  font-size: 42px;
  line-height: 1;
  transition: transform .32s ease, box-shadow .32s ease, background .32s ease;
}

.values .card:hover .durban-value-icon {
  transform: translateY(-5px) scale(1.04);
  background: linear-gradient(135deg, var(--durban-navy), var(--durban-blue));
  box-shadow: 0 24px 56px rgba(6, 31, 82, .28);
}

.values .card h3 {
  color: var(--durban-navy);
}

body.dark-mode .values .card::before {
  background: radial-gradient(circle, rgba(244,176,0,.14), transparent 70%);
}

body.dark-mode .durban-value-icon {
  color: var(--durban-gold);
  background: linear-gradient(135deg, #082b63, #0b84e5);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .35);
}

body.dark-mode .values .card h3 {
  color: #ffffff;
}

@media (max-width: 576px) {
  .durban-value-icon {
    width: 76px;
    height: 76px;
    border-radius: 18px;
    font-size: 36px;
  }
}

/* ================= HEADER LOGO SIZE FINAL ================= */
.header .logo img {
  max-height: 96px !important;
  transition: filter .25s ease, background .25s ease, box-shadow .25s ease, padding .25s ease;
}

.header .logo h1 {
  font-size: 36px !important;
  font-weight: 900 !important;
}

@media (max-width: 1199px) {
  .header .logo img {
    max-height: 72px !important;
  }

  .header .logo h1 {
    font-size: 30px !important;
  }
}

@media (max-width: 576px) {
  .header .logo img {
    max-height: 58px !important;
  }

  .header .logo h1 {
    font-size: 25px !important;
  }
}

body.dark-mode .header .logo img {
  padding: 5px;
  border-radius: 12px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 10px 28px rgba(0, 0, 0, .22);
  filter: drop-shadow(0 4px 10px rgba(255, 255, 255, .12));
}

/* ================= HERO ACTIONS SPACING FINAL ================= */
@media (min-width: 992px) {
  .durban-hero-pro {
    padding-bottom: 48px !important;
  }

  .hero-pro-actions {
    gap: 10px !important;
    flex-wrap: nowrap !important;
    margin-bottom: 18px !important;
  }

  .hero-pro-actions a {
    min-height: 50px !important;
    padding: 13px 18px !important;
    white-space: nowrap;
  }
}

@media (min-width: 1200px) {
  .durban-hero-pro {
    padding-bottom: 38px !important;
  }

  .hero-pro-actions a {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}

@media (max-width: 991px) {
  .durban-hero-pro {
    padding-bottom: 46px !important;
  }
}

/* ================= GALLERY VIEWER FINAL ================= */
.durban-gallery-card {
  cursor: zoom-in;
}

.durban-gallery-card:focus-visible {
  outline: 3px solid var(--durban-gold);
  outline-offset: 4px;
}

.durban-gallery-card::after {
  content: "\F52A";
  font-family: bootstrap-icons;
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 4;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--durban-navy);
  background: rgba(255,255,255,.92);
  box-shadow: 0 12px 28px rgba(6,31,82,.18);
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity .28s ease, transform .28s ease;
}

.durban-gallery-card:hover::after,
.durban-gallery-card:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}

.gallery-viewer-open {
  overflow: hidden;
}

.durban-gallery-viewer {
  position: fixed;
  inset: 0;
  z-index: 1000000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
}

.durban-gallery-viewer.open {
  display: flex;
}

.gallery-viewer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 15, 34, .82);
  backdrop-filter: blur(14px);
}

.gallery-viewer-dialog {
  position: relative;
  z-index: 2;
  width: min(1120px, 100%);
  max-height: calc(100vh - 56px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  overflow: hidden;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 30px 110px rgba(0,0,0,.42);
  animation: galleryViewerIn .24s ease;
}

@keyframes galleryViewerIn {
  from { opacity: 0; transform: translateY(18px) scale(.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.gallery-viewer-media {
  min-height: 560px;
  background: #061f52;
}

.gallery-viewer-media img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  cursor: zoom-out;
}

.gallery-viewer-caption {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 38px;
  background:
    radial-gradient(circle at 100% 0%, rgba(244,176,0,.14), transparent 38%),
    linear-gradient(180deg, #ffffff, #f6fbff);
}

.gallery-viewer-count {
  width: fit-content;
  margin-bottom: 18px;
  padding: 8px 12px;
  border-radius: 9px;
  color: var(--durban-blue);
  background: rgba(11,132,229,.10);
  font-weight: 900;
}

.gallery-viewer-caption h3 {
  margin: 0 0 12px;
  color: var(--durban-navy);
  font-size: 34px;
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: 0;
}

.gallery-viewer-caption p {
  margin: 0;
  color: #5c6b7e;
  font-size: 17px;
  line-height: 1.7;
  font-weight: 700;
}

.gallery-viewer-close,
.gallery-viewer-nav {
  position: absolute;
  z-index: 4;
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: transform .2s ease, background .2s ease, color .2s ease, opacity .2s ease;
}

.gallery-viewer-close {
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  color: var(--durban-navy);
  background: rgba(255,255,255,.94);
  box-shadow: 0 12px 26px rgba(0,0,0,.18);
}

.gallery-viewer-nav {
  top: 50%;
  width: 52px;
  height: 52px;
  color: #ffffff;
  background: rgba(6,31,82,.72);
  transform: translateY(-50%);
}

.gallery-viewer-prev {
  left: 18px;
}

.gallery-viewer-next {
  right: 378px;
}

.gallery-viewer-close:hover,
.gallery-viewer-nav:hover {
  color: var(--durban-navy);
  background: var(--durban-gold);
  transform: translateY(-50%) scale(1.04);
}

.gallery-viewer-close:hover {
  transform: scale(1.04);
}

.gallery-viewer-nav:disabled {
  opacity: .4;
  pointer-events: none;
}

body.dark-mode .gallery-viewer-dialog {
  background: #0c1f3b;
}

body.dark-mode .gallery-viewer-caption {
  background:
    radial-gradient(circle at 100% 0%, rgba(244,176,0,.12), transparent 38%),
    linear-gradient(180deg, #0c1f3b, #081a31);
}

body.dark-mode .gallery-viewer-caption h3 {
  color: #ffffff;
}

body.dark-mode .gallery-viewer-caption p {
  color: #cfe1ff;
}

@media (max-width: 991px) {
  .gallery-viewer-dialog {
    grid-template-columns: 1fr;
    overflow-y: auto;
  }

  .gallery-viewer-media,
  .gallery-viewer-media img {
    min-height: 430px;
  }

  .gallery-viewer-caption {
    padding: 28px;
  }

  .gallery-viewer-next {
    right: 18px;
  }
}

@media (max-width: 576px) {
  .durban-gallery-viewer {
    padding: 14px;
  }

  .gallery-viewer-dialog {
    max-height: calc(100vh - 28px);
    border-radius: 14px;
  }

  .gallery-viewer-media,
  .gallery-viewer-media img {
    min-height: 330px;
  }

  .gallery-viewer-caption {
    padding: 22px;
  }

  .gallery-viewer-caption h3 {
    font-size: 26px;
  }

  .gallery-viewer-nav {
    width: 44px;
    height: 44px;
  }

  .gallery-viewer-prev {
    left: 10px;
  }

  .gallery-viewer-next {
    right: 10px;
  }
}

/* ================= SERVICE DETAIL PAGES ================= */
.service-detail-page {
  background: #f7fbff;
}

.service-detail-hero {
  position: relative;
  padding: 155px 0 72px !important;
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 18%, rgba(244,176,0,.15), transparent 28%),
    radial-gradient(circle at 12% 72%, rgba(11,132,229,.12), transparent 30%),
    linear-gradient(135deg, #ffffff, #eef7ff);
}

.service-detail-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,.88), rgba(255,255,255,.35));
  pointer-events: none;
}

.service-detail-hero .container,
.service-detail-body .container {
  position: relative;
  z-index: 2;
}

.service-back-link,
.service-detail-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 900;
}

.service-back-link {
  margin-bottom: 22px;
  color: var(--durban-blue);
}

.service-detail-kicker {
  padding: 10px 16px;
  margin-bottom: 18px;
  color: var(--durban-navy);
  background: rgba(11,132,229,.10);
  border: 1px solid rgba(11,132,229,.18);
  border-radius: 10px;
}

.service-detail-kicker i {
  color: var(--durban-gold);
  font-size: 20px;
}

.service-detail-hero h1 {
  max-width: 720px;
  margin: 0 0 22px;
  color: var(--durban-navy);
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1.04;
  font-weight: 900;
  letter-spacing: 0;
}

.service-detail-hero p {
  max-width: 680px;
  color: #5c6b7e;
  font-size: 19px;
  line-height: 1.75;
}

.service-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.service-detail-image {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(11,132,229,.16);
  box-shadow: 0 28px 80px rgba(6,31,82,.18);
}

.service-detail-image img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  transform: scale(1.02);
}

.service-detail-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6,31,82,.05), rgba(6,31,82,.55));
}

.service-detail-image-card {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  border-radius: 14px;
  color: #ffffff;
  background: rgba(6,31,82,.88);
  backdrop-filter: blur(12px);
}

.service-detail-image-card i {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: var(--durban-gold);
  background: var(--durban-blue);
  font-size: 24px;
}

.service-detail-image-card strong,
.service-detail-image-card span {
  display: block;
}

.service-detail-image-card strong {
  font-size: 20px;
}

.service-detail-image-card span {
  color: #dbe8ff;
}

.service-detail-body {
  padding: 72px 0 86px !important;
}

.service-detail-panel,
.service-request-band,
.service-process-card {
  border: 1px solid rgba(11,132,229,.12);
  background: #ffffff;
  box-shadow: 0 18px 46px rgba(6,31,82,.10);
}

.service-detail-panel {
  height: 100%;
  padding: 34px;
  border-radius: 16px;
}

.service-detail-panel > span,
.service-request-band span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--durban-blue);
  font-weight: 900;
}

.service-detail-panel h2,
.service-request-band h2 {
  margin-bottom: 16px;
  color: var(--durban-navy);
  font-weight: 900;
  letter-spacing: 0;
}

.service-detail-panel p {
  color: #5c6b7e;
  font-size: 17px;
  line-height: 1.8;
}

.accent-panel {
  background: linear-gradient(135deg, #ffffff, #f0f8ff);
}

.service-detail-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.service-detail-list li {
  display: flex;
  gap: 10px;
  padding: 10px 0;
  color: #44546a;
  font-weight: 700;
}

.service-detail-list i {
  color: var(--durban-blue);
  font-size: 20px;
  flex: 0 0 auto;
}

.service-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.service-process-card {
  padding: 24px;
  border-radius: 14px;
  transition: transform .28s ease, box-shadow .28s ease;
}

.service-process-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 58px rgba(6,31,82,.14);
}

.service-process-card strong {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 10px;
  color: var(--durban-navy);
  background: var(--durban-gold);
  font-weight: 900;
}

.service-process-card p {
  margin: 0;
  color: #5c6b7e;
  line-height: 1.65;
  font-weight: 700;
}

.service-request-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 32px;
  padding: 34px;
  border-radius: 16px;
  background:
    radial-gradient(circle at 90% 20%, rgba(244,176,0,.18), transparent 24%),
    linear-gradient(135deg, var(--durban-navy), var(--durban-deep-blue));
}

.service-request-band h2,
.service-request-band p {
  color: #ffffff;
}

.service-request-band p {
  margin: 0;
  color: #dbe8ff;
}

.service-request-band span {
  color: var(--durban-gold);
}

body.dark-mode.service-detail-page {
  background: #071426;
}

body.dark-mode .service-detail-hero {
  background:
    radial-gradient(circle at 84% 18%, rgba(244,176,0,.12), transparent 28%),
    radial-gradient(circle at 12% 70%, rgba(11,132,229,.18), transparent 30%),
    linear-gradient(135deg, #071426, #081a31) !important;
}

body.dark-mode .service-detail-hero::before {
  background: linear-gradient(90deg, rgba(7,20,38,.82), rgba(8,26,49,.42));
}

body.dark-mode .service-detail-hero h1,
body.dark-mode .service-detail-panel h2 {
  color: #ffffff;
}

body.dark-mode .service-detail-hero p,
body.dark-mode .service-detail-panel p,
body.dark-mode .service-detail-list li,
body.dark-mode .service-process-card p {
  color: #cfe1ff;
}

body.dark-mode .service-detail-panel,
body.dark-mode .service-process-card {
  background: #0c1f3b;
  border-color: rgba(255,255,255,.08);
  box-shadow: 0 22px 55px rgba(0,0,0,.28);
}

body.dark-mode .accent-panel {
  background: linear-gradient(135deg, #0c1f3b, #09284b);
}

@media (max-width: 991px) {
  .service-detail-hero {
    padding: 125px 0 56px !important;
  }

  .service-detail-image,
  .service-detail-image img {
    min-height: 420px;
  }

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

  .service-request-band {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 576px) {
  .service-detail-hero h1 {
    font-size: 38px;
  }

  .service-detail-actions,
  .service-detail-actions a,
  .service-request-band a {
    width: 100%;
  }

  .service-detail-image,
  .service-detail-image img {
    min-height: 340px;
  }

  .service-detail-image-card {
    left: 16px;
    right: 16px;
    bottom: 16px;
    padding: 16px;
  }

  .service-detail-panel,
  .service-request-band {
    padding: 24px;
  }

  .service-process-grid {
    grid-template-columns: 1fr;
  }
}

/* ================= CLIENT LOGOS FINAL ================= */
.durban-clients-slider .premium-client-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.durban-clients-slider .premium-client-card img {
  width: min(170px, 78%);
  height: 82px;
  max-height: 82px;
  object-fit: contain;
  margin-bottom: 22px;
}

.durban-clients-slider .premium-client-card h4 {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.durban-clients-slider .premium-client-card span {
  display: block;
  min-height: 38px;
  text-align: center;
}

body.dark-mode .durban-clients-slider .premium-client-card img {
  filter: none;
  opacity: 1;
}

@media (max-width: 768px) {
  .durban-clients-slider .premium-client-card {
    min-height: 235px;
    padding: 26px 20px;
  }

  .durban-clients-slider .premium-client-card img {
    height: 72px;
    max-height: 72px;
  }
}

@media (max-width: 480px) {
  .durban-clients-slider .premium-client-card {
    min-height: 220px;
  }

  .durban-clients-slider .premium-client-card img {
    width: min(150px, 82%);
    height: 66px;
    max-height: 66px;
  }
}

/* ================= POST DETAIL PAGE ================= */
.post-detail-page {
  background: #f7fbff;
}

.post-detail-hero {
  position: relative;
  padding: 155px 0 72px !important;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 18%, rgba(244,176,0,.14), transparent 28%),
    radial-gradient(circle at 10% 72%, rgba(11,132,229,.12), transparent 30%),
    linear-gradient(135deg, #ffffff, #eef7ff);
}

.post-detail-category {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 9px 14px;
  margin-bottom: 18px;
  border-radius: 9px;
  color: var(--durban-blue);
  background: rgba(11,132,229,.10);
  border: 1px solid rgba(11,132,229,.16);
  font-weight: 900;
}

.post-detail-hero h1 {
  max-width: 740px;
  margin: 0 0 22px;
  color: var(--durban-navy);
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1.06;
  font-weight: 900;
  letter-spacing: 0;
}

.post-detail-hero p {
  max-width: 680px;
  color: #5c6b7e;
  font-size: 19px;
  line-height: 1.75;
}

.post-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.post-detail-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--durban-navy);
  font-weight: 800;
}

.post-detail-meta i {
  color: var(--durban-gold);
}

.post-detail-image {
  height: 520px;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(11,132,229,.16);
  box-shadow: 0 28px 80px rgba(6,31,82,.18);
}

.post-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-detail-body {
  padding: 72px 0 86px !important;
}

.post-detail-article {
  max-width: 920px;
  margin: 0 auto;
  padding: 42px;
  border-radius: 18px;
  color: #44546a;
  background: #ffffff;
  box-shadow: 0 18px 50px rgba(6,31,82,.10);
  border: 1px solid rgba(11,132,229,.10);
  font-size: 18px;
  line-height: 1.9;
  font-weight: 500;
  white-space: normal;
}

body.dark-mode.post-detail-page {
  background: #071426;
}

body.dark-mode .post-detail-hero {
  background:
    radial-gradient(circle at 84% 18%, rgba(244,176,0,.12), transparent 28%),
    radial-gradient(circle at 12% 70%, rgba(11,132,229,.18), transparent 30%),
    linear-gradient(135deg, #071426, #081a31) !important;
}

body.dark-mode .post-detail-hero h1,
body.dark-mode .post-detail-meta span {
  color: #ffffff;
}

body.dark-mode .post-detail-hero p,
body.dark-mode .post-detail-article {
  color: #cfe1ff;
}

body.dark-mode .post-detail-article {
  background: #0c1f3b;
  border-color: rgba(255,255,255,.08);
  box-shadow: 0 22px 55px rgba(0,0,0,.28);
}

@media (max-width: 991px) {
  .post-detail-hero {
    padding: 125px 0 56px !important;
  }

  .post-detail-image {
    height: 420px;
  }
}

@media (max-width: 576px) {
  .post-detail-hero h1 {
    font-size: 36px;
  }

  .post-detail-image {
    height: 320px;
  }

  .post-detail-article {
    padding: 26px;
    font-size: 16px;
    line-height: 1.8;
  }
}

/* ================= CLIENT LOGO CROP FIX ================= */
.clients .swiper,
.durban-clients-slider {
  padding: 10px 0 56px !important;
}

.durban-clients-slider .swiper-wrapper {
  align-items: stretch !important;
}

.durban-clients-slider .swiper-slide,
body.dark-mode .clients .swiper-slide,
body.dark-mode .durban-clients-slider .swiper-slide {
  height: auto !important;
  min-height: 0 !important;
  padding: 0 !important;
  display: flex !important;
  align-items: stretch !important;
  background: transparent !important;
  box-shadow: none !important;
  overflow: visible !important;
}

.durban-clients-slider .premium-client-card {
  width: 100%;
  height: 310px !important;
  min-height: 310px !important;
  padding: 30px 24px 26px !important;
  overflow: hidden;
}

.durban-clients-slider .premium-client-card img,
body.dark-mode .clients .swiper-slide img,
body.dark-mode .durban-clients-slider .swiper-slide img {
  display: block !important;
  width: min(210px, 86%) !important;
  height: 112px !important;
  max-height: 112px !important;
  object-fit: contain !important;
  object-position: center !important;
  margin: 0 auto 24px !important;
  opacity: 1 !important;
  filter: none !important;
  flex: 0 0 auto;
}

.durban-clients-slider .premium-client-card h4 {
  margin-top: auto;
}

@media (max-width: 768px) {
  .durban-clients-slider .premium-client-card {
    height: 280px !important;
    min-height: 280px !important;
  }

  .durban-clients-slider .premium-client-card img,
  body.dark-mode .clients .swiper-slide img,
  body.dark-mode .durban-clients-slider .swiper-slide img {
    height: 96px !important;
    max-height: 96px !important;
  }
}

@media (max-width: 480px) {
  .durban-clients-slider .premium-client-card {
    height: 260px !important;
    min-height: 260px !important;
  }

  .durban-clients-slider .premium-client-card img,
  body.dark-mode .clients .swiper-slide img,
  body.dark-mode .durban-clients-slider .swiper-slide img {
    width: min(180px, 88%) !important;
    height: 86px !important;
    max-height: 86px !important;
  }
}

/* ================= CONTENT CMS FINAL ================= */
.hero-carousel-card.has-captions .hero-floating-card.bottom-card {
  bottom: 132px !important;
}

.hero-caption-strip {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 26px;
  z-index: 6;
  min-height: 68px;
  pointer-events: none;
}

.hero-slide-caption {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  max-width: 62%;
  padding: 14px 18px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .45s ease, transform .45s ease;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 16px;
  background: rgba(7,31,68,.78);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 45px rgba(6,31,82,.22);
}

.hero-slide-caption.active {
  opacity: 1;
  transform: translateY(0);
}

.hero-slide-caption strong {
  color: #ffffff;
  font-size: clamp(16px, 1.4vw, 22px);
  font-weight: 900;
  line-height: 1.15;
}

.hero-slide-caption span {
  color: #d8e8ff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
}

.hero-carousel-card.has-captions .hero-slide-dots {
  left: auto !important;
  right: 32px !important;
  bottom: 48px !important;
}

.careers-openings-grid {
  display: grid;
  gap: 16px;
  align-content: start;
}

.career-opening-card {
  padding: 24px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(11,132,229,.12);
  box-shadow: 0 18px 45px rgba(6,31,82,.08);
}

.career-opening-card > span {
  display: inline-flex;
  padding: 6px 11px;
  border-radius: 999px;
  color: var(--durban-blue);
  background: rgba(11,132,229,.10);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.career-opening-card h4 {
  margin: 12px 0 8px;
  color: var(--durban-navy);
  font-size: 20px;
  font-weight: 900;
}

.career-opening-card p {
  margin: 0;
  color: #64748b;
  line-height: 1.65;
}

.career-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin-top: 16px;
}

.career-meta small {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #64748b;
  font-weight: 800;
}

.career-opening-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--durban-blue), var(--durban-deep-blue));
  padding: 11px 16px;
  border-radius: 12px;
  font-weight: 900;
}

body.dark-mode .career-opening-card {
  background: #0c1f3b;
  border-color: rgba(255,255,255,.08);
}

body.dark-mode .career-opening-card h4 {
  color: #ffffff;
}

body.dark-mode .career-opening-card p,
body.dark-mode .career-meta small {
  color: #cfe1ff;
}

@media (max-width: 991px) {
  .hero-carousel-card.has-captions .hero-floating-card.bottom-card {
    bottom: 104px !important;
  }

  .hero-slide-caption {
    max-width: 78%;
  }
}

@media (max-width: 575px) {
  .hero-caption-strip {
    left: 16px;
    right: 16px;
    bottom: 16px;
    min-height: 62px;
  }

  .hero-slide-caption {
    max-width: calc(100% - 92px);
    padding: 12px 14px;
  }

  .hero-slide-caption span {
    display: none;
  }

  .hero-carousel-card.has-captions .hero-slide-dots {
    right: 22px !important;
    bottom: 38px !important;
  }
}

.career-detail-panel {
  padding: clamp(26px, 4vw, 42px);
  border-radius: 20px;
  color: #ffffff;
  background:
    radial-gradient(circle at 85% 15%, rgba(244,176,0,.30), transparent 12rem),
    linear-gradient(135deg, var(--durban-navy), var(--durban-deep-blue));
  box-shadow: 0 28px 80px rgba(6,31,82,.18);
}

.career-detail-panel > i {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin-bottom: 18px;
  border-radius: 16px;
  color: var(--durban-gold);
  background: rgba(255,255,255,.12);
  font-size: 28px;
}

.career-detail-panel h2 {
  color: #ffffff;
  font-weight: 900;
  margin-bottom: 12px;
}

.career-detail-panel p {
  color: #d8e8ff;
  line-height: 1.75;
  margin-bottom: 22px;
}

/* ================= FINAL COOKIE + FLOATING LAYER FIX ================= */
.durban-cookie-banner {
  position: fixed !important;
  left: 50% !important;
  right: auto !important;
  bottom: 22px !important;
  transform: translateX(-50%) !important;
  width: min(880px, calc(100vw - 32px)) !important;
  max-width: none !important;
  z-index: 30000 !important;
  border-radius: 8px !important;
  padding: 14px 16px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 14px !important;
  background: rgba(255, 255, 255, .98) !important;
  border: 1px solid rgba(9, 39, 93, .14) !important;
  box-shadow: 0 18px 44px rgba(6, 31, 82, .20) !important;
}

.durban-cookie-close {
  position: absolute !important;
  top: 8px !important;
  right: 10px !important;
  width: 30px !important;
  height: 30px !important;
  display: grid !important;
  place-items: center !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 6px !important;
  color: var(--durban-navy) !important;
  background: rgba(9, 39, 93, .08) !important;
  font-size: 22px !important;
  line-height: 1 !important;
  box-shadow: none !important;
}

.durban-cookie-banner p {
  color: #21324d !important;
  font-weight: 650 !important;
  line-height: 1.45 !important;
  margin: 0 !important;
  padding-right: 34px !important;
}

.durban-cookie-banner div {
  display: flex !important;
  gap: 8px !important;
  flex: 0 0 auto !important;
}

.durban-cookie-banner button {
  border-radius: 6px !important;
  padding: 9px 14px !important;
  font-size: 14px !important;
  line-height: 1 !important;
}

.durban-cookie-banner button[data-cookie-choice="accepted"] {
  background: var(--durban-blue) !important;
  color: #fff !important;
}

.durban-cookie-banner button[data-cookie-choice="declined"] {
  background: #fff !important;
  color: var(--durban-navy) !important;
}

.durban-cookie-banner .durban-cookie-close {
  position: absolute !important;
  top: 8px !important;
  right: 10px !important;
  width: 30px !important;
  height: 30px !important;
  flex: 0 0 auto !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 6px !important;
  color: var(--durban-navy) !important;
  background: rgba(9, 39, 93, .08) !important;
  font-size: 22px !important;
  line-height: 1 !important;
}

body.dark-mode .durban-cookie-banner {
  background: rgba(8, 23, 44, .98) !important;
  border-color: rgba(255, 255, 255, .12) !important;
}

body.dark-mode .durban-cookie-banner p {
  color: #e6f0ff !important;
}

.whatsapp-float,
.durban-assistant,
.scroll-top {
  z-index: 9000 !important;
}

@media (max-width: 768px) {
  .durban-cookie-banner {
    bottom: 14px !important;
    width: calc(100vw - 24px) !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 11px !important;
    padding: 13px !important;
  }

  .durban-cookie-banner p {
    font-size: 13px !important;
  }

  .durban-cookie-banner div {
    width: 100% !important;
  }

  .durban-cookie-banner button {
    flex: 1 1 0 !important;
  }
}

.durban-ad-image {
  width: 86px;
  height: 64px;
  object-fit: cover;
  border-radius: 8px;
  flex: 0 0 auto;
  background: #eef4fb;
}

.durban-ad-popup .durban-ad-image,
.durban-ad-sidebar .durban-ad-image {
  width: 100%;
  height: 150px;
  margin-bottom: 12px;
}

.durban-ad-footer .durban-ad-image {
  width: 100%;
  height: 120px;
}

.durban-gallery-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.durban-gallery-card .gallery-lightbox-link,
.durban-gallery-card img {
  display: block;
  width: 100%;
  height: 100%;
}

.durban-gallery-card img {
  object-fit: cover;
}

.gslide-image img {
  max-width: min(92vw, 1080px) !important;
  max-height: 78vh !important;
  object-fit: contain !important;
}

.php-email-form .sent-message,
.php-email-form .error-message {
  position: fixed !important;
  left: 50% !important;
  top: 50% !important;
  transform: translate(-50%, -50%) !important;
  z-index: 10080 !important;
  width: min(460px, calc(100vw - 32px)) !important;
  border-radius: 10px !important;
  padding: 16px 18px !important;
  box-shadow: 0 22px 60px rgba(6,31,82,.22) !important;
  text-align: center !important;
  font-weight: 800 !important;
}

@media (max-width: 768px) {
  .durban-ad-banner {
    align-items: stretch !important;
  }

  .durban-ad-banner .durban-ad-image {
    width: 100%;
    height: 130px;
  }
}

/* ================= FINAL ADS + CAREER ATTACHMENT OVERRIDES ================= */
.durban-ad-banner {
  top: 92px !important;
  left: 50% !important;
  right: auto !important;
  bottom: auto !important;
  transform: translateX(-50%) !important;
  width: min(880px, calc(100% - 28px)) !important;
  border-radius: 8px !important;
  padding: 14px 54px 14px 14px !important;
  z-index: 1200 !important;
  display: grid !important;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center !important;
  gap: 14px !important;
  overflow: visible !important;
}

.durban-ad-banner .durban-ad-image {
  width: 92px !important;
  height: 64px !important;
  border-radius: 6px !important;
  object-fit: cover;
}

.durban-ad-banner > div {
  min-width: 0;
}

.durban-ad-banner span {
  display: block;
  line-height: 1.45;
}

.durban-ad-close {
  position: absolute !important;
  top: 8px !important;
  right: 8px !important;
  z-index: 3;
  display: grid !important;
  place-items: center;
  width: 34px !important;
  height: 34px !important;
  border: 0 !important;
  border-radius: 6px !important;
  color: var(--durban-navy) !important;
  background: #eef4fb !important;
  font-size: 22px !important;
  line-height: 1 !important;
  box-shadow: none !important;
}

.durban-ad-backdrop {
  position: fixed;
  inset: 0;
  z-index: 2500;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(3, 18, 43, .52);
  backdrop-filter: blur(4px);
}

.durban-ad-backdrop .durban-ad-popup {
  position: relative !important;
  inset: auto !important;
  width: min(480px, 100%);
  max-height: min(720px, calc(100vh - 36px));
  overflow: auto;
  border-radius: 8px !important;
  padding: 24px;
  z-index: 1;
}

.durban-ad-popup .ad-popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 6px;
  color: var(--durban-navy);
  background: #eef4fb;
  font-size: 22px;
  line-height: 1;
}

.durban-ad-cta {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-width: max-content;
  width: fit-content;
  gap: 8px;
  color: var(--durban-navy) !important;
  background: var(--durban-gold) !important;
  border: 0 !important;
  border-radius: 6px !important;
  padding: 10px 16px !important;
  font-weight: 900 !important;
  line-height: 1.1 !important;
  text-decoration: none;
  opacity: 1 !important;
  visibility: visible !important;
  box-shadow: 0 12px 24px rgba(244, 176, 0, .24);
  white-space: nowrap;
}

.durban-ad-cta:hover {
  color: #ffffff !important;
  background: var(--durban-blue) !important;
  transform: translateY(-1px);
}

.durban-ad-backdrop .durban-ad-image {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-radius: 6px;
}

.durban-ad-popup a,
.durban-ad-banner a {
  border-radius: 6px !important;
}

.durban-ad-banner {
  max-width: min(1080px, calc(100vw - 32px)) !important;
  grid-template-columns: auto minmax(0, 1fr) auto !important;
  left: 50% !important;
  right: auto !important;
  transform: translateX(-50%) !important;
}

.durban-ad-banner .ad-popup-close {
  position: absolute !important;
  top: 8px !important;
  right: 8px !important;
  align-self: auto;
  justify-self: auto;
  margin-left: 0;
}

.durban-cookie-banner {
  z-index: 2600 !important;
  border-radius: 8px !important;
}

body.dark-mode .durban-ad-backdrop .durban-ad-popup {
  background: #0c1f3b;
}

.career-attachment-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  color: #ffffff;
  border: 1px solid rgba(255,255,255,.32);
  border-radius: 8px;
  padding: 12px 16px;
  font-weight: 900;
  text-decoration: none;
}

.career-attachment-btn:hover {
  color: var(--durban-navy);
  background: var(--durban-gold);
  border-color: var(--durban-gold);
}

@media (max-width: 768px) {
  .durban-ad-banner {
    top: 76px !important;
    width: calc(100% - 24px) !important;
    grid-template-columns: 1fr !important;
    align-items: stretch !important;
    padding: 44px 12px 12px !important;
  }

  .durban-ad-banner .durban-ad-image {
    width: 100% !important;
    height: 135px !important;
  }

  .durban-ad-banner .durban-ad-cta {
    width: 100%;
  }

  .durban-ad-banner .ad-popup-close {
    position: absolute !important;
    top: 10px;
    right: 10px;
  }

  .durban-ad-backdrop .durban-ad-popup {
    padding: 48px 20px 20px;
  }

  .durban-ad-backdrop .durban-ad-image {
    height: 170px;
  }
}
