/**
* Template Name: Logis
* Template URL: https://bootstrapmade.com/logis-bootstrap-logistics-website-template/
* Updated: Aug 07 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Poppins", sans-serif;
  --nav-font: "Poppins", sans-serif;
}

/* Global Colors - Modern Blue & White Elegant Theme */
:root {
  --background-color: #ffffff;
  --background-gradient: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  --default-color: #2c3e50;
  --heading-color: #1a237e;
  --accent-color: #2196F3;
  --accent-secondary: #1976D2;
  --accent-light: #64B5F6;
  --accent-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --blue-gradient: linear-gradient(135deg, #2196F3 0%, #1976D2 100%);
  --surface-color: #ffffff;
  --surface-glass: rgba(255, 255, 255, 0.25);
  --contrast-color: #ffffff;
  --shadow-color: rgba(33, 150, 243, 0.1);
  --shadow-hover: rgba(33, 150, 243, 0.25);
  --text-muted: #607D8B;
}

/* 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: #0d42ff;
  /* 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: #0a1929;
  --background-gradient: linear-gradient(135deg, #1a237e 0%, #0d47a1 100%);
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: rgba(255, 255, 255, 0.05);
  --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);
  overflow-x: hidden;
}

/* Modern Utilities */
.glass-effect {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.gradient-text {
  background: var(--blue-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.shadow-elegant {
  box-shadow: 0 10px 30px var(--shadow-color);
}

.shadow-elegant-hover {
  transition: all 0.3s ease;
}

.shadow-elegant-hover:hover {
  box-shadow: 0 15px 40px var(--shadow-hover);
  transform: translateY(-5px);
}

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 - Modern Glassmorphism Design
--------------------------------------------------------------*/
.header {
  --background-color: rgba(255, 255, 255, 0);
  --heading-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 15px 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 997;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.header .logo img {
  max-height: 55px;
  margin-right: 8px;
  transition: transform 0.3s ease;
}

.header .logo:hover img {
  transform: scale(1.05);
}

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

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 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;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(33, 150, 243, 0.1);
  border-bottom: 1px solid rgba(33, 150, 243, 0.1);
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: rgba(255, 255, 255, 0.95);
  --heading-color: #1a237e;
}

.scrolled .navmenu a {
  color: #2c3e50 !important;
}

.scrolled .navmenu a:hover {
  color: #2196F3 !important;
}

/*--------------------------------------------------------------
# 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: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

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

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

  /* Services dropdown - Multi-column layout */
  .navmenu li.dropdown:nth-child(3) ul {
    min-width: 600px;
    padding: 20px 15px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px 20px;
    left: 0;
    top: 100%;
  }

  .navmenu li.dropdown:nth-child(3) ul li {
    min-width: auto;
    width: 100%;
  }

  .navmenu li.dropdown:nth-child(3) ul a {
    padding: 12px 15px;
    font-size: 14px;
    border-radius: 6px;
    transition: all 0.3s ease;
    display: block;
    text-align: left;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    background-color: transparent;
  }

  .navmenu li.dropdown:nth-child(3) ul a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
    color: var(--nav-dropdown-hover-color);
  }

  /* Responsive adjustments for Services dropdown */
  @media (max-width: 1400px) {
    .navmenu li.dropdown:nth-child(3) ul {
      min-width: 500px;
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 1200px) {
    .navmenu li.dropdown:nth-child(3) ul {
      min-width: 400px;
      grid-template-columns: repeat(2, 1fr);
      gap: 8px 15px;
    }
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Global Footer - Modern Elegant Design
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background: linear-gradient(135deg, #1a237e 0%, #0d47a1 100%);
  font-size: 14px;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('/assets/img/world-dotted-map.png') center/cover no-repeat;
  opacity: 0.03;
  z-index: 0;
}

.footer > * {
  position: relative;
  z-index: 1;
}

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

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

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

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

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

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 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-right: 10px;
  transition: 0.3s;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.footer .credits a {
  color: var(--default-color);
}

/*--------------------------------------------------------------
# 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 - Modern Design
--------------------------------------------------------------*/
.page-title {
  color: #ffffff;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 160px 0 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-title:before {
  content: "";
  background: rgba(0, 0, 0, 0.3);
  position: absolute;
  inset: 0;
  z-index: 1;
}

.page-title::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('/assets/img/world-dotted-map.png') center/cover no-repeat;
  opacity: 0.08;
  z-index: 1;
}

.page-title > * {
  position: relative;
  z-index: 2;
}

.page-title h1 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 15px;
  color: #ffffff;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 500;
}

.page-title .breadcrumbs ol a {
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
}

.page-title .breadcrumbs ol a:hover {
  color: #ffffff;
}

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

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 768px) {
  .page-title {
    padding: 120px 0 60px 0;
  }
  
  .page-title h1 {
    font-size: 32px;
  }
}

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

@media (max-width: 1199px) {

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

/*--------------------------------------------------------------
# Global Section Titles - Modern Elegant Design
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding: 30px 0;
  margin-bottom: 50px;
  position: relative;
}

.section-title span {
  display: inline-block;
  color: var(--accent-color);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
  position: relative;
}

.section-title span::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: var(--blue-gradient);
  border-radius: 2px;
}

.section-title h2 {
  font-size: 42px;
  font-weight: 800;
  text-transform: none;
  margin-bottom: 20px;
  padding-bottom: 0;
  position: relative;
  z-index: 2;
  color: var(--heading-color);
  line-height: 1.3;
}

.section-title p {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
  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 - Modern Elegant Design
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 85vh;
  position: relative;
  padding: 140px 0 80px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('/assets/img/world-dotted-map.png') center/cover no-repeat;
  opacity: 0.1;
  z-index: 1;
}

.hero .hero-bg {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.15;
  filter: blur(3px);
}

.hero .container {
  position: relative;
  z-index: 3;
}

.hero h2 {
  margin-bottom: 25px;
  padding: 0;
  font-size: 52px;
  font-weight: 800;
  line-height: 1.2;
  color: #ffffff;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  animation: fadeInUp 0.8s ease-out;
}

@media (max-width: 991px) {
  .hero h2 {
    font-size: 40px;
  }
}

@media (max-width: 575px) {
  .hero h2 {
    font-size: 32px;
  }
}

.hero p {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.7;
  animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.hero form {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 8px;
  border-radius: 50px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.hero form .form-control {
  padding: 18px 25px;
  border: none;
  margin-right: 10px;
  border-radius: 50px;
  font-size: 16px;
  color: #2c3e50;
  border: 2px solid transparent !important;
  background: transparent !important;
}

.hero form .form-control::placeholder {
  color: #90a4ae;
}

.hero form .form-control:hover,
.hero form .form-control:focus {
  outline: none;
  box-shadow: none;
  border-color: transparent !important;
}

.hero form .btn-primary {
  color: var(--contrast-color);
  background: var(--blue-gradient);
  flex-shrink: 0;
  padding: 18px 35px;
  border-radius: 50px;
  font-weight: 600;
  border: none;
  transition: all 0.3s ease;
}

.hero form .btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(33, 150, 243, 0.4);
}

.hero .stats-item {
  padding: 25px;
  width: 100%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.hero .stats-item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
}

.hero .stats-item span {
  font-size: 40px;
  display: block;
  font-weight: 800;
  margin-bottom: 10px;
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero .stats-item p {
  padding: 0;
  margin: 0;
  font-family: var(--heading-font);
  font-size: 16px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

.hero .hero-img img {
  animation: float 3s ease-in-out infinite;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.2));
}

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

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

/*--------------------------------------------------------------
# Featured Services Section - Modern Card Design
--------------------------------------------------------------*/
.featured-services {
  padding: 80px 0;
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.featured-services .service-item {
  position: relative;
  height: 100%;
  padding: 40px 30px;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  margin-bottom: 30px;
  border: 1px solid rgba(33, 150, 243, 0.1);
  overflow: hidden;
}

.featured-services .service-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--blue-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.featured-services .service-item:hover::before {
  transform: scaleX(1);
}

.featured-services .service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 45px rgba(33, 150, 243, 0.15);
  border-color: rgba(33, 150, 243, 0.3);
}

.featured-services .service-item .icon {
  margin-right: 20px;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
  border-radius: 15px;
  flex-shrink: 0;
  transition: all 0.4s ease;
}

.featured-services .service-item .icon i {
  background: var(--blue-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 35px;
  transition: all 0.4s ease;
}

.featured-services .service-item:hover .icon {
  background: var(--blue-gradient);
  transform: scale(1.1) rotate(5deg);
}

.featured-services .service-item:hover .icon i {
  -webkit-text-fill-color: #ffffff;
}

.featured-services .service-item .title {
  color: var(--heading-color);
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 20px;
  transition: all 0.3s ease;
  line-height: 1.4;
}

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

.featured-services .service-item .description {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 0;
  line-height: 1.7;
}

.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 - Modern Elegant Design
--------------------------------------------------------------*/
.about {
  padding: 80px 0;
  background: #ffffff;
  position: relative;
}

.about::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.03) 0%, rgba(118, 75, 162, 0.03) 100%);
  z-index: 0;
}

.about .container {
  position: relative;
  z-index: 1;
}

.about .content h3 {
  font-size: 42px;
  font-weight: 800;
  color: var(--heading-color);
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.about .content h3::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 4px;
  background: var(--blue-gradient);
  border-radius: 2px;
}

.about .content p {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-muted);
  margin-top: 30px;
}

