

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/

:root {
  scroll-padding-top: 100px; /* Adjust based on your header height */
}


/* Fonts */
:root {
  --default-font: "Karla", 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: "Francois One", "Lato", sans-serif;
  --nav-font: "Karla", 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: #F4F5F7; /* Light neutral background for a modern, clean feel */
  --default-color: #687095; /* Muted Blue-Grey for the majority of text, ensuring readability */
  --heading-color: #232C65; /* Deep Blue for strong, authoritative headings */
  --accent-color: #B53028; /* Deep Red for bold accents such as buttons, links, and CTAs */
  --surface-color: #D1DCE3; /* Soft Blue-Grey as a subtle background for boxed elements and cards */
  --contrast-color: #FFFFFF; /* White for high contrast text on dark backgrounds or bold elements */
}
}

/* 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: #212529;  /* The default color of the main navmenu links */
  --nav-hover-color: #f03c02; /* 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: #E1E5EA; /* 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: #f03c02; /* 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 Section */
.light-background {
  --background-color: #FFFFFF; /* Classic clean white for section backgrounds */
  --surface-color: #E1E5EA; /* Soft Grey for subtle contrast within white sections */
}

.dark-background {
  --background-color: #1E2A47;
  --default-color: #F4F5F7;
  --heading-color: #D1DCE3;
  --surface-color: #5A647A;
  --contrast-color: #B53028;
}

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

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

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

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

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

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

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

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

/* 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);
  transition: all 0.5s;
  z-index: 997;
  background-color: var(--background-color);
}

.header .topbar {
  background-color: var(--background-color);
  height: 40px;
  padding: 0;
  font-size: 14px;
  transition: all 0.5s;
}

.header .topbar .contact-info i {
  font-style: normal;
  color: var(--accent-color);
}

.header .topbar .contact-info i a,
.header .topbar .contact-info i span {
  padding-left: 5px;
  color: var(--default-color);
}

@media (max-width: 575px) {

  .header .topbar .contact-info i a,
  .header .topbar .contact-info i span {
    font-size: 13px;
  }
}

.header .topbar .contact-info i a {
  line-height: 0;
  transition: 0.3s;
  color: var(--default-color);
}

.header .topbar .contact-info i a:hover {
  color: var(--default-color);
  text-decoration: underline;
}

.header .topbar .social-links a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  line-height: 0;
  transition: 0.3s;
  margin-left: 20px;
}

.header .topbar .social-links a:hover {
  color: var(--accent-color);
}

.header .branding {
  min-height: 60px;
  padding: 10px 0;
}

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

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

.header .logo h1 {
  font-size: 28px;
  margin: 0;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--heading-color);
}

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

.scrolled .header .topbar {
  height: 0;
  visibility: hidden;
  overflow: hidden;
}

/*--------------------------------------------------------------
# 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: 13px;
    font-family: var(--nav-font);
    font-weight: 500;
    text-transform: uppercase;
    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: #E1E5EA;
    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;
  }

  .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: #E1E5EA;
    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;
  }
}

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

.footer .footer-top {
  background-color: color-mix(in srgb, var(--background-color), white 5%);
  padding-top: 50px;
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}

.footer h4 {
  font-size: 16px;
  font-weight: 600;
  position: relative;
  padding-bottom: 12px;
  margin-bottom: 15px;
}

.footer h4::after {
  content: "";
  position: absolute;
  display: block;
  width: 20px;
  height: 2px;
  background: var(--accent-color);
  bottom: 0;
  left: 0;
}

.footer .footer-links {
  margin-bottom: 30px;
}

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

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: inline-block;
  line-height: 1;
}

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

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

.footer .copyright {
  padding: 30px 0;
}

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

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

.footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: color-mix(in srgb, var(--default-color), transparent 90%);
  color: var(--contrast-color);
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

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

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: var(--background-color);
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

#preloader div {
  width: 4px;
  height: 40px;
  background-color: var(--accent-color);
  margin: 0 4px;
}

#preloader div:nth-child(1) {
  animation: animate-preloader 1s ease-in-out -0.45s infinite;
}

#preloader div:nth-child(2) {
  animation: animate-preloader 1s ease-in-out -0.3s infinite;
}

#preloader div:nth-child(3) {
  animation: animate-preloader 1s ease-in-out -0.15s infinite;
}

#preloader div:nth-child(4) {
  animation: animate-preloader 1s infinite;
}

@keyframes animate-preloader {

  0%,
  100% {
    transform: scaleY(0.3);
  }

  50% {
    transform: scaleY(1);
  }
}

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

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

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

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

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

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

@media (max-width: 1199px) {

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

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

/* Mobile adjustment: tighter section title spacing */
@media (max-width: 768px) {
  .section-title {
    padding-bottom: 1px !important;
  }
}
.section-title h2 {
  font-size: 2rem;
  font-weight: 700;
  position: relative;
}






.section-title h2:before,
.section-title h2:after {
  content: "";
  width: 50px;
  height: 2px;
  background: var(--accent-color);
  display: inline-block;
}

.section-title h2:before {
  margin: 0 15px 10px 0;
}

.section-title h2:after {
  margin: 0 0 10px 15px;
}

.section-title p {
  margin-bottom: 0;
}


.section-title h2 {
  font-size: clamp(2.5rem, 4vw, 3rem) !important;
  font-weight: 700 !important;
  position: relative !important;
}

/* Mobile adjustment (screens 575px and below) */
@media (max-width: 575.98px) {
  .section-title h2 {
    font-size: 1.5rem !important;
  }
}

/* Hide pseudo-elements on mobile (575px and below) */
@media (max-width: 575.98px) {
  .section-title h2:before,
  .section-title h2:after {
    display: none !important;
  }
}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  padding: 0;
}

.hero .carousel {
  width: 100%;
  min-height: 70vh;
  padding: 0;
  margin: 0;
  position: relative;
}

@media (max-height: 500px),
(max-width: 580px) {
  .hero .carousel {
    min-height: 100vh;
  }
}

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

.hero .carousel-item {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

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

.hero .container {
  position: relative;
  text-align: center;
  background: color-mix(in srgb, var(--background-color), transparent 40%);
  padding-top: 30px;
  padding-bottom: 30px;
  margin-bottom: 50px;
  border-top: 4px solid var(--accent-color);
  z-index: 3;
}

@media (max-width: 1200px) {
  .hero .container {
    margin-left: 50px;
    margin-right: 50px;
  }
}

.hero h1 {
  margin-bottom: 20px !important;
  font-weight: 800 !important;
  line-height: 1.15 !important;
  font-size: clamp(1.875rem, 3.2vw, 3rem) !important;
  color: #ffffff !important;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6) !important;
  letter-spacing: 0.5px !important;
}


.hero h2 {
  /* Typography */
  font-family: "Karla", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif !important;
  font-weight: 400 !important;
  line-height: 1.4 !important;
  font-size: clamp(1.125rem, 1.6vw, 1.5rem) !important; /* ~18px → fluid → ~24px */
  color: #ffffff !important;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6) !important;

  /* Layout & spacing */
  max-width: clamp(46ch, 60vw, 68ch) !important; /* readable line length */
  margin-inline: auto !important;                /* center the block */
  padding-inline: clamp(0.5rem, 1vw, 1rem) !important; /* inner space on left/right */
  margin-bottom: 1.5rem !important;               /* space below before button */

  /* Polished wrapping for better balance */
  text-wrap: balance;
}


.hero .btn-get-started {
  font-weight: 500 !important;
  font-size: clamp(1rem, 1.5vw, 1.125rem) !important; /* ~16px → ~18px max */
  letter-spacing: 1px !important;
  display: inline-block !important;
  padding: 10px 36px !important; /* slightly larger padding for balance */
  margin: 10px !important;
  border-radius: 4px !important;
  color: #F4F5F7 !important;
  border: 2px solid #F4F5F7 !important;
  background: transparent !important;
  transition: background-color 0.5s ease, transform 0.3s ease !important;

  /* Subtle pulse animation */
  animation: pulse-glow 4s ease-in-out infinite;
}

.hero .btn-get-started:hover {
  background: var(--accent-color) !important;
  transform: scale(1.05); /* Slight grow on hover */
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 0 rgba(255, 255, 255, 0.0);
  }
  70% {
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.4);
  }
}


.hero .carousel-control-prev {
  justify-content: start;
}

@media (min-width: 640px) {
  .hero .carousel-control-prev {
    padding-left: 15px;
  }
}

.hero .carousel-control-next {
  justify-content: end;
}

@media (min-width: 640px) {
  .hero .carousel-control-next {
    padding-right: 15px;
  }
}

.hero .carousel-control-next-icon,
.hero .carousel-control-prev-icon {
  background: none;
  font-size: 26px;
  line-height: 0;
  background: color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 50px;
  color: var(--contrast-color);
  transition: 0.3s;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero .carousel-control-prev,
.hero .carousel-control-next {
  transition: 0.3s;
  opacity: 0.5;
}

.hero .carousel-control-prev:focus,
.hero .carousel-control-next:focus {
  opacity: 0.5;
}

.hero .carousel-control-prev:hover,
.hero .carousel-control-next:hover {
  opacity: 0.9;
}

.hero .carousel-control-prev:hover .carousel-control-next-icon,
.hero .carousel-control-prev:hover .carousel-control-prev-icon,
.hero .carousel-control-next:hover .carousel-control-next-icon,
.hero .carousel-control-next:hover .carousel-control-prev-icon {
  background: var(--accent-color);
  color: var(--default-color);
}

.hero .carousel-indicators li {
  cursor: pointer;
  background: var(--default-color);
  overflow: hidden;
  border: 0;
  width: 12px;
  height: 12px;
  border-radius: 50px;
  opacity: 0.6;
  transition: 0.3s;
}

.hero .carousel-indicators li.active {
  opacity: 1;
  background: var(--accent-color);
}


  /* 1. Adjust button to avoid overlap with indicators */
  .btn-get-started {
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
    bottom: 1.25rem;
    position: relative;
    margin-top: 1rem;
  }


  /* 2. Prevent subheading wrapping into dividers */
  .carousel-container h4 {
    font-size: 1rem;
    line-height: 1.4;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1rem;
    text-align: center;
  }

    /* 3. Shrink carousel nav arrows slightly */
  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    width: 1.75rem;
    height: 1.75rem;
  }

  /* 4. Tighten vertical spacing in carousel container */
  .carousel-container {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  /* 5. Ensure indicators are above fold and visible */
  .carousel-indicators {
    bottom: 0.5rem !important;
  }
}




/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  padding: 50px 0;
  position: relative;
  clip-path: inset(0);
}

.call-to-action .container {
  position: relative;
  z-index: 3;
}

.call-to-action h3 {
  color: var(--default-color);
  font-size: 28px;
  font-weight: 700;
}

.call-to-action p {
  color: var(--default-color);
}

.call-to-action .cta-btn {
  background-color: var(--surface-color);
  color: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 4px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid var(--accent-color);
}

.call-to-action .cta-btn:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}
}

/* Default (desktop) */
.hero .carousel {
  width: 100%;
  min-height: 70vh;
  padding: 0;
  margin: 0;
  position: relative;
}

/* Mobile adjustment */
@media (max-width: 576px) {
  .hero .carousel {
    min-height: 50vh; /* or 60vh, depending on how compact you want it */
  }
}


/*--------------------------------------------------------------
# Our Properties Section (with rem units)
--------------------------------------------------------------*/
.our-properties article {
  background-color: var(--surface-color);
  box-shadow: 0 0.125rem 1.25rem rgba(0, 0, 0, 0.1); /* 2px, 20px */
  transition: all 0.3s ease;
  cursor: pointer;
}

.our-properties .post-img img {
  transition: 0.5s;
}

