@charset "UTF-8";

/*--------------------------------------------------------------
# Font & Color Variables
--------------------------------------------------------------*/
:root {
  /* Fonts */
  --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: "Source Serif Pro", sans-serif;
  --nav-font: "Roboto Slab", sans-serif;
  --accent-font: "Cooper Black", serif;
  
  /* Colors */
  --background-color: #f8f9fa;
  --default-color: #212529;
  --heading-color: #0A1A2F;
  --accent-color: #800020;
  --secondary-accent: #e07844;
  --surface-color: #ffffff;
  --contrast-color: #ffffff;
  --border-color: #e9ecef;
  --shadow-color: rgba(0, 0, 49, 0.1);
  
  /* Navigation Colors */
  --nav-color: #000031;
  --nav-hover-color: #800020;
  --nav-mobile-background-color: #ffffff;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #352a26;
  --nav-dropdown-hover-color: #800020;
  
  /* Custom easing */
  --ease-out-back: cubic-bezier(0.34, 1.56, 0.64, 1);
  
  /* Smooth scroll */
  scroll-behavior: smooth;
}

/* Global Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Color Presets */
.light-background {
  --background-color: #f8f9fa;
  --surface-color: #ffffff;
  --default-color: #495057;
}

.dark-background {
  --background-color: #0A1A2F;
  --default-color: #e9ecef;
  --heading-color: #ffffff;
  --surface-color: #1a2a3a;
  --contrast-color: #ffffff;
  --border-color: #2d3e50;
}

.gradient-background {
  background: linear-gradient(135deg, #0A1A2F 0%, #000031 100%);
  --heading-color: #ffffff;
  --default-color: #e9ecef;
  --surface-color: rgba(255, 255, 255, 0.1);
}

/*--------------------------------------------------------------
# Header - Enhanced
--------------------------------------------------------------*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 49, 0.1);
  transition: all 0.4s var(--ease-out-back);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 10px 30px rgba(0, 0, 49, 0.1);
}

.branding {
  padding: 15px 0;
  background: #fff;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 15px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo img {
  max-height: 70px;
  transition: all 0.4s ease;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.scrolled .logo img {
  max-height: 60px;
}

.btn-getstarted {
  background: #800020;
  color: #ffffff;
  padding: 10px 25px;
  margin-left: 25px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #800020;
  white-space: nowrap;
}

.btn-getstarted:hover {
  background: transparent;
  color: #800020;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(128, 0, 32, 0.2);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
.navmenu {
  padding: 0;
  margin: 0;
}

.navmenu ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
  gap: 1.5rem;
}

.navmenu > ul > li > a {
  font-family: var(--nav-font);
  font-weight: 600;
  color: var(--nav-color);
  padding: 1rem 0.5rem;
  position: relative;
  transition: all 0.3s ease;
  text-decoration: none;
  font-size: 15px;
}

.navmenu > ul > li > a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: linear-gradient(135deg, var(--accent-color), var(--secondary-accent));
  transition: all 0.3s ease;
  transform: translateX(-50%);
  border-radius: 3px 3px 0 0;
}

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

.navmenu > ul > li > a:hover::after,
.navmenu > ul > li > a.active::after {
  width: 80%;
}

/* Dropdown Menu */
.dropdown {
  position: relative;
}

.dropdown ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--nav-dropdown-background-color);
  min-width: 250px;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  padding: 0.75rem 0;
  animation: dropdownFadeIn 0.3s ease;
  border: 1px solid var(--border-color);
  z-index: 1000;
}

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

.dropdown:hover > ul {
  display: block;
}

.dropdown ul li {
  margin: 0;
}