.about .content .about-us-content {
  background: linear-gradient(135deg, #f8f9fa 0%, #e3f2fd 100%);
  padding: 30px;
  border-radius: 15px;
  border-left: 5px solid var(--accent-color);
  box-shadow: 0 5px 20px rgba(33, 150, 243, 0.1);
  font-size: 16px;
  line-height: 1.9;
}

.about .content ul {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.about .content ul li {
  display: flex;
  align-items: flex-start;
  margin-top: 25px;
  padding: 20px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.about .content ul li:hover {
  transform: translateX(10px);
  box-shadow: 0 5px 25px rgba(33, 150, 243, 0.15);
}

.about .content ul i {
  flex-shrink: 0;
  font-size: 40px;
  background: var(--blue-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-right: 20px;
  line-height: 1;
}

.about .content ul h5 {
  font-size: 20px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 8px;
}

.about .content ul p {
  font-size: 15px;
  margin-top: 5px;
  margin-bottom: 0;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about img {
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(33, 150, 243, 0.15);
  transition: all 0.4s ease;
}

.about img:hover {
  transform: scale(1.02);
  box-shadow: 0 15px 50px rgba(33, 150, 243, 0.25);
}

.about .pulsating-play-btn {
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
}

/*--------------------------------------------------------------
# Services Section - Modern Card Design with Hover Effects
--------------------------------------------------------------*/
.services {
  padding: 80px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
  position: relative;
}

.services .section-title {
  margin-bottom: 50px;
}

.services .section-title span {
  color: var(--accent-color);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.services .section-title h2 {
  font-size: 42px;
  font-weight: 800;
  color: var(--heading-color);
  margin-top: 10px;
}

.services .card {
  background: #ffffff;
  color: var(--default-color);
  border: none;
  position: relative;
  border-radius: 20px;
  height: 100%;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.services .card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--blue-gradient);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.services .card:hover::before {
  opacity: 0.05;
}

.services .card .card-img {
  overflow: hidden;
  margin-bottom: 0;
  border-radius: 0;
  height: 250px;
  position: relative;
  background: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
}

.services .card .card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 15px;
}

.services .card h3 {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 12px;
  padding: 25px 25px 0 25px;
  text-transform: none;
  color: var(--heading-color);
  line-height: 1.4;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.services .card a {
  color: var(--heading-color);
  transition: all 0.3s ease;
  text-decoration: none;
}

.services .card:hover a {
  color: var(--accent-color);
}

.services .card p {
  padding: 0 25px 20px 25px;
  margin-bottom: 0;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
  position: relative;
  z-index: 2;
}

.services .card .readmore {
  padding: 0 25px 25px 25px;
  position: relative;
  z-index: 2;
}

.services .card .readmore a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-color);
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
}

.services .card .readmore a i {
  transition: transform 0.3s ease;
}

.services .card:hover .readmore a i {
  transform: translateX(5px);
}

.services .card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 45px rgba(33, 150, 243, 0.2);
}

.services .card:hover .card-img img {
  transform: scale(1.05);
}

.view-all-btn {
  background: var(--blue-gradient);
  border: none;
  transition: all 0.3s ease;
}

.view-all-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(33, 150, 243, 0.3);
}

/*--------------------------------------------------------------
# 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(--default-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(--contrast-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 {
  padding: 80px 0;
  position: relative;
}

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

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

.testimonials .container {
  position: relative;
  z-index: 3;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  text-align: center;
}

.testimonials .testimonial-item .testimonial-img {
  width: 100px;
  border-radius: 50%;
  border: 6px solid color-mix(in srgb, var(--default-color), transparent 85%);
  margin: 0 auto;
}

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

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

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

.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(--default-color), transparent 40%);
  font-size: 26px;
  line-height: 0;
}

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

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

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

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

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

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

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

@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 80%;
  }
}

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

.about-us-content {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 10px;
}

.iso-dropdown-menu {
  z-index: 1000;
  max-height: 200px;
  overflow-y: auto;
}

#iso-search-results {
  background-color: #ffffff;
  border: 1px solid #dee2e6;
  border-radius: 0.25rem;
  max-height: 250px;
  overflow-y: auto;
  box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.1);
  transition: opacity 0.3s ease;
  z-index: 1050;
}

#iso-search-results .dropdown-item {
  padding: 0.5rem 1rem;
  color: #212529;
  text-decoration: none;
}

#iso-search-results .dropdown-item:hover {
  background-color: #f8f9fa;
}

/* Optional: smooth fade-in */
#iso-search-results.show {
  display: block !important;
  opacity: 1;
}

#iso-search-results:not(.show) {
  opacity: 0;
}

.custom-logo {
  max-height: 80px !important;
  /* Adjust this as needed */
  max-width: 200px;
  /* Optional: restrict width */
  height: auto;
  width: auto;
  object-fit: contain;
}/* =====================================================
   EXTRACTED PUBLIC CSS FROM BLADE FILES
   Generated automatically - Review and merge duplicates
   ===================================================== */


/* Extracted from: pages/404.blade.php - Block 1 */
.page-title.dark-background {
        background-size: cover;
        background-position: center;
        padding: 80px 0;
    }