.our-properties .post-date {
  background-color: var(--accent-color);
  color: whitesmoke;
  position: absolute;
  right: 0;
  bottom: 0;
  text-transform: uppercase;
  font-size: 0.8125rem; /* 13px */
  padding: 0.375rem 0.75rem; /* 6px 12px */
  font-weight: 500;
}

.our-properties .post-content {
  padding: 1.875rem; /* 30px */
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.our-properties .post-title {
  font-size: 1.25rem; /* 20px */
  color: var(--heading-color);
  font-weight: 700;
  transition: 0.3s;
  margin-bottom: 0.9375rem; /* 15px */
}

.our-properties .meta i {
  font-size: 1rem; /* 16px */
  color: var(--accent-color);
}


.our-properties p {
  margin-top: 0.3125rem; /* 5px */
}

.our-properties hr {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  margin-bottom: 0.9375rem; /* 15px */
}

.our-properties .readmore {
  display: flex;
  align-items: center;
  font-weight: 600;
  line-height: 1;
  transition: 0.8s;
  color: color-mix(in srgb, var(--heading-color), transparent 20%);
}

.our-properties .readmore i {
  line-height: 0;
  margin-left: 0.375rem; /* 6px */
  font-size: 1rem; /* 16px */
}

/* Default “hover” effect applied all the time */
.our-properties article {
  box-shadow: 0 0.5rem 1.875rem rgba(0, 0, 0, 0.15); /* 8px 30px */
  transform: translateY(-0.3125rem); /* -5px */
}

.our-properties .post-title,
.our-properties .readmore {
  color: var(--default-color);
}

.our-properties .post-img img {
  transform: scale(1.1);
}

.our-properties .post-content p {
  flex-grow: 1;
}

@media (max-width: 768px) {
  .our-properties .post-content {
    padding: 1.25rem; /* 20px */
  }
}

/* Hide desktop block on small screens */
@media (max-width: 768px) {
  .desktop-only {
    display: none !important;
  }
}

/* Hide mobile block on medium+ screens */
@media (min-width: 769px) {
  .mobile-only {
    display: none !important;
  }
}



#our-properties {
  background-color: color-mix(in srgb, var(--background-color), white 15%) !important;
  padding: 3rem 0;
}

#our-properties .post-img {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.25);
}



/* Our Properties — make the ribbon always visible and above the image */
#our-properties .post-img {
  position: relative !important; /* ensure a positioning context */
}

#our-properties .post-img img {
  display: block !important;      /* remove inline-gap issues */
  width: 100% !important;
  height: auto !important;
}


.our-properties {
  background: linear-gradient(to bottom, #465270, #38425a) !important;
  padding: 3rem 0; /* keeps spacing consistent */
}

.our-properties .card {
  background: #3a4359 !important;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}


/* Make property images more vertical */
.properties-description .property-img {
  flex: 0 0 45%; /* keeps image portion narrower than text */
  max-width: 45%;
}

.properties-description .property-img img {
  width: 100%;
  height: 350px !important; /* adjust for how tall you want them */
  object-fit: cover; /* crop instead of squish */
  border-radius: 8px !important; /* match style */
}

.properties-description .property-img img {
  aspect-ratio: 3 / 4; /* vertical look */
  height: auto;
  object-fit: cover;
  border-radius: 8px !important;
}

/* Scoped hover style for Properties section only */
.properties-description a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%) !important;
  text-decoration: none !important;
}

/* Keep original hover color for headings inside property cards */
.properties-description .property-content a:hover h3 {
  color: var(--default-color) !important;
}

/* === SERVICES: Mobile Typography Tweaks === */
@media (max-width: 768px) {
  #services h2 {
    font-size: 2.2rem !important; /* larger than desktop for visual punch */
    line-height: 1 !important;
  }

  .desktop-only {
    display: none !important;
  }
}

@media (min-width: 769px) {
  .mobile-only {
    display: none !important;
  }
}

/* Mobile-specific text tweaks (forced) */
.mobile-section-heading {
  font-size: 2rem !important;
  font-weight: 700 !important;
  text-align: center !important;
  margin-bottom: 0.75rem !important;
}

.mobile-section-description {
  font-size: 1rem !important;
  text-align: center !important;
  max-width: 480px !important;
  margin: 0 auto 1.5rem auto !important;
  line-height: 1.6 !important;
}

.our-properties .post-img {
  position: relative;
}

.our-properties .post-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.35), rgba(0,0,0,0));
  pointer-events: none;
}

.our-properties .post-img {
  overflow: hidden;
}

.our-properties .post-img img {
  transition: transform 0.5s ease;
}

.our-properties .post-img:hover img {
  transform: scale(1.05);
}


/* Gradient background for the full Our Properties section */
#our-properties {
  background: linear-gradient(to bottom, #465270, #38425a) !important;
  border-radius: 0 !important; /* remove rounded edges for full-width section */
  padding: 3rem 0; /* keep your existing section padding */
}

/* Temporarily intensify the accent red only in this section */
#our-properties {
  --accent-color: #d62828; /* richer, more saturated red */
}





/* Optional: ensure the row below doesn’t stick out more than the band */
#our-properties .row {
  --bs-gutter-x: 1.5rem; /* default Bootstrap gutter; adjust if you changed it */
}


/* Pull cards up slightly (without killing their own inner spacing) */
#our-properties .row.gy-4 {
  --bs-gutter-y: 1.25rem; /* default is 1.5–2rem; tighten slightly */
}

#our-properties article:nth-child(odd) {
  background-color: color-mix(in srgb, var(--surface-color), white 5%) !important;
}

#our-properties .post-img {
  box-shadow: inset 0 0 30px rgba(0,0,0,0.05);
}

#our-properties a {
  transition: all 0.3s ease;
}
#our-properties a:hover {
  box-shadow: 0 0 12px rgba(181, 48, 40, 0.5);
  transform: translateY(-1px);
}

#our-properties .post-title {
  position: relative;
  padding-left: 0.75rem;
}
#our-properties .post-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.3rem;
  width: 4px;
  height: calc(100% - 0.6rem);
  background-color: var(--accent-color);
  border-radius: 2px;
}

/* Darker card background for contrast */
#our-properties .our-properties article {
  background-color: #3b4763 !important; /* deeper muted blue */
  box-shadow: 0 0.25rem 1.5rem rgba(0, 0, 0, 0.25); /* stronger shadow for depth */
  border-radius: 8px;
}

/* Keep text readable against darker background */
#our-properties .our-properties .post-title,
#our-properties .our-properties p {
  color: #f5f7fa !important; /* light, soft white */
}

/* Keep red buttons and accents vivid */
#our-properties .our-properties .readmore,
#our-properties .our-properties .post-date {
  color: #fff !important;
}

/* Remove bottom rounded corners of property images */
#our-properties .post-img {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  overflow: hidden; /* ensures image follows the radius shape */
}



/* CTA button styles for Our Properties section */
.our-properties .cta-btn {
  display: inline-block;
  background-color: #d64236; /* brighter than #B53028 */
  color: #fff;
  padding: 0.6rem 1rem;
  text-decoration: none;
  border-radius: 0.375rem;
  font-weight: 600;
  max-width: max-content;
  transition: background-color 0.4s ease, transform 0.3s ease;
}

.our-properties .cta-btn:hover {
  background-color: #b83228; /* brighter hover state */
  transform: translateY(-2px); /* subtle lift effect */
}



/* Keyframes for soft glowing effect */
@keyframes ctaGlow {
  0%, 100% {
    box-shadow: 0 0 0 rgba(214, 66, 54, 0);
  }
  50% {
    box-shadow: 0 0 12px rgba(214, 66, 54, 0.6);
  }
}

/* CTA button styles for Our Properties section */
.our-properties .cta-btn {
  display: inline-block;
  background-color: #d64236; /* brighter idle color */
  color: #fff;
  padding: 0.6rem 1rem;
  text-decoration: none;
  border-radius: 0.375rem;
  font-weight: 600;
  max-width: max-content;
  transition: background-color 0.4s ease, transform 0.3s ease;
  animation: ctaGlow 3s ease-in-out infinite;
}

.our-properties .cta-btn:hover {
  background-color: #b83228; /* brighter hover color */
  transform: translateY(-2px);
  box-shadow: 0 0 16px rgba(184, 50, 40, 0.7); /* slightly stronger glow on hover */
}

.our-properties .card {
  background: linear-gradient(
    to bottom,
    rgba(90, 104, 130, 1) 0%,   /* slightly lighter top */
    rgba(72, 84, 110, 1) 100%   /* slightly darker bottom */
  );
  border-radius: 0 0 8px 8px; /* keep bottom corners consistent */
}

.our-properties .card {
  box-shadow: inset 0 0 12px rgba(0, 0, 0, 0.05);
}

.section-title::after {
  background: linear-gradient(to right, transparent, var(--accent-color), transparent);
}

.our-properties .card:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}


/*--------------------------------------------------------------
# Current Projects Section
--------------------------------------------------------------*/
.current-projects .current-projects-item {
  background-color: var(--surface-color);
  overflow: hidden;
  border-radius: 5px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.current-projects .current-projects-item .project-img {
  position: relative;
  overflow: hidden;
}

.current-projects .current-projects-item .social {
  position: absolute;
  left: 0;
  bottom: 30px;
  right: 0;
  opacity: 0;
  transition: ease-in-out 0.8s;
  text-align: center;
}

.current-projects .current-projects-item .social a {
  background: color-mix(in srgb, var(--contrast-color), transparent 25%);
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0 3px;
  border-radius: 4px;
  width: 36px;
  height: 36px;
  transition: ease-in-out 0.8s;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.current-projects .current-projects-item .social a:hover {
  color: var(--contrast-color);
  background: var(--accent-color);
}

.current-projects .current-projects-item .social i {
  font-size: 18px;
  line-height: 0;
}

.current-projects .current-projects-item .project-info {
  padding: 25px 15px;
}

.current-projects .current-projects-item .project-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
}

.current-projects .current-projects-item .project-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.current-projects .current-projects-item:hover .social {
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Current Projects Styling
--------------------------------------------------------------*/
.current-projects-item {
  background: var(--surface-color);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.8s ease, box-shadow 0.3s ease;
}

.current-projects-item:hover {
  transform: translateY(-5px);
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.2);
}

.project-img img {
  width: 100%;
  border-radius: 10px;
  transition: transform 0.8s ease, box-shadow 0.3s ease;
}

.project-img img:hover {
  transform: scale(1.05);
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.2);
}

.current-projects-link {
  text-decoration: none;
  color: inherit;
  display: block;
  transition: all 0.8s ease;
}

.current-projects-link:hover {
  text-decoration: none;
  color: var(--primary-color);
}

.modern-link {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.8s ease, text-decoration 0.3s ease;
}

.modern-link:hover {
  color: var(--accent-color);
  text-decoration: underline;
}








/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  background-color: #e8f0fa !important; /* 🔵 new background */
  box-shadow: 0px 5px 90px 0px rgba(0, 0, 0, 0.1) !important;
  padding: 60px 30px !important;
  transition: all ease-in-out 0.3s !important;
  border-radius: 18px !important;
  border-bottom: 5px solid var(--accent-color) !important;
  height: 100% !important;
}
.services .service-item .icon {
  color: var(--contrast-color);
  background: var(--accent-color);
  margin: 0;
  width: 50px;
  height: 50px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 28px;
  transition: ease-in-out 0.3s;
}

.services .service-item h3 {
  font-weight: 700 !important;
  margin: 10px 0 15px 0 !important;
  /* ~26px → fluid → max ~38px */
  font-size: clamp(1.625rem, 2.5vw, 2.375rem) !important;
  transition: ease-in-out 0.3s !important;
}
.services .service-item p {
  line-height: 1.6 !important;
  font-size: clamp(0.9375rem, 1.2vw, 1.0625rem) !important; /* ~15px → fluid → ~17px */
  margin-bottom: 0 !important;
}