.dropdown ul li a {
  padding: 0.75rem 1.5rem;
  color: var(--nav-dropdown-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
  text-decoration: none;
  white-space: nowrap;
}

.dropdown ul li a:hover {
  color: var(--nav-dropdown-hover-color);
  background: rgba(128, 0, 32, 0.05);
  padding-left: 2rem;
}

.dropdown ul ul {
  left: 100%;
  top: 0;
  margin-left: 1px;
}

/* Mobile Navigation Toggle */
.mobile-nav-toggle {
  display: none;
  background: var(--accent-color);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  cursor: pointer;
  font-size: 1.5rem;
  transition: all 0.3s ease;
  align-items: center;
  justify-content: center;
  z-index: 1001;
}

.mobile-nav-toggle:hover {
  background: #9c0000;
  transform: rotate(90deg);
}

/* Mobile Navigation Styles */
@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: flex;
    position: fixed;
    top: 20px;
    right: 20px;
  }
  
  .navmenu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--nav-mobile-background-color);
    padding: 80px 20px 20px;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
    z-index: 1000;
  }
  
  .navmenu.mobile-nav-active {
    right: 0;
  }
  
  .navmenu ul {
    flex-direction: column;
    gap: 0;
  }
  
  .navmenu > ul > li {
    width: 100%;
  }
  
  .navmenu > ul > li > a {
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
    display: block;
  }
  
  .dropdown ul {
    position: static;
    box-shadow: none;
    border: none;
    background: transparent;
    padding-left: 1.5rem;
    animation: none;
  }
  
  .dropdown ul ul {
    margin-left: 0;
  }
  
  .btn-getstarted {
    margin: 0 15px 0 0;
    padding: 8px 15px;
    font-size: 12px;
  }
}

/*--------------------------------------------------------------
# Hero Section - Enhanced
--------------------------------------------------------------*/
#hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  margin-top: 0 !important;
  background: linear-gradient(135deg, #0A1A2F 0%, #000031 100%);
}

.hero-slider-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.1);
  transition: opacity 1.2s ease-in-out, transform 1.2s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-slide::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(10, 26, 47, 0.9) 0%, rgba(0, 0, 49, 0.85) 100%);
}

.hero-content {
  position: relative;
  z-index: 3;
  color: white;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem;
  background: rgba(0, 4, 57, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

#hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
  line-height: 1.2;
}

#hero h1 span {
  color: #800020;
  position: relative;
  display: inline-block;
}

#hero .lead {
  font-size: 1.5rem;
  margin-bottom: 2.5rem;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
  opacity: 0.9;
}

#hero .btn {
  padding: 0.8rem 2.5rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

#hero .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Slider Controls */
.slider-controls {
  position: absolute;
  bottom: 40px;
  left: 0;
  width: 100%;
  z-index: 4;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  padding: 0 20px;
}

.slider-dots {
  display: flex;
  gap: 0.75rem;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.slider-dot.active {
  background: #800020;
  transform: scale(1.4);
  border-color: white;
  box-shadow: 0 0 0 4px rgba(128, 0, 32, 0.2);
}

.slider-arrow {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: white;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  backdrop-filter: blur(10px);
}

.slider-arrow:hover {
  background: #800020;
  border-color: #800020;
  transform: scale(1.1);
}

.slide-counter {
  color: white;
  font-size: 0.95rem;
  font-weight: 600;
  background: rgba(0, 0, 0, 0.3);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  margin: 0 1rem;
  backdrop-filter: blur(10px);
}

/* Hero Center Box */
.hero-center-box {
  position: relative;
  z-index: 3;
  background: var(--surface-color);
  border-radius: 24px;
  padding: 3.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  animation: fadeInUp 0.8s ease-out;
}

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

/*--------------------------------------------------------------
# About Section - Enhanced
--------------------------------------------------------------*/
:root {
  /* Modern, more vibrant palette */
  --accent-color: #800020;
  --secondary-accent: #e07844;
  --surface-color: rgba(255, 255, 255, 0.7); /* Glass effect */
  --border-color: rgba(0, 0, 0, 0.05);
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

.about {
  padding: 160px 0; /* More breathing room */
  position: relative;
  overflow: hidden;
  background: #ffffff; /* Clean base */
}

/* Modernized Mesh Background */
.about::before {
  content: '';
  position: absolute;
  top: -20%;
  left: -10%;
  width: 140%;
  height: 140%;
  background-image: 
    radial-gradient(at 0% 0%, hsla(345, 100%, 90%, 0.3) 0, transparent 50%), 
    radial-gradient(at 50% 0%, hsla(20, 100%, 90%, 0.3) 0, transparent 50%), 
    radial-gradient(at 100% 0%, hsla(210, 100%, 90%, 0.2) 0, transparent 50%);
  filter: blur(80px); /* Soft organic mesh gradient */
  z-index: 0;
  animation: meshFlow 15s ease infinite alternate;
}

@keyframes meshFlow {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-2%, 5%) scale(1.05); }
}

