
/* Fonts */
:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Poppins",  sans-serif;
  --nav-font: "Poppins",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #212529; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #814103; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #aa5909; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
 --background-colored: rgba(13, 66, 255, 0.03);
}

/* 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: rgba(255, 255, 255, 0.6);  /* The default color of the main navmenu links */
  --nav-hover-color: #ffffff; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #212529; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #aa5909; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f7f9fc;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #0e1d34;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #19335c;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* 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 {
  --background-color: rgba(255, 255, 255, 0);
  --heading-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 2.5rem;        /* keeps it from being too tall */
  max-width: 100%;         /* makes sure it scales responsively */
  height: auto;            /* preserves aspect ratio */
  width: auto;             /* avoids distortion */
  margin-right: 12px;      /* give space to the right */
  display: inline-block;   /* ensures proper alignment */
  vertical-align: middle;  /* centers logo with text/nav */
}


.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--accent-color);
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 25px;
  margin: 0 0 0 30px;
  border-radius: 4px;
  transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 3;
  }
}

.scrolled .header {
  padding: 10px 0;
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: rgba(14, 29, 52, 0.9);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 25px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 19px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* 🌟 Mobile Nav - Creative Slide-in */
@media (max-width: 1199px) {
  .navmenu ul {
    display: flex;
    flex-direction: column;
    gap: 0;
    list-style: none;
    position: fixed;
    top: 0;
    right: -100%; /* off screen initially */
    width: 80%;
    max-width: 320px;
    height: 100%;
    background-color: var(--nav-mobile-background-color);
    padding: 70px 0 30px 0;
    margin: 0;
    transition: right 0.4s ease-in-out; /* smooth slide */
    z-index: 9998;
    overflow-y: auto;
    box-shadow: -4px 0 15px rgba(0,0,0,0.2);
  }

  /* active state - slide in */
  .mobile-nav-active .navmenu ul {
    right: 0;
  }

  /* nav items */
  .navmenu li {
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

  .navmenu a {
        margin: 10px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 10px;
        font-size: 25px;
        font-weight: 500;
        border-bottom: 2px solid var(--accent-color);
        color: var(--nav-dropdown-color);
        transition: all 0.3s ease;
    }

  /* hover + active links */
  .navmenu a:hover {
    background: rgba(255,255,255,0.05);
    color: var(--accent-color);
  }

  .navmenu a.active {
    background: var(--accent-color);
    color: var(--contrast-color);
    font-weight: 600;
    border-left: 4px solid var(--contrast-color);
  }

  /* dropdown */
  .navmenu .dropdown ul {
    display: none;
    flex-direction: column;
    margin: 0;
    padding: 0;
    border-left: 2px solid var(--accent-color);
    background: rgba(0,0,0,0.05);
  }
  .navmenu .dropdown.active > ul {
    display: flex;
  }
  .navmenu .dropdown ul li a {
    font-size: 15px;
    padding-left: 30px;
  }

  /* mobile nav toggle */
  .mobile-nav-toggle {
    font-size: 28px;
    cursor: pointer;
    color: var(--nav-color);
    z-index: 10000;
  }

  /* close button */
  .mobile-nav-active .mobile-nav-toggle.bi-x {
    position: fixed;
    top: 0;
    left: 80px; /* 👈 move to far left */
    font-size: 40px;
    color: var(--nav-dropdown-color);
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
 .footer {
            background: var(--heading-color);
            padding: 2rem 1.5rem;
            border-top: 1px solid #e9ecef;
            margin-top: auto;
        }
        
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
        }
        
        .footer-nav {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            justify-content: center;
            margin-bottom: 1.5rem;
        }
        
        .footer-nav a {
            color: var(--contrast-color);
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
        }
        
        .footer-nav a:hover {
            color: #0d6efd;
        }
        
        .footer-nav a:hover::after {
            width: 100%;
        }
        
        .footer-nav a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: #0d6efd;
            transition: width 0.3s ease;
        }
        
        .separator {
            height: 1px;
            background: var(--contrast-color);
            margin-bottom: 1.5rem;
            width: 100%;
        }
        
        .footer-bottom {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 1.5rem;
        }
        
        .footer-social-icons {
            display: flex;
            gap: 1rem;
        }
        
        .footer-social-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px solid var(--default-color);
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: #f1f3f5;
            color: var(--default-color);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .footer-social-icon:hover {
            background: #0d6efd;
            color: white;
            transform: translateY(-2px);
        }
        
        .footer-copyright {
            color: var(--contrast-color);
            font-size: 0.9rem;
        }
        
        @media (max-width: 768px) {
            .footer-nav {
                gap: 1rem;
            }
            
            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
            
            .footer-social-icons {
                order: -1;
            }
        }
        
        @media (max-width: 480px) {
            .footer-nav {
                flex-direction: row;
                align-items: center;
                gap: 0.75rem;
            }
            
            .footer-nav a {
                font-size: 0.9rem;
            }
        }
/*--------------------------------------------------------------
# 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;
}

#preloader:before,
#preloader:after {
  content: "";
  position: absolute;
  border: 4px solid var(--accent-color);
  border-radius: 50%;
  animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

#preloader:after {
  animation-delay: -0.5s;
}

@keyframes animate-preloader {
  0% {
    width: 10px;
    height: 10px;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    opacity: 1;
  }

  100% {
    width: 72px;
    height: 72px;
    top: calc(50% - 36px);
    left: calc(50% - 36px);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# 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
--------------------------------------------------------------*/
 .hero-container {
            position: relative;
            height: 40vh;
            overflow: hidden;
        }

        .hero-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 1;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.6));
            z-index: 2;
        }

        .hero-content {
            position: relative;
            z-index: 3;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            color: var(--hero-contrast-color);
        }

        .hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            letter-spacing: -0.5px;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }

        .hero-breadcrumbs {
            position: absolute;
            bottom: 20px;
            left: 0;
            right: 0;
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 4;
        }

        .hero-breadcrumbs-nav {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            border-radius: 50px;
            padding: 0.8rem 1.5rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .hero-breadcrumb-list {
            display: flex;
            list-style: none;
            margin: 0;
            padding: 0;
            align-items: center;
        }

        .hero-breadcrumb-item {
            display: flex;
            align-items: center;
            font-size: 0.95rem;
        }

        .hero-breadcrumb-item + .hero-breadcrumb-item::before {
            content: ">";
            padding: 0 0.7rem;
            color: rgba(255, 255, 255, 0.7);
            font-weight: 300;
        }

        .hero-breadcrumb-link {
            color: rgba(255, 255, 255, 0.9);
            text-decoration: none;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }

        .hero-breadcrumb-link:hover {
            color: var(--hero-contrast-color);
        }

        .hero-breadcrumb-link i {
            font-size: 0.8rem;
        }

        .hero-breadcrumb-item.active .hero-breadcrumb-link {
            color: var(--hero-contrast-color);
            font-weight: 600;
        }

        /* Content section for demonstration */
        .content-section {
            padding: 4rem 2rem;
            max-width: 1000px;
            margin: 0 auto;
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .hero-title {
                font-size: 2.8rem;
            }
        }

        @media (max-width: 768px) {
            .hero-container {
                height: 35vh;
            }
            
            .hero-title {
                font-size: 2.3rem;
                padding: 0 1rem;
            }
            
            .hero-breadcrumbs-nav {
                padding: 0.7rem 1.2rem;
            }
            
            .hero-breadcrumb-item {
                font-size: 0.9rem;
            }
        }

        @media (max-width: 576px) {
            .hero-title {
                font-size: 2rem;
            }
            
            .hero-breadcrumb-list {
                flex-wrap: wrap;
                justify-content: center;
            }
            
            .hero-breadcrumb-item {
                margin: 0.2rem 0;
            }
            
            .hero-breadcrumb-item + .hero-breadcrumb-item::before {
                padding: 0 0.4rem;
            }
        }
/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 5px 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: 30px 0;
  margin-bottom: 5px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 0;
  position: relative;
  z-index: 2;
}

