/* Fonts */
:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Raleway",  sans-serif;
  --nav-font: "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: #1a1a1a; /* Background color for the entire website, including individual sections */
  --default-color: #ffffff; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #ffffff; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #FFD700; /* 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: #252525; /* 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: #1a1a1a; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #ffffff;
  --nav-hover-color: #FFD700;
  --nav-mobile-background-color: #252525;
  --nav-dropdown-background-color: #252525;
  --nav-dropdown-color: #ffffff;
  --nav-dropdown-hover-color: #FFD700; /* 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: #f4fafd;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #000000;
  --surface-color: #1a1a1a;
  --default-color: #ffffff;
  --heading-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);
  -webkit-overflow-scrolling: touch;
}

html, body {
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

/* Smoother AOS animation timing for scroll */
[data-aos] {
  transition-timing-function: cubic-bezier(0.4,0,0.2,1) !important;
  transition-duration: 1.2s !important;
}

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 {
  font-family: 'Montserrat', var(--heading-font), sans-serif;
  letter-spacing: 0.5px;
  color: #fff;
}


/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  background: rgba(26, 26, 26, 0.97);
  border-bottom: 1.5px solid rgba(255, 215, 0, 0.10);
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  padding: 16px 0;
  border-radius: 0;
  transition: background 0.4s, box-shadow 0.4s;
}

.header .logo h1 {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--accent-color);
  text-shadow: none;
}

.navmenu ul {
  gap: 4px;
}

.navmenu a,
.navmenu a:focus {
  color: var(--nav-color);
  font-family: var(--nav-font);
  font-weight: 600;
  font-size: 16px;
  padding: 12px 16px;
  border-radius: 8px;
  position: relative;
  background: none !important;
  box-shadow: none !important;
}

.navmenu a::after {
  content: '';
  display: block;
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 6px;
  height: 2px;
  border-radius: 1px;
  background: var(--accent-color);
  opacity: 0;
  transform: scaleX(0);
  transition: opacity 0.2s, transform 0.2s;
}

.navmenu a:hover,
.navmenu .active,
.navmenu .active:focus {
  color: var(--accent-color);
  background: none !important;
  box-shadow: none !important;
  transform: none !important;
}

.navmenu a:hover::after,
.navmenu .active::after {
  opacity: 1;
  transform: scaleX(1);
}

/* Mobile nav decent slide-in */
@media (max-width: 1199px) {
  .navmenu ul {
    position: fixed;
    right: -100vw;
    top: 0;
    bottom: 0;
    width: 80vw;
    max-width: 340px;
    background: rgba(30,30,30,0.98);
    box-shadow: -2px 0 32px rgba(0,0,0,0.18);
    border-radius: 0 18px 18px 0;
    transition: right 0.4s cubic-bezier(0.4,0,0.2,1);
    padding: 48px 0 32px 0;
    z-index: 10001;
    display: flex;
    flex-direction: column;
    gap: 0;
    backdrop-filter: blur(8px);
  }
  .mobile-nav-active .navmenu>ul {
    left: 0;
  }
  .navmenu li {
    margin-bottom: 0;
  }
  .navmenu a,
  .navmenu a:focus {
    font-size: 20px;
    padding: 18px 32px;
    border-radius: 0;
    font-weight: 600;
    letter-spacing: 0.5px;
    width: 100%;
    display: block;
    text-align: left;
    color: #fff;
    background: none;
    border: none;
    transition: background 0.2s, color 0.2s;
  }
  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: #FFD700;
    background: rgba(255,215,0,0.08);
  }
  .mobile-nav-toggle {
    color: #FFD700;
    font-size: 38px;
    margin-right: 18px;
    cursor: pointer;
    z-index: 10002;
    background: none;
    border: none;
    outline: none;
    transition: color 0.3s;
    position: fixed;
    top: 24px;
    right: 24px;
    box-shadow: 0 2px 12px rgba(255,215,0,0.10);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(30,30,30,0.98);
  }
  .mobile-nav-close {
    display: flex;
    justify-content: flex-end;
    padding: 0 24px 12px 0;
  }
  .mobile-nav-close button {
    background: none;
    border: none;
    font-size: 2.2rem;
    color: #FFD700;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s;
  }
  .mobile-nav-close button:hover {
    color: #fff;
  }
  .mobile-nav-active .navmenu {
    background: rgba(33, 37, 41, 0.92);
    backdrop-filter: blur(8px);
  }
}

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