/* Glassmorphism Title Badge */
.about .section-title span {
  display: inline-flex;
  align-items: center;
  backdrop-filter: blur(10px);
  background: rgba(128, 0, 32, 0.05);
  border: 1px solid rgba(128, 0, 32, 0.1);
  color: var(--accent-color);
  font-weight: 600;
  letter-spacing: 1px;
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.about .section-title h2 {
  font-weight: 800;
  font-size: clamp(2.5rem, 5vw, 4rem); /* Responsive typography */
  letter-spacing: -0.02em; /* Tighter for modern look */
  line-height: 1.1;
}

/* Bento Style Feature Box */
.feature-box {
  padding: 2.5rem;
  background: var(--surface-color);
  backdrop-filter: blur(12px);
  border-radius: 24px;
  border: 1px solid var(--border-color);
  transition: all 0.6s var(--ease-out-expo);
}

.feature-box:hover {
  transform: translateY(-8px);
  background: #ffffff;
  border-color: rgba(128, 0, 32, 0.2);
  box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.08);
}

/* Modern Image Container with "Float" effect */
.about-img-container {
  padding: 20px;
}

.about-img-container img {
  border-radius: 32px;
  transition: transform 0.8s var(--ease-out-expo);
  box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.1);
}

.about-img-container:hover img {
  transform: scale(1.03) rotate(-1deg);
}

/* Minimalist Experience Badge */
.experience-badge {
  position: absolute;
  bottom: 0;
  right: 0;
  background: #000; /* High contrast black */
  color: #fff;
  padding: 2rem;
  border-radius: 28px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.experience-badge .number {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
}

.experience-badge .text {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0.8;
}

/* Value Cards with Subtle Gradients */
.value-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 30px;
  padding: 3rem 2rem;
  transition: all 0.5s var(--ease-out-expo);
}

.value-card:hover {
  border-color: var(--accent-color);
  transform: scale(1.02);
}

.value-icon {
  width: 64px; /* Slightly smaller, more refined */
  height: 64px;
  background: #f8f9fa;
  border-radius: 16px; /* Squircle shape */
  font-size: 1.75rem;
  margin: 0 0 1.5rem 0; /* Align left for a modern editorial feel */
  transition: all 0.4s var(--ease-out-expo);
}

.value-card:hover .value-icon {
  background: var(--accent-color);
  color: #fff;
  transform: translateY(-5px) rotate(8deg);
}
/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
/* Enhanced Services Section */
/* Modern White Background Services Section */
.services {
  padding: 120px 0;
  position: relative;
  background: #ffffff;
  overflow: hidden;
}

.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(128, 0, 32, 0.1), 
    rgba(128, 0, 32, 0.2), 
    rgba(128, 0, 32, 0.1), 
    transparent);
}

.services::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(128, 0, 32, 0.1), 
    rgba(128, 0, 32, 0.2), 
    rgba(128, 0, 32, 0.1), 
    transparent);
}

/* Elegant floating background elements */
.floating-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 0;
}