@media (min-width: 1365px) {
  .services .service-item:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
  }

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



/* Service Item Layout */
.services .service-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
}

/* Image Placement */
.services .service-img {
  flex: 1; /* Allows the image to take up appropriate space */
  max-width: 70%; /* Ensures image takes up half the space */
  height: auto;
  border-radius: 10px;
  overflow: hidden;
}

/* Service Image */
.services .service-img {
  flex: 1; /* Allows image to take up appropriate space */
  max-width: 50%;
  height: auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.1); /* Soft shadow for depth */
  transform: translateZ(0); /* Ensures smooth rendering */
  transition: box-shadow 0.3s ease-in-out, transform 0.3s ease-in-out; /* Adds smooth effect */
}

/* Ensures image fully fits the container */
.services .service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

/* Hover effect to enhance depth subtly */
.services .service-img:hover {
  box-shadow: 8px 8px 20px rgba(0, 0, 0, 0.15); /* Slightly deeper shadow on hover */
  transform: scale(1.02); /* Tiny scale effect for interactivity */
}

/* Service Content */
.services .service-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Ensure Flex Direction is Reversed for Right Alignment */
.flex-row-reverse {
  flex-direction: row-reverse;
}


@media (max-width: 991.98px) {
  .services .service-item {
    flex-direction: column !important;
    display: block !important;
    padding: 0 !important;
    overflow: hidden !important;
    border-radius: 1rem !important;
  }

  .services .service-img {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    overflow: hidden !important;
    border-top-left-radius: 1rem !important;
    border-top-right-radius: 1rem !important;
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
    box-shadow: none !important;
  }

  .services .service-img img {
    width: 100% !important;
    height: auto !important;
    object-fit: cover !important;
    object-position: top center !important;
    display: block !important;
    border-radius: 0 !important;
  }

  .services .service-content {
    padding: 1.5rem !important;
    text-align: center !important;
  }

  .services .service-content p {
    font-size: 0.9375rem !important;
    line-height: 1.6 !important;
  }

  .services .service-content .icon {
    margin: 1rem auto 1.25rem auto !important;
  }
}


/* ---------- Services: Compact mobile layout ---------- */
@media (max-width: 768px) {
  /* Card container */
  .services .service-item {
    padding: 0 !important;                 /* remove extra space */
    border-radius: 14px !important;
    border-bottom-width: 3px !important;   /* lighter accent */
    overflow: hidden !important;
  }

  /* Image: shorter, hero‑like ratio */
  .services .service-img {
    aspect-ratio: 16 / 9 !important;       /* was taller; this trims height */
    width: 100% !important;
    max-width: 100% !important;
    border-radius: 14px 14px 0 0 !important;
    box-shadow: none !important;
    margin: 0 !important;
  }
  .services .service-img img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    transform: none !important;            /* no zoom on mobile */
    border-radius: 0 !important;
  }

  /* Content spacing */
  .services .service-content {
    padding: 0.9rem 1rem 1.1rem !important; /* tighter */
    text-align: left !important;
  }

  /* Icon size + spacing */
  .services .service-content .icon {
    width: 44px !important;
    height: 44px !important;
    font-size: 22px !important;
    margin: 0 0 0.6rem 0 !important;
  }

  /* Heading and paragraph */
  .services .service-item h3 {
    margin: 0.25rem 0 0.5rem 0 !important;
    font-size: clamp(1.25rem, 4.5vw, 1.6rem) !important; /* ~20–25px */
    line-height: 1.2 !important;
  }
  .services .service-content p {
    font-size: 0.95rem !important;
    line-height: 1.5 !important;
    margin: 0.35rem 0 0 !important;
  }
  .services .service-content p:last-child {
    margin-bottom: 0 !important;
  }

  /* Optional: cap copy to 4 lines to prevent super tall cards */
  /* Uncomment if you want stricter height control
  .services .service-content p {
    display: -webkit-box !important;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  */
}

.service-details h3 {
  font-size: 50px !important;
  font-weight: 700 !important;
  margin: 10px 0 15px 0 !important;
  transition: ease-in-out 0.3s !important;
}

.service-details p {
  font-size: clamp(1rem, 1.2vw + 0.5rem, 1.125rem) !important; /* Scales between ~16–18px */
  line-height: 1.7 !important;
  max-width: 70ch !important; /* Improves readability by limiting line length */
 
  margin-bottom: 1rem !important;
  transition: color 0.3s ease-in-out !important;
}




/* 📱 Mobile Overrides (Tablets and Phones) */
@media (max-width: 768px) {
  .service-details h3 {
    font-size: 32px !important;

    margin: 1.25rem 0 1rem 0 !important;
    padding: 0 1rem !important;
  }

  .service-details p {
    font-size: 1rem !important; /* ~16px for legibility */
    line-height: 1.6 !important;
    max-width: 100% !important;
 
    padding: 0 1rem !important;
  }
}

@media (max-width: 768px) {
  .service-details ul {
    list-style: none !important;
    padding: 0 1rem !important;
    margin: 1.5rem 0 !important;
  }

  .service-details li {
    display: flex !important;
    align-items: flex-start !important;
    gap: 0.75rem !important;
    font-size: 1rem !important; /* ~16px */
    line-height: 1.6 !important;
    margin-bottom: 1rem !important;
    
  }

  .service-details li i {
    font-size: 1.2rem !important;
    color: var(--accent-color) !important;
    flex-shrink: 0 !important;
    margin-top: 0.25rem !important; /* aligns with multiline text */
  }

  .service-details li span {
    display: inline-block !important;
    max-width: 100% !important;
  }
}

@media (max-width: 768px) {
  .mobile-hide {
    display: none !important;
  }
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* ============================
   Services – Polished Layout
============================ */

/* Card base — tighter padding, consistent radius/shadow */
.services .service-item {
  background-color: #e8f0fa !important;
  border-radius: 18px !important;
  border-bottom: 5px solid var(--accent-color) !important;
  box-shadow: 0 8px 48px rgba(0, 0, 0, 0.10) !important;

  /* Consolidate spacing: this overrides the 60px pad */
  padding: 24px 24px !important;
  gap: 24px !important;

  display: flex !important;
  align-items: center !important;
  transition: transform .3s ease, box-shadow .3s ease !important;
}

/* Slight lift on hover (no jumpy translate unless you want it) */
@media (min-width: 1365px) {
  .services .service-item:hover {
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.16) !important;
  }
}

/* Content column */
.services .service-content {
  flex: 1 1 48%;
  min-width: 0;
}

/* Image column — bigger, edge-to-edge feel */
.services .service-img {
  flex: 1 1 52%;
  max-width: 52%;
  aspect-ratio: 4 / 3;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  box-shadow: 5px 5px 18px rgba(0, 0, 0, 0.12);
  transform: translateZ(0);
  transition: transform .45s ease, box-shadow .45s ease;
}

/* Image itself */
.services .service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1);                /* base */
  transition: transform .6s ease;
}

/* Subtle gradient scrim for polish */
.services .service-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.06), rgba(0,0,0,0.10));
  pointer-events: none;
}

/* Dynamic feel on hover */
.services .service-item:hover .service-img img {
  transform: scale(1.05);
}
.services .service-item:hover .service-img {
  box-shadow: 8px 12px 26px rgba(0,0,0,.18);
}

/* Icon badge: keep it crisp */
.services .service-item .icon {
  width: 52px; height: 52px;
  font-size: 26px;
  border-radius: 999px;
  background: var(--accent-color);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

/* Headings & copy already clamped — just a tiny spacing tune */
.services .service-item h3 { margin: 6px 0 12px 0 !important; }

/* ---------- Mobile Stack ---------- */
@media (max-width: 991.98px) {
  .services .service-item {
    flex-direction: column !important;
    padding: 0 !important;
  }

  .services .service-img {
    width: 100% !important;
    max-width: 100% !important;
    aspect-ratio: 16 / 9;                 /* wider hero feel on mobile */
    border-radius: 16px 16px 0 0 !important;
    box-shadow: none !important;
  }

  .services .service-img img {
    transform: none !important;
  }

  .services .service-content {
    padding: 1.25rem 1rem 1.5rem !important;
    text-align: left !important;          /* or center if you prefer */
  }
}

.services .service-img { margin-inline: -4px; } /* tiny bleed */
.services .service-item:hover .service-img { transform: translateZ(0) rotateZ(-0.2deg); }
.services .service-item {
  border-bottom: 2px solid var(--accent-color) !important; /* thinner */
}

@media (min-width: 992px) {
  .services .service-img img[alt="Real Estate Development"] {
    object-position: center 5px;
  }
}

/* Make service images taller, more vertical */
.services .service-img {
  aspect-ratio: 4 / 5; /* Taller aspect */
  max-width: 60%; /* Reduce width relative to text */
  overflow: hidden;
}

.services .service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center; /* Keep center of image visible */
}

.services.section {
  background: linear-gradient(
    to bottom,
    #dce8f7 0%,   /* soft sky blue */
    #f8fbfe 100%  /* nearly white */
  ) !important;
}

.services .service-card {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06) !important;
  transition: box-shadow 0.3s ease;
}
.services .service-card:hover {
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1) !important;
}

.services .service-card img {
  width: 100% !important;
  aspect-ratio: 4 / 3 !important;
  object-fit: cover !important;
  border-radius: 0.5rem !important;
}

.services .service-card .icon {
  transition: filter 0.3s ease;
}

.services .service-card:hover .icon {
  filter: brightness(1.15);
}

.services .service-card {
  position: relative;
}

.services .service-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 20%;
  width: 60%;
  height: 3px;
  background-color: #B53028;
  border-radius: 2px;
}