/* Extracted from: pages/apply-for-certification.blade.php - Block 1 */
.fancy-input {
        background-color: #fff;
        border: 1px solid #ccc;
        border-radius: 0.4rem;
        padding: 0.75rem 1rem;
        box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.05);
        transition: border-color 0.3s ease, box-shadow 0.3s ease;
    }

    .fancy-input:focus {
        border-color: #0056b3;
        box-shadow: 0 0 0 0.2rem rgba(0, 86, 179, 0.25);
    }

    label.form-label {
        font-weight: 500;
        color: #333;
    }

    form.bg-light {
        background: #fdfdfd;
    }

    #form-success-feedback img {
        animation: pop 0.4s ease-in-out;
    }

    @keyframes pop {
        0% {
            transform: scale(0);
            opacity: 0;
        }

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


/* Extracted from: pages/apply-for-training.blade.php - Block 1 */
.fancy-input {
        background-color: #fff;
        border: 1px solid #ccc;
        border-radius: 0.4rem;
        padding: 0.75rem 1rem;
        box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.05);
        transition: border-color 0.3s ease, box-shadow 0.3s ease;
    }

    .fancy-input:focus {
        border-color: #0056b3;
        box-shadow: 0 0 0 0.2rem rgba(0, 86, 179, 0.25);
    }

    label.form-label {
        font-weight: 500;
        color: #333;
    }

    form.bg-light {
        background: #fdfdfd;
    }

    #form-success-feedback img {
        animation: pop 0.4s ease-in-out;
    }

    @keyframes pop {
        0% {
            transform: scale(0);
            opacity: 0;
        }

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


/* Extracted from: pages/index.blade.php - Block 1 */
.view-all-btn {
        background: linear-gradient(135deg, #007bff, #0056b3);
        border: none;
        border-radius: 0.4rem;
        transition: all 0.3s ease-in-out;
    }

    .view-all-btn:hover {
        background: linear-gradient(135deg, #0056b3, #003f88);
        transform: translateY(-2px);
        box-shadow: 0 6px 12px rgba(0, 86, 179, 0.2);
    }

    /* Clients Section Styles */
    .clients {
        background-color: #f8f9fa;
        padding: 80px 0;
    }

    .client-item {
        background: white;
        border-radius: 12px;
        padding: 30px 20px;
        text-align: center;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
        height: 120px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .client-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }

    .client-item img {
        max-width: 100%;
        max-height: 60px;
        object-fit: contain;
        filter: grayscale(100%);
        transition: filter 0.3s ease;
    }

    .client-item:hover img {
        filter: grayscale(0%);
    }

    .client-list-btn {
        border: 2px solid #007bff;
        color: #007bff;
        font-weight: 600;
        border-radius: 0.4rem;
        transition: all 0.3s ease-in-out;
        text-decoration: none;
    }

    .client-list-btn:hover {
        background-color: #007bff;
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 6px 12px rgba(0, 123, 255, 0.2);
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
        .clients {
            padding: 60px 0;
        }

        .client-item {
            height: 100px;
            padding: 20px 15px;
        }

        .client-item img {
            max-height: 50px;
        }
    }


/* Extracted from: pages/verify-training-certificate.blade.php - Block 1 */
.input-group {
        background: #fff;
        border-radius: 0.5rem;
    }

    .input-group input::placeholder {
        font-style: italic;
        color: #888;
    }

    .input-group input:focus {
        box-shadow: none;
    }

    .btn-primary {
        background: #0056b3;
        border: none;
        transition: background 0.3s ease-in-out;
    }

    .btn-primary:hover {
        background: #003f88;
    }

    .error-msg {
        font-size: 14px;
        font-style: italic;
    }

    #loader {
        transition: opacity 0.3s ease-in-out;
    }


/* Extracted from: pages/check-certificate-status.blade.php - Block 1 */
.input-group {
        background: #fff;
        border-radius: 0.5rem;
    }

    .input-group input::placeholder {
        font-style: italic;
        color: #888;
    }

    .input-group input:focus {
        box-shadow: none;
    }

    .btn-primary {
        background: #0056b3;
        border: none;
        transition: background 0.3s ease-in-out;
    }

    .btn-primary:hover {
        background: #003f88;
    }

    .error-msg {
        font-size: 14px;
        font-style: italic;
    }

    #loader {
        transition: opacity 0.3s ease-in-out;
    }


/* Extracted from: pages/blog.blade.php - Block 1 */
/* Blog Hover Effect */
    .blog-item {
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .blog-item:hover {
        transform: translateY(-5px);
    }

    /* Blog Title */
    .blog-content h3 {
        color: #000;
        font-size: 1.5rem;
    }

    /* Read More Button */
    .btn-custom {
        background: #007bff;
        color: #fff;
        padding: 10px 20px;
        font-weight: 600;
        border-radius: 30px;
        transition: all 0.3s ease-in-out;
    }

    .btn-custom:hover {
        background: #0056b3;
        color: #fff;
        transform: scale(1.05);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }

    /* Responsive Fix for Pagination */
    .pagination {
        gap: 0.5rem;
        flex-wrap: wrap;
    }

    /* Mobile Responsiveness */
    @media (max-width: 767px) {
        .blog-content {
            text-align: center !important;
            padding: 0 !important;
        }

        .blog-content h3 {
            font-size: 1.25rem;
        }

        .btn-custom {
            display: inline-block;
            width: auto;
            margin: 0 auto;
        }
    }

    .pagination .page-link {
        border-radius: 50% !important;
        margin: 0 3px;
        width: 40px;
        height: 40px;
        text-align: center;
        line-height: 38px;
    }

    .pagination .page-item.active .page-link {
        background-color: #007bff;
        border-color: #007bff;
        color: #fff;
    }

    .image-wrapper {
        position: relative;
        overflow: hidden;
        min-height: 250px;
        /* Prevent CLS */
        display: flex;
        justify-content: center;
        align-items: center;
        background: #f9f9f9;
    }

    .loader {
        border: 4px solid #f3f3f3;
        border-top: 4px solid #3498db;
        border-radius: 50%;
        width: 40px;
        height: 40px;
        animation: spin 1s linear infinite;
        position: absolute;
        z-index: 2;
    }

    .blog-image {
        opacity: 0;
        transition: opacity 0.5s ease-in-out;
        position: relative;
        z-index: 1;
    }

    .blog-image.loaded {
        opacity: 1;
    }

    @keyframes spin {
        0% {
            transform: rotate(0deg);
        }

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


/* Extracted from: pages/contact.blade.php - Block 1 */
.fancy-input {
        background-color: #fff;
        border: 1px solid #ccc;
        border-radius: 0.4rem;
        padding: 0.75rem 1rem;
        box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.05);
        transition: border-color 0.3s ease, box-shadow 0.3s ease;
    }

    .fancy-input:focus {
        border-color: #0056b3;
        box-shadow: 0 0 0 0.2rem rgba(0, 86, 179, 0.2);
    }

    .invalid-feedback {
        display: block;
        font-size: 0.875rem;
        color: #dc3545;
        margin-top: 0.25rem;
    }

    #form-success-feedback img {
        animation: pop 0.4s ease-in-out;
    }

    @keyframes pop {
        0% {
            transform: scale(0);
            opacity: 0;
        }

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


/* Extracted from: pages/advertisement.blade.php - Block 1 */
.fancy-input {
        border-radius: 8px;
        padding: 10px;
        font-size: 0.95rem;
    }

    .card {
        transition: transform 0.2s ease, box-shadow 0.2s ease;
        border-radius: 10px;
    }

    .card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    }

    .card-title {
        color: #0d6efd;
    }


/* Extracted from: pages/blog-detail.blade.php - Block 1 */
.blog-article p {
        margin-bottom: 1.2rem;
    }

    .blog-article img {
        max-width: 100%;
        height: auto;
        border-radius: 0.5rem;
        margin: 1.5rem 0;
    }


/* Extracted from: pages/std-detail.blade.php - Block 1 */
#faq .accordion-button {
        font-weight: 500;
        font-size: 1.1rem;
    }