.floating-shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(128, 0, 32, 0.02), rgba(128, 0, 32, 0.05));
  filter: blur(40px);
  animation: float 20s infinite ease-in-out;
}

.floating-shape:nth-child(1) {
  width: 300px;
  height: 300px;
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}

.floating-shape:nth-child(2) {
  width: 200px;
  height: 200px;
  top: 60%;
  right: 10%;
  animation-delay: -5s;
}

.floating-shape:nth-child(3) {
  width: 150px;
  height: 150px;
  bottom: 20%;
  left: 15%;
  animation-delay: -10s;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-30px) rotate(180deg); }
}

/* Modern Service Process Cards */
.services .service-process-card {
  padding: 2.5rem;
  background: #ffffff;
  border-radius: 24px;
  border: 1px solid rgba(128, 0, 32, 0.08);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  height: 100%;
  position: relative;
  z-index: 1;
  box-shadow: 
    0 4px 20px rgba(0, 0, 0, 0.04),
    0 1px 3px rgba(0, 0, 0, 0.03);
  backdrop-filter: blur(10px);
}

.services .service-process-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 1px;
  background: linear-gradient(135deg, 
    transparent 0%, 
    rgba(128, 0, 32, 0.1) 50%, 
    transparent 100%);
  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.services .service-process-card:hover::before {
  opacity: 1;
}

.services .service-process-card:hover {
  transform: translateY(-10px);
  box-shadow: 
    0 25px 50px rgba(128, 0, 32, 0.08),
    0 15px 30px rgba(0, 0, 0, 0.05),
    0 0 0 1px rgba(128, 0, 32, 0.1);
  border-color: transparent;
}

/* Modern Step Numbers */
.step-num {
  display: inline-block;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #800020, #a00028);
  color: white;
  border-radius: 50%;
  line-height: 70px;
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 
    0 15px 30px rgba(128, 0, 32, 0.15),
    inset 0 1px 1px rgba(255, 255, 255, 0.3);
}

.step-num::after {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border-radius: 50%;
  background: linear-gradient(135deg, 
    rgba(128, 0, 32, 0.2), 
    rgba(255, 255, 255, 0.3), 
    rgba(128, 0, 32, 0.2));
  z-index: -1;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.step-num:hover {
  transform: scale(1.1) rotate(15deg);
  box-shadow: 
    0 20px 40px rgba(128, 0, 32, 0.2),
    inset 0 1px 1px rgba(255, 255, 255, 0.4);
}

.step-num:hover::after {
  opacity: 1;
  animation: subtleGlow 2s infinite linear;
}

@keyframes subtleGlow {
  0% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.05); opacity: 0.8; }
  100% { transform: scale(1); opacity: 0.5; }
}

/* Elegant Service Cards */
.service-card {
  background: #ffffff;
  border-radius: 24px;
  border: 1px solid rgba(128, 0, 32, 0.08);
  padding: 2.5rem;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  height: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 
    0 4px 20px rgba(0, 0, 0, 0.04),
    0 1px 3px rgba(0, 0, 0, 0.03);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(128, 0, 32, 0.03),
    rgba(128, 0, 32, 0.06),
    rgba(128, 0, 32, 0.03),
    transparent
  );
  transition: left 0.8s ease;
}

.service-card:hover::before {
  left: 100%;
}

.service-card:hover {
  transform: translateY(-10px) perspective(1000px) rotateX(2deg);
  box-shadow: 
    0 30px 60px rgba(128, 0, 32, 0.1),
    0 20px 40px rgba(0, 0, 0, 0.06),
    0 0 0 1px rgba(128, 0, 32, 0.1);
  border-color: transparent;
}