.services .service-card {
  background: linear-gradient(to bottom, #dbe4f1, #f3f6fb) !important; /* richer blue to light */
  border-radius: 12px !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}
/*--------------------------------------------------------------
# Properties Section
--------------------------------------------------------------*/
.properties {
  padding: 0;
}

.properties .carousel {
  width: 100%;
  min-height: 70vh;
  padding: 0;
  margin: 0;
  position: relative;
}

@media (max-height: 500px),
(max-width: 580px) {
  .properties .carousel {
    min-height: 100vh;
  }
}

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

.properties .carousel-item {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

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

.properties .container {
  position: relative;
  text-align: center;
  background: color-mix(in srgb, var(--background-color), transparent 40%);
  padding-top: 30px;
  padding-bottom: 30px;
  margin-bottom: 50px;
  border-top: 4px solid var(--accent-color);
  z-index: 3;
}

@media (max-width: 1200px) {
  .properties .container {
    margin-left: 50px;
    margin-right: 50px;
  }
}

.properties h2 {
  margin-bottom: 20px;
  font-size: 36px;
  font-weight: 700;
}

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

.properties .btn-get-started {
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 32px;
  transition: 0.5s;
  margin: 10px;
  border-radius: 4px;
  color: #F4F5F7;
  border: 2px solid #F4F5F7;
}

.properties .btn-get-started:hover {
  background: var(--accent-color);
}

.properties .carousel-control-prev {
  justify-content: start;
}

@media (min-width: 640px) {
  .properties .carousel-control-prev {
    padding-left: 15px;
  }
}

.properties .carousel-control-next {
  justify-content: end;
}

@media (min-width: 640px) {
  .properties .carousel-control-next {
    padding-right: 15px;
  }
}

.properties .carousel-control-next-icon,
.properties .carousel-control-prev-icon {
  background: none;
  font-size: 26px;
  line-height: 0;
  background: color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 50px;
  color: var(--contrast-color);
  transition: 0.3s;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.properties .carousel-control-prev,
.properties .carousel-control-next {
  transition: 0.3s;
  opacity: 0.5;
}

.properties .carousel-control-prev:focus,
.properties .carousel-control-next:focus {
  opacity: 0.5;
}

.properties .carousel-control-prev:hover,
.properties .carousel-control-next:hover {
  opacity: 0.9;
}

.properties .carousel-control-prev:hover .carousel-control-next-icon,
.properties .carousel-control-prev:hover .carousel-control-prev-icon,
.properties .carousel-control-next:hover .carousel-control-next-icon,
.properties .carousel-control-next:hover .carousel-control-prev-icon {
  background: var(--accent-color);
  color: var(--default-color);
}

.properties .carousel-indicators li {
  cursor: pointer;
  background: var(--default-color);
  overflow: hidden;
  border: 0;
  width: 12px;
  height: 12px;
  border-radius: 50px;
  opacity: 0.6;
  transition: 0.3s;
}

.properties .carousel-indicators li.active {
  opacity: 1;
  background: var(--accent-color);
}

/* Properties Section - Ensure Responsive Text Wrapping */
.properties .section-title {
    text-align: center;
    max-width: 90%;
    margin: 0 auto;
    padding: 1.25rem;
}

/* Prevents text from being cut off */
.properties .section-title p {
    font-size: 1rem;
    line-height: 1.6;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Ensure proper spacing and responsiveness */
@media (max-width: 768px) {
    .properties .section-title {
        padding: 1rem;
        max-width: 95%;
    }
    
    .properties .section-title h2 {
        font-size: 1.5rem;
    }

    .properties .section-title p {
        font-size: 0.875rem;
    }
}

/* Dark gradient for Properties section */
#properties-description.dark-background {
  background: linear-gradient(to bottom, #465270, #38425a) !important;
  border-radius: 0 !important; /* full-width look */
  padding: 3rem 0; /* keep spacing */
}

/* ----- Properties section: square images on mobile ----- */
@media (max-width: 768px) {
  .properties-description .property-img {
    aspect-ratio: 1 / 1 !important;       /* force square */
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden !important;
    border-radius: 0.5rem 0.5rem 0 0 !important; /* rounded top corners */
  }

  .properties-description .property-img img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;         /* crop rather than squish */
    object-position: center !important;
  }
}

  /*--------------------------------------------------------------
  # Properties Description Section
  --------------------------------------------------------------*/
  .properties-description .property-item {
    background-color: var(--surface-color);
    box-shadow: 0px 5px 90px 0px rgba(0, 0, 0, 0.1);
    padding: 60px 30px;
    transition: all ease-in-out 0.3s;
    border-radius: 18px;
    border-bottom: 2px solid var(--surface-color);
    height: 100%;
  }

  .properties-description .property-item .icon {
    color: var(--contrast-color);
    background: var(--accent-color);
    margin: 0;
    width: 50px;
    height: 50px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 28px;
    transition: ease-in-out 0.3s;
  }

.properties-description .property-item h3 {
  font-weight: 700 !important;
  margin: 10px 0 15px 0 !important;
  font-size: clamp(1.25rem, 1.8vw, 1.5rem) !important; /* ~20px → fluid → ~24px */
  transition: ease-in-out 0.3s !important;
}

.properties-description .property-item p {
  line-height: 1.6 !important;
  font-size: clamp(0.9375rem, 1.2vw, 1.0625rem) !important; /* ~15px → fluid → ~17px */
  margin-bottom: 0 !important;
}

  @media (min-width: 1365px) {
    .properties-description .property-item:hover {
      transform: translateY(-10px);
      border-color: var(--accent-color);
    }

    .properties-description .property-item:hover h3 {
      color: var(--accent-color);
    }
  }

  /* Property Item Layout */
  .properties-description .property-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
  }

  /* Image Placement */
  .properties-description .property-img {
    flex: 1; /* Allows the image to take up appropriate space */
    max-width: 70%; /* Ensures image takes up half the space */
    height: auto;
    border-radius: 10px;
    overflow: hidden;
  }

  /* Property Image */
  .properties-description .property-img {
    flex: 1; /* Allows image to take up appropriate space */
    max-width: 50%;
    height: auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.1); /* Soft shadow for depth */
    transform: translateZ(0); /* Ensures smooth rendering */
    transition: box-shadow 0.3s ease-in-out, transform 0.3s ease-in-out; /* Adds smooth effect */
  }

  /* Ensures image fully fits the container */
  .properties-description .property-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
  }

  /* Hover effect to enhance depth subtly */
  .properties-description .property-img:hover {
    box-shadow: 8px 8px 20px rgba(0, 0, 0, 0.15); /* Slightly deeper shadow on hover */
    transform: scale(1.02); /* Tiny scale effect for interactivity */
  }

  /* Property Content */
  .properties-description .property-content {
    flex: 1;
    display: flex;
    flex-direction: column;
  }

  /* Ensure Flex Direction is Reversed for Right Alignment */
  .flex-row-reverse {
    flex-direction: row-reverse;
  }


  @media (max-width: 991.98px) {
    .properties-description .property-item {
      flex-direction: column !important;
      padding: 0;
      overflow: hidden; /* Needed to handle rounded top properly */
    }

    .properties-description .property-img {
      max-width: 100%;
      width: 100%;
      border-radius: 1rem 1rem 0 0; /* Top corners only */
      margin-bottom: 0;
    }

    .properties-description .property-img img {
      width: 100% !important;
      height: auto !important;
      object-fit: cover !important;
      object-position: top center !important; /* 👈 KEY LINE */
      display: block !important;
      border-radius: 0 !important;
    }

    .properties-description .property-content {
      padding: 1.5rem;
      text-align: center;
    }
  }





  @media (max-width: 991.98px) {
  .properties-description .property-item {
    display: block !important;
    padding: 0 !important;
    overflow: hidden !important;
    border-radius: 1rem;
  }

  .properties-description .property-img {
    width: 100% !important;
    margin: 0 auto;
    overflow: hidden;
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
  }

  .properties-description .property-img img {
    width: 100% !important;
    height: auto !important;
    display: block !important;
    border-radius: 0 !important;
  }

  .properties-description .property-content {
    padding: 1.5rem !important;
    text-align: center;
  }

  .properties-description .property-content p {
    font-size: 0.9375rem;
    line-height: 1.6;
  }
}




.mobile-section-heading {
  font-size: 2rem !important;
  font-weight: 700 !important;
  text-align: center !important;
  margin-bottom: 0.75rem !important;
}

.mobile-section-description {
  font-size: 1rem !important;
  text-align: center !important;
  max-width: 440px !important;
  margin: 0 auto 1.5rem auto !important;
  line-height: 1.5 !important;
}


/*--------------------------------------------------------------
# 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: 16px;
  font-weight: 600;
  margin: 0 10px;
  line-height: 1;
  text-transform: uppercase;
  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-item {
  position: relative;
}

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: color-mix(in srgb, var(--background-color), transparent 10%);
  padding: 15px;
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  font-weight: 600;
  padding-right: 50px;
}

.portfolio .portfolio-item .portfolio-info p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
  margin-bottom: 0;
  padding-right: 50px;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 50px;
  font-size: 24px;
  top: calc(50% - 14px);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  transition: 0.3s;
  line-height: 0;
}

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

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 14px;
  font-size: 28px;
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  bottom: 20px;
}


.invisible-placeholder {
  visibility: hidden; /* hides the content */
}

.portfolio-info {
  text-align: center !important;
  white-space: nowrap !important;
}

.portfolio-info a {
  display: inline-block !important;
  vertical-align: middle !important;
  margin: 0 0.5rem !important;
  font-size: 1.4rem !important;
  color: var(--heading-color) !important;
  transition: color 0.3s ease !important;
}

.portfolio-info a:hover {
  color: var(--accent-color) !important;
}






/*--------------------------------------------------------------
# Clients Section (Clean Version)
--------------------------------------------------------------*/

.clients .client-logo {
  
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  height: auto;
  padding: 1rem;
  border-radius: 1rem; /* Soft rounding for container */
}

.clients .client-logo {
  background-color: transparent !important;
}

.clients .client-logo img {
  padding: .5rem; /* Reduced padding */
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  border-radius: 50%; /* For circular logos only */
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1),
              box-shadow 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  will-change: transform, box-shadow;
 
}



.clients .client-logo:hover img,
.clients .client-logo:focus-within img {
  transform: scale(1.3);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  z-index: 2;
}


.clients .client-logo:hover,
.clients .client-logo:focus-within {
  background-color: transparent !important;
}

.clients .client-logo:hover img,
.clients .client-logo:focus-within img {
  transform: scale(1.3);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  z-index: 2;
}


/* Responsive adjustments */
@media (max-width: 640px) {
  .clients .client-logo {
    aspect-ratio: auto;
    height: auto;
    padding: 0.75rem; /* Slightly tighter on mobile */
  }

  .clients .client-logo img {
    padding: 1rem;
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
  }
}




/*--------------------------------------------------------------
# SDA About Section
--------------------------------------------------------------*/
.sda-about .inner-title {
  font-size: 2.75rem;
  font-weight: 700;
  margin: 30px 0;
}
@media (max-width: 768px) {
  .sda-about .inner-title {
    font-size: 1.95rem; /* Scales better on mobile */
  }
}


@media (min-width: 991px) {
  .sda-about .inner-title {
    max-width: 65%;
    margin: 0 0 80px 0;
  }
}

.sda-about .our-story {
  padding: 40px;
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
}

@media (min-width: 991px) {
  .sda-about .our-story {
    padding-right: 15%;
  }
}