/* Extracted from: pages/accredation-parteners.blade.php - Block 1 */
.blog-article p {
        margin-bottom: 1.2rem;
    }

    .blog-article h2 {
        color: #2c3e50;
        border-bottom: 3px solid #007bff;
        padding-bottom: 0.5rem;
        display: inline-block;
    }

    .certification-list {
        background: white;
        padding: 2rem;
        border-radius: 0.5rem;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        height: 100%;
    }

    .certification-list li {
        padding: 0.5rem 0;
        border-bottom: 1px solid #f8f9fa;
    }

    .certification-list li:last-child {
        border-bottom: none;
    }

    .logo-container {
        transition: all 0.3s ease;
    }

    .logo-container:hover {
        transform: translateY(-2px);
    }

    .logo-container img {
        filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
    }

    @media (max-width: 768px) {
        .certification-list {
            margin-bottom: 2rem;
        }
        
        .logo-container {
            margin-top: 2rem;
        }
    }


/*--------------------------------------------------------------
# Clients Section - Modern Elegant Design
--------------------------------------------------------------*/
.clients {
    background: linear-gradient(135deg, #f8f9fa 0%, #e3f2fd 100%);
    padding: 80px 0;
    position: relative;
}

.clients .section-title {
    margin-bottom: 50px;
}

.clients .section-title span {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.clients .section-title h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--heading-color);
    margin-top: 10px;
}

.clients .section-title p {
    font-size: 17px;
    color: var(--text-muted);
    margin-top: 15px;
}

.client-item {
    background: #ffffff;
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(33, 150, 243, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.client-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--blue-gradient);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.client-item:hover::before {
    opacity: 0.03;
}

.client-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(33, 150, 243, 0.2);
    border-color: rgba(33, 150, 243, 0.3);
}

.client-item img {
    max-width: 100%;
    max-height: 70px;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.6);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.client-item:hover img {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.05);
}

.client-list-btn {
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    font-weight: 600;
    border-radius: 50px;
    padding: 12px 30px;
    transition: all 0.3s ease;
    text-decoration: none;
    background: #ffffff;
    display: inline-block;
}

.client-list-btn:hover {
    background: var(--blue-gradient);
    color: white;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(33, 150, 243, 0.3);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .clients {
        padding: 60px 0;
    }

    .clients .section-title h2 {
        font-size: 32px;
    }

    .client-item {
        height: 120px;
        padding: 25px 20px;
    }

    .client-item img {
        max-height: 55px;
    }
}