/* Modern Service Icon */
.service-card-header .service-icon {
  width: 90px;
  height: 90px;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin: 0 auto 2rem;
  background: linear-gradient(135deg, 
    rgba(128, 0, 32, 0.1), 
    rgba(255, 255, 255, 1));
  color: #800020;
  position: relative;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 
    0 15px 30px rgba(128, 0, 32, 0.1),
    inset 0 1px 1px rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(128, 0, 32, 0.1);
}

.service-card-header .service-icon::before {
  content: '';
  position: absolute;
  width: 150%;
  height: 150%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 255, 255, 0.8) 50%,
    transparent 70%
  );
  top: -25%;
  left: -25%;
  transform: rotate(45deg);
  transition: transform 0.8s ease;
}

.service-card:hover .service-icon {
  transform: rotateY(360deg) scale(1.1);
  background: linear-gradient(135deg, #800020, #a00028);
  color: white;
  box-shadow: 
    0 20px 40px rgba(128, 0, 32, 0.2),
    inset 0 1px 1px rgba(255, 255, 255, 0.3);
}

.service-card:hover .service-icon::before {
  transform: rotate(405deg) translateY(100%);
}

/* Modern Feature Badges */
.service-features {
  margin: 2rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.service-features .badge {
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  border-radius: 50px;
  background: linear-gradient(135deg, 
    rgba(128, 0, 32, 0.05), 
    rgba(255, 255, 255, 0.1));
  border: 1px solid rgba(128, 0, 32, 0.15);
  color: #666;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.service-features .badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(255, 255, 255, 0.6), 
    transparent);
  transition: left 0.6s ease;
}

.service-features .badge:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, #800020, #a00028);
  color: white;
  border-color: transparent;
  box-shadow: 0 10px 20px rgba(128, 0, 32, 0.15);
}

.service-features .badge:hover::before {
  left: 100%;
}

/* Modern Resource Cards */
.resource-card {
  padding: 2.5rem;
  background: #ffffff;
  border-radius: 24px;
  border: 1px solid rgba(128, 0, 32, 0.08);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  height: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 
    0 4px 20px rgba(0, 0, 0, 0.04),
    0 1px 3px rgba(0, 0, 0, 0.03);
}

.resource-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, 
    transparent, 
    #800020, 
    #a00028, 
    transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s ease;
}

.resource-card:hover::after {
  transform: scaleX(1);
}

.resource-card:hover {
  transform: translateY(-10px);
  box-shadow: 
    0 30px 60px rgba(128, 0, 32, 0.1),
    0 20px 40px rgba(0, 0, 0, 0.06),
    inset 0 0 0 1px rgba(255, 255, 255, 0.8);
  border-color: transparent;
}

.resource-icon {
  width: 90px;
  height: 90px;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  background: linear-gradient(135deg, 
    rgba(128, 0, 32, 0.1), 
    rgba(255, 255, 255, 1));
  color: #800020;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 
    0 15px 30px rgba(128, 0, 32, 0.1),
    inset 0 1px 1px rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(128, 0, 32, 0.1);
}

.resource-card:hover .resource-icon {
  transform: scale(1.1) rotate(15deg);
  background: linear-gradient(135deg, #800020, #a00028);
  color: white;
  box-shadow: 
    0 20px 40px rgba(128, 0, 32, 0.2),
    inset 0 1px 1px rgba(255, 255, 255, 0.3);
}

/* Modern Contact Section */
.contact {
  padding: 120px 0;
  position: relative;
  background: #f8f9fa;
  overflow: hidden;
}

.contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(128, 0, 32, 0.1), 
    rgba(128, 0, 32, 0.2), 
    rgba(128, 0, 32, 0.1), 
    transparent);
}

.contact-form-container {
  max-width: 100%;
}

.contact-form-container .card {
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(128, 0, 32, 0.08);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-form-container .card:hover {
  transform: translateY(-5px);
}

.contact-form-container .card-header {
  background: linear-gradient(135deg, #800020, #a00028);
  padding: 3rem 2rem;
  position: relative;
  overflow: hidden;
}

.contact-form-container .card-header::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 255, 255, 0.1) 50%,
    transparent 70%
  );
  animation: shimmer 4s infinite linear;
}

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