.sda-about .our-story h4 {
  text-transform: uppercase;
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.sda-about .our-story h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.sda-about .our-story p:last-child {
  margin-bottom: 0;
}

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

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

.sda-about ul i {
  font-size: 1.25rem;
  margin-right: 0.5rem;
  line-height: 1.2;
  color: var(--accent-color);
}

.sda-about .watch-video i {
  font-size: 2rem;
  transition: 0.3s;
  color: var(--accent-color);
}

.sda-about .watch-video a {
  font-weight: 600;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-left: 8px;
  transition: 0.3s;
}

.sda-about .watch-video:hover a {
  color: var(--accent-color);
}

/* ===============================
   Image Container Rules
=============================== */

.sda-about .sda-about-img {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 2; /* Maintain original photo proportions */
   border-radius: 0 !important;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

/* Desktop override for layout alignment */
@media (min-width: 992px) {
  .sda-about .sda-about-img {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;              /* Matches .col-lg-7 */
    aspect-ratio: 3 / 2;
  }
}

@media (min-width: 992px) {
  .sda-about .col-lg-5 {
    padding-right: 3rem;
    position: relative;
    z-index: 2;
  }

  .sda-about .sda-about-img {
    padding-left: 2rem;
  }
}

/* Wrapper: centered & spaced */
.sda-about-cta-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;              /* ✅ More space between buttons */
  margin-top: 2rem;
  text-align: center;
}

/* Buttons: larger and polished */
.sda-about .cta-btn {
  background-color: #d64236;
  color: #fff;
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: clamp(1rem, 2.2vw, 1.125rem);  /* ✅ Slightly larger text */
  padding: 0.75rem 1.5rem;                 /* ✅ Bigger button size */
  border-radius: 0.5rem;
  text-decoration: none;
  border: none;
  transition: all 0.3s ease;
  animation: ctaGlow 3s ease-in-out infinite;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

/* Hover effect */
.sda-about .cta-btn:hover {
  background-color: #b83228;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 0 16px rgba(184, 50, 40, 0.7);
}

/* Optional CTA glow animation */
@keyframes ctaGlow {
  0%, 100% {
    box-shadow: 0 0 4px rgba(214, 66, 54, 0.3);
  }
  50% {
    box-shadow: 0 0 12px rgba(214, 66, 54, 0.5);
  }
}


.inner-title.hidden-everywhere {
  display: none !important;
}
.sda-about-bottom-spacer {
  height: 3rem; /* Adjust as needed */
}

/* ===============================
   Image Rules - No Corners (Forced)
=============================== */
.sda-about .sda-about-img img {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: 50% center !important; /* Focus crop */
  border-radius: 0 !important; /* no corners */
  z-index: 1 !important;
  box-shadow:
    0 4px 8px rgba(0, 0, 0, 0.08) !important,
    0 10px 24px rgba(0, 0, 0, 0.1) !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  filter: brightness(1.10) contrast(1.03) saturate(1.05) !important;
  background: linear-gradient(to bottom, rgba(255,255,255,0.03), rgba(0,0,0,0.1)) !important;

  /* Zoom-in effect */
  transform: scale(1.07) !important; /* default slight zoom */
  transition: transform 0.6s ease, filter 0.6s ease !important;
}

.sda-about .sda-about-img:hover img {
  transform: scale(1.12) !important; /* more zoom on hover */
  filter: brightness(1.03) contrast(1.05) !important;
}



/* ===============================
   Typography & Section Heading
=============================== */

@media (min-width: 991px) {
  .sda-about .inner-title {
    margin: 0 0 30px 0;
    max-width: none;
  }
}




.sda-about {
  background-image: linear-gradient(to right, #ffffff, #cfe8ff), url('assets/img/textures/noise-light.png');
  background-blend-mode: soft-light;
  background-size: cover;
}

.sda-about-img img {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08) !important;
  border-radius: 1rem !important;
}

.inner-title {
  text-shadow: 0 1px 0 rgba(255,255,255,0.6);
}


/* Default desktop padding */
.sda-about {
  padding: 100px 0 !important;
  background: linear-gradient(to right, #ffffff 0%, #cfe8ff 100%) !important;
  position: relative !important;
}

/* Mobile override */
@media (max-width: 768px) {
  .sda-about {
    padding: 20px 0 !important;
  }
}

@media (max-width: 768px) {
  .inner-title {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .our-story {
    margin-top: 20px !important;
  }
}

@media (max-width: 768px) {
  .sda-about .sda-about-img,
  .sda-about .sda-about-img img,
  .sda-about .our-story {
    border-radius: 0 !important;
  }
}

/* Default (desktop/tablet) */
.mobile-about-text p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.4rem;
}

/* Mobile enhancements */
@media (max-width: 768px) {
  .mobile-about-text {
    margin: 2rem .001rem;
  }

  .mobile-about-text p {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 1.6rem;
  }
}

@media (max-width: 768px) {
  .desktop-only {
    display: none !important;
  }
}


.sda-about {
  background: linear-gradient(135deg, #f5f9ff 0%, #d7e5f4 100%) !important;
  background-size: cover !important;
  position: relative !important;
  z-index: 1 !important; /* Raise main section slightly above before element */
}

/* Desktop & tablet */
.sda-about::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/textures/blueprint.webp") center center / 150% no-repeat !important;
  opacity: 0.3 !important;
  pointer-events: none;
  z-index: 0 !important;
}

/* Mobile override */
@media (max-width: 768px) {
  .sda-about::before {
    background-size: 2000px !important; /* Or experiment with 800px or 1200px */
    background-position: center top !important;
  }
}

.sda-about .inner-title {
  font-size: clamp(2.5rem, 4vw, 3.25rem); /* responsive scaling */
  line-height: 1.15; /* tighter for impact */
}

.sda-about .our-story h3 {
  font-size: 2.2rem; /* slightly bigger */
  font-weight: 700;
  line-height: 1.3;
}
.sda-about .our-story h4 {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.sda-about .our-story p {
  font-size: 1.05rem; /* ~17px */
  line-height: 1.7;
}


.sda-about .our-story p:first-of-type {
  font-size: clamp(1.1rem, 1.5vw, 1.5rem);
}

.team-caption {
  font-size: clamp(0.85rem, 1.2vw, 1.2rem)!important;
  line-height: 1.4;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  text-align: center;
  margin-top: 0.75rem;
  font-style: italic;
}
.sda-about .our-story h4 {
  color: var(--accent-color) !important;
}

.sda-about .our-story h4 {
  color: var(--accent-color) !important;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.sda-about::before {
  opacity: 0.15 !important; /* was 0.3 */
}


.sda-about::before {
  background: url("../img/textures/blueprint.webp") center center / 150% no-repeat !important;
  opacity: 0.2 !important;
  filter: blur(1px);
}


/* Edit caption text + height here */
.sda-about .sda-about-img {
  --caption: "The SDA leadership team — building trusted partnerships since 1979.";
  --cap-height: 64px; /* height of the caption area */

}

/* Make sure the image is under overlays */
.sda-about .sda-about-img img { z-index: 1 !important; }

/* Solid caption plate at the bottom of the image */
.sda-about .sda-about-img::before {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: var(--cap-height);
  z-index: 2; /* below the text, above the image */
  background: rgba(255,255,255,0.96);   /* solid/near solid plate */
  /* optional softening; remove if you don't want it */
  backdrop-filter: blur(2px);
  border-top: 1px solid rgba(12,24,39,0.08);
}

.sda-about .sda-about-img::after {
  content: var(--caption);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: calc(var(--cap-height)/2 - .9em);
  z-index: 3;
  display: block;
  width: 100%;
  text-align: center;
  font-size: clamp(0.85rem, 1.2vw, 1.3rem);
  line-height: 1.35;
  font-style: italic;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  pointer-events: none;
}
/* Tweak on smaller screens */
@media (max-width: 768px) {
  .sda-about .sda-about-img { --cap-height: 56px; }
  .sda-about .sda-about-img::after { font-size: 0.9rem; }
}


.sda-about .sda-about-img::after {
  content: "The SDA leadership team — partners in building for over 40 years.";
  text-shadow: 0 1px 1px rgba(0,0,0,0.15);
}

@media (max-width: 768px) {
  .sda-about .mobile-about-text p,
  .sda-about .mobile-about-text p.about-lead {
    font-size: clamp(1.2rem, 3.5vw, 1.4rem) !important;  /* ~17px → fluid → ~19.2px */
    line-height: 1.6 !important;
    font-weight: 400 !important;
    margin-bottom: 1rem !important;
  }
}
/*--------------------------------------------------------------
# About Section - Responsive Refinements with clamp()
--------------------------------------------------------------*/

/* Headings (h3) */
.about h3 {
  font-weight: 700;
  font-size: clamp(1.6rem, 2.5vw, 2.5rem); /* scales between small & large screens */
  margin-bottom: 1.25rem;
}

/* Paragraphs */
.about .content p {
  font-size: clamp(1rem, 1.5vw, 1.3rem); /* scales smoothly */
  line-height: 1.6;
  margin-bottom: 1rem;
}

/* Lists */
.about .content ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: clamp(1rem, 1.5vw, 1.3rem); /* matches paragraph size */
  line-height: 1.6;
}

.about .content ul li {
  margin-bottom: 0.5rem;
}

/*--------------------------------------------------------------
# About Section - Bullet List Fixes
--------------------------------------------------------------*/

/* Base Styles for List */
.about .content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Aligns Icons & Text */
.about .content ul li {
  display: flex;
  align-items: center; /* Keeps icons and text aligned */
  gap: 0.75rem; /* Space between icon and text */
  padding: 0.75rem 0; /* Adds consistent spacing */
  line-height: 1.5; /* Prevents text from crowding */
}

/* Bullet Icons */
.about .content ul i {
  font-size: 1.4rem; /* Slightly larger for visibility */
  color: var(--accent-color);
  flex-shrink: 0; /* Prevents icon from resizing */
  min-width: 1.6rem; /* Ensures consistency */
  text-align: center;
}

/* Prevents Text from Breaking */
.about .content ul strong {
  white-space: nowrap; /* Keeps company names on one line */
}
@media (max-width: 991.98px) {
  .about .custom-bullets {
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* 👈 this is the key change */
    width: 100%;
  }

  .about .custom-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.4rem 0;
    text-align: left;
    width: 100%;
  }

  .about .custom-bullets i {
    color: var(--accent-color);
    font-size: 1.2rem;
    line-height: 1;
    min-width: 1.25rem;
    text-align: center;
  }

  .about .custom-bullets strong {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# About Section - Bullet List Adjusted
--------------------------------------------------------------*/

/* Base Styles for List */
.about .content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Aligns Icons & Text with tighter spacing */
.about .content ul li {
  display: flex;
  align-items: center;
  gap: 0.6rem; /* slightly less space between icon and text */
  padding: 0.45rem 0; /* tighter vertical spacing */
  line-height: 1.4; /* slightly more compact line height */
}

/* Bullet Icons - smaller size */
.about .content ul i {
  font-size: 1.1rem; /* reduced from 1.4rem */
  color: var(--accent-color);
  flex-shrink: 0;
  min-width: 1.3rem; /* matches smaller icon */
  text-align: center;
}

/* Prevents Text from Breaking */
.about .content ul strong {
  white-space: nowrap;
}

/* Mobile Adjustments */
@media (max-width: 991.98px) {
  .about .custom-bullets li {
    gap: 0.45rem;
    padding: 0.3rem 0;
  }

  .about .custom-bullets i {
    font-size: 1rem;
    min-width: 1.2rem;
  }
}

.about .content ul {
 
  margin-bottom: 1rem;     /* space outside before next section */
}


/*--------------------------------------------------------------
# 📢 About Section - Call-to-Action Button
--------------------------------------------------------------*/
.about .btn-contact {
  font-weight: 600;
  font-size: 1rem; /* Slightly larger for emphasis */
  letter-spacing: 0.05rem;
  display: inline-block;
  padding: 0.75rem 2rem;
  transition: 0.4s ease-in-out;
  margin-top: 1.5rem;
  border-radius: 0.5rem;
  color: #fff;
  background: var(--accent-color);
  border: none;
  text-transform: uppercase;
  box-shadow: 0 0 0.3125rem transparent;
  animation: softGlow 3s infinite ease-in-out;
}

/* ✨ Hover Effect */
.about .btn-contact:hover {
  background: color-mix(in srgb, var(--accent-color), white 20%);
  color: #fff;
  box-shadow: 0 0 0.9375rem rgba(255, 0, 0, 0.3);
}

/* 🎇 Soft Pulsing Glow */
@keyframes softGlow {
  0% { box-shadow: 0 0 0.3125rem transparent; transform: scale(1); opacity: 1; }
  50% { box-shadow: 0 0 0.9375rem rgba(255, 0, 0, 0.3); transform: scale(1.02); opacity: 0.95; }
  100% { box-shadow: 0 0 0.3125rem transparent; transform: scale(1); opacity: 1; }
}

/* 📱 Responsive Adjustments */
@media (max-width: 768px) {
  .about .btn-contact {
    font-size: 0.9rem;
    padding: 0.6rem 1.5rem;
  }
}


/*--------------------------------------------------------------
# 📢 About Section - Final Push Statement
--------------------------------------------------------------*/
.about-final-push {
  text-align: center;
  font-size: 1.5rem; /* Larger text for emphasis */
  font-style: italic;
  font-weight: 500;
  color: var(--heading-color);
  max-width: 50rem;
  margin: 2rem auto 1rem;
  padding: 1.5rem;
  border-left: 5px solid var(--accent-color); /* Adds a left accent line */
  background: rgba(255, 255, 255, 0.1); /* Soft background highlight */
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease-in-out forwards 0.3s; /* Subtle fade-in animation */
}

/* ✨ Fade-in Animation */
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* 📱 Mobile Adjustments */
@media (max-width: 768px) {
  .about-final-push {
    font-size: 1.2rem; /* Slightly smaller on mobile */
    padding: 1rem;
  }
}


  /* Wrapper card */
.about-form-wrapper {
  background: #ffffff;
  border-radius: 0 0 18px 18px; /* no rounding on top, rounded bottom only */
  padding: 2rem;
  box-shadow: 0 12px 40px rgba(12, 24, 39, 0.08);
  border: 1px solid rgba(12, 24, 39, 0.08);
  position: relative;
  isolation: isolate;
}

.about-form-wrapper::before {
  content: "";
  position: absolute;
  left: 0; top: 0; right: 0; height: 4px;
  border-radius: 0; /* no rounding on the accent bar */
  background: linear-gradient(90deg, #B53028 0%, #e45b52 60%, #B53028 100%);
}

  /* Header row */
  .form-header {
    display: flex; align-items: center; gap: .75rem; margin-bottom: .75rem;
  }
  .form-header .form-icon {
    width: 40px; height: 40px; border-radius: 999px;
    display: inline-flex; align-items: center; justify-content: center;
    background: rgba(181,48,40,.1);
  }
  .about-form-wrapper h3 {
    margin: 0;
    font-size: clamp(1.35rem, 2.2vw, 1.75rem);
    line-height: 1.2;
  }
  .form-subtext {
    margin: .25rem 0 1.25rem 2.95rem; /* aligns under the title beside icon */
    color: #5b6675; font-size: .95rem;
  }

  /* Inputs */
  .about-form-wrapper .form-control {
    border-radius: 12px;
    border: 1px solid #d7dee7;
    background: #fff;
    box-shadow: 0 1px 0 rgba(12, 24, 39, 0.02) inset;
    padding: .75rem .9rem;
  }
  .about-form-wrapper .form-control::placeholder { color: #9aa6b2; }
  .about-form-wrapper .form-control:focus {
    border-color: #B53028 !important;
    box-shadow: 0 0 0 4px rgba(181,48,40,.15) !important;
    outline: none;
  }
  .about-form-wrapper label {
    font-weight: 600; color: #6b7686; margin-bottom: .35rem;
  }

  /* Grid tweaks */
  @media (min-width: 768px) {
    .about-form-wrapper .row { row-gap: 1rem; }
  }

  /* Button */
  .about-form-wrapper .btn-primary {
    background-color: #B53028 !important;
    color: #fff !important;
    border: none !important;
    padding: .9rem 1.6rem !important;
    border-radius: 999px !important;
    font-weight: 700 !important;
    letter-spacing: .2px;
    box-shadow: 0 10px 20px rgba(181,48,40,.15), 0 1px 0 rgba(0,0,0,.04);
    transition: transform .06s ease, box-shadow .2s ease;
  }
  .about-form-wrapper .btn-primary:hover { transform: translateY(-1px); }
  .about-form-wrapper .btn-primary:active { transform: translateY(0); box-shadow: 0 6px 14px rgba(181,48,40,.18); }

  /* Footer note */
  .privacy-note { margin-top: .75rem; color:#7a8595; font-size:.875rem; }


@media (max-width: 768px) {
  .about-form-wrapper {
    display: none !important;
  }
}

.about .content ul li {
  display: flex;
  align-items: flex-start; /* aligns bullet at top */
}

.about .content ul li i {
  margin-top: 0.2rem; /* fine-tune bullet position */
}





.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 1rem;
}

.service-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.1rem;
  color: var(--text-color);
}

.service-item i {
  font-size: 1.5rem;
  color: #b03125; /* your SDA red */
}

.service-item a {
  text-decoration: none;
  color: inherit;
}

.service-item a:hover {
  text-decoration: none;
}


.mb-4 {
  margin-bottom: 2rem;
}

.service-content .icon i {
  color: #ffffff !important;
}
/*--------------------------------------------------------------
# Custom Bullets - List Item Styling
--------------------------------------------------------------*/

/* Base Styles */
.custom-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Default (Desktop) - Slightly Larger Font & Icon */
.custom-bullets li {
  display: flex;
  align-items: center;
  gap: 1rem; /* Space between icon and text */
  padding: 1rem 0; /* Default spacing */
  line-height: 1.6;
  font-size: 1.3rem; /* Slightly larger font on desktop */
}

/* Larger Icons on Desktop */
.custom-bullets li i {
  font-size: 1.8rem; /* Increased icon size */
  color: var(--accent-color);
  flex-shrink: 0;
  width: 2.2rem; /* Ensures consistent spacing */
  text-align: center;
}

/* Responsive Adjustments for Mobile */
@media (max-width: 768px) {
  .custom-bullets li {
    padding: 1.75rem 0; /* Increased spacing between list items */
    font-size: 1.2rem; /* Keep font the same size */
  }

  .custom-bullets li i {
    font-size: 1.6rem; /* Adjusted icon size */
    width: 2rem;
  }
}

/* Extra Small Screens (Phones <480px) */
@media (max-width: 480px) {
  .custom-bullets li {
    padding: 2rem 0; /* Extra spacing for smaller screens */
  }

  .custom-bullets li i {
    font-size: 1.5rem; /* Keep icons proportional */
  }
}








.about .pulsating-play-btn {
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
}
/*--------------------------------------------------------------
# About Projects Section - Matches About Section Layout
--------------------------------------------------------------*/
.about-projects {
  padding: 4rem 0;
  background-color: var(--surface-color) !important;
  text-align: center;
}

/* Headings & Text */
.about-projects h2 {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 1.5rem;
}

.about-projects p {
  font-size: 1.4rem;
  color: var(--default-color);
  max-width: 50rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6rem;
}

/*--------------------------------------------------------------
# Image Grid - Smooth Sliding Transition (3x3 Desktop, 2x2 Mobile)
--------------------------------------------------------------*/
.about-projects .image-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 columns */
  grid-template-rows: repeat(2, auto); /* 2 rows */
  gap: 1rem;
  justify-content: center;
  align-items: center;
  max-width: 750px;
  margin: 2rem auto;
  position: relative;
}

/* Grid Items */
.about-projects .grid-item {
  position: relative;
  width: 100%;
  max-width: 220px;
  height: auto;
  border-radius: 10px;
  overflow: hidden;
}

/* Base Image Style */
.about-projects .grid-item img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  transition: opacity 1.5s ease-in-out;
  opacity: 1;
}

/* Fade-out effect */
.about-projects .grid-item img.fade-out {
  opacity: 0;
}

/*--------------------------------------------------------------
# Responsive Adjustments (2x2 on Mobile)
--------------------------------------------------------------*/
@media (max-width: 768px) {
  .about-projects .image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 columns */
    grid-template-rows: repeat(3, auto);  /* 3 rows */
    gap: 0.5rem; /* Reduce spacing slightly for better fit */
    justify-content: center;
    align-items: center;
    max-width: 100%; /* Ensures full width */
    margin: 0 auto;
  }

  .about-projects .grid-item {
    width: 100%;
    max-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .about-projects .grid-item img {
    width: 100%;
    max-width: 150px; /* Adjusted for smaller devices */
    height: auto;
    border-radius: 8px;
  }
}

/* For Extra Small Phones */
@media (max-width: 480px) {
  .about-projects .image-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 columns */
    grid-template-rows: repeat(3, auto); /* 3 rows */
    gap: 0.4rem;
    max-width: 90%;
  }

  .about-projects .grid-item img {
    max-width: 120px; /* Further reduce size for small screens */
  }
}


/*--------------------------------------------------------------
# Key Project Types - Styled Box
--------------------------------------------------------------*/

.project-highlights-container {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.project-highlights {
  background-color: var(--background-alt);
  padding: 1.5rem;
  border-radius: 8px;
  max-width: 600px;
  text-align: left;
  list-style: none;
}

/* List Items */
.project-highlights li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--heading-color);
  padding: 0.5rem 0;
}

/* Bullet Icon Styling */
.project-highlights li i {
  color: var(--accent-color);
  font-size: 1.2rem;
  min-width: 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/*--------------------------------------------------------------
# Responsive Adjustments
--------------------------------------------------------------*/
@media (max-width: 768px) {
  .about-projects h2,
  .about-projects p {
    text-align: center;
  }

  .about-projects .image-grid {
    grid-template-columns: 1fr; /* Stack images vertically on mobile */
  }

  .project-highlights {
    max-width: 90%;
  }

  .project-highlights li {
    font-size: 1rem;
  }

  .project-highlights li i {
    font-size: 1.1rem;
  }

  .about-projects .grid-item img {
    width: 90%;
    max-width: 220px; /* Smaller images on mobile */
  }
}

/*--------------------------------------------------------------
# Responsive Adjustments
--------------------------------------------------------------*/
@media (max-width: 768px) {
  .about-projects h2,
  .about-projects p {
    text-align: center;
  }

  .about-projects .image-grid {
    grid-template-columns: 1fr;
  }

  .project-highlights {
    max-width: 90%;
  }

  .project-highlights li {
    font-size: 1rem;
  }

  .project-highlights li i {
    font-size: 1.1rem;
  }

  .about-projects .grid-item img {
    width: 90%;
    max-width: 220px;
  }
}




/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .team-member {
  background-color: var(--surface-color);
  overflow: hidden;
  border-radius: 5px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  height: 100%;
}

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

.team .team-member .social {
  position: absolute;
  left: 0;
  bottom: 30px;
  right: 0;
  opacity: 0;
  transition: ease-in-out 0.3s;
  text-align: center;
}

.team .team-member .social a {
  background: color-mix(in srgb, var(--contrast-color), transparent 25%);
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0 3px;
  border-radius: 4px;
  width: 36px;
  height: 36px;
  transition: ease-in-out 0.3s;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

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

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

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

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

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

.team .team-member:hover .social {
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# About Our Approach Section
--------------------------------------------------------------*/
.about-approach {
  margin-top: 50px;
  padding: 60px;
  background-color: var(--background-alt); /* Slightly different shade */
  border-radius: 10px;
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.05);
}

/* Headline Styling */
.about-approach h3 {
  font-size: 32px; /* Bigger headline */
  font-weight: 700;
  color: var(--contrast-color-dark); /* Darker contrast for readability */
  margin-bottom: 20px;
  text-align: left; /* Flush left */
}

/* Paragraph Styling */
.about-approach p {
  font-size: 18px; /* Bigger paragraph text */
  line-height: 1.8;
  color: var(--default-color);
  text-align: left; /* Flush left */
  margin-bottom: 15px;
}

/*--------------------------------------------------------------
# Flip Card Hover Effect
--------------------------------------------------------------*/
.flip-card {
  background: var(--background-alt);
  width: 100%;
  height: 200px;
  perspective: 1000px;
  border-radius: 10px;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.6s;
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

/* Front and Back of Flip Card */
.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  text-align: center;
  padding: 20px;
}

/* Flip Card Front */
.flip-card-front {
  background: var(--background-alt);
  color: var(--contrast-color);
  font-weight: 600;
}

/* Flip Card Icons */
.flip-card-front i {
  font-size: 40px;
  margin-bottom: 10px;
  color: var(--accent-color);
}

/* Fix extra closing bracket issue */

/* Flip Card Back */
.flip-card-back {
  background: var(--accent-color) !important; /* Red background */
  color: white !important; /* Ensure text is white */
  transform: rotateY(180deg);
  font-size: 16px !important;
  font-weight: 600 !important;
  text-align: center !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  height: 100% !important;
  width: 100% !important;
}

/* Ensure all text inside the back is white */
.flip-card-back p,
.flip-card-back h4 {
  color: white !important; /* Force all text to be white */
}
/*--------------------------------------------------------------
# Call to Action Button
--------------------------------------------------------------*/
.btn-learn-more {
  display: inline-block;
  padding: 12px 25px;
  font-size: 18px;
  font-weight: 600;
  color: white;
  background: var(--accent-color);
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
  margin-top: 20px;
}

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

/*--------------------------------------------------------------
# Skills Section
--------------------------------------------------------------*/
.skills .progress {
  height: 60px;
  display: block;
  background: none;
  border-radius: 0;
}

.skills .progress .skill {
  color: var(--heading-color);
  padding: 0;
  margin: 0 0 6px 0;
  text-transform: uppercase;
  display: block;
  font-weight: 600;
  font-family: var(--heading-font);
}

.skills .progress .skill .val {
  float: right;
  font-style: normal;
}

.skills .progress-bar-wrap {
  background: color-mix(in srgb, var(--default-color), transparent 90%);
  height: 10px;
}

.skills .progress-bar {
  width: 1px;
  height: 10px;
  transition: 0.9s;
  background-color: var(--accent-color);
}

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

.features .nav-item {
  width: 100%;
  margin-bottom: 15px;
}

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

.features .nav-link {
  color: var(--heading-color);
  border: 0;
  padding: 30px;
  transition: 0.3s;
  border-radius: 10px;
  display: flex;
  cursor: pointer;
}

.features .nav-link i {
  background-color: var(--surface-color);
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  width: 48px;
  height: 48px;
  font-size: 22px;
  flex-shrink: 0;
  border-radius: 50px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.features .nav-link h4 {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 10px 0;
  transition: 0.3s;
}

.features .nav-link p {
  font-size: 15px;
  margin: 0;
}

.features .nav-link:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 96%);
}

.features .nav-link.active {
  background: color-mix(in srgb, var(--accent-color), transparent 96%);
  color: var(--default-color);
}

.features .tab-pane img {
  border-radius: 15px;
}

/*--------------------------------------------------------------
# 🎵 Service Details Section 🎵
--------------------------------------------------------------*/

/* 🎶 Wrapper for Service Details */
.service-details {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1.25rem; /* Adjusted for better spacing */
}

/* 🎶 Sidebar List Styling */
.service-details .services-list {
  background-color: var(--surface-color);
  padding: 0.625rem 1.875rem; /* 10px → 0.625rem, 30px → 1.875rem */
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  margin-bottom: 1.25rem; /* 20px → 1.25rem */
}

/* 🎶 Sidebar Links */
.service-details .services-list a {
  display: block;
  line-height: 1;
  padding: 0.5rem 0 0.5rem 0.9375rem; /* 8px, 15px → rem */
  border-left: 0.1875rem solid color-mix(in srgb, var(--default-color), transparent 70%);
  margin: 1.25rem 0; /* 20px → 1.25rem */
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

/* 🎶 Active Sidebar Link */
.service-details .services-list a.active {
  color: var(--heading-color);
  font-weight: 700;
  border-color: var(--accent-color);
}

/* 🎶 Hover State */
.service-details .services-list a:hover {
  border-color: var(--accent-color);
}

/* 🎶 Image in Service Details */
.service-details .services-img {
  margin-bottom: 1.25rem; /* 20px → 1.25rem */
}

/* 🎶 Headings */
.service-details h3 {
  font-size: 1.625rem; /* 26px → 1.625rem */
  font-weight: 700;
}

.service-details h4 {
  font-size: 1.25rem; /* 20px → 1.25rem */
  font-weight: 700;
}

/* 🎶 Paragraphs */
.service-details p {
  font-size: 1rem; /* 15px → 1rem */
}

/* 🎶 Bullet Lists */
.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 1rem; /* 15px → 1rem */
}

.service-details ul li {
  padding: 0.3125rem 0; /* 5px → 0.3125rem */
  display: flex;
  align-items: center;
}

/* 🎶 Bullet List Icons */
.service-details ul i {
  font-size: 1.25rem; /* 20px → 1.25rem */
  margin-right: 0.5rem; /* 8px → 0.5rem */
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# 🎵 Custom Bullets
--------------------------------------------------------------*/
.custom-bullets {
  list-style: none; /* Removes default bullets */
  padding-left: 0; /* Aligns with paragraph */
}

.custom-bullets li {
  font-size: 0.9rem; /* Adjusted text size */
  line-height: 1.3rem; /* Adjusted for better readability */
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.custom-bullets i {
  color: var(--accent-color); /* Uses site's accent color */
  font-size: 0.875rem; /* Adjusted icon size */
}

/*--------------------------------------------------------------
# 🎵 Main Call-to-Action Button (Service Details)
--------------------------------------------------------------*/
.service-details .btn-learn-more {
  font-weight: 500;
  font-size: 0.875rem; /* 14px → 0.875rem */
  letter-spacing: 0.0625rem; /* 1px → 0.0625rem */
  display: inline-block;
  padding: 0.5rem 1.75rem; /* 8px 28px → 0.5rem 1.75rem */
  transition: 0.4s ease-in-out;
  margin: 0.625rem; /* 10px → 0.625rem */
  border-radius: 0.25rem; /* 4px → 0.25rem */
  color: var(--accent-color);
  border: 0.125rem solid var(--accent-color); /* 2px → 0.125rem */
  background: transparent;
  text-transform: uppercase;
  animation: softGlow 3s infinite ease-in-out;
}

/* 🎶 Hover Effect */
.service-details .btn-learn-more:hover {
  background: color-mix(in srgb, var(--accent-color), white 20%);
  color: #fff;
  border-color: color-mix(in srgb, var(--accent-color), white 10%);
}

/* 🎶 Smooth Pulsing Glow */
@keyframes softGlow {
  0% { box-shadow: 0 0 0.3125rem transparent; transform: scale(1); opacity: 1; }
  50% { box-shadow: 0 0 0.9375rem rgba(255, 0, 0, 0.3); transform: scale(1.00); opacity: 0.9; }
  100% { box-shadow: 0 0 0.3125rem transparent; transform: scale(1); opacity: 1; }
}

/*--------------------------------------------------------------
# 🎵 Left Navigation Button (Smaller Version)
--------------------------------------------------------------*/
.left-nav .btn-nav {
  font-weight: 500;
  font-size: 0.75rem; /* 12px → 0.75rem */
  letter-spacing: 0.05rem;
  display: inline-block;
  padding: 0.375rem 1.25rem; /* 6px 20px → 0.375rem 1.25rem */
  transition: 0.3s ease-in-out;
  margin: 0.5rem;
  border-radius: 0.25rem;
  color: var(--accent-color);
  border: 0.125rem solid var(--accent-color); /* 2px → 0.125rem */
  background: transparent;
  text-transform: uppercase;
}

/* 🎶 Hover Effect */
.left-nav .btn-nav:hover {
  background: color-mix(in srgb, var(--accent-color), white 20%);
  color: #fff;
  border-color: color-mix(in srgb, var(--accent-color), white 10%);
}

/* 🎶 Soft Glow Animation for Left Nav */
@keyframes softGlowNav {
  0% { box-shadow: 0 0 0.25rem transparent; transform: scale(1); opacity: 1; }
  50% { box-shadow: 0 0 0.5rem rgba(255, 0, 0, 0.3); transform: scale(1.01); opacity: 0.9; }
  100% { box-shadow: 0 0 0.25rem transparent; transform: scale(1); opacity: 1; }
}

.left-nav .btn-nav {
  animation: softGlowNav 3s infinite ease-in-out;
}

/* 🎶 Centering the Left Nav Button */
.left-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 0.625rem;
}






/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-item {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.1);
  padding: 30px;
  position: relative;
  height: 100%;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50px;
  border: 6px solid var(--background-color);
  float: left;
  margin: 0 10px 0 0;
}

.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 20%);
  margin: 0;
}

.testimonials .testimonial-item .stars {
  margin: 10px 0;
}

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

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

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

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-item {
  background-color: var(--surface-color);
  box-shadow: 0px 5px 90px rgba(0, 0, 0, 0.1);
  padding: 40px 20px;
  text-align: center;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}

.pricing .pricing-item h3 {
  padding: 15px;
  margin-top: 15px;
  font-size: 18px;
  font-weight: 600;
}

.pricing .pricing-item h4 {
  color: var(--accent-color);
  font-size: 42px;
  font-family: var(--default-font);
  font-weight: 500;
}

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

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

.pricing .pricing-item ul {
  padding: 20px 0;
  list-style: none;
  text-align: center;
  line-height: 20px;
  font-size: 14px;
}

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

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

.pricing .pricing-item .btn-wrap {
  padding: 15px;
  text-align: center;
}

.pricing .pricing-item .btn-buy {
  color: var(--accent-color);
  border: 2px solid var(--accent-color);
  display: inline-block;
  padding: 10px 40px 12px 40px;
  border-radius: 50px;
  font-size: 14px;
  font-family: var(--heading-font);
  font-weight: 600;
  transition: 0.3s;
}

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

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

.pricing .recommended .btn-buy:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.pricing .recommended-badge {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  font-size: 13px;
  padding: 3px 25px 6px 25px;
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--accent-color);
  border-radius: 50px;
}

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