/* Extracted from: partials/footer.blade.php - Block 1 */
.newsletter-banner {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .newsletter-section {
        background: rgba(255, 255, 255, 0.05);
        padding: 3rem 2rem;
        border-radius: 2rem;
        backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    }

    .newsletter-header {
        position: relative;
    }

    .newsletter-title {
        font-size: 2.2rem;
        font-weight: 300;
        letter-spacing: -0.02em;
        position: relative;
    }

    .newsletter-title::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 2px;
        background: rgba(255, 255, 255, 0.6);
        border-radius: 1px;
    }

    .newsletter-subtitle {
        font-size: 1.1rem;
        opacity: 0.8;
        font-weight: 300;
        line-height: 1.6;
    }

    .newsletter-input-wrapper {
        position: relative;
    }

    .newsletter-form .input-group {
        border-radius: 50px;
        overflow: hidden;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
    }

    .newsletter-form .input-group-text {
        background: transparent;
        border: none;
        color: #666;
        padding: 0 1.25rem 0 1.5rem;
        font-size: 1.1rem;
    }

    .newsletter-form .form-control {
        border: none;
        background: transparent;
        padding: 1rem 0.5rem 1rem 0;
        font-size: 1rem;
        color: #333;
        font-weight: 400;
    }

    .newsletter-form .form-control:focus {
        background: transparent;
        box-shadow: none;
        border: none;
        color: #333;
    }

    .newsletter-form .form-control::placeholder {
        color: #999;
        font-weight: 300;
    }

    .newsletter-form .btn {
        border: none;
        padding: 1rem 2rem;
        font-weight: 500;
        border-radius: 50px;
        margin: 4px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
    }

    .newsletter-submit-btn {
        background: rgba(255, 255, 255, 0.9) !important;
        border: 2px solid rgba(255, 255, 255, 0.8) !important;
        color: #333 !important;
        font-weight: 600 !important;
        text-transform: uppercase !important;
        letter-spacing: 0.5px !important;
        min-width: 140px !important;
    }

    .newsletter-form .btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: left 0.5s;
    }

    .newsletter-form .btn:hover::before {
        left: 100%;
    }

    .newsletter-form .btn:hover {
        transform: translateY(-1px);
        box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
    }

    .newsletter-submit-btn:hover {
        background: rgba(255, 255, 255, 1) !important;
        border-color: rgba(255, 255, 255, 1) !important;
        color: #000 !important;
        transform: translateY(-2px) !important;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3) !important;
    }

    .form-note {
        opacity: 0.7;
        font-size: 0.9rem;
    }

    .form-note i {
        color: rgba(255, 255, 255, 0.8);
    }

    @media (max-width: 768px) {
        .newsletter-section {
            padding: 2.5rem 1.5rem;
            border-radius: 1.5rem;
        }

        .newsletter-title {
            font-size: 1.8rem;
        }

        .newsletter-subtitle {
            font-size: 1rem;
        }

        .newsletter-form .btn {
            padding: 0.875rem 1.5rem;
            font-size: 0.9rem;
        }

        .newsletter-form .input-group-text {
            padding: 0 1rem 0 1.25rem;
        }
    }

    /* Footer Sections Styling */
    .footer-company-info {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .company-logo-section .custom-logo {
        max-height: 60px;
    }

    .company-description {
        color: rgba(255, 255, 255, 0.8);
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }

    .contact-summary p {
        color: rgba(255, 255, 255, 0.9);
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
    }

    .contact-summary i {
        color: rgba(255, 255, 255, 0.7);
    }

    /* Social Links Styling */
    .social-links-section h5 {
        color: white;
        font-weight: 600;
    }

    .social-links {
        gap: 2rem !important;
    }

    .social-link {
        display: flex !important;
        align-items: center !important;
        gap: 0.5rem !important;
        padding: 0.5rem 0 !important;
        margin: 0 !important;
        background: transparent !important;
        border-radius: 0 !important;
        color: rgba(255, 255, 255, 0.8) !important;
        text-decoration: none !important;
        transition: all 0.3s ease !important;
        border: none !important;
        border-bottom: 2px solid transparent !important;
        box-shadow: none !important;
        width: auto !important;
        height: auto !important;
    }

    .social-link:hover {
        background: transparent !important;
        border-color: transparent !important;
        color: white;
        border-bottom-color: #007bff;
        transform: none !important;
        box-shadow: none !important;
    }

    .social-link:focus {
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        outline: none !important;
    }

    .social-link i {
        font-size: 1.1rem;
    }

    .social-link span {
        font-size: 0.9rem;
        font-weight: 500;
    }

    /* Footer Links Styling */
    .footer-links-section {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .footer-section-title {
        color: white;
        font-weight: 600;
        margin-bottom: 1.5rem;
        position: relative;
    }

    .footer-section-title::after {
        content: '';
        position: absolute;
        bottom: -8px;
        left: 0;
        width: 40px;
        height: 2px;
        background: #007bff;
    }

    .footer-subtitle {
        color: rgba(255, 255, 255, 0.9);
        font-weight: 500;
        margin-bottom: 1rem;
        font-size: 1rem;
    }

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

    .footer-links-list li {
        margin-bottom: 0.75rem;
    }

    .footer-links-list a {
        color: rgba(255, 255, 255, 0.8);
        text-decoration: none;
        transition: all 0.3s ease;
        font-size: 0.95rem;
    }

    .footer-links-list a:hover {
        color: white;
        padding-left: 5px;
    }

    /* Quick Links Grid */
    .quick-links-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 0.75rem;
    }

    .quick-link-item {
        margin-bottom: 0.5rem;
    }

    .quick-link {
        display: block;
        padding: 0.5rem 0.75rem;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 0.375rem;
        color: rgba(255, 255, 255, 0.8);
        text-decoration: none;
        font-size: 0.9rem;
        transition: all 0.3s ease;
        border: 1px solid rgba(255, 255, 255, 0.05);
    }

    .quick-link:hover {
        background: rgba(255, 255, 255, 0.1);
        color: white;
        border-color: rgba(255, 255, 255, 0.2);
    }

    /* Office Cards Styling */
    .footer-offices {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .office-card {
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.15);
        border-radius: 1.25rem;
        padding: 1.75rem;
        height: 100%;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
    }

    .office-card:hover {
        background: rgba(255, 255, 255, 0.12);
        border-color: rgba(255, 255, 255, 0.25);
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    }

    .office-header {
        text-align: center;
        margin-bottom: 1rem;
    }

    .flag-icon {
        font-size: 2rem;
        margin-bottom: 0.5rem;
        display: block;
    }

    .office-card h5 {
        color: white;
        font-size: 1.1rem;
        font-weight: 600;
        margin-bottom: 0.25rem;
    }

    .country {
        color: rgba(255, 255, 255, 0.7);
        font-size: 0.9rem;
        font-weight: 400;
    }

    .office-address {
        color: rgba(255, 255, 255, 0.9);
    }

    .office-address p {
        margin-bottom: 0.75rem;
        line-height: 1.5;
        font-size: 0.95rem;
    }

    .contact-info {
        margin-top: 0.75rem;
        padding-top: 0.75rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .contact-info p {
        margin-bottom: 0;
        font-size: 0.9rem;
    }

    @media (max-width: 768px) {
        .office-card {
            padding: 1.25rem;
            margin-bottom: 1rem;
        }

        .flag-icon {
            font-size: 1.75rem;
        }

        .office-card h5 {
            font-size: 1rem;
        }

        .social-links {
            gap: 1.5rem !important;
        }

        .social-link {
            padding: 0.4rem 0 !important;
            margin: 0 !important;
            font-size: 0.85rem !important;
            background: transparent !important;
            border-radius: 0 !important;
            border: none !important;
            box-shadow: none !important;
            width: auto !important;
            height: auto !important;
        }

        .social-link span {
            display: none;
        }

        .quick-links-grid {
            grid-template-columns: 1fr;
        }
    }


/* Extracted from: partials/chatbot.blade.php - Block 1 */
/* Chatbot Widget Styles */
#chatbot-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Floating Button with Pulse Rings */
.chatbot-toggle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--blue-gradient);
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(33, 150, 243, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    animation: bounce 2s infinite;
}

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

.chatbot-toggle:hover {
    transform: scale(1.15) translateY(-5px);
    box-shadow: 0 12px 32px rgba(33, 150, 243, 0.5);
}

/* Pulse Rings */
.pulse-ring,
.pulse-ring-2 {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid #667eea;
    border-radius: 50%;
    animation: pulse 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
    opacity: 0;
}

.pulse-ring-2 {
    animation-delay: 1s;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        opacity: 0.7;
    }
    50% {
        opacity: 0.3;
    }
    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

/* Notification Badge */
.notification-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 24px;
    height: 24px;
    background: #ff4757;
    color: white;
    border-radius: 50%;
    font-size: 12px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid white;
    animation: badgePulse 1.5s infinite;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.toggle-icon-wrapper {
    position: relative;
    width: 32px;
    height: 32px;
}

.chatbot-icon,
.chatbot-close-icon {
    width: 32px;
    height: 32px;
    color: white;
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.chatbot-close-icon {
    opacity: 0;
    transform: rotate(180deg) scale(0);
}

.chatbot-toggle.active .chatbot-icon {
    opacity: 0;
    transform: rotate(-180deg) scale(0);
}

.chatbot-toggle.active .chatbot-close-icon {
    opacity: 1;
    transform: rotate(0) scale(1);
}

.chatbot-toggle.active {
    animation: none;
    transform: scale(1);
}

.chatbot-toggle.active .notification-badge {
    display: none;
}

.chatbot-window {
    position: absolute;
    bottom: 85px;
    right: 0;
    width: 400px;
    max-width: calc(100vw - 40px);
    height: 620px;
    max-height: calc(100vh - 120px);
    background: white;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.3);
    display: none;
    flex-direction: column;
    overflow: hidden;
    transform-origin: bottom right;
}

.chatbot-window.active {
    display: flex;
    animation: popIn 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes popIn {
    0% {
        opacity: 0;
        transform: scale(0.3) translateY(50px);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.chatbot-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 24px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.chatbot-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.1)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    opacity: 0.3;
}

.chatbot-header-content {
    display: flex;
    align-items: center;
    gap: 14px;
    position: relative;
    z-index: 1;
}

.chatbot-avatar-container {
    position: relative;
}

.chatbot-avatar {
    width: 52px;
    height: 52px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    animation: avatarFloat 3s ease-in-out infinite;
}

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

/* Animated Robot Face */
.robot-face {
    width: 100%;
    height: 100%;
    position: relative;
}

.robot-eyes {
    display: flex;
    gap: 10px;
    justify-content: center;
    padding-top: 12px;
}

.eye {
    width: 12px;
    height: 12px;
    background: white;
    border-radius: 50%;
    position: relative;
    animation: blink 4s infinite;
}

.pupil {
    width: 6px;
    height: 6px;
    background: #667eea;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: lookAround 5s infinite;
}

@keyframes blink {
    0%, 90%, 100% { transform: scaleY(1); }
    95% { transform: scaleY(0.1); }
}

@keyframes lookAround {
    0%, 100% { transform: translate(-50%, -50%); }
    25% { transform: translate(-30%, -50%); }
    50% { transform: translate(-50%, -30%); }
    75% { transform: translate(-70%, -50%); }
}

.robot-mouth {
    width: 20px;
    height: 10px;
    border: 2px solid white;
    border-top: none;
    border-radius: 0 0 10px 10px;
    margin: 6px auto 0;
    animation: smile 3s ease-in-out infinite;
}

@keyframes smile {
    0%, 100% { transform: scaleX(1); }
    50% { transform: scaleX(1.2); }
}

.online-indicator {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 14px;
    height: 14px;
    background: #10b981;
    border-radius: 50%;
    border: 3px solid white;
    animation: pulse-online 2s infinite;
}

@keyframes pulse-online {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

.chatbot-title {
    margin: 0;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.chatbot-subtitle {
    margin: 0;
    font-size: 13px;
    opacity: 0.95;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Typing Indicator */
.typing-indicator {
    display: none;
    align-items: center;
    gap: 3px;
}

.typing-indicator span {
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    animation: typingDot 1.4s infinite;
}

.typing-indicator span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-indicator span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typingDot {
    0%, 60%, 100% { transform: translateY(0); opacity: 0.7; }
    30% { transform: translateY(-8px); opacity: 1; }
}

.status-text {
    display: inline;
}

.chatbot-close-btn {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s;
}

.chatbot-close-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.chatbot-close-btn svg {
    width: 20px;
    height: 20px;
}

.chatbot-body {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 20px;
    background: #f8f9fa;
    display: flex;
    flex-direction: column;
}

.chatbot-message {
    display: flex;
    gap: 12px;
    margin-bottom: 18px;
}

.chatbot-message[data-animation="slide-in"] {
    animation: slideInMessage 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes slideInMessage {
    0% { 
        opacity: 0; 
        transform: translateX(-30px) scale(0.8); 
    }
    100% { 
        opacity: 1; 
        transform: translateX(0) scale(1); 
    }
}

.bot-message .message-avatar {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
    animation: avatarPop 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes avatarPop {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.avatar-icon {
    font-size: 24px;
}

.message-content {
    flex: 1;
}

.message-bubble {
    background: white;
    padding: 14px 18px;
    border-radius: 18px 18px 18px 4px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    max-width: 85%;
    position: relative;
    animation: bubblePop 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.1s backwards;
}

@keyframes bubblePop {
    0% { transform: scale(0.3); opacity: 0; }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); opacity: 1; }
}

.message-bubble::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: -8px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid white;
    transform: rotate(-45deg);
}

.message-bubble p {
    margin: 0;
    font-size: 14.5px;
    line-height: 1.6;
    color: #2d3748;
}

.message-time {
    font-size: 11px;
    color: #a0aec0;
    margin-top: 6px;
    display: block;
}

.chatbot-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 16px;
}

.chatbot-option-btn {
    background: white;
    border: 2px solid #e8e8e8;
    padding: 16px 18px;
    border-radius: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 15px;
    font-weight: 600;
    color: #2d3748;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    text-align: left;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    animation: slideInOption 0.4s ease backwards;
}

.chatbot-option-btn:nth-child(1) { animation-delay: 0.1s; }
.chatbot-option-btn:nth-child(2) { animation-delay: 0.2s; }
.chatbot-option-btn:nth-child(3) { animation-delay: 0.3s; }

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

.chatbot-option-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.1), transparent);
    transition: left 0.5s;
}

.chatbot-option-btn:hover::before {
    left: 100%;
}

.chatbot-option-btn:hover {
    border-color: #667eea;
    background: linear-gradient(135deg, #f0f3ff 0%, #faf5ff 100%);
    transform: translateX(8px) scale(1.02);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.2);
}

.chatbot-option-btn:active {
    transform: translateX(8px) scale(0.98);
}

.chatbot-option-btn svg {
    width: 24px;
    height: 24px;
    color: #667eea;
    flex-shrink: 0;
    transition: transform 0.3s;
}

.chatbot-option-btn:hover svg {
    transform: scale(1.2) rotate(5deg);
}

/* Services Container */
#services-list-container {
    margin-top: 12px;
    animation: slideInForm 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
}