/* Modern Contact Cards */
.contact-card {
  padding: 2.5rem;
  background: #ffffff;
  border-radius: 24px;
  border: 1px solid rgba(128, 0, 32, 0.08);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  height: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 
    0 4px 20px rgba(0, 0, 0, 0.04),
    0 1px 3px rgba(0, 0, 0, 0.03);
}

.contact-card:hover {
  transform: translateY(-10px);
  box-shadow: 
    0 30px 60px rgba(128, 0, 32, 0.1),
    0 20px 40px rgba(0, 0, 0, 0.06);
  border-color: transparent;
}

.contact-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  color: white;
  background: linear-gradient(135deg, #800020, #a00028);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 15px 30px rgba(128, 0, 32, 0.15);
}

.contact-icon:hover {
  transform: scale(1.1) rotate(15deg);
  box-shadow: 0 20px 40px rgba(128, 0, 32, 0.25);
}

/* Modern Counter Icon */
.counter-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #800020, #a00028);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(128, 0, 32, 0.15);
}

.counter-icon::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, 
    rgba(255, 255, 255, 0.4) 0%, 
    transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.counter-icon:hover {
  transform: scale(1.1) rotate(-15deg);
  box-shadow: 
    0 20px 40px rgba(128, 0, 32, 0.25),
    inset 0 1px 1px rgba(255, 255, 255, 0.3);
}

.counter-icon:hover::after {
  opacity: 1;
}

/* Elegant Map Container */
.map-container {
  width: 100%;
  height: 350px;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  transition: all 0.6s ease;
  border: 1px solid rgba(128, 0, 32, 0.08);
}

.map-container:hover {
  transform: scale(1.01);
  box-shadow: 0 30px 80px rgba(128, 0, 32, 0.1);
}

.map-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    transparent 40%,
    rgba(128, 0, 32, 0.02) 100%
  );
  pointer-events: none;
  z-index: 1;
  border-radius: 28px;
}

/* Modern Typography Enhancements */
.service-card h3,
.service-process-card h3,
.resource-card h3,
.contact-card h3 {
  color: #333;
  font-weight: 700;
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}

.service-card:hover h3,
.service-process-card:hover h3,
.resource-card:hover h3,
.contact-card:hover h3 {
  color: #800020;
}

.service-card p,
.service-process-card p,
.resource-card p,
.contact-card p {
  color: #666;
  line-height: 1.7;
}

/* Responsive Design */
@media (max-width: 768px) {
  .services,
  .contact {
    padding: 80px 0;
  }
  
  .service-card,
  .service-process-card,
  .resource-card,
  .contact-card {
    padding: 2rem;
  }
  
  .step-num,
  .service-icon,
  .resource-icon,
  .contact-icon,
  .counter-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  
  .step-num {
    line-height: 60px;
  }
}

/* Animation Classes for Scroll */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Add floating shapes to the HTML structure */
/* Add this HTML snippet to your services section:
<div class="floating-shapes">
  <div class="floating-shape"></div>
  <div class="floating-shape"></div>
  <div class="floating-shape"></div>
</div>
*/

.contact-card {
  padding: 2.5rem;
  background: var(--surface-color);
  border-radius: 25px;
  border: 1px solid var(--border-color);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 0;
  background: linear-gradient(135deg, 
    rgba(128, 0, 32, 0.05), 
    rgba(255, 255, 255, 0.1));
  transition: height 0.5s ease;
  z-index: 0;
}

.contact-card:hover::before {
  height: 100%;
}

.contact-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 
    0 40px 80px rgba(128, 0, 32, 0.15),
    0 25px 50px rgba(0, 0, 0, 0.1);
}