.portfolio-details .swiper-wrapper {
  height: auto;
}

.portfolio-details .swiper-button-prev,
.portfolio-details .swiper-button-next {
  width: 48px;
  height: 48px;
}

.portfolio-details .swiper-button-prev:after,
.portfolio-details .swiper-button-next:after {
  color: rgba(255, 255, 255, 0.8);
  background-color: rgba(0, 0, 0, 0.15);
  font-size: 24px;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.portfolio-details .swiper-button-prev:hover:after,
.portfolio-details .swiper-button-next:hover:after {
  background-color: rgba(0, 0, 0, 0.3);
}

@media (max-width: 575px) {

  .portfolio-details .swiper-button-prev,
  .portfolio-details .swiper-button-next {
    display: none;
  }
}

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

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

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

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.portfolio-details .portfolio-info h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  bottom: 0;
}

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

.portfolio-details .portfolio-info ul li {
  display: flex;
  flex-direction: column;
  padding-bottom: 15px;
}

.portfolio-details .portfolio-info ul strong {
  text-transform: uppercase;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 14px;
}

.portfolio-details .portfolio-info .btn-visit {
  padding: 8px 40px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50px;
  transition: 0.3s;
}

.portfolio-details .portfolio-info .btn-visit:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

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

.portfolio-details .portfolio-description p {
  padding: 0;
}