.services-header {
    background: linear-gradient(135deg, #f0f3ff 0%, #faf5ff 100%);
    padding: 14px 16px;
    border-radius: 12px;
    margin-bottom: 12px;
    border-left: 4px solid #667eea;
    animation: fadeInUp 0.4s ease;
    flex-shrink: 0;
}

.services-title {
    font-size: 15px;
    font-weight: 700;
    color: #2d3748;
    margin: 0 0 4px 0;
}

.services-subtitle {
    font-size: 12px;
    color: #718096;
    margin: 0;
    line-height: 1.4;
}

.chatbot-services {
    display: flex;
    flex-direction: column;
    gap: 8px;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 2px;
    flex: 1;
    min-height: 0;
}

/* Custom Scrollbar for Services */
.chatbot-services::-webkit-scrollbar {
    width: 6px;
}

.chatbot-services::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.chatbot-services::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
}

.chatbot-services::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #764ba2 0%, #667eea 100%);
}

.chatbot-service-btn {
    background: white !important;
    border: 2px solid #e2e8f0 !important;
    padding: 12px 14px !important;
    border-radius: 10px !important;
    cursor: pointer !important;
    font-size: 13px !important;
    color: #2d3748 !important;
    transition: all 0.3s ease !important;
    text-align: left !important;
    display: block !important;
    width: 100% !important;
    position: relative !important;
    overflow: hidden !important;
    font-weight: 500 !important;
    animation: fadeInService 0.3s ease backwards !important;
    flex-shrink: 0 !important;
    line-height: 1.4 !important;
}

@keyframes fadeInService {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.chatbot-service-btn::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #667eea;
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.chatbot-service-btn:hover::before {
    transform: scaleY(1);
}

.chatbot-service-btn:hover {
    border-color: #667eea !important;
    background: linear-gradient(90deg, #f0f3ff 0%, white 100%) !important;
    transform: translateX(6px) !important;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.15) !important;
}

.chatbot-service-btn:active {
    transform: translateX(6px) scale(0.98) !important;
}

/* User Message Styles */
.user-message {
    justify-content: flex-end;
}

.user-bubble {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    border-radius: 18px 18px 4px 18px !important;
    margin-left: auto;
}

.user-bubble::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: -8px;
    left: auto;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #667eea;
    transform: rotate(45deg);
}

.user-bubble p {
    color: white !important;
}

.user-bubble .message-time {
    color: rgba(255, 255, 255, 0.8) !important;
    text-align: right;
}

.chatbot-form-container {
    margin-top: 16px;
    animation: slideInForm 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

.form-group {
    margin-bottom: 18px;
    animation: fadeInUp 0.4s ease backwards;
}

.form-group:nth-child(1) { animation-delay: 0.1s; }
.form-group:nth-child(2) { animation-delay: 0.2s; }
.form-group:nth-child(3) { animation-delay: 0.3s; }
.form-group:nth-child(4) { animation-delay: 0.4s; }

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 13.5px;
    font-weight: 600;
    color: #2d3748;
}

.required {
    color: #f56565;
}

.form-control {
    width: 100%;
    padding: 12px 14px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 14px;
    transition: all 0.3s ease;
    box-sizing: border-box;
    background: white;
}

.form-control:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
    transform: translateY(-2px);
}

.form-control::placeholder {
    color: #cbd5e0;
}

.chatbot-submit-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
    margin-top: 8px;
}

.chatbot-submit-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.chatbot-submit-btn:hover::before {
    width: 300px;
    height: 300px;
}

.chatbot-submit-btn:hover:not(:disabled) {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.4);
}

.chatbot-submit-btn:active:not(:disabled) {
    transform: translateY(-1px) scale(0.98);
}

.chatbot-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.submit-text, .submit-loader {
    position: relative;
    z-index: 1;
}