.contact-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  color: white;
  background: linear-gradient(135deg, var(--accent-color), var(--secondary-accent));
  position: relative;
  z-index: 1;
  transition: all 0.5s ease;
}

.contact-icon:hover {
  transform: rotateY(180deg) scale(1.1);
  box-shadow: 0 15px 30px rgba(128, 0, 32, 0.3);
}

.counter-icon {
  width: 70px;
  height: 70px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.counter-icon::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, 
    rgba(255, 255, 255, 0.4) 0%, 
    transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.counter-icon:hover {
  background: var(--secondary-accent);
  transform: scale(1.15) rotate(15deg);
  box-shadow: 
    0 20px 40px rgba(128, 0, 32, 0.3),
    inset 0 0 20px rgba(255, 255, 255, 0.3);
}

.counter-icon:hover::after {
  opacity: 1;
}

.map-container {
  width: 100%;
  height: 350px;
  border-radius: 25px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.5s ease;
}

.map-container:hover {
  transform: scale(1.01);
  box-shadow: 0 30px 60px rgba(128, 0, 32, 0.15);
}

.map-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    transparent 40%,
    rgba(128, 0, 32, 0.05) 100%
  );
  pointer-events: none;
  z-index: 1;
  border-radius: 25px;
}

/* Add parallax effect on scroll */
@media (prefers-reduced-motion: no-preference) {
  .services, .contact {
    transition: transform 0.3s ease-out;
  }
}

/* Smooth scroll behavior */
html {
  scroll-behavior: smooth;
}
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  background: linear-gradient(135deg, #0A1A2F 0%, #000031 100%);
  color: #e9ecef;
  padding: 80px 0 40px;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(135deg, var(--accent-color), var(--secondary-accent));
}

.footer-about .logo {
  font-family: var(--accent-font);
  font-size: 2rem;
  color: white;
  margin-bottom: 1.5rem;
  display: inline-block;
}

.footer-links h4,
.footer-newsletter h4 {
  color: white;
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-links h4::after,
.footer-newsletter h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
}

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

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

.footer-links ul li a {
  color: #adb5bd;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
}

.footer-links ul li a:hover {
  color: white;
  padding-left: 8px;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.social-links a {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.25rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-links a:hover {
  background: var(--accent-color);
  transform: translateY(-5px) rotate(15deg);
}

.footer-newsletter form {
  position: relative;
}

.footer-newsletter input[type="email"] {
  width: 100%;
  padding: 1rem;
  border: 2px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  color: white;
  margin-bottom: 1rem;
}

.footer-newsletter input[type="email"]::placeholder {
  color: #adb5bd;
}

.footer-newsletter input[type="submit"] {
  background: linear-gradient(135deg, var(--accent-color), #9c0000);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.footer-newsletter input[type="submit"]:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(128, 0, 32, 0.2);
}

.copyright {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: #adb5bd;
}

/*--------------------------------------------------------------
# Responsive Design
--------------------------------------------------------------*/

/* Large devices (desktops, less than 1200px) */
@media (max-width: 1199.98px) {
  #hero h1 {
    font-size: 3rem;
  }
  
  .about .section-title h2 {
    font-size: 3rem;
  }
  
  .navmenu ul {
    gap: 1rem;
  }
}

/* Medium devices (tablets, less than 992px) */
@media (max-width: 991.98px) {
  #hero {
    padding: 100px 0 60px;
    min-height: auto;
  }
  
  .hero-content {
    padding: 2.5rem;
    margin: 20px;
  }
  
  #hero h1 {
    font-size: 2.5rem;
  }
  
  .about {
    padding: 80px 0;
  }
  
  .about .section-title h2 {
    font-size: 2.5rem;
  }
  
  .slider-controls {
    bottom: 20px;
  }
  
  .slider-arrow {
    width: 42px;
    height: 42px;
  }
}