.portfolio-details .portfolio-description .testimonial-item {
  padding: 30px 30px 0 30px;
  position: relative;
  background: color-mix(in srgb, var(--default-color), transparent 97%);
  margin-bottom: 50px;
}

.portfolio-details .portfolio-description .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50px;
  border: 6px solid var(--background-color);
  float: left;
  margin: 0 10px 0 0;
}

.portfolio-details .portfolio-description .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 15px 0 5px 0;
  padding-top: 20px;
}

.portfolio-details .portfolio-description .testimonial-item h4 {
  font-size: 14px;
  color: #6c757d;
  margin: 0;
}

.portfolio-details .portfolio-description .testimonial-item .quote-icon-left,
.portfolio-details .portfolio-description .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
  font-size: 26px;
  line-height: 0;
}

.portfolio-details .portfolio-description .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.portfolio-details .portfolio-description .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.portfolio-details .portfolio-description .testimonial-item p {
  font-style: italic;
  margin: 0 0 15px 0 0 0;
  padding: 0;
}



/*--------------------------------------------------------------
# Under Construction Main Section
--------------------------------------------------------------*/
.under-construction-main article {
  background-color: var(--surface-color);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 30px;
  height: 100%;
}

.under-construction-main .post-img {
  max-height: 440px;
  margin: -30px -30px 0 -30px;
  overflow: hidden;
}

.under-construction-main .title {
  font-size: 24px;
  font-weight: 700;
  padding: 0;
  margin: 30px 0;
}

.under-construction-main .title a {
  color: var(--heading-color);
  transition: 0.3s;
}

.under-construction-main .title a:hover {
  color: var(--accent-color);
}

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

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

.under-construction-main .meta-top ul li+li {
  padding-left: 20px;
}

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

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

.under-construction-main .content {
  margin-top: 20px;
}

.under-construction-main .content .read-more {
  text-align: right;
}

.under-construction-main .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;
}

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







/*--------------------------------------------------------------
# Current Events Section
--------------------------------------------------------------*/