.spinner {
    animation: rotate 2s linear infinite;
    width: 20px;
    height: 20px;
}

.spinner .path {
    stroke: white;
    stroke-linecap: round;
    animation: dash 1.5s ease-in-out infinite;
}

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

@keyframes dash {
    0% { stroke-dasharray: 1, 150; stroke-dashoffset: 0; }
    50% { stroke-dasharray: 90, 150; stroke-dashoffset: -35; }
    100% { stroke-dasharray: 90, 150; stroke-dashoffset: -124; }
}

.chatbot-success {
    text-align: center;
    padding: 50px 25px;
    animation: successPop 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes successPop {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 0 8px 24px rgba(72, 187, 120, 0.3);
    animation: successIconPulse 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.2s backwards;
}

@keyframes successIconPulse {
    0% {
        transform: scale(0);
        rotate: -180deg;
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
        rotate: 0deg;
    }
}

.success-icon svg {
    width: 40px;
    height: 40px;
    color: white;
    animation: checkmark 0.5s ease 0.4s backwards;
}

@keyframes checkmark {
    0% {
        stroke-dasharray: 50;
        stroke-dashoffset: 50;
        opacity: 0;
    }
    100% {
        stroke-dashoffset: 0;
        opacity: 1;
    }
}

.chatbot-success h4 {
    color: #2d3748;
    margin-bottom: 14px;
    font-size: 22px;
    font-weight: 700;
    animation: fadeInUp 0.5s ease 0.3s backwards;
}

.chatbot-success p {
    color: #718096;
    font-size: 15px;
    margin-bottom: 28px;
    line-height: 1.6;
    animation: fadeInUp 0.5s ease 0.4s backwards;
}

.chatbot-new-chat-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 4px 16px rgba(102, 126, 234, 0.3);
    animation: fadeInUp 0.5s ease 0.5s backwards;
}

.chatbot-new-chat-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.4);
}

/* Toast Notification Styles */
.toast-container {
    position: fixed !important;
    top: 20px !important;
    right: 20px !important;
    z-index: 999999 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    pointer-events: none !important;
}

.toast {
    min-width: 300px !important;
    background: white !important;
    border-radius: 12px !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25) !important;
    padding: 16px 20px !important;
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    animation: slideInRight 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55) !important;
    position: relative !important;
    overflow: hidden !important;
    pointer-events: all !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.toast::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
}

.toast.success::before {
    background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
}

.toast.error::before {
    background: linear-gradient(135deg, #f56565 0%, #e53e3e 100%);
}

.toast.info::before {
    background: linear-gradient(135deg, #4299e1 0%, #3182ce 100%);
}

.toast-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.toast.success .toast-icon {
    background: rgba(72, 187, 120, 0.1);
    color: #38a169;
}

.toast.error .toast-icon {
    background: rgba(245, 101, 101, 0.1);
    color: #e53e3e;
}

.toast.info .toast-icon {
    background: rgba(66, 153, 225, 0.1);
    color: #3182ce;
}

.toast-icon svg {
    width: 20px;
    height: 20px;
}

.toast-content {
    flex: 1;
}

.toast-title {
    font-weight: 600;
    font-size: 14px;
    color: #2d3748;
    margin: 0 0 4px 0;
}

.toast-message {
    font-size: 13px;
    color: #718096;
    margin: 0;
    line-height: 1.4;
}

.toast-close {
    background: none;
    border: none;
    color: #a0aec0;
    cursor: pointer;
    padding: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s;
}

.toast-close:hover {
    color: #2d3748;
}

.toast-close svg {
    width: 16px;
    height: 16px;
}

.toast.removing {
    animation: slideOutRight 0.3s ease forwards;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(400px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideOutRight {
    to {
        opacity: 0;
        transform: translateX(400px);
    }
}

/* Mobile Responsive */
@media (max-width: 480px) {
    #chatbot-widget {
        bottom: 10px;
        right: 10px;
    }
    
    .chatbot-window {
        width: calc(100vw - 20px);
        height: calc(100vh - 100px);
        bottom: 70px;
        right: 0;
    }
    
    .chatbot-toggle {
        width: 56px;
        height: 56px;
    }

    .toast-container {
        top: 10px;
        right: 10px;
        left: 10px;
    }

    .toast {
        min-width: auto;
        width: 100%;
    }
}
/* =====================================================
   UTILITY CLASSES - For common inline styles
   ===================================================== */

/* Font sizes */
.fs-075 { font-size: 0.75rem !important; }
.fs-11 { font-size: 1.1rem !important; }
.fs-15 { font-size: 15px !important; }
.fs-25 { font-size: 2.5rem !important; }
.fs-3 { font-size: 3rem !important; }

/* Text colors */
.text-muted-30 {
    color: color-mix(in srgb, var(--default-color), transparent 30%) !important;
}

/* Widths */
.w-3rem { width: 3rem !important; }
.w-5 { width: 5% !important; }
.w-10 { width: 10% !important; }
.w-15 { width: 15% !important; }
.w-20 { width: 20% !important; }
.w-25 { width: 25% !important; }

/* Heights */
.h-3rem { height: 3rem !important; }

/* Max widths */
.mw-150 { max-width: 150px !important; }
.mw-250 { max-width: 250px !important; }
.mw-300 { max-width: 300px !important; }

/* Max heights */
.mh-150 { max-height: 150px !important; }

/* Line height */
.lh-17 { line-height: 1.7 !important; }

/* Padding */
.pt-10 { padding-top: 10px !important; }

/* Object fit */
.obj-cover { object-fit: cover !important; }

/* Background images - Page titles */
.bg-page-title {
    background-image: url(/assets/img/page-title-bg-1.jpg) !important;
}

/* Display utilities */
.d-none { display: none !important; }

/*--------------------------------------------------------------
# Modern Enhancements - Additional Styles
--------------------------------------------------------------*/

/* Enhanced Buttons */
.btn {
  border-radius: 50px;
  font-weight: 600;
  padding: 12px 30px;
  transition: all 0.3s ease;
  border: none;
}

.btn-primary {
  background: var(--blue-gradient);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(33, 150, 243, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(33, 150, 243, 0.4);
}

.btn-outline-primary {
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  background: transparent;
}

.btn-outline-primary:hover {
  background: var(--blue-gradient);
  color: #ffffff;
  border-color: transparent;
}

.btn-lg {
  padding: 14px 35px;
  font-size: 16px;
}

/* Card Hover Effects */
.card-hover-effect {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-hover-effect:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(33, 150, 243, 0.2);
}

/* Gradient Text Animation */
@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.gradient-text-animated {
  background: linear-gradient(135deg, #667eea, #764ba2, #2196F3);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 3s ease infinite;
}

/* Scroll Reveal Animations */
.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Search Dropdown Styles */
.iso-dropdown-menu {
  background: #ffffff;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  margin-top: 10px;
  overflow: hidden;
  max-height: 400px;
  overflow-y: auto;
}

.iso-dropdown-menu.show {
  display: block;
}

.iso-dropdown-menu .dropdown-item {
  padding: 15px 20px;
  color: var(--default-color);
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.iso-dropdown-menu .dropdown-item:last-child {
  border-bottom: none;
}

.iso-dropdown-menu .dropdown-item:hover {
  background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
  color: var(--accent-color);
  padding-left: 25px;
}

/* Loading Spinner */
.spinner {
  border: 3px solid rgba(33, 150, 243, 0.1);
  border-radius: 50%;
  border-top-color: var(--accent-color);
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
}

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

/* Improved Mobile Responsiveness */
@media (max-width: 991px) {
  .hero {
    min-height: 70vh;
    padding: 100px 0 60px 0;
  }

  .hero h2 {
    font-size: 36px;
  }

  .section-title h2 {
    font-size: 32px;
  }

  .about .content h3 {
    font-size: 32px;
  }
}

@media (max-width: 575px) {
  .hero {
    min-height: 60vh;
    padding: 80px 0 40px 0;
  }

  .hero h2 {
    font-size: 28px;
  }

  .hero p {
    font-size: 16px;
  }

  .section-title h2 {
    font-size: 26px;
  }

  .featured-services .service-item {
    margin-bottom: 20px;
  }

  .about .content h3 {
    font-size: 26px;
  }

  .services .card h3 {
    font-size: 18px;
  }
}

/* Smooth Transitions */
* {
  -webkit-tap-highlight-color: transparent;
}

a, button, input, textarea {
  transition: all 0.3s ease;
}

/* Enhanced Scrollbar */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: var(--blue-gradient);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent-secondary);
}

/* Print Styles */
@media print {
  .header, .footer, .chatbot-widget {
    display: none !important;
  }
}

/*--------------------------------------------------------------
# Blog Pages Styling
--------------------------------------------------------------*/
.blog-item {
  margin-bottom: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(33, 150, 243, 0.1);
}

.blog-item:last-child {
  border-bottom: none;
}

.blog-content h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.blog-content h3:hover {
  color: var(--accent-color);
}

.blog-content p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-muted);
}

.btn-custom {
  background: var(--blue-gradient);
  color: #ffffff;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  border: none;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
}

.btn-custom:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(33, 150, 243, 0.3);
  color: #ffffff;
}

.image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
}