/*--------------------------------------------------------------
# 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;
    gap: 8px;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    font-family: var(--nav-font);
    font-weight: 600;
    font-size: 17px;
    padding: 16px 18px;
    border-radius: 18px;
    position: relative;
    transition: color 0.3s, background 0.3s, box-shadow 0.3s, transform 0.2s;
    overflow: visible;
  }

  .navmenu a::after {
    content: '';
    display: block;
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 10px;
    height: 3px;
    border-radius: 2px;
    background: var(--accent-color);
    opacity: 0;
    transform: scaleX(0);
    transition: opacity 0.3s, transform 0.3s;
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--accent-color);
    background: rgba(255,215,0,0.08);
    transform: scale(1.07);
    box-shadow: 0 2px 12px rgba(255,215,0,0.08);
  }

  .navmenu a:hover::after,
  .navmenu .active::after {
    opacity: 1;
    transform: scaleX(1);
  }

  .mobile-nav-toggle { display: none !important; }
  .mobile-nav-close { display: none !important; }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    margin-right: -5px;
    margin-top: -15px;
    cursor: pointer;
    transition: color 0.3s;
  }

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

  .navmenu ul {
    left: -100vw;
    right: auto;
    top: 0;
    bottom: 0;
    width: 80vw;
    max-width: 340px;
    background: rgba(26,26,26,0.99);
    border-radius: 0 18px 18px 0;
    box-shadow: 2px 0 16px rgba(0,0,0,0.10);
    transition: left 0.4s cubic-bezier(0.4,0,0.2,1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

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

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

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

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

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

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

  .mobile-nav-active .navmenu>ul {
    left: 0;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  padding: 40px 0;
  position: relative;
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
}

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

.footer .social-links {
  margin-top: 20px;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin: 0 5px;
  transition: 0.3s;
}

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

.footer .credits {
  margin-top: 10px;
  font-size: 13px;
  text-align: center;
}

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  --background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  position: relative;
}

.page-title h1 {
  font-size: 28px;
  font-weight: 700;
  margin: 0;
}

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

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

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

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

@media (max-width: 1199px) {

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

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

.section-title h2 {
  letter-spacing: 2px;
  font-size: 2.5rem;
  font-weight: 700;
  position: relative;
}

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

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

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

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

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
/* Add these keyframes */
@keyframes textEntrance {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes buttonGlow {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.4);
  }
  100% {
    box-shadow: 0 0 20px 10px rgba(255, 215, 0, 0);
  }
}

@keyframes float {
  0% {
    transform: translateY(0px) rotate(1deg);
  }
  50% {
    transform: translateY(-20px) rotate(-1deg);
  }
  100% {
    transform: translateY(0px) rotate(1deg);
  }
}

@keyframes imageShine {
  0% {
    mask-position: -150%;
  }
  60% {
    mask-position: 150%;
  }
  100% {
    mask-position: 150%;
  }
}

/* Updated Hero Section */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: none;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('../img/Hero.jpeg') center center/cover no-repeat;
  filter: blur(3px) brightness(0.6);
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(20, 20, 20, 0.65);
  z-index: 1;
}

.hero .container,
.hero .row,
.hero .col-lg-8 {
  position: relative;
  z-index: 2;
}