.current-events .section-heading {
  font-size: 2.5rem;
  color: var(--heading-color);
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 1rem;
  font-weight: 700;
}

.current-events .section-heading:after {
  content: "";
  position: absolute;
  width: 70px;
  height: 3px;
  background: var(--accent-color);
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.current-events .lead {
  font-size: 1.2rem;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}


/*--------------------------------------------------------------
# Feature Boxes
--------------------------------------------------------------*/

.current-events .feature-box {
  background: var(--surface-color);
  border-radius: 12px;
  padding: 2.5rem 1.5rem;
  text-align: center;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.current-events .feature-box:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  z-index: -1;
  transition: height 0.5s cubic-bezier(0.65, 0, 0.35, 1);
  border-radius: 12px;
}

.current-events .feature-box:hover {
  transform: translateY(-10px);
  box-shadow: none;
}

.current-events .feature-box:hover:before {
  height: 100%;
}

.current-events .feature-box:hover .icon-container {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.current-events .feature-box .icon-container {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.8rem;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color), transparent 85%);
}

.current-events .feature-box h4 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.current-events .feature-box p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-size: 0.95rem;
  line-height: 1.6;
}

/*--------------------------------------------------------------
# Content Box Styles
--------------------------------------------------------------*/

.current-events .current-events-content-box {
  padding: 2rem;
}

.current-events .current-events-content-box h3 {
  font-size: 2rem;
  color: var(--heading-color);
  margin-bottom: 1.5rem;
  font-weight: 700;
  line-height: 1.3;
}

.current-events .current-events-content-box p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.current-events .current-events-content-box .progress-item {
  margin-bottom: 1.2rem;
}

.current-events .current-events-content-box .progress-item .progress-title {
  font-weight: 600;
  color: var(--heading-color);
  font-size: 1rem;
}

.current-events .current-events-content-box .progress-item .progress-percent {
  font-weight: 700;
  color: var(--accent-color);
}

.current-events .current-events-content-box .progress-item .progress {
  height: 8px;
  border-radius: 4px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  margin-top: 0.5rem;
  overflow: hidden;
}

.current-events .current-events-content-box .progress-item .progress .progress-bar {
  background-color: var(--accent-color);
  border-radius: 4px;
}

.current-events .current-events-content-box .btn-discover {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  border-radius: 30px;
  padding: 0.8rem 2rem;
  font-weight: 600;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.current-events .current-events-content-box .btn-discover:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: color-mix(in srgb, var(--accent-color), #000 15%);
  transition: width 0.3s ease;
  z-index: -1;
  border-radius: 30px;
}

.current-events .current-events-content-box .btn-discover:hover {
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 80%);
}

.current-events .current-events-content-box .btn-discover:hover:before {
  width: 100%;
}

/*--------------------------------------------------------------
# Image Grid Styles - Enhanced for Desktop
--------------------------------------------------------------*/

.current-events .current-events-image-grid {
  position: relative;
  height: 600px;
  margin: 0 2rem;
}

/*--------------------------------------------------------------
# Image Grid Styles - Bottom Padding and Important Tags
--------------------------------------------------------------*/

/* Image Grid Container */
.current-events .current-events-image-grid {
  position: relative !important;
  height: 650px !important;
  margin: 0 2rem !important;
  padding-bottom: 150px !important; /* Ensure space for lower images */
}

/* Main Image */
.current-events .current-events-image-grid .img-grid-main {
  position: absolute !important;
  top: 0 !important;
  right: 0 !important;
  width: 70% !important;
  height: 450px !important;
  object-fit: cover !important;
  border-radius: 12px !important;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
  z-index: 1 !important;
}

/* Secondary Image */
.current-events .current-events-image-grid .img-grid-secondary {
  position: absolute !important;
  right: 0 !important; /* Flush right */
  bottom: -40px !important; /* Float down */
  width: 65% !important; /* 5:4 aspect ratio */
  aspect-ratio: 5 / 4 !important; /* Force 5:4 aspect ratio */
  object-fit: cover !important;
  border-radius: 12px !important;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
  z-index: 2 !important;
}
/* Tertiary Image */
.current-events .current-events-image-grid .img-grid-tertiary {
  position: absolute !important;
  left: -5% !important; /* Pushed further left */
  bottom: 100px !important;
  width: 55% !important;
  aspect-ratio: 1 / 1 !important; /* Perfect square */
  object-fit: cover !important;
  border-radius: 12px !important;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
  z-index: 3 !important;
}
.current-events .current-events-image-grid .experience-badge {
  position: absolute;
  left: 20px;      /* 👈 replaces right:-30px */
  bottom: 40px;
  width: 130px;
  height: 130px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--contrast-color);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  z-index: 4;
}

.current-events .current-events-image-grid .experience-badge .years {
  font-size: 2.7rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.2rem;
}

.current-events .current-events-image-grid .experience-badge .text {
  font-size: 0.9rem;
  text-align: center;
  max-width: 100px;
  line-height: 1.2;
}



/*--------------------------------------------------------------
# Image Grid Styles - Mobile Adjustments
--------------------------------------------------------------*/

/* Container Adjustments */
@media (max-width: 768px) {
  .current-events .current-events-image-grid {
    height: auto !important;
    padding-bottom: 50px !important;
    margin: 0 1rem !important;
  }

  .current-events .current-events-image-grid {
  position: relative; /* 👈 This is crucial */
}

  /* Main Image */
  .current-events .current-events-image-grid .img-grid-main {
    width: 100% !important;
    height: auto !important;
    position: relative !important;
    top: 0 !important;
    right: 0 !important;
    margin-bottom: 20px !important;
  }

/* Hide Secondary Image on Mobile */
@media (max-width: 768px) {
  .current-events .current-events-image-grid .img-grid-secondary {
    display: none !important; /* Completely hide on mobile */
  }
}
  /* Tertiary Image */
  .current-events .current-events-image-grid .img-grid-tertiary {
    width: 100% !important;
    height: auto !important;
    position: relative !important;
    left: 0 !important;
    bottom: 0 !important;
    margin-bottom: 20px !important;
  }

/* Badge */
@media (max-width: 768px) {
  .current-events .current-events-image-grid .experience-badge {
    display: none !important; /* Hide badge on mobile */
  }
}





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

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info {
  background-color: var(--surface-color);
  padding: 40px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.contact .info h3 {
  font-weight: 600;
  font-size: 24px;
}

.contact .info p {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 30px;
  font-size: 15px;
}

.contact .info-item+.info-item {
  padding-top: 20px;
  margin-top: 20px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.contact .info-item i {
  font-size: 24px;
  color: var(--accent-color);
  transition: all 0.3s ease-in-out;
  margin-right: 20px;
}

.contact .info-item h4 {
  padding: 0;
  font-size: 18px;
  line-height: 24px;
  font-weight: 600;
  margin-bottom: 5px;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.contact .php-email-form {
  width: 100%;
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  color: var(--default-color);
  background-color: var(--surface-color);
  border-radius: 0px;
  box-shadow: none;
  font-size: 14px;
  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 input[type=text],
.contact .php-email-form input[type=email] {
  height: 48px;
  padding: 10px 15px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
  height: 290px;
}

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

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

/* Style the dropdown (select) to match input fields */
.php-email-form select {
  width: 100%;
  height: 48px;
  padding: 10px 15px;
  font-size: 14px;
  color: var(--default-color);
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 4px;
  font-family: inherit;
  appearance: none; /* Removes default dropdown styles */
  cursor: pointer;
}

/* Style dropdown when focused */
.php-email-form select:focus {
  border-color: var(--accent-color);
  outline: none;
}

/* Ensure dropdown options match styling */
.php-email-form option {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
  font-family: inherit;
}

/* Fix: Remove unwanted squares by disabling the default arrow */
.php-email-form select::-ms-expand {
  display: none;
}

/* Alternative custom dropdown styling using background SVG */
.php-email-form select {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="gray"><path d="M7 10l5 5 5-5H7z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 16px;
  padding-right: 35px; /* Adjust to prevent text overlap */
}


/* Style dropdowns to match input fields */
.php-email-form select,
.php-email-form input[type="text"],
.php-email-form textarea {
  width: 100%;
  height: 48px;
  padding: 10px 15px;
  font-size: 14px;
  color: var(--default-color);
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 4px;
  font-family: inherit;
  appearance: none; /* Removes default styles */
}

/* Style radio buttons */
.php-email-form input[type="radio"] {
  margin-right: 5px;
}

/* Radio labels should be inline */
.php-email-form label {
  font-size: 14px;
  margin-right: 15px;
  color: var(--default-color);
}

/* Style focus states */
.php-email-form input:focus,
.php-email-form select:focus,
.php-email-form textarea:focus {
  border-color: var(--accent-color);
  outline: none;
}


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



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

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

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

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


.navmenu .social {
  display: flex;
  gap: 10px;
  margin-left: auto;
  align-items: center;
  padding: 0 1rem;
}

.navmenu .social a {
  color: var(--default-color);
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.navmenu .social a:hover {
  color: #B53028; /* Match site highlight or brand color */
}

/* Align social icons */
.navmenu .nav-social {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 1rem;
}

.navmenu .nav-social a {
  font-size: 1.1rem;
  color: var(--default-color);
  transition: color 0.3s ease;
}

.navmenu .nav-social a:hover {
  color: #B53028; /* Or use your brand accent */
}
/* Align social icons like menu items */
.navmenu .nav-social {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-left: 1rem;
}

.navmenu .nav-social a {
  color: var(--default-color);
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.navmenu .nav-social a:hover {
  color: #B53028; /* Match your brand red */
}


.thank-you-message {
  background: #ffffff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  text-align: center;
}
.thank-you-message h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.thank-you-message h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #555;
}
.thank-you-message p {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}
.thank-you-message .btn {
  background-color: #B53028;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-weight: bold;
  text-decoration: none;
  color: white;
}
.thank-you-message .btn:hover {
  background-color: #9f2722;
}


/* ================================
   SDA INFO ICON - VIBRANT RED GLOW
   ================================ */

/* Glowing pulse animation */
@keyframes sdaRedPulse {
  0% {
    text-shadow:
      0 0 4px #B12B27,
      0 0 8px #B12B27,
      0 0 12px #B12B27;
  }
  50% {
    text-shadow:
      0 0 6px #B12B27,
      0 0 16px #B12B27,
      0 0 28px #B12B27;
  }
  100% {
    text-shadow:
      0 0 4px #B12B27,
      0 0 8px #B12B27,
      0 0 12px #B12B27;
  }
}

/* Base portfolio icon styles */
.portfolio-info a {
  font-size: 1.5rem;
  display: inline-block;
  transition: transform 0.2s ease;
}

.portfolio-info a:hover {
  transform: scale(1.1);
}

/* Glowing red info icon */
.sda-info-link i {
  color: #B12B27; /* SDA Red */
  animation: sdaRedPulse 1.8s ease-in-out infinite;
  transition: transform 0.3s ease;
}

/* Stronger glow on hover */
.sda-info-link:hover i {
  transform: scale(1.2);
  text-shadow:
    0 0 4px #D0665F,     /* softened red (mid-tone) */
    0 0 10px #E97D77,    /* rose tint */
    0 0 18px #F2A6A2,    /* light salmon glow */
    0 0 24px #B12B27;    /* deep brand red core */

    
/* Force spacing between icons */
.portfolio-info a + a {
  margin-left: 1.25rem !important; /* ~20px space */
}

.portfolio-info .preview-link + .sda-info-link {
  margin-left: 2rem !important;
}


.service-content .icon i {
  color: #f0f0f0 !important; /* Soft white tone */
}


/* 🌐 Mobile-Only Utility Class */
.mobile-only {
  display: none;
}

@media (max-width: 768px) {
  .mobile-only {
    display: block !important;
  }
}