.image-wrapper img {
  transition: all 0.4s ease;
}

.image-wrapper:hover img {
  transform: scale(1.05);
}

.loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 4px solid rgba(33, 150, 243, 0.1);
  border-top-color: var(--accent-color);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
}

.blog-image.loaded + .loader {
  display: none;
}

/*--------------------------------------------------------------
# Contact Page Styling
--------------------------------------------------------------*/
.contact .info-item {
  background: linear-gradient(135deg, #f8f9fa 0%, #e3f2fd 100%);
  padding: 30px;
  border-radius: 15px;
  margin-bottom: 25px;
  border-left: 4px solid var(--accent-color);
  transition: all 0.3s ease;
}

.contact .info-item:hover {
  transform: translateX(5px);
  box-shadow: 0 5px 20px rgba(33, 150, 243, 0.15);
}

.contact .info-item i {
  font-size: 32px;
  color: var(--accent-color);
  margin-right: 20px;
  background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
}

.contact .info-item h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 10px;
}

.contact .info-item p,
.contact .info-item a {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 0;
}

.contact .info-item a:hover {
  color: var(--accent-color);
}

.fancy-input {
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  padding: 14px 18px;
  font-size: 15px;
  transition: all 0.3s ease;
  width: 100%;
}

.fancy-input:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 4px rgba(33, 150, 243, 0.1);
  outline: none;
}

.fancy-input.is-invalid {
  border-color: #dc3545;
}

.invalid-feedback {
  display: block;
  color: #dc3545;
  font-size: 14px;
  margin-top: 5px;
}

/*--------------------------------------------------------------
# FAQ / Accordion Styling
--------------------------------------------------------------*/
.accordion {
  border-radius: 15px;
  overflow: hidden;
}

.accordion-item {
  border: none;
  margin-bottom: 15px;
  border-radius: 12px !important;
  overflow: hidden;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.accordion-button {
  background: #ffffff;
  color: var(--heading-color);
  font-weight: 600;
  font-size: 17px;
  padding: 20px 25px;
  border: none;
  transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
  background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
  color: var(--accent-color);
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: 0 0 0 4px rgba(33, 150, 243, 0.1);
  border: none;
}

.accordion-button::after {
  background-image: none;
  content: "+";
  font-size: 24px;
  font-weight: 600;
  width: auto;
  height: auto;
  background-size: auto;
}

.accordion-button:not(.collapsed)::after {
  content: "−";
  transform: none;
}

.accordion-body {
  padding: 25px;
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-muted);
  background: #ffffff;
}

/*--------------------------------------------------------------
# Standard Detail Page Styling
--------------------------------------------------------------*/
.std-detail-image {
  max-width: 400px;
  margin: 0 auto 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(33, 150, 243, 0.15);
}

/*--------------------------------------------------------------
# Clients Page Styling
--------------------------------------------------------------*/
.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 25px;
}

/*--------------------------------------------------------------
# Policy Pages Styling
--------------------------------------------------------------*/
.policy-content {
  background: #ffffff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  line-height: 1.8;
}

.policy-content h2 {
  color: var(--heading-color);
  font-weight: 700;
  margin-top: 30px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 3px solid var(--accent-color);
}

.policy-content h3 {
  color: var(--heading-color);
  font-weight: 600;
  margin-top: 25px;
  margin-bottom: 15px;
}

.policy-content ul, .policy-content ol {
  margin-left: 20px;
  margin-bottom: 20px;
}

.policy-content li {
  margin-bottom: 10px;
  color: var(--text-muted);
}

/*--------------------------------------------------------------
# Application Forms Styling
--------------------------------------------------------------*/
.application-form {
  background: #ffffff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 5px 25px rgba(33, 150, 243, 0.1);
}

.application-form .form-label {
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 8px;
}

.application-form .form-control,
.application-form .form-select {
  border: 2px solid #e5e7eb;
  border-radius: 10px;
  padding: 12px 16px;
  transition: all 0.3s ease;
}

.application-form .form-control:focus,
.application-form .form-select:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 4px rgba(33, 150, 243, 0.1);
}

/*--------------------------------------------------------------
# Certificate Verification Styling
--------------------------------------------------------------*/
.verification-card {
  background: linear-gradient(135deg, #f8f9fa 0%, #e3f2fd 100%);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(33, 150, 243, 0.15);
}

.verification-result {
  background: #ffffff;
  border-radius: 15px;
  padding: 30px;
  margin-top: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.verification-result.success {
  border-left: 5px solid #10b981;
}

.verification-result.error {
  border-left: 5px solid #ef4444;
}

/*--------------------------------------------------------------
# Region Detail Page Styling
--------------------------------------------------------------*/
.region-header {
  background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
  padding: 40px;
  border-radius: 20px;
  margin-bottom: 40px;
}

.region-info-card {
  background: #ffffff;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(33, 150, 243, 0.1);
  margin-bottom: 25px;
  border-left: 4px solid var(--accent-color);
  transition: all 0.3s ease;
}

.region-info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(33, 150, 243, 0.15);
}

/*--------------------------------------------------------------
# Responsive Adjustments for All Pages
--------------------------------------------------------------*/
@media (max-width: 768px) {
  .blog-content h3 {
    font-size: 22px;
  }
  
  .contact .info-item i {
    font-size: 24px;
    width: 50px;
    height: 50px;
  }
  
  .policy-content {
    padding: 25px;
  }
  
  .application-form {
    padding: 25px;
  }
  
  .verification-card {
    padding: 25px;
  }
}