.hero h1 {
  margin: 0;
  font-size: 56px;
  font-weight: 700;
  line-height: 1.2;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  animation: textEntrance 1s ease-out forwards;
  color: #ffffff;
}

.hero h1 span {
  color: var(--accent-color);
  text-decoration: underline;
  text-underline-offset: 8px;
}

.hero p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 20px 0 30px 0;
  font-size: 24px;
  font-weight: 300;
  animation: textEntrance 1s ease-out 0.3s forwards;
  opacity: 0;
}

.hero .btn-get-started {
  position: relative;
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1.5px;
  padding: 14px 42px;
  border-radius: 50px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid var(--accent-color);
  background: rgba(255, 215, 0, 0.1);
  color: var(--accent-color);
  overflow: visible;
  z-index: 1;
}

.hero .btn-get-started:hover {
  background: var(--accent-color);
  color: var(--contrast-color) !important;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 215, 0, 0.3);
}

.hero .btn-get-started::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.6s ease-out;
  z-index: -1;
}

.hero .btn-get-started:hover::after {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.hero .animated {
  position: relative;
  animation: float 6s ease-in-out infinite;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.4));
}

.hero .animated::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg,
    transparent 20%,
    rgba(255, 255, 255, 0.1) 50%,
    transparent 80%);
  mask-image: linear-gradient(120deg, #000 30%, transparent 70%);
  mask-size: 200% auto;
  animation: imageShine 6s infinite;
}

@media (max-width: 768px) {
  .hero {
    min-height: 60vh; /* or 70vh, adjust as needed */
    padding: 40px 0 30px 0;
  }
  .hero::before {
    background-position: center center;
    background-size: cover;
    filter: blur(1.5px) brightness(0.6); /* slightly less blur for small screens */
  }
  .hero h1 {
    font-size: 2rem;
    line-height: 1.3;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .hero .btn-get-started {
    font-size: 14px;
    padding: 12px 32px;
  }
  
  .hero .animated {
    animation: float 4s ease-in-out infinite;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 50vh;
    padding: 24px 0 20px 0;
  }
  .hero::before {
    background-size: cover;
    background-position: center top;
    filter: blur(1px) brightness(0.6);
  }
  .hero h1 {
    font-size: 1.3rem;
    line-height: 1.2;
  }
  .hero p {
    font-size: 0.95rem;
  }
}
/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 700;
  font-size: 34px;
  margin-bottom: 30px;
}

.about .content p {
  margin-bottom: 30px;
}

.about .content .about-btn {
  padding: 8px 30px 9px 30px;
  color: var(--accent-color);
  border-radius: 50px;
  transition: 0.3s;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  border: 2px solid var(--accent-color);
}

.about .content .about-btn i {
  font-size: 16px;
  padding-left: 5px;
}

.about .content .about-btn:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.about .icon-box i {
  font-size: 40px;
  color: var(--accent-color);
  margin-bottom: 10px;
}

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

.about .icon-box h4 a {
  color: var(--heading-color);
  transition: 0.3s;
}

.about .icon-box p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 0;
}

.about .icon-box:hover h4 a {
  color: var(--accent-color);
}


/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  background-color: var(--surface-color);
  box-shadow: 0px 0 4px 0 rgb(238, 243, 149);
  padding: 50px 30px;
  border: 1px solid rgba(241, 208, 22, 0.942);
  transition: transform 0.3s ease;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.services .service-item:before {
  content: "";
  position: absolute;
  background: color-mix(in srgb, var(--accent-color), transparent 96%);
  right: -80px;
  top: -80px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  transition: all 0.3s;
  z-index: -1;
}

.services .service-item:after {
  content: "";
  position: absolute;
  background: color-mix(in srgb, var(--accent-color), transparent 97%);
  right: -140px;
  top: -140px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  transition: all 0.3s;
  z-index: -1;
}

.services .service-item i {
  background: var(--accent-color);
  color: var(--contrast-color);
  font-size: 24px;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
}