.section-title span {
  position: absolute;
  top: 4px;
  color: color-mix(in srgb, var(--heading-color), transparent 95%);
  left: 0;
  right: 0;
  z-index: 1;
  font-weight: 700;
  font-size: 52px;
  line-height: 1;
}

.section-title p {
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}

@media (max-width: 575px) {
  .section-title h2 {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .section-title span {
    font-size: 38px;
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 50vh;
  position: relative;
  padding: 120px 0 60px 0;
}

.hero .hero-bg {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 3;
}
.hero-img {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden; /* keeps image within bounds */
}

.hero-img img {
  width: 100%;          /* take full container width */
  height: auto;         /* keep aspect ratio */
  max-width: 100%;      /* don’t overflow parent */
  max-height: 500px;    /* cap image height for balance */
  object-fit: cover;    /* crop to fill nicely */
  border-radius: 3px;  /* optional: smooth corners */
  image-rendering: -webkit-optimize-contrast; /* sharpen on webkit browsers */
  image-rendering: crisp-edges;               /* for other engines */
}
.hero h2 {
  margin-bottom: 20px;
  padding: 0;
  font-size: 40px;
  font-weight: 700;
}

@media (max-width: 575px) {
  .hero h2 {
    font-size: 30px;
  }
}

.hero p {
  font-size: 15px;
  font-weight: 400;
  margin-bottom: 40px;
}

.hero form {
  background: color-mix(in srgb, var(--default-color) 5%, white 90%);
  padding: 10px;
  border-radius: 10px;
}

.hero form .form-control {
  padding-top: 18px;
  padding-bottom: 18px;
  padding-left: 20px;
  padding-right: 20px;
  border: none;
  margin-right: 10px;
  border: none !important;
  background: none !important;
}

.hero form .form-control:hover,
.hero form .form-control:focus {
  outline: none;
  box-shadow: none;
}

.hero form .btn-primary {
  color: var(--contrast-color);
  background-color: var(--accent-color);
  flex-shrink: 0;
  padding: 0 25px;
}

.hero form .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.hero .stats-item {
  padding: 5px;
  width: 100%;
}

.hero .stats-item span {
  font-size: 32px;
  display: block;
  font-weight: 700;
  margin-bottom: 15px;
  padding-bottom: 15px;
  position: relative;
}

.hero .stats-item span:after {
  content: "";
  position: absolute;
  display: block;
  width: 20px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.hero .stats-item p {
  padding: 0;
  margin: 0;
  font-family: var(--heading-font);
  font-size: 15px;
  font-weight: 600;
}

/*--------------------------------------------------------------
# Featured Services Section
--------------------------------------------------------------*/
.featured-services .service-item {
  position: relative;
  height: 100%;
  margin-bottom: 30px;
}

.featured-services .service-item .icon {
  margin-right: 20px;
}

.featured-services .service-item .icon i {
  color: var(--accent-color);
  font-size: 40px;
  transition: 0.3s;
}

.featured-services .service-item:hover .icon i {
  color: var(--accent-color);
}

.featured-services .service-item .title {
  color: var(--heading-color);
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 20px;
  transition: 0.3s;
}

.featured-services .service-item .description {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 10px;
}

.featured-services .service-item .readmore {
  display: flex;
  align-items: center;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  transition: 0.3s;
  font-weight: 700;
  font-size: 14px;
}

.featured-services .service-item .readmore i {
  margin-left: 8px;
}

.featured-services .service-item:hover .title,
.featured-services .service-item:hover .readmore,
.featured-services .service-item:hover .icon i {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content h3 {
  font-size: 2rem;
  font-weight: 700;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  display: flex;
  align-items: flex-start;
  margin-top: 40px;
}

.about .content ul i {
  flex-shrink: 0;
  font-size: 48px;
  color: var(--accent-color);
  margin-right: 20px;
  line-height: 0;
}

.about .content ul h5 {
  font-size: 18px;
  font-weight: 700;
}

.about .content ul p {
  font-size: 15px;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.pulsating-play-btn {
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .card {
  background-color: var(--surface-color);
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  position: relative;
  border-radius: 0;
  height: 100%;
}

.services .card .card-img {
  overflow: hidden;
  margin-bottom: 15px;
  border-radius: 0;
}

.services .card .card-img img {
  transition: 0.3s ease-in-out;
}

.services .card h3 {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 5px;
  padding: 10px 30px;
  text-transform: uppercase;
}

.services .card a {
  color: var(--heading-color);
  transition: 0.3;
}

.services .card a:hover {
  color: var(--accent-color);
}

.services .card p {
  padding: 0 30px;
  margin-bottom: 30px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 15px;
}

.services .card:hover .card-img img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  padding: 80px 0;
  position: relative;
  clip-path: inset(0);
}

.call-to-action img {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.call-to-action:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 20%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.call-to-action .container {
  position: relative;
  z-index: 3;
}

.call-to-action h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--accent-color);
}

.call-to-action p {
  color: var(--default-color);
}

.call-to-action .cta-btn {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 5px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid var(--accent-color);
  color: var(--contrast-color);
}

.call-to-action .cta-btn:hover {
  background: var(--accent-color);
  border: 2px solid var(--accent-color);
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .features-item {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.features .features-item+.features-item {
  margin-top: 100px;
}

@media (max-width: 640px) {
  .features .features-item+.features-item {
    margin-top: 40px;
  }
}

.features .features-item h3 {
  font-weight: 700;
  font-size: 26px;
}

.features .features-item ul {
  list-style: none;
  padding: 0;
}

.features .features-item ul li {
  padding-bottom: 10px;
  display: flex;
  align-items: center;
}

.features .features-item ul li:last-child {
  padding-bottom: 0;
}

.features .features-item ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--accent-color);
}

.features .features-item p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-item {
  background-color: var(--surface-color);
  box-shadow: 0 3px 20px -2px rgba(0, 0, 0, 0.1);
  border-top: 4px solid var(--background-color);
  padding: 60px 40px;
  height: 100%;
  border-radius: 5px;
}

.pricing h3 {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 20px;
}

.pricing h4 {
  color: var(--accent-color);
  font-size: 48px;
  font-weight: 400;
  font-family: var(--heading-font);
  margin-bottom: 0;
}

.pricing h4 sup {
  font-size: 28px;
}

.pricing h4 span {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 18px;
}

.pricing ul {
  padding: 20px 0;
  list-style: none;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  text-align: left;
  line-height: 20px;
}

.pricing ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.pricing ul i {
  color: #059652;
  font-size: 24px;
  padding-right: 3px;
}

.pricing ul .na {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing ul .na i {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing ul .na span {
  text-decoration: line-through;
}

.pricing .buy-btn {
  color: var(--accent-color);
  display: inline-block;
  padding: 8px 35px 10px 35px;
  border-radius: 50px;
  transition: none;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--heading-font);
  transition: 0.3s;
  border: 1px solid var(--accent-color);
}

.pricing .buy-btn:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.pricing .featured {
  border-top-color: var(--accent-color);
}

.pricing .featured .buy-btn {
  background: var(--accent-color);
  color: var(--contrast-color);
}

@media (max-width: 992px) {
  .pricing .box {
    max-width: 60%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 767px) {
  .pricing .box {
    max-width: 80%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 420px) {
  .pricing .box {
    max-width: 100%;
    margin: 0 auto 30px auto;
  }
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .info h3 {
  font-weight: 700;
  font-size: 32px;
}

.testimonials .swiper {
  box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.05);
  background-color: var(--surface-color);
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  box-sizing: content-box;
  min-height: 200px;
  position: relative;
  margin: 30px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  height: 90px;
  border-radius: 50px;
  border: 6px solid var(--background-color);
  margin-right: 10px;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 14px;
  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 60%);
  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 auto 15px auto;
}

.testimonials .swiper-wrapper {
  height: auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  margin-bottom: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
  border: none;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

@media (max-width: 767px) {

  .testimonials .testimonials-carousel,
  .testimonials .testimonials-slider {
    overflow: hidden;
  }

  .testimonials .testimonial-item {
    margin: 15px;
  }
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-container {
  margin-top: 15px;
}

.faq .faq-container .faq-item {
  position: relative;
  padding: 20px;
  margin-bottom: 20px;
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  overflow: hidden;
  transition: 0.3s;
}

.faq .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  margin: 0 30px 0 32px;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item h3 span {
  color: var(--accent-color);
  padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
}

.faq .faq-container .faq-item .faq-icon {
  position: absolute;
  top: 22px;
  left: 20px;
  font-size: 20px;
  line-height: 0;
  transition: 0.3s;
  color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-active {
  background-color: var(--heading-color);
  transition: 0.3s;
}

.faq .faq-container .faq-active h3,
.faq .faq-container .faq-active h3:hover,
.faq .faq-container .faq-active .faq-toggle,
.faq .faq-container .faq-active .faq-icon,
.faq .faq-container .faq-active .faq-content {
  color: var(--contrast-color);
}

.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats .stats-item {
  padding: 30px;
  width: 100%;
}

.stats .stats-item span {
  color: var(--heading-color);
  font-size: 48px;
  display: block;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.stats .stats-item span:after {
  content: "";
  position: absolute;
  display: block;
  width: 25px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.stats .stats-item p {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 0;
  margin: 0;
  font-family: var(--heading-font);
  font-weight: 500;
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .member {
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  text-align: center;
  margin-bottom: 20px;
}

.team .member img {
  margin: -1px -1px 30px -1px;
}

.team .member .member-content {
  padding: 0 20px 30px 20px;
}

.team .member h4 {
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 18px;
}

.team .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.team .member p {
  padding-top: 10px;
  font-size: 14px;
  font-style: italic;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.team .member .social {
  margin-top: 15px;
}

.team .member .social a {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  transition: 0.3s;
}

.team .member .social a:hover {
  color: var(--accent-color);
}

.team .member .social i {
  font-size: 18px;
  margin: 0 2px;
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .services-list {
  background-color: var(--surface-color);
  padding: 10px 30px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  margin-bottom: 20px;
}

.service-details .services-list a {
  display: block;
  line-height: 1;
  padding: 8px 0 8px 15px;
  border-left: 3px solid color-mix(in srgb, var(--default-color), transparent 70%);
  margin: 20px 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.service-details .services-list a.active {
  color: var(--heading-color);
  font-weight: 700;
  border-color: var(--accent-color);
}

.service-details .services-list a:hover {
  border-color: var(--accent-color);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}

.service-details h4 {
  font-size: 20px;
  font-weight: 700;
}

.service-details p {
  font-size: 15px;
}

.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Alt Pricing Section
--------------------------------------------------------------*/
.alt-pricing .pricing-item {
  background-color: var(--surface-color);
  box-shadow: 0 3px 20px -2px rgba(0, 0, 0, 0.1);
  padding-bottom: 30px;
  position: relative;
}

.alt-pricing .pricing-item h3 {
  font-weight: 700;
  margin-bottom: 0;
  font-size: 24px;
}

.alt-pricing .pricing-item h4 {
  font-size: 48px;
  color: var(--accent-color);
  font-weight: 400;
  font-family: var(--heading-font);
  margin-bottom: 25px;
  text-align: center;
}

.alt-pricing .pricing-item h4 sup {
  font-size: 28px;
}

.alt-pricing .pricing-item h4 span {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  font-size: 18px;
}

.alt-pricing .pricing-item ul {
  padding: 20px 0;
  list-style: none;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  text-align: left;
  line-height: 20px;
}

.alt-pricing .pricing-item ul li {
  padding-top: 15px;
  display: flex;
  align-items: center;
}

.alt-pricing .pricing-item ul i {
  color: #059652;
  font-size: 24px;
  padding-right: 3px;
}

.alt-pricing .pricing-item ul .na {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.alt-pricing .pricing-item ul .na i {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.alt-pricing .pricing-item ul .na span {
  text-decoration: line-through;
}

.alt-pricing .buy-btn {
  color: var(--contrast-color);
  background-color: var(--accent-color);
  border: 2px solid var(--accent-color);
  display: inline-block;
  padding: 12px 40px;
  border-radius: 4px;
  transition: none;
  font-size: 16px;
  font-weight: 500;
  transition: 0.3s;
  font-family: var(--heading-font);
}

.alt-pricing .buy-btn:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.alt-pricing .featured {
  background: var(--accent-color);
}

.alt-pricing .featured h3,
.alt-pricing .featured h4,
.alt-pricing .featured h4 span,
.alt-pricing .featured ul,
.alt-pricing .featured ul .na,
.alt-pricing .featured ul i,
.alt-pricing .featured ul .na i {
  color: var(--contrast-color);
}

.alt-pricing .featured .buy-btn {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--contrast-color);
}

.alt-pricing .featured .buy-btn:hover {
  background: color-mix(in srgb, var(--accent-color) 90%, black 15%);
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item+.info-item {
  margin-top: 40px;
}

.contact .info-item i {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 20px;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .info-item h3 {
  font-size: 20px;
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .php-email-form {
  height: 100%;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Get A Quote Section
--------------------------------------------------------------*/
.get-a-quote .quote-bg {
  min-height: 500px;
  background-size: cover;
  background-position: center;
}

.get-a-quote .php-email-form {
  background: color-mix(in srgb, var(--default-color), transparent 97%);
  padding: 30px;
  height: 100%;
}

@media (max-width: 575px) {
  .get-a-quote .php-email-form {
    padding: 20px;
  }
}

.get-a-quote .php-email-form h3 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.get-a-quote .php-email-form h4 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 20px 0 0 0;
}

.get-a-quote .php-email-form p {
  font-size: 14px;
  margin-bottom: 20px;
}

.get-a-quote .php-email-form input[type=text],
.get-a-quote .php-email-form input[type=email],
.get-a-quote .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: color-mix(in srgb, var(--background-color), transparent 20%);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.get-a-quote .php-email-form input[type=text]:focus,
.get-a-quote .php-email-form input[type=email]:focus,
.get-a-quote .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.get-a-quote .php-email-form input[type=text]::placeholder,
.get-a-quote .php-email-form input[type=email]::placeholder,
.get-a-quote .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.get-a-quote .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 4px;
}

.get-a-quote .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}

/*landing page About*/
    .landing-about-about-section {
            position: relative;
            overflow: hidden;
        }

        .landing-about-section-title {
            color: var(--heading-color);
            font-weight: 700;
            margin-bottom: 2rem;
            position: relative;
            display: inline-block;
        }

        .landing-about-section-title:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 50px;
            height: 3px;
            background-color: var(--accent-color);
        }

        .landing-about-toggle-container {
            margin-bottom: 1.5rem;
        }

        .landing-about-toggle-header {
            background-color: var(--surface-color);
            padding: 0.5rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-left: 2px solid var(--accent-color);
            transition: all 0.3s ease;
        }

        .landing-about-toggle-header:hover {
            background-color: rgba(13, 66, 255, 0.05);
        }

        .landing-about-toggle-header h3 {
            color: var(--heading-color);
            margin: 0;
            font-size: 1.3rem;
        }

        .landing-about-toggle-content {
            padding: 0;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.4s ease;
            background-color: rgba(13, 66, 255, 0.03);
        }

        .landing-about-toggle-content.landing-about-active {
            padding: 1.5rem;
            max-height: 1000px;
        }

        .landing-about-toggle-icon {
            transition: transform 0.4s ease;
        }

        .landing-about-toggle-icon.landing-about-rotated {
            transform: rotate(180deg);
        }

        .landing-about-values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1rem;
        }

        .landing-about-value-item {
            padding: 0 0.5rem;
            background-color: var(--surface-color);
            border-left: 3px solid var(--accent-color);
        }

        .landing-about-org-image {
            width: 100%;
            height: auto;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .landing-about-org-image:hover {
            transform: scale(1.02);
        }

        .landing-about-image-container {
            position: relative;
            overflow: hidden;
            margin-bottom: 1.5rem;
        }

        .landing-about-image-container:after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(13,66,255,0.1) 0%, rgba(255,255,255,0) 100%);
            pointer-events: none;
        }

        .landing-about-cta-button {
            background-color: var(--accent-color);
            color: var(--contrast-color);
            border: none;
            padding: 0.8rem 1.5rem;
            font-weight: 600;
            transition: all 0.3s ease;
            display: inline-block;
            text-decoration: none;
            margin-right: 1rem;
            margin-bottom: 1rem;
        }

        .landing-about-cta-button:hover {
            background-color: var(--heading-color);
            color: var(--contrast-color);
        }

        .landing-about-quote-container {
            background-color: rgba(13,66,255,0.05);
            padding: 0.5rem;
            border-left: 4px solid var(--accent-color);
        }

        .landing-about-quote-text {
            font-style: italic;
            font-size: 1.2rem;
            color: var(--heading-color);
            margin-bottom: 1rem;
        }

        .landing-about-founder-name {
            font-weight: 600;
            color: var(--accent-color);
        }

        .landing-about-stats-section {
            padding: 3rem 0;
            background-color: rgba(13,66,255,0.03);
            margin-top: 3rem;
        }

        .landing-about-stat-item {
            text-align: center;
            padding: 1.5rem;
        }

        .landing-about-stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--accent-color);
            margin-bottom: 0.5rem;
        }

        .landing-about-stat-label {
            color: var(--heading-color);
            font-weight: 600;
        }

        /* Sticky sidebar for desktop */
        @media (min-width: 992px) {
            .landing-about-sticky-sidebar {
                position: sticky;
                top: 2rem;
                z-index: 10;
            }
        }

        @media (max-width: 992px) {
            .landing-about-image-container {
                margin-top: 2rem;
            }
            
            .landing-about-values-grid {
                grid-template-columns: 1fr;
            }
        }

        .landing-about-fade-in {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .landing-about-fade-in.landing-about-visible {
            opacity: 1;
            transform: translateY(0);
        }


        /*What we do css*/
         .whatwedo-section {
      background: linear-gradient(135deg, rgba(13, 66, 255, 0.03) 0%, rgba(255, 255, 255, 0.1) 100%);
    }

    .whatwedo-section-title {
      color: var(--heading-color);
      font-weight: 800;
      margin-bottom: 2.5rem;
      position: relative;
      display: inline-block;
      text-align: center;
      width: 100%;
      font-size: 2.2rem;
      letter-spacing: -0.5px;
    }

    

    .whatwedo-content-container {
      display: flex;
      flex-wrap: wrap;
      gap: 2.5rem;
    }

    .whatwedo-sdg-section {
      flex: 1;
      height: fit-content;
    }

    .whatwedo-sdg-title {
      color: var(--heading-color);
      font-size: 1.5rem;
      font-weight: 700;
    }

    .whatwedo-sdg-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
      gap: 1rem;
      margin: 1.5rem 0;
    }

    .whatwedo-sdg-item {
      text-align: center;
      padding: 1rem 0.5rem;
      background: rgba(13, 66, 255, 0.08);
      border-radius: 10px;
      transition: all 0.4s ease;
      cursor: pointer;
    }

    .whatwedo-sdg-item:hover {
      transform: translateY(-5px) scale(1.05);
      background: rgba(13, 66, 255, 0.12);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    }

    .whatwedo-sdg-number {
      font-size: 1.5rem;
      font-weight: 800;
      color: var(--accent-color);
      margin-bottom: 0.5rem;
    }

    .whatwedo-sdg-name {
      font-size: 0.8rem;
      color: var(--heading-color);
      font-weight: 600;
    }

    .whatwedo-activities-column {
      flex: 2.5;
      min-width: 300px;
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }

    .whatwedo-activities-container {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
    }

    .whatwedo-flip-card {
      perspective: 1000px;
      height: 180px;
      cursor: pointer;    
    }

    .whatwedo-flip-card-front,
    .whatwedo-flip-card-back {
      position: absolute;
      width: 100%;
      height: 100%;
      -webkit-backface-visibility: hidden;
      backface-visibility: hidden;
      overflow: hidden;
    }

    .whatwedo-flip-card-front {
      color: var(--default-color);
      display: flex;
      flex-direction: column;
    }

  

    .whatwedo-card-image {
      width: 100%;
      height: 77%;
      object-fit: cover;
      flex-shrink: 0;
      transition: all 0.4s ease;
      border-radius: 12px;
    }

    .whatwedo-flip-card:hover .whatwedo-card-image {
      transform: scale(1.05);
    }

    .whatwedo-card-title-container {
      padding: 1rem;
      background: var(--surface-color);
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-grow: 0; 
    }

    .whatwedo-activity-title {
      color: var(--heading-color);
      margin: 0;
      font-size: 1rem;
      font-weight: 700;
      text-align: left;
      flex: 1;
    }

    .whatwedo-flip-icon {
      color: var(--accent-color);
      font-size: 1.2rem;
      transition: all 0.3s ease;
    }

    .whatwedo-flip-card:hover .whatwedo-flip-icon {
      transform: translateX(5px);
    }

    .whatwedo-flip-card-back .whatwedo-activity-title {
      color: var(--contrast-color);
      margin-bottom: 1rem;
      text-align: center;
      font-size: 1.1rem;
    }

    .whatwedo-activity-description {
      font-size: 0.85rem;
      margin-bottom: 1.5rem;
      text-align: center;
      line-height: 1.5;
    }

    .whatwedo-read-more {
      display: inline-block;
      padding: 8px 20px;
      background-color: var(--contrast-color);
      color: var(--accent-color);
      text-decoration: none;
      border-radius: 30px;
      font-weight: 600;
      transition: all 0.3s ease;
      font-size: 0.85rem;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    }

    .whatwedo-read-more:hover {
      background-color: var(--heading-color);
      color: var(--contrast-color);
      transform: translateY(-3px);
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    }

  .whatwedo-cta-buttons {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 per row on desktop */
  gap: 0.75rem;
  background: var(--surface-color);
}

  .whatwedo-cta-button {
  padding: 10px 18px; /* smaller than before */
  font-size: 0.9rem;  /* reduce size */
  font-weight: 500;   /* slightly lighter */
  display: flex;
  justify-content: center; /* center icon + text */
  align-items: center;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid var(--accent-color) ;
}
.whatwedo-cta-button i {
  margin-right: 6px; /* small gap between icon and text */
}
    .whatwedo-cta-button:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 25px rgba(13, 66, 255, 0.35);
    }

    .whatwedo-cta-button.whatwedo-secondary {
      background: transparent;
      color: var(--accent-color);
      border: 2px solid var(--accent-color);
      box-shadow: 0 4px 10px rgba(13, 66, 255, 0.15);
    }

    .whatwedo-cta-button.whatwedo-secondary:hover {
      background: var(--accent-color);
      color: var(--contrast-color);
      box-shadow: 0 8px 20px rgba(13, 66, 255, 0.3);
    }

    /* Responsive Design */
    @media (max-width: 1200px) {
      .whatwedo-activities-container {
        grid-template-columns: repeat(2, 1fr);
      }
      .whatwedo-content-container {
        flex-direction: column;
      }
    }

    @media (max-width: 768px) {
      .whatwedo-activities-container {
        grid-template-columns: repeat(2, 1fr);
      }
      .whatwedo-flip-card {
        height: 260px;
      }
      .whatwedo-cta-buttons {
    grid-template-columns: repeat(2, 1fr); /* 2 per row on mobile */
  }
      .whatwedo-cta-button {
        width: 100%;
        text-align: center;
        justify-content: center;
      }
    }

    @media (max-width: 576px) {
      .whatwedo-sdg-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }


/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-info h3 {
  font-size: 24px;
  margin-bottom: 5px;
}

.portfolio .portfolio-info p {
  font-size: 15px;
}

.portfolio .portfolio-filters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
}

.portfolio .portfolio-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 0;
  font-size: 16px;
  font-weight: 400;
  margin: 0 10px;
  line-height: 1;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li.filter-active {
  border-bottom: 2px solid var(--default-color);
  padding-bottom: 3px;
}

.portfolio .portfolio-filters li:first-child {
  margin-left: 0;
}

.portfolio .portfolio-filters li:last-child {
  margin-right: 5px;
}

@media (max-width: 575px) {
  .portfolio .portfolio-filters li {
    font-size: 14px;
    margin: 0 5px;
  }
}

.portfolio .portfolio-content {
  position: relative;
  overflow: hidden;
  height: 200px;
}

.portfolio .portfolio-content img {
  transition: 0.3s;
  border-radius: 5px;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.portfolio .portfolio-content .portfolio-info {
  opacity: 0;
  position: absolute;
  inset: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: rgba(0, 0, 0, 0.6);
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.portfolio .portfolio-content .portfolio-info h4 {
  font-size: 18px;
  mask-border: 0;
  font-weight: 400;
  color: #ffffff;
  display: inline-block;
}

.portfolio .portfolio-content .portfolio-info p {
  text-align: center;
  display: inline-block;
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
}

.portfolio .portfolio-content .portfolio-info .preview-link,
.portfolio .portfolio-content .portfolio-info .details-link {
  font-size: 26px;
  color: #fff;
  transition: 0.3s;
  line-height: 1.2;
}

.portfolio .portfolio-content .portfolio-info .preview-link:hover,
.portfolio .portfolio-content .portfolio-info .details-link:hover {
  color: var(--accent-color);
}

.portfolio .portfolio-content .portfolio-info .details-link {
  left: 50%;
  font-size: 34px;
  line-height: 0;
}

.portfolio .portfolio-content:hover .portfolio-info {
  opacity: 1;
}

.portfolio .portfolio-content:hover img {
  transform: scale(1.1);
}


/*main subscrition section*/
 .main-subscribe-section {
           border-radius: 12px;
           border: 1px solid rgba(13, 66, 255, 0.15);
           padding: 1.5rem;
          margin: 20px;
        }

        .main-subscribe-container {
            display: flex;
            align-items: center;
            gap: 2.5rem;
        }

        .main-subscribe-content {
            flex: 1;
        }

        .main-subscribe-title {
            color: var(--heading-color);
            font-weight: 700;
            font-size: 1.8rem;
            margin-bottom: 1rem;
        }

        .main-subscribe-text {
            color: var(--default-color);
            font-size: 1.05rem;
            line-height: 1.6;
            margin-bottom: 0;
        }

        .main-subscribe-form {
            flex: 1;
            display: flex;
        }

        .main-subscribe-form-group {
            display: flex;
            width: 100%;
            position: relative;
        }

        .main-subscribe-email-input {
            flex: 1;
            padding: 14px 20px;
            border: 2px solid rgba(13, 66, 255, 0.2);
            border-radius: 8px 0 0 8px;
            font-size: 1rem;
            transition: all 0.3s ease;
            height: 52px;
        }

        .main-subscribe-email-input:focus {
            outline: none;
            border-color: var(--accent-color);
            box-shadow: 0 0 0 3px rgba(13, 66, 255, 0.1);
        }

        .main-subscribe-btn {
            background: linear-gradient(135deg, var(--accent-color) 0%, var(--heading-color) 100%);
            color: var(--contrast-color);
            border: none;
            padding: 0 28px;
            border-radius: 0 8px 8px 0;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            white-space: nowrap;
            height: 52px;
        }

        .main-subscribe-btn:hover {
            background: linear-gradient(135deg, var(--heading-color) 0%, var(--accent-color) 100%);
            box-shadow: 0 5px 15px rgba(13, 66, 255, 0.3);
        }

        .main-subscribe-success-message {
            display: none;
            margin-top: 1rem;
            padding: 12px 16px;
            background: rgba(40, 167, 69, 0.1);
            border: 1px solid rgba(40, 167, 69, 0.2);
            border-radius: 6px;
            color: #28a745;
            font-weight: 500;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .main-subscribe-container {
                flex-direction: column;
                gap: 1.5rem;
            }
            
            .main-subscribe-content {
                text-align: center;
            }
            
            .main-subscribe-form {
                width: 100%;
            }
        }

        @media (max-width: 576px) {
            .main-subscribe-section {
                padding: 1rem;
            }
            
            .main-subscribe-form-group {
                flex-direction: column;
            }
            
            .main-subscribe-email-input {
                border-radius: 8px;
                margin-bottom: 12px;
            }
            
            .main-subscribe-btn {
                border-radius: 8px;
                width: 100%;
            }
        }

        /*events css*/
        
      .events-section {
        padding: 1rem 1rem;
        max-width: 1200px;
        margin: 0 auto;
        background: var(--background-colored);
      }

      .event-section-title {
        color: var(--heading-color);
        font-weight: 800;
        margin-bottom: 3rem;
        text-align: center;
        font-size: 2.5rem;
        position: relative;
      }


      .events-container {
        display: flex;
        gap: 0.5rem;
        margin-bottom: 1rem;
      }

      .events-info {
        flex: 1;
        padding: 0.5rem;
        border-radius: 16px;
        height: fit-content;
      }

      .event-info-title {
        color: var(--heading-color);
        font-weight: 700;
        margin-bottom: 1.5rem;
        font-size: 1.5rem;
        display: flex;
        align-items: center;
        gap: 0.75rem;
      }

      .event-info-title i {
        color: var(--accent-color);
        font-size: 1.8rem;
      }

      .events-description {
        margin-bottom: 0.5rem;
        font-size: 1.05rem;
      }

      .event-features-list {
        list-style: none;
        padding: 0;
        margin-bottom: 2.5rem;
      }

      .event-features-list li {
        padding: 0.5rem 0;
        position: relative;
        padding-left: 2.5rem;
      }

      .event-features-list li:before {
        content: "✓";
        position: absolute;
        left: 0;
        top: 0.5rem;
        width: 24px;
        height: 24px;
        background: var(--accent-color);
        color: var(--contrast-color);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.8rem;
      }

      .events-ongoing-events {
        margin-top: 0.5rem;
      }

      .event-ongoing-title {
        color: var(--heading-color);
        font-weight: 600;
        margin-bottom: 1rem;
        font-size: 1.2rem;
      }

      .event-no-events {
        background: rgba(13, 66, 255, 0.05);
        padding: 1.5rem;
        border-radius: 12px;
        text-align: center;
        color: var(--heading-color);
        font-style: italic;
      }

      .events-display {
        flex: 2;
      }

      .events-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
        margin-bottom: 0.5rem;
      }

      .event-category-title {
        color: var(--heading-color);
        font-weight: 700;
        margin-bottom: 1.5rem;
        font-size: 1.5rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
      }

      .event-category-title a {
        color: var(--accent-color);
        text-decoration: none;
        font-size: 1rem;
        font-weight: 600;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        transition: all 0.3s ease;
      }

      .event-category-title a:hover {
        gap: 0.75rem;
      }

      .event-card {
        overflow: hidden;
        transition: all 0.3s ease;
        height: 100%;
        display: flex;
        flex-direction: column;
      }

      .event-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
      }

      .event-image-container {
        width: 100%;
        height: 150px;
        overflow: hidden;
        position: relative;
      }

      .event-image {
        border: solid 3px var(--heading-color);
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
      }

      .event-card:hover .event-image {
        transform: scale(1.05);
      }

      .event-info {
        padding: 0.1rem;
        flex-grow: 1;
        display: flex;
        flex-direction: row;
        justify-content: center; 
        align-items: center;          
        gap: 1.5rem;                  
      }

      .event-name {
        color: var(--default-color);
        font-weight: 600;
        margin: 0.75rem 0;
        font-size: 0.8rem;
        flex-grow: 1;
      }

      .event-date {
        color: var(--heading-color);
        font-weight: 500;
        font-size: 0.9rem;
        margin-bottom: 1rem;
      }

      .event-read-more {
        align-self: flex-start;
        color: var(--accent-color);
        text-decoration: none;
        font-weight: 600;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        transition: all 0.3s ease;
      }

      .event-read-more:hover {
        gap: 0.75rem;
      }

      .event-cta-button {
        display: inline-block;
        padding: 14px 32px;
        background: linear-gradient(135deg, var(--accent-color) 0%, var(--heading-color) 100%);
        color: var(--contrast-color);
        text-decoration: none;
        border-radius: 50px;
        font-weight: 600;
        transition: all 0.3s ease;
        text-align: center;
        box-shadow: 0 6px 15px rgba(13, 66, 255, 0.25);
        margin-top: 1rem;
      }

      .event-cta-button:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(13, 66, 255, 0.35);
      }

      /* Responsive Design */
      @media (max-width: 992px) {
        .events-container {
          flex-direction: column;
        }

        .events-grid {
          grid-template-columns: repeat(2, 1fr);
        }
      }

      @media (max-width: 768px) {
        .events-grid {
          grid-template-columns:repeat(2,1fr);
         }
        .events-grid > *:nth-child(n+3) {
          display: none;
          }
     
        .event-section-title {
          font-size: 2rem;
        }
      }

      @media (max-width: 576px) {
        .event-card {
          flex-direction: column;
        }

        .events-section {
          padding: 1rem 0.5rem;
        }

        .event-category-title {
          flex-direction: row;
          align-items: flex-start;
          gap: 0.5rem;
        }

        .event-category-title a {
          align-self: flex-end;
        }
      }

      
    /*Gallery section css*/
     .gallery-section {
         margin: 0 auto;
    }

    .gallery-section-title {
      color: var(--heading-color);
      font-weight: 800;
      margin-bottom: 3rem;
      text-align: center;
      font-size: 2.5rem;
      position: relative;
    }


    .gallery-section-description {
      text-align: center;
      max-width: 700px;
      font-size: 1.1rem;
      color: var(--default-color);
    }

    .gallery-container {
      position: relative;
    }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.5rem;
      margin-bottom: 3rem;
    }

    .gallery-item {
      position: relative;
      border-radius: 5px;
      overflow: hidden;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
      transition: all 0.4s ease;
      aspect-ratio: 1/1;
    }

    .gallery-item:hover {
      transform: translateY(-8px);
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    }

    .gallery-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    .gallery-item:hover .gallery-image {
      transform: scale(1.1);
    }

    .gallery-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 25, 115, 0.65);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: opacity 0.4s ease;
      text-align: center;
      z-index: 2;
    }

    .gallery-item:hover .gallery-overlay {
      opacity: 1;
    }

    .gallery-title {
      color: var(--contrast-color);
      font-weight: 700;
      font-size: 1.2rem;
      margin-bottom: 1.0rem;
      transform: translateY(20px);
      transition: transform 0.4s ease;
    }

    .gallery-description {
      color: rgba(255, 255, 255, 0.9);
      font-size: 0.95rem;
      margin-bottom: 1rem;
      transform: translateY(20px);
      transition: transform 0.4s ease 0.1s;
    }

    .gallery-item:hover .gallery-title,
    .gallery-item:hover .gallery-description {
      transform: translateY(0);
    }

    .gallery-actions {
     font-size: 4rem;
      color: #fff;
      transition: transform 0.3s ease, color 0.3s ease;
    }

    .gallery-item:hover .gallery-actions {
      transform: translateY(0);
    }

    .gallery-btn {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: var(--accent-color);
      color: var(--contrast-color);
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .gallery-btn:hover {
      background: var(--contrast-color);
      color: var(--accent-color);
      transform: scale(1.1);
    }

    .gallery-view-all-btn {
      display: block;
      width: fit-content;
      margin: 0 auto;
      padding: 14px 40px;
      background: linear-gradient(135deg, var(--accent-color) 0%, var(--heading-color) 100%);
      color: var(--contrast-color);
      text-decoration: none;
      border-radius: 50px;
      font-weight: 600;
      transition: all 0.3s ease;
      text-align: center;
      box-shadow: 0 6px 15px rgba(13, 66, 255, 0.25);
    }

    .gallery-view-all-btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 25px rgba(13, 66, 255, 0.35);
    }

    /* Mobile responsive styles */
    @media (max-width: 992px) {
      .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    @media (max-width: 768px) {
      .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      
      .gallery-section-title {
        font-size: 2rem;
      }
      
      /* Limit to 6 items on mobile */
      .gallery-grid .gallery-item:nth-child(n+7) {
        display: none;
      }
    }

    @media (max-width: 576px) {
        
      .gallery-grid {
        gap: 0.5rem;
      }
      
      .gallery-overlay {
        padding: 1rem;
      }
      
      .gallery-title {
        font-size: 1rem;
      }
      
      .gallery-description {
        font-size: 0.85rem;
      }
      
      .gallery-btn {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
      }
    }

    
/*--------------------------------------------------------------
# teams Section
--------------------------------------------------------------*/
.teams .team-member {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  border-radius: 5px;
  transition: 0.5s;
  padding: 10px;
  height: 100%;
}

@media (max-width: 468px) {
  .teams .team-member {
    flex-direction: row;
    justify-content: space-between !important;
    align-items: center !important;
  }
}

.teams .team-member .pic {
  overflow: hidden;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  flex-shrink: 0;
}

.teams .team-member .pic img {
  transition: ease-in-out 0.3s;
  object-fit: cover;
}

.teams .team-member:hover {
  transform: translateY(-10px);
}

.teams .team-member .member-info {
  padding-left: 30px;
}

@media (max-width: 468px) {
  .teams .team-member .member-info {
    padding: 30px 0 0 0;
    text-align: center;
  }
}

.teams .team-member h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 20px;
}

.teams .team-member span {
  display: block;
  font-size: 15px;
  padding-bottom: 10px;
  position: relative;
  font-weight: 500;
}

.teams .team-member span::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 85%);
  bottom: 0;
  left: 0;
}

@media (max-width: 468px) {
  .teams .team-member span::after {
    left: calc(50% - 25px);
  }
}

.teams .team-member p {
  margin: 10px 0 0 0;
  font-size: 14px;
}

.teams .team-member .social {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: start;
  width: 100%;
}

@media (max-width: 468px) {
  .teams .team-member .social {
    justify-content: center;
  }
}

.teams .team-member .social a {
  background: color-mix(in srgb, var(--default-color), transparent 94%);
  transition: ease-in-out 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  width: 36px;
  height: 36px;
}

.teams .team-member .social a i {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 16px;
  margin: 0 2px;
}

.teams .team-member .social a:hover {
  background: var(--accent-color);
}

.teams .team-member .social a:hover i {
  color: var(--contrast-color);
}

.teams .team-member .social a+a {
  margin-left: 8px;
}

        /*under maintainace*/
         .main-maintenance-container {
            margin: 0;
            padding: 0;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            color: #333;
            line-height: 1.5;
        }
         .maintenance-container {
            max-width: 600px;
            width: 100%;
            padding: 20px;
            text-align: center;
        }
        
        .maintenance-icon {
            font-size: 4rem;
            color: var(--accent-color);
            margin-bottom: 20px;
        }
        
        .maintenance-title {
            font-size: 2rem;
            color: var(--accent-color);
            margin: 0 0 15px 0;
            font-weight: 700;
        }
        
        .maintenance-description {
            font-size: 1.1rem;
            color: #555;
            margin-bottom: 30px;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .maintenance-buttons {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 12px;
            margin-bottom: 40px;
        }
        
        .maintenance-button {
            padding: 12px 24px;
            border-radius: 4px;
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.2s ease;
            border: none;
            cursor: pointer;
            font-size: 1rem;
        }
        
        .maintenance-button-primary {
            background: var(--accent-color);
            color: var(--white);
        }
        
        .maintenance-button-primary:hover {
            background: var(--heading-color);
        }
        
        .maintenance-button-secondary {
            background: transparent;
            color: var(--main-pink);
            border: 1px solid var(--accent-color);
        }
        
        .maintenance-button-secondary:hover {
            background: var(--accent-color);
            color: var(--white);
        }
        
        .maintenance-social {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 30px;
        }
        
        .maintenance-social-link {
            color: var(--accent-color);
            font-size: 1.5rem;
            transition: color 0.2s ease;
        }
        
        .maintenance-social-link:hover {
            color: var(--accent-color);
        }
        
        @media (max-width: 480px) {
            .maintenance-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .maintenance-button {
                width: 100%;
                max-width: 250px;
                justify-content: center;
            }
            
            .maintenance-title {
                font-size: 1.7rem;
            }
            
            .maintenance-description {
                font-size: 1rem;
            }
        }

        /*products css*/
           .product-shop-section {
      padding: 1rem 1rem;
      max-width: 1200px;
      margin: 0 auto;
    }

    .product-section-title {
      color: var(--heading-color);
      font-weight: 800;
      margin-bottom: 3rem;
      text-align: center;
      font-size: 2.5rem;
      position: relative;
    }


    .product-shop-container {
      display: flex;
      gap: 1rem;
    }

      .product-process-section {
  position: sticky;
  top: 0;
  align-self: flex-start;
  flex: 1 0 auto;     /* grow but don’t shrink too small */
  max-width: 35%;     /* or set percentage limit */
}

    .product-process-title {
      color: var(--heading-color);
      font-weight: 700;
      margin-bottom: 2rem;
      font-size: 1.8rem;
    }

    .product-process-steps {
      display: flex;
      flex-direction: column;
      gap: 2rem;
      position: relative;
      margin-left: 1.5rem;
      padding-bottom: 0.5rem;
    }

    .product-process-steps:before {
      content: '';
      position: absolute;
      left: 15px;
      top: 0;
      bottom: 0;
      width: 2px;
      background: linear-gradient(to bottom, var(--accent-color), transparent);
    }

    .product-process-step {
      display: flex;
      gap: 0.5rem;
      position: relative;
    }

    .product-step-number {
      width: 32px;
      height: 32px;
      background: var(--accent-color);
      color: var(--contrast-color);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: 0.9rem;
      flex-shrink: 0;
      z-index: 2;
    }

    .product-step-content {
      flex: 1;
    }

    .product-step-title {
      color: var(--heading-color);
      font-weight: 600;
      margin-bottom: 0.5rem;
      font-size: 1.1rem;
    }

    .product-step-description {
      color: var(--default-color);
      font-size: 0.95rem;
    }

    .product-view-all-btn {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 12px 24px;
      background: var(--accent-color);
      color: var(--contrast-color);
      text-decoration: none;
      border-radius: 6px;
      font-weight: 600;
      transition: all 0.3s ease;
      margin-top: 0.5rem;
    }

    .product-view-all-btn:hover {
      background: var(--heading-color);
      transform: translateY(-2px);
    }

    .product-products-section {
      flex: 2;
    }

    .product-products-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0.5rem;
    }

    .product-card {
      display: flex;
      flex-direction: column;
      transition: all 0.3s ease;
    }

    .product-card:hover {
      transform: translateY(-5px);
    }

    .product-image-container {
      position: relative;
      width: 100%;
      height: 250px;
      overflow: hidden;
      margin-bottom: 1rem;
    }

    .product-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 25, 115, 0.65);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: opacity 0.4s ease;
      text-align: center;
      z-index: 2;
    }

    .product-card:hover .product-overlay,
    .product-card:focus-within .product-overlay {
      opacity: 1;
    }

    .product-overlay-title {
      color: #fff;
      font-size: 1.2rem;
      margin-bottom: 1rem;
      font-weight: 600;
    }

    .product-overlay-actions a i {
      font-size: 4rem;
      color: #fff;
      transition: transform 0.3s ease, color 0.3s ease;
    }

    .product-overlay-actions a i:hover {
      transform: scale(1.3);
      color: #ffd700;
    }

    .product-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    .product-card:hover .product-image {
      transform: scale(1.05);
    }

    .product-badge {
      position: absolute;
      top: 12px;
      left: 12px;
      padding: 6px 12px;
      background: var(--accent-color);
      color: var(--contrast-color);
      font-size: 0.8rem;
      font-weight: 600;
      border-radius: 4px;
      z-index: 2;
    }

    .product-badge.product-popular {
      background: #28a745;
    }

    .product-badge.product-new {
      background: #dc3545;
    }

    .product-info {
      display: flex;
      flex-direction: column;
      flex-grow: 1;
    }

    .product-name {
      color: var(--heading-color);
      font-weight: 600;
      margin-bottom: 0.5rem;
      font-size: 1.0rem;
    }

    .product-price {
      color: var(--accent-color);
      font-weight: 700;
      font-size: 1.0rem;
    }

    .product-action {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-top: auto;
    }

    .product-order-btn {
      padding: 8px 10px;
      background: var(--accent-color);
      color: var(--contrast-color);
      text-decoration: none;
      border-radius: 4px;
      font-weight: 600;
      font-size: 0.9rem;
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .product-order-btn:hover {
      background: var(--heading-color);
    }

    /* Responsive */
    @media (max-width: 992px) {
      .product-shop-container {
        flex-direction: column;
      }
      .product-products-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 768px) {
        .product-price {
          font-size: 0.8rem;
    }
        .product-process-section {
          position: static;
          max-width: 100%;
          }
      .product-products-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .product-section-title {
        font-size: 2rem;
      }
      .product-image-container {
        height: 220px;
      }
    }

    @media (max-width: 576px) {
       .product-price {
          font-size: 0.8rem;
    }

      .product-shop-section {
        padding: 0.5rem 0.5rem;
      }
      .product-process-steps {
        margin-left: 1rem;
      }
      .product-step-number {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
      }
    }

      .support-section {
      max-width: 1200px;
      margin: 0 auto;
    }

    .support-section-title {
      color: var(--heading-color);
      font-weight: 800;
      margin-bottom: 2rem;
      text-align: center;
      font-size: 2.5rem;
      position: relative;
    }

    /* Hero Section with Background Image */
        .support-hero-content {
      display: flex;
      gap: 1rem;
      max-width: 1000px;
      margin: 0 auto;
    }
   .support-hero-title {
      color: var(--contrast-color);
      font-weight: 700;
      font-size: 1.5rem;
    }
    .support-card {
      flex: 1;
      padding: 1rem;
    }

    .support-header {
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .support-icon {
      font-size: 2.5rem;
      color: var(--accent-color);
      margin: 0;
    }

    .support-card-title {
      color: var(--contrast-color);
      font-weight: 700;
      font-size: 1.5rem;
      margin: 0;
    }

    .support-card-text {
      margin-bottom: 1.5rem;
      color: var(--contrast-color);
    }

    .support-btn {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 12px 24px;
      background: linear-gradient(135deg, var(--accent-color) 0%, var(--heading-color) 100%);
      color: var(--contrast-color);
      text-decoration: none;
      border-radius: 50px;
      font-weight: 600;
      transition: all 0.3s ease;
    }

    .support-btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 20px rgba(13, 66, 255, 0.3);
    }

    .support-share-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 0.8rem;
      margin-top: 1.5rem;
    }

    .support-share-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 45px;
      height: 45px;
      border-radius: 50%;
      background: var(--accent-color);
      color: var(--contrast-color);
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .support-share-btn:hover {
      transform: translateY(-3px);
      background: var(--heading-color);
    }

    .support-copy-link {
      display: flex;
      align-items: center;
      background: var(--accent-color);
      padding: 0.5rem 1rem;
      border-radius: 50px;
      margin-top: 1rem;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .support-copy-link:hover {
      background: rgba(255, 255, 255, 1);
    }

    .support-copy-link span {
      margin-right: 0.5rem;
      font-size: 0.9rem;
      color: var(--contrast-color);
    }

    /* Utilization Section */
    .support-utilization-section {
      padding: 1rem 1rem;
    }

    .support-utilization-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 1rem;
      margin-top: 1rem;
    }

    .support-utilization-item {
      text-align: center;
      background: var(--surface-color);
      border-radius: 12px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
      transition: all 0.3s ease;
    }

    .support-utilization-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }

    .support-utilization-icon {
      width: 70px;
      height: 70px;
      background: rgba(13, 66, 255, 0.1);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1.5rem;
      font-size: 1.8rem;
      color: var(--accent-color);
    }

    .support-utilization-item-title {
      color: var(--heading-color);
      font-weight: 600;
      margin-bottom: 0.75rem;
    }

    /* Payment Section */
    .support-payment-section {
      padding: 1rem 1rem;
      background: rgba(13, 66, 255, 0.03);
      border-radius: 16px;
    }

    .support-payment-methods {
      display: flex;
      justify-content: center;
      gap: 1.5rem;
      flex-wrap: wrap;
      margin-top: 2rem;
    }

    .support-payment-method {
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 1.5rem;
      background: var(--surface-color);
      border-radius: 12px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
      transition: all 0.3s ease;
      width: 160px;
      border: 1px solid rgba(13, 66, 255, 0.1);
    }

    .support-payment-method:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    }

    .support-payment-icon {
      font-size: 2.5rem;
      color: var(--accent-color);
      margin-bottom: 1rem;
    }

    .support-payment-name {
      color: var(--heading-color);
      font-weight: 600;
      font-size: 0.95rem;
      text-align: center;
    }

    /* Responsive Design */
    @media (max-width: 992px) {
      .support-hero-content {
        flex-direction: column;
      }

      .support-hero {
        padding: 3rem 1.5rem;
      }
    }

    @media (max-width: 768px) {
      .support-section-title {
        font-size: 2rem;
      }

      .support-card {
        padding: 1.5rem;
      }

      .support-utilization-grid {
        grid-template-columns: repeat(2,1fr);
      }

      .support-payment-method {
        padding: 1.25rem;
      }
    }

    @media (max-width: 576px) {
      .support-hero {
        padding: 0.5rem 0.5rem;
      }          

      .support-payment-icon {
        font-size: 2rem;
      }
    }


    /*her two css codes*/
      .hero-two-container {
            position: relative;
            height: 40vh;
            overflow: hidden;
        }

        .hero-two-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 1;
        }

        .hero-two-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.6));
            z-index: 2;
        }

        .hero-two-content {
            position: relative;
            z-index: 3;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            color: var(--contrast-color);
        }

        .hero-two-title {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            letter-spacing: -0.5px;
            color:var(--contrast-color);
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }

        .hero-two-breadcrumbs {
            position: absolute;
            bottom: 20px;
            left: 0;
            right: 0;
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 4;
        }

        .hero-two-breadcrumbs-nav {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            border-radius: 50px;
            padding: 0.8rem 1.5rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .hero-two-breadcrumb-list {
            display: flex;
            list-style: none;
            margin: 0;
            padding: 0;
            align-items: center;
        }

        .hero-two-breadcrumb-item {
            display: flex;
            align-items: center;
            font-size: 0.95rem;
        }

        .hero-two-breadcrumb-item + .hero-two-breadcrumb-item::before {
            content: ">";
            padding: 0 0.7rem;
            color: rgba(255, 255, 255, 0.7);
            font-weight: 300;
        }

        .hero-two-breadcrumb-link {
            color: rgba(255, 255, 255, 0.9);
            text-decoration: none;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }

        .hero-two-breadcrumb-link:hover {
            color: var(--contrast-color);
        }

        .hero-two-breadcrumb-link i {
            font-size: 0.8rem;
        }

        .hero-two-breadcrumb-item.active .hero-two-breadcrumb-link {
            color: var(--contrast-color);
            font-weight: 600;
        }

        /* Content section for demonstration */
        .content-section {
            padding: 4rem 2rem;
            max-width: 1000px;
            margin: 0 auto;
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .hero-two-title {
                font-size: 2.8rem;
            }
        }

        @media (max-width: 768px) {
            .hero-two-container {
                height: 35vh;
            }
            
            .hero-two-title {
                font-size: 2.3rem;
                padding: 0 1rem;
            }
            
            .hero-two-breadcrumbs-nav {
                padding: 0.7rem 1.2rem;
            }
            
            .hero-two-breadcrumb-item {
                font-size: 0.9rem;
            }
        }

        @media (max-width: 576px) {
            .hero-two-title {
                font-size: 2rem;
            }
            
            .hero-two-breadcrumb-list {
                flex-wrap: wrap;
                justify-content: center;
            }
            
            .hero-two-breadcrumb-item {
                margin: 0.2rem 0;
            }
            
            .hero-two-breadcrumb-item + .hero-two-breadcrumb-item::before {
                padding: 0 0.4rem;
            }
        }

        /*products modal*/
        /* Hide modal by default */
.modal {
  position: fixed;
  inset: 0;
  display: none;
  background: rgba(0,0,0,0.6);
  z-index: 1000;
  overflow: auto;
}

/* Show modal when targeted */
.modal:target {
  display: block;
}

/* Modal box */
.modal-content {
  background: #fff;
  margin: 5% auto;
  padding: 20px;
  border-radius: 15px;
  max-width: 600px;
  width: 90%;
  text-align: center;
  position: relative;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  animation: modal-fadeIn 0.3s ease;
}

/* Close button */
.modal-close {
  position: absolute;
  right: 15px;
  top: 5px;
  font-size: 3rem;
  font-weight: bold;
  text-decoration: none;
  color: var(--accent-color);
}
.modal-close:hover { color: var(--accent-color); }

/* Image */
.modal-image {
  width: 100%;
  height: auto;
  margin-bottom: 15px;
  border-radius: 5px;
  object-fit: contain;
}

/* Price */
.modal-price {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 15px;
  color: #2c3e50;
}

/* Form */
.modal-form-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
/* Submit button */
.order_desc {
  width: 100%;
  padding: 12px;
  margin-top: 15px;
  border-radius: 8px;
  border: 1px solid #ccc;
  transition: 0.3s;
}
.modal-form-row input {
  flex: 1;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
  outline: none;
  font-size: 14px;
}
.modal-form-row input:focus { border-color: var(--accent-color); }

@media(min-width: 768px) {
  .modal-form-row { flex-direction: row; }
}

/* Submit button */
.modal-submit-btn {
  width: 80%;
  padding: 12px;
  margin-top: 15px;
  border: none;
  border-radius: 8px;
  background: var(--accent-color);
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}
.modal-submit-btn:hover { background: var(--heading-color); }

/* Contact icons */
.modal-contact-icons {
  margin-top: 5px;
  display: flex;
  justify-content: center;
  gap: 15px;
}
.modal-contact-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px; height: 45px;
  border-radius: 50%;
  border: solid 1px var(--accent-color);
  background: #f1f1f1;
  font-size: 20px;
  color: var(--accent-color);
  transition: 0.3s;
}
.modal-contact-icons a:hover {
  background: var(--accent-color);
  color: #fff;
}

/* Animation */
@keyframes modal-fadeIn {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}