/* Small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) {
  #hero {
    padding: 80px 0 40px;
  }
  
  .hero-content {
    padding: 2rem;
    margin: 15px;
    border-radius: 20px;
  }
  
  #hero h1 {
    font-size: 2rem;
  }
  
  #hero .lead {
    font-size: 1.1rem;
  }
  
  .about .section-title h2 {
    font-size: 2.25rem;
  }
  
  .experience-badge {
    position: relative;
    bottom: auto;
    left: auto;
    margin-top: 2rem;
    margin-left: auto;
    margin-right: auto;
    max-width: 200px;
  }
  
  .slider-controls {
    bottom: 15px;
    flex-wrap: wrap;
    gap: 0.75rem;
  }
  
  .slider-dots {
    order: 3;
    width: 100%;
    justify-content: center;
    margin-top: 0.5rem;
  }
  
  .services,
  .contact {
    padding: 60px 0;
  }
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
  .hero-content {
    padding: 1.5rem;
    border-radius: 16px;
  }
  
  #hero h1 {
    font-size: 1.75rem;
  }
  
  .slider-arrow {
    width: 38px;
    height: 38px;
    font-size: 1rem;
  }
  
  .slider-dot {
    width: 10px;
    height: 10px;
  }
  
  .slide-counter {
    font-size: 0.85rem;
    padding: 0.4rem 0.8rem;
  }
  
  .logo img {
    max-height: 50px;
  }
  
  .about {
    padding: 60px 0;
  }
  
  .about .section-title h2 {
    font-size: 1.75rem;
  }
  
  .value-icon {
    width: 80px;
    height: 80px;
    font-size: 2rem;
  }
  
  .footer {
    padding: 60px 0 30px;
  }
  
  .footer .row {
    text-align: center;
  }
  
  .footer-links h4::after,
  .footer-newsletter h4::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .social-links {
    justify-content: center;
  }
}

/* Very small devices (less than 400px) */
@media (max-width: 399.98px) {
  .hero-content {
    padding: 1.25rem;
    margin: 10px;
  }
  
  #hero h1 {
    font-size: 1.5rem;
  }
  
  .navmenu {
    width: 280px;
  }
}

/* High-resolution displays */
@media (min-width: 1400px) {
  .hero-content {
    max-width: 1200px;
    padding: 4rem;
  }
  
  #hero h1 {
    font-size: 4rem;
  }
}

/* Print styles */
@media print {
  #hero {
    min-height: auto;
    background: white !important;
  }
  
  .hero-slider-container,
  .slider-controls {
    display: none;
  }
  
  .hero-content {
    box-shadow: none;
    border: 1px solid #ddd;
    background: white !important;
    color: black !important;
  }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
  .hero-content {
    background: rgba(26, 26, 26, 0.8);
    color: #e9ecef;
  }
  
  #hero h1 {
    color: #ffffff;
  }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
  .value-card:hover,
  .feature-box:hover,
  .service-card:hover {
    transform: none;
  }
  
  .btn-getstarted:hover {
    transform: none;
  }
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: #800020;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
  border: none;
  cursor: pointer;
}

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

.back-to-top:hover {
  background: #c82333;
  transform: translateY(-5px);
}

/* Utility Classes */
.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
}

/* Bootstrap-like utility classes */
.text-danger { color: #800020 !important; }
.bg-danger { background-color: #800020 !important; }
.btn-danger { 
  background-color: #800020 !important; 
  border-color: #800020 !important;
}

.btn-danger:hover {
  background-color: #9c0000 !important;
  border-color: #9c0000 !important;
}

/* Animation Keyframes */
@keyframes cardAppear {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hover-up {
  animation: cardAppear 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
  opacity: 0;
  animation-delay: calc(var(--card-index, 0) * 0.1s);
}

/* Performance optimizations */
@media (prefers-reduced-motion: reduce) {
  .hover-up,
  .floating-badge,
  .value-icon,
  .service-count {
    animation: none !important;
    transition: none !important;
  }
}