.services .service-item h4 {
  font-weight: 600;
  margin: 15px 0 0 0;
  transition: 0.3s;
  font-size: 20px;
}

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

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

.services .service-item:hover:before,
.services .service-item:hover:after {
  background: var(--accent-color);
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 60px;
}

.services .service-item:hover h4 a,
.services .service-item:hover p {
  color: var(--contrast-color);
}

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

/*--------------------------------------------------------------
# Alt Services Section
--------------------------------------------------------------*/
.alt-services .img {
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.alt-services .img img {
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}

.alt-services .details {
  background: color-mix(in srgb, var(--surface-color), transparent 5%);
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  padding: 30px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  border-radius: 8px;
  box-shadow: 0px 0 25px rgba(0, 0, 0, 0.1);
  transform: translateY(30px);
  opacity: 0;
}

.alt-services .details h3 {
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: 22px;
  transition: all 0.3s ease;
  transform: translateY(20px);
}

.alt-services .details p {
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease 0.1s;
}

.alt-services .service-item:hover .details {
  transform: translateY(0);
  opacity: 1;
}

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

.alt-services .service-item:hover .details p {
  opacity: 1;
  transform: translateY(0);
  color: white;
}

.alt-services .service-item:hover .img img {
  transform: scale(1.2);
  filter: brightness(0.8) contrast(1.2);
}

/* Image overlay effect */
.alt-services .img::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(26, 26, 26, 0.7) 20%, transparent 80%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.alt-services .service-item:hover .img::before {
  opacity: 1;
}


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

.faq .faq-item i {
  color: var(--accent-color);
  font-size: 18px;
  margin-right: 10px;
}

.faq .faq-item h4 {
  font-size: 16px;
  line-height: 26px;
  font-weight: 700;
}

.faq .faq-item p {
  font-size: 15px;
}

.faq .faq-item:first-child {
  padding-top: 0;
  margin-top: 0;
}

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

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact {
  background-image: url("../img/contact-bg.png");
  background-position: left center;
  background-repeat: no-repeat;
  position: relative;
}

@media (max-width: 640px) {
  .contact {
    background-position: center 50px;
    background-size: contain;
  }
}

.contact:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

.contact .info-item+.info-item {
  margin-top: 40px;
}

.contact .info-item i {
  background: var(--accent-color);
  color: var(--contrast-color);
  font-size: 20px;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .info-item h3 {
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

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

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

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

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

.contact .btn-get-started {
  position: relative;
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1.5px;
  padding: 14px 42px;
  border-radius: 50px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid var(--accent-color);
  background: rgba(255, 215, 0, 0.1);
  color: var(--accent-color);
  overflow: visible;
  z-index: 1;
}

.contact .btn-get-started:hover {
  background: var(--accent-color);
  color: var(--contrast-color) !important;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 215, 0, 0.3);
}

.contact .btn-get-started::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.6s ease-out;
  z-index: -1;
}

.contact .btn-get-started:hover::after {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.alert {    
  padding: 18px 30px;
  margin: 20px 0;
  border: none;
  border-radius: 8px;
  text-align: center;
  font-size: 1.15rem;
  font-weight: 500;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  transition: background 0.3s, color 0.3s;
  letter-spacing: 0.01em;
}

.alert-success {
  color: #ffffff;
  background: linear-gradient(90deg, #179434 0%, #00fd3b 100%);
  border-left: 6px solid #61fa85;
}

.alert-danger {
  color: #ffffff;
  background: linear-gradient(90deg, #ff0e22 0%, #d10116 100%);
  border-left: 6px solid #f1626e;
}


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

.news-card {
  background: rgba(30, 30, 30, 0.97);
  border-radius: 16px;
  padding: 28px 22px 22px 22px;
  margin-bottom: 24px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.18);
  color: #fff;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.news-date {
  font-size: 0.95rem;
  color: #ffd600;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: 1px;
}
.news-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #ffd600;
}
.news-desc {
  font-size: 1.05rem;
  color: #e0e0e0;
  margin-bottom: 16px;
  flex-grow: 1;
}
.news-link {
  color: #ffd600;
  font-weight: 600;
  text-decoration: underline;
  transition: color 0.2s;
}
.news-link:hover {
  color: #fff;
}

/* --- Modern Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', var(--heading-font), sans-serif;
  letter-spacing: 0.5px;
  color: #fff;
}
.section-title h2 {
  letter-spacing: 2px;
  font-size: 2.5rem;
}
.btn, .btn-getstarted, .btn-get-started {
  letter-spacing: 1.5px;
  font-weight: 700;
}

/* --- Spacing & Layout --- */
section, .section {
  padding: 80px 0;
}
.container, .container-xl {
  padding-left: 32px;
  padding-right: 32px;
}
.row {
  margin-bottom: 32px;
}

/* --- Glassmorphism Cards --- */
.modern-card, .news-card, .service-item, .features-item {
  background: rgba(30, 30, 30, 0.7);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 32px 24px;
  color: #fff;
}

/* --- Animations --- */
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}
@keyframes bounceIcon {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.card-fade-in, .modern-card, .news-card, .service-item {
  animation: fadeInUp 1.2s cubic-bezier(0.4,0,0.2,1) both;
}
.features-item i, .service-item i, .news-card i {
  animation: bounceIcon 2.5s cubic-bezier(0.4,0,0.2,1) infinite;
}

/* --- Buttons: Pill, Glow, Icon+Text --- */
.btn, .btn-getstarted, .btn-get-started {
  border-radius: 50px;
  padding: 14px 36px;
  font-weight: 700;
  box-shadow: 0 2px 12px rgba(255,215,0,0.15);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1),
              box-shadow 0.35s cubic-bezier(0.4,0,0.2,1),
              background 0.35s cubic-bezier(0.4,0,0.2,1);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn:hover, .btn-getstarted:hover, .btn-get-started:hover {
  transform: scale(1.06);
  box-shadow: 0 4px 24px rgba(255,215,0,0.25);
  background: var(--accent-color);
  color: #1a1a1a !important;
}
.btn i, .btn-getstarted i, .btn-get-started i {
  font-size: 1.2em;
}

/* --- SVG/Wave/Angled/Accent Dividers --- */
.section-divider {
  width: 100%;
  height: 60px;
  background: none;
  display: block;
  margin: -40px 0 0 0;
  z-index: 2;
}
.section-divider svg {
  display: block;
  width: 100%;
  height: 60px;
}
.divider-accent {
  border: none;
  border-top: 3px solid #FFD700;
  width: 80px;
  margin: 40px auto;
  border-radius: 2px;
}

/* --- Footer: Visual, Social, Newsletter --- */
.footer {
  background: linear-gradient(135deg, #1a1a1a 80%, #FFD700 100%);
  color: #fff;
  padding-top: 60px;
  border-top-left-radius: 32px;
  border-top-right-radius: 32px;
  box-shadow: 0 -4px 32px rgba(0,0,0,0.25);
}
.footer .social-links a {
  background: #252525;
  color: #FFD700;
  border: 2px solid #FFD700;
  margin: 0 8px;
  transition: background 0.2s, color 0.2s;
}
.footer .social-links a:hover {
  background: #FFD700;
  color: #1a1a1a;
}
.footer .newsletter {
  margin: 32px auto 0 auto;
  max-width: 400px;
  display: flex;
  gap: 8px;
}
.footer .newsletter input[type="email"] {
  border-radius: 50px;
  border: none;
  padding: 10px 18px;
  flex: 1;
}
.footer .newsletter button {
  border-radius: 50px;
  background: #FFD700;
  color: #1a1a1a;
  font-weight: 700;
  border: none;
  padding: 10px 24px;
}

/* --- Accessibility: High Contrast, Focus States, Large Click Areas --- */
a, button, .btn, .btn-getstarted, .btn-get-started {
  outline: none;
}
a:focus, button:focus, .btn:focus, .btn-getstarted:focus, .btn-get-started:focus {
  outline: 3px solid #FFD700;
  outline-offset: 2px;
}
.btn, .btn-getstarted, .btn-get-started {
  min-width: 120px;
  min-height: 48px;
  font-size: 1.1rem;
}
input, textarea {
  background: #252525;
  color: #fff;
  border-radius: 8px;
  border: 1px solid #FFD700;
  padding: 10px 16px;
}
input:focus, textarea:focus {
  border-color: #FFD700;
  outline: 2px solid #FFD700;
}

/* --- Parallax Section --- */
.parallax-section {
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}
@media (max-width: 991px) {
  .parallax-section {
    background-attachment: scroll;
  }
}

/* --- Newsletter Modal --- */
.newsletter-modal {
  position: fixed; z-index: 99999; left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(0,0,0,0.7); display: flex; align-items: center; justify-content: center;
}
.newsletter-modal-content {
  background: #252525; border-radius: 18px; padding: 40px 32px; box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  color: #fff; text-align: center; position: relative; min-width: 320px;
}
.newsletter-close {
  position: absolute; top: 16px; right: 24px; font-size: 2rem; color: #FFD700; cursor: pointer;
}
.newsletter-modal input[type="email"] {
  border-radius: 50px; border: none; padding: 10px 18px; margin: 16px 0; width: 80%;
}
.newsletter-modal button {
  border-radius: 50px; background: #FFD700; color: #1a1a1a; font-weight: 700; border: none; padding: 10px 24px;
}

/* --- Custom SVG Icon Styling --- */
svg[aria-label] {
  display: inline-block;
  vertical-align: middle;
  margin-bottom: 8px;
}

/* --- Enhanced AOS for News Cards --- */
.news-card[data-aos] {
  will-change: transform, opacity;
}

/* --- Newsletter Trigger Button --- */
.btn-modern {
  background: #FFD700;
  color: #1a1a1a;
  border-radius: 50px;
  font-weight: 700;
  box-shadow: 0 2px 12px rgba(255,215,0,0.15);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1),
              box-shadow 0.35s cubic-bezier(0.4,0,0.2,1);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  min-width: 180px;
  min-height: 48px;
  font-size: 1.1rem;
}
.btn-modern:hover {
  transform: scale(1.06);
  box-shadow: 0 4px 24px rgba(255,215,0,0.25);
  background: #fff700;
  color: #1a1a1a;
}

/* --- Smoother Transitions and Animations --- */

/* General smooth transitions */
* {
  transition: background 0.5s cubic-bezier(0.4,0,0.2,1),
              color 0.5s cubic-bezier(0.4,0,0.2,1),
              box-shadow 0.5s cubic-bezier(0.4,0,0.2,1),
              border 0.5s cubic-bezier(0.4,0,0.2,1),
              transform 0.5s cubic-bezier(0.4,0,0.2,1);
}

/* Buttons */
.btn, .btn-getstarted, .btn-get-started, .btn-modern {
  transition: background 0.5s cubic-bezier(0.4,0,0.2,1),
              color 0.5s cubic-bezier(0.4,0,0.2,1),
              box-shadow 0.5s cubic-bezier(0.4,0,0.2,1),
              transform 0.35s cubic-bezier(0.4,0,0.2,1);
}

/* Cards and overlays */
.modern-card, .news-card, .service-item, .features-item, .alt-services .details {
  transition: background 0.7s cubic-bezier(0.4,0,0.2,1),
              box-shadow 0.7s cubic-bezier(0.4,0,0.2,1),
              transform 0.7s cubic-bezier(0.4,0,0.2,1),
              color 0.7s cubic-bezier(0.4,0,0.2,1);
}

/* Section dividers and SVGs */
.section-divider svg, .divider-accent {
  transition: all 0.7s cubic-bezier(0.4,0,0.2,1);
}

/* AOS and keyframes: slower and smoother */
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}
.card-fade-in, .modern-card, .news-card, .service-item {
  animation: fadeInUp 1.2s cubic-bezier(0.4,0,0.2,1) both;
}
@keyframes bounceIcon {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.features-item i, .service-item i, .news-card i {
  animation: bounceIcon 2.5s cubic-bezier(0.4,0,0.2,1) infinite;
}

/* Overlay fade for alt-services */
.alt-services .details {
  transition: all 0.7s cubic-bezier(0.4,0,0.2,1);
}

/* --- Modern WhatsApp Button --- */
.btn-whatsapp {
  background: linear-gradient(90deg, #25D366 60%, #128C7E 100%);
  color: #fff;
  border: none;
  min-width: 220px;
  font-size: 1.15rem;
  font-weight: 700;
  border-radius: 50px;
  box-shadow: 0 4px 24px rgba(37,211,102,0.18);
  padding: 14px 38px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: background 0.5s cubic-bezier(0.4,0,0.2,1),
              color 0.5s cubic-bezier(0.4,0,0.2,1),
              box-shadow 0.5s cubic-bezier(0.4,0,0.2,1),
              transform 0.35s cubic-bezier(0.4,0,0.2,1);
  position: relative;
  overflow: hidden;
}
.btn-whatsapp i {
  font-size: 1.7rem;
  color: #fff;
  filter: drop-shadow(0 2px 6px #128C7E);
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
}
.btn-whatsapp:hover {
  background: linear-gradient(90deg, #128C7E 60%, #25D366 100%);
  color: #fff;
  transform: scale(1.06) translateY(-2px);
  box-shadow: 0 8px 32px rgba(37,211,102,0.28);
}
.btn-whatsapp:hover i {
  transform: scale(1.15) rotate(-8deg);
}

@media (max-width: 768px) {
  .header .logo h1 {
    font-size: 22px;
  }
  .section, section {
    padding: 36px 0;
  }
  .container, .container-xl {
    padding-left: 10px;
    padding-right: 10px;
  }
  .btn, .btn-getstarted, .btn-get-started, .btn-modern {
    padding: 12px 18px;
    font-size: 1rem;
    min-width: 100px;
    min-height: 40px;
  }
  input, textarea {
    font-size: 1rem;
    padding: 10px 10px;
  }
  .footer {
    padding-top: 30px;
    border-top-left-radius: 18px;
    border-top-right-radius: 18px;
  }
}

/*--------------------------------------------------------------
# OEMs Slider Section
--------------------------------------------------------------*/
.oem-slider-section {
  background: linear-gradient(184deg, #252525 70%, #FFD700 90%);
  padding: 32px 0 24px 0;
  position: relative;
  z-index: 2;
}
.oem-slider-section .oem-swiper {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}
.oem-slide-content {
  padding: 32px 18px 24px 18px;
  background: rgba(30, 30, 30, 0.85);
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.18);
  color: #fff;
  border: 2px solid #FFD700;
}
.oem-title {
  font-size: 2.1rem;
  font-weight: 800;
  color: #FFD700;
  margin-bottom: 12px;
  letter-spacing: 1px;
}
.oem-desc {
  font-size: 1.15rem;
  color: #fff;
  font-weight: 500;
}
.oem-slider-section .swiper-pagination {
  margin-top: 18px;
  position: static;
}
@media (max-width: 768px) {
  .oem-slider-section {
    padding: 18px 0 12px 0;
  }
  .oem-title {
    font-size: 1.3rem;
  }
  .oem-desc {
    font-size: 1rem;
  }
  .oem-slide-content {
    padding: 18px 8px 14px 8px;
  }
}

