/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Security and Anti-Injection Measures */
/* Prevent CSS injection attacks */
* {
    /* Disable potentially dangerous CSS properties */
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Allow text selection only on specific elements */
p, h1, h2, h3, h4, h5, h6, span, div, a, input, textarea, select {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

/* Prevent clickjacking */
body {
    /* Disable pointer events on potentially dangerous elements */
    pointer-events: auto;
}

/* Hide honeypot fields */
.honeypot-field {
    position: absolute !important;
    left: -9999px !important;
    top: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

/* Security info fields */
.security-info {
    display: none !important;
    visibility: hidden !important;
}

/* Error message styling */
.error-message {
    color: #dc3545 !important;
    font-size: 0.875rem !important;
    margin-top: 0.25rem !important;
    font-weight: 500 !important;
}

/* Disabled button styling */
.btn:disabled {
    opacity: 0.6 !important;
    cursor: not-allowed !important;
    pointer-events: none !important;
}

/* Accessibility and SEO Improvements */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #000;
    color: white;
    padding: 8px;
    text-decoration: none;
    z-index: 10000;
    border-radius: 4px;
}

.skip-link:focus {
    top: 6px;
}

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

/* Focus styles for better accessibility */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid var(--gold-primary);
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .navbar,
    .back-to-top,
    .nav-toggle {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .hero {
        page-break-after: avoid;
    }
    
    section {
        page-break-inside: avoid;
    }
}

:root {
    --gold-primary: #FFD700;
    --gold-secondary: #DAA520;
    --gold-accent: #B8860B;
    --gold-light: #FFF8DC;
    --gold-bright: #FFED4E;
    --gold-gradient: linear-gradient(135deg, #FFD700 0%, #DAA520 100%);
    --gold-gradient-hover: linear-gradient(135deg, #DAA520 0%, #B8860B 100%);
    --gold-gradient-bright: linear-gradient(135deg, #FFED4E 0%, #FFD700 100%);
    --gold-gradient-modern: linear-gradient(135deg, #FFD700 0%, #FFED4E 50%, #DAA520 100%);
    --white-primary: #FFFFFF;
    --white-secondary: #F8F9FA;
    --white-tertiary: #F5F5F5;
    --gray-light: #F8F9FA;
    --gray-medium: #E9ECEF;
    --gray-dark: #6C757D;
    --dark-primary: #1A1A1A;
    --dark-secondary: #333333;
    --text-primary: #1A1A1A;
    --text-secondary: #666666;
    --text-light: #999999;
    --border-color: #E5E5E5;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 8px 25px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 24px 60px rgba(0, 0, 0, 0.18);
    --shadow-gold: 0 8px 32px rgba(255, 215, 0, 0.25);
    --shadow-gold-bright: 0 12px 40px rgba(255, 237, 78, 0.3);
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --modern-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --elegant-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    overflow-x: hidden;
    background-color: var(--white-primary);
}

.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 32px;
}
@media (max-width: 1100px) {
  .container {
    padding: 0 14px;
  }
}
@media (max-width: 700px) {
  .container {
    padding: 0 6px;
  }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.gold-text {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.btn-primary {
    background: var(--gold-gradient-modern);
    color: var(--dark-primary);
    box-shadow: var(--shadow-gold);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.btn-primary::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.6s ease;
}

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

.btn-primary:hover {
    background: var(--gold-gradient-hover);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255, 215, 0, 0.4);
}

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

.btn-secondary:hover {
    background: var(--gold-primary);
    color: var(--dark-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn.btn-secondary {
  background: #fffbe6;
  color: #b8860b;
  border: 2px solid #FFD700;
  font-size: 1.13rem;
  font-weight: 700;
  border-radius: 8px;
  padding: 0.8em 2em;
  box-shadow: 0 2px 10px rgba(255, 215, 0, 0.10);
  transition: background 0.18s, color 0.18s, border-color 0.18s, box-shadow 0.18s;
  text-decoration: none;
  display: inline-block;
}

.btn.btn-secondary:hover, .btn.btn-secondary:focus {
  background: #FFD700;
  color: #23293a;
  border-color: #b8860b;
  box-shadow: 0 4px 18px rgba(255, 215, 0, 0.18);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(45, 53, 72, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 1.2rem 0;
    transition: all 0.4s ease;
    border-bottom: 2px solid rgba(255, 215, 0, 0.8);
    box-shadow: 0 8px 32px rgba(40, 40, 80, 0.15), 0 2px 0 rgba(255, 215, 0, 0.3);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    height: 60px;
    width: auto;
    border-radius: 6px;
    background: transparent;
    padding: 8px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.2rem;
    background: none;
    box-shadow: none;
}

.nav-link {
    text-decoration: none;
    color: #fffbe6;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.02em;
    transition: color 0.22s, background 0.22s, box-shadow 0.22s;
    position: relative;
    padding: 0.45em 1.1em;
    border-radius: 7px;
    background: transparent;
}

.nav-link:hover, .nav-link:focus, .nav-link.active {
    color: #FFD700;
    background: rgba(255, 215, 0, 0.12);
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.15);
    backdrop-filter: blur(10px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 18%;
    width: 0;
    height: 2px;
    background: #FFD700;
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-link:hover::after, .nav-link.active::after {
    width: 64%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--white-primary);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, rgba(247, 248, 250, 0.5) 0%, rgba(255, 251, 230, 0.4) 50%, rgba(240, 244, 255, 0.5) 100%);
    overflow: hidden;
    padding-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 215, 0, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 237, 78, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(218, 165, 32, 0.04) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.hero-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 15px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  z-index: 2;
}
.hero-content {
  flex: 1 1 420px;
  min-width: 280px;
  z-index: 2;
  align-items: flex-start;
  text-align: left;
  margin-left: 0;
  padding-left: 0;
}
.hero-visual {
  flex: 1 1 600px;
  min-width: 400px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  z-index: 1;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem;
  font-weight: 800;
  color: #1a1f2e;
  margin-bottom: 1.2rem;
  line-height: 1.1;
  letter-spacing: 0.01em;
  max-width: 420px;
  text-shadow: 0 1px 3px rgba(255, 255, 255, 0.8);
}
.hero-title .gold-text {
  font-size: 1.1rem;
  display: inline-block;
  max-width: 320px;
  line-height: 1.1;
}
.hero-subtitle {
  color: #2d3548;
  font-size: 1.18rem;
  margin-bottom: 2.2rem;
  font-weight: 500;
  max-width: 600px;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.6);
}
.hero-badge {
  display: inline-block;
  background: linear-gradient(90deg, #FFD700 0%, #fffbe6 100%);
  color: #1a1f2e;
  padding: 10px 22px;
  border-radius: 22px;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 12px rgba(255, 215, 0, 0.10), 0 1px 3px rgba(255, 255, 255, 0.8);
}
.hero-buttons {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.hero-stats {
  display: flex;
  flex-wrap: nowrap;
  gap: 1.2rem;
  margin-top: 1.1rem;
  justify-content: flex-start;
  overflow-x: auto;
}
/* Further spread floating cards vertically and horizontally */
.card-1 { top: 8%; left: 10%; z-index: 2; animation: float 6s ease-in-out infinite; }
.card-2 { top: 70%; left: 18%; z-index: 3; animation: float 7s ease-in-out infinite 1s; }
.card-3 { top: 12%; right: 18%; z-index: 2; animation: float 8s ease-in-out infinite 2s; }
.card-4 { bottom: 8%; right: 28%; z-index: 3; animation: float 7.5s ease-in-out infinite 1.5s; }
.card-5 { bottom: 25%; left: 65%; z-index: 2; animation: float 6.5s ease-in-out infinite 2.5s; }
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-18px); }
}
@media (max-width: 1100px) {
  .hero-stats {
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-top: 0.7rem;
    justify-content: flex-start;
  }
  .card-1 { top: 2%; left: 5%; }
  .card-2 { top: 85%; left: 8%; }
  .card-3 { top: 5%; right: 8%; }
  .card-4 { bottom: 2%; right: 12%; }
  .card-5 { bottom: 15%; left: 75%; }
}
@media (max-width: 700px) {
  .hero-stats {
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.5rem;
    justify-content: flex-start;
  }
  .card-1 { top: 0%; left: 2%; }
  .card-2 { top: 90%; left: 2%; }
  .card-3 { top: 0%; right: 2%; }
  .card-4 { bottom: 0%; right: 2%; }
  .card-5 { bottom: 10%; left: 85%; }
}
.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(circle at 60% 40%, #fffbe6 0%, #f7f8fa 100%);
  opacity: 0.7;
  animation: heroBgPulse 8s ease-in-out infinite alternate;
}
@keyframes heroBgPulse {
  0% { opacity: 0.7; }
  100% { opacity: 1; }
}
.gold-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.1;
}

.orb-1 {
    width: 300px;
    height: 300px;
    background: var(--gold-primary);
    top: 10%;
    right: 10%;
    animation: pulse 4s ease-in-out infinite;
}

.orb-2 {
    width: 200px;
    height: 200px;
    background: var(--gold-secondary);
    bottom: 20%;
    left: 5%;
    animation: pulse 4s ease-in-out infinite 2s;
}

.orb-3 {
    width: 150px;
    height: 150px;
    background: var(--gold-accent);
    top: 60%;
    left: 60%;
    animation: pulse 4s ease-in-out infinite 1s;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.1; }
    50% { transform: scale(1.1); opacity: 0.2; }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    background: var(--gold-gradient-modern);
    color: var(--dark-primary);
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.25);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

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

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

.section-title {
    font-size: 3rem;
    font-weight: 900;
    color: var(--dark-primary);
    letter-spacing: -0.03em;
    text-shadow: 0 2px 20px rgba(255, 215, 0, 0.15);
    position: relative;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    margin: 0.8rem auto 0 auto;
    background: linear-gradient(90deg, #FFD700 0%, #fffbe6 100%);
    border-radius: 2px;
    opacity: 0.9;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 500;
    letter-spacing: 0.01em;
}

/* Services Section */
.services {
    padding: 6rem 0;
    background: var(--gray-light);
}

.services-grid {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
    width: 100%;
}
section.expanded .services-grid {
    display: flex;
}

.service-card {
    background: var(--gray-light);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--gold-primary);
    box-shadow: 0 2px 8px rgba(40,40,80,0.06);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gold-gradient);
    transition: width 0.3s ease;
}

.service-card:hover::before {
    width: 100%;
    opacity: 0.05;
}

.service-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 18px rgba(255, 215, 0, 0.10);
    background: var(--white-primary);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--gold-gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--dark-primary);
    font-size: 1.5rem;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--dark-primary);
}

.service-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.service-features li i {
    color: var(--gold-primary);
    font-size: 0.8rem;
}

.service-link {
    color: var(--gold-primary);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.service-link:hover {
    gap: 1rem;
}

/* Solutions Section - match Our Services tile style */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.solution-item {
  background: var(--gray-light);
  border-left: 4px solid var(--gold-primary);
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(40,40,80,0.06);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

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

.solution-item:hover::before {
    left: 100%;
}

.solution-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 18px rgba(255, 215, 0, 0.10);
    background: var(--white-primary);
}

.solution-item h3 {
  margin-bottom: 1.2rem;
  font-size: 1.35rem;
  color: #b8860b;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-shadow: 0 1px 10px rgba(255, 215, 0, 0.1);
  border-left: 3px solid #FFD700;
  padding-left: 0.8em;
  line-height: 1.3;
}

.solution-item ul {
  padding-left: 1.2em;
  margin: 0;
}

.solution-item li {
  margin-bottom: 0.8em;
  color: #2d3548;
  font-size: 1.02rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.01em;
}

.solution-item p {
  color: #49516a;
  font-size: 1.08rem;
  margin-bottom: 1.3em;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.01em;
}

@media (max-width: 700px) {
  .solutions-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  .solution-item {
    padding: 1.5rem;
  }
}

/* About Section */
.about {
    padding: 6rem 0;
    background: var(--gray-light);
}

.about-content {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 2.2rem;
}
@media (max-width: 900px) {
  .about-content {
    flex-direction: column;
    gap: 2.5rem;
  }
}
.about-text {
  flex: 2 1 0;
}
.about-visual {
  flex: 1 1 0;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.about-image {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: var(--gold-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-gold);
}
.about-image .image-placeholder {
  width: 110px;
  height: 110px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-image .image-placeholder i {
  font-size: 2.2rem;
  color: var(--gold-primary);
}
.about-features {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1.3rem;
}
.feature {
  display: flex;
  align-items: flex-start;
  gap: 0.38rem;
  padding: 0.22rem 0.4rem 0.22rem 0.3rem;
  background: var(--white-primary);
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(40,40,80,0.05);
  min-height: unset;
}
.feature i {
  width: 18px;
  height: 18px;
  background: var(--gold-gradient);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark-primary);
  font-size: 0.8rem;
}
.feature h4 {
  font-size: 0.85rem;
  margin-bottom: 0.08rem;
  color: var(--dark-primary);
}
.feature p {
  font-size: 0.68rem;
  color: var(--text-secondary);
  margin: 0;
}

/* Vision Mission Values Section */
.vision-mission-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
    position: relative;
}

.vision-mission-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.3), transparent);
}

.vision-mission-values {
    margin: 3rem 0;
    display: grid;
    gap: 2rem;
}

.vmv-item {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(40, 40, 80, 0.08);
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.vmv-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold-gradient);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.vmv-item:hover::before {
    transform: scaleX(1);
}

.vmv-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(255, 215, 0, 0.15);
    border-color: var(--gold-primary);
    background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
}

.vmv-icon {
    width: 60px;
    height: 60px;
    background: var(--gold-gradient);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-primary);
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
}

.vmv-item:hover .vmv-icon {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.vmv-content h4 {
    font-size: 1.6rem;
    margin-bottom: 1.25rem;
    color: var(--dark-primary);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.2;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--dark-primary) 0%, #2c3e50 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.vmv-content h4::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 3rem;
    height: 3px;
    background: var(--gold-gradient);
    border-radius: 2px;
}

.vmv-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 0;
    font-weight: 400;
    letter-spacing: 0.015em;
    font-style: italic;
    position: relative;
    padding-left: 1rem;
    border-left: 2px solid rgba(255, 215, 0, 0.3);
}

/* Values Grid Layout */
.values-expanded .vmv-content {
    width: 100%;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.value-item {
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 50%, #f8f9fa 100%);
    padding: 2rem;
    border-radius: 16px;
    border-left: 4px solid var(--gold-primary);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(40, 40, 80, 0.05);
}

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

.value-item:hover::before {
    left: 100%;
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(255, 215, 0, 0.15);
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 50%, #fff 100%);
}

/* Value item typography adjustments */
.value-item h5 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark-primary);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.value-item h5 i {
    margin-right: 0.5rem;
    color: var(--gold-primary);
    font-size: 1.2rem;
}

.value-item p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
    text-align: justify;
}

/* Roadmap Section Styles */
.roadmap-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
    position: relative;
    overflow: visible;
}

/* Roadmap Decorative Elements */
.roadmap-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 15% 25%, rgba(255, 215, 0, 0.1) 0%, transparent 30%),
        radial-gradient(circle at 85% 75%, rgba(255, 215, 0, 0.08) 0%, transparent 35%),
        radial-gradient(circle at 25% 75%, rgba(255, 215, 0, 0.06) 0%, transparent 25%),
        radial-gradient(circle at 75% 25%, rgba(255, 215, 0, 0.07) 0%, transparent 30%);
    pointer-events: none;
    z-index: 1;
}

.roadmap-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 215, 0, 0.18) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 237, 78, 0.14) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(218, 165, 32, 0.10) 0%, transparent 50%);
    z-index: 1;
    pointer-events: none;
}

.roadmap-container {
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

/* Roadmap Edge Lines */
.roadmap-edge-lines {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.edge-line {
    position: absolute;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, 
        transparent 0%, 
        rgba(255, 215, 0, 0.3) 20%, 
        rgba(255, 215, 0, 0.6) 50%, 
        rgba(255, 215, 0, 0.3) 80%, 
        transparent 100%);
    box-shadow: 
        0 0 20px rgba(255, 215, 0, 0.2),
        inset 0 0 10px rgba(255, 215, 0, 0.1);
    animation: edgeGlow 4s ease-in-out infinite;
}

.edge-line.left-edge {
    left: 8%;
    animation-delay: 0s;
}

.edge-line.right-edge {
    right: 8%;
    animation-delay: 2s;
}

@keyframes edgeGlow {
    0%, 100% {
        opacity: 0.6;
        box-shadow: 
            0 0 20px rgba(255, 215, 0, 0.2),
            inset 0 0 10px rgba(255, 215, 0, 0.1);
    }
    50% {
        opacity: 1;
        box-shadow: 
            0 0 30px rgba(255, 215, 0, 0.4),
            inset 0 0 15px rgba(255, 215, 0, 0.2);
    }
}

.roadmap-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    min-height: auto;
    padding: 2rem 1rem;
}

/* Linear Road Path */
.roadmap-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, 
        var(--gold-primary) 0%, 
        var(--gold-secondary) 50%, 
        var(--gold-primary) 100%);
    transform: translateX(-50%);
    z-index: 1;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

/* Infinity Symbol Overlay */
.roadmap-timeline .infinity-symbol {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 100px;
    transform: translate(-50%, -50%);
    z-index: 2;
    opacity: 0.15;
    background: 
        radial-gradient(ellipse 60px 30px at 50px 50px, var(--gold-primary) 0%, transparent 50%),
        radial-gradient(ellipse 60px 30px at 150px 50px, var(--gold-secondary) 0%, transparent 50%);
    animation: infinityPulse 4s ease-in-out infinite;
}

/* Free Flowing Road Image */
.roadmap-timeline .free-flowing-road {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 120px;
    background: 
        linear-gradient(90deg, 
            transparent 0%, 
            rgba(255, 215, 0, 0.1) 10%, 
            rgba(255, 215, 0, 0.2) 20%, 
            rgba(255, 215, 0, 0.3) 30%, 
            rgba(255, 215, 0, 0.4) 40%, 
            rgba(255, 215, 0, 0.5) 50%, 
            rgba(255, 215, 0, 0.4) 60%, 
            rgba(255, 215, 0, 0.3) 70%, 
            rgba(255, 215, 0, 0.2) 80%, 
            rgba(255, 215, 0, 0.1) 90%, 
            transparent 100%);
    border-radius: 60px 60px 0 0;
    z-index: 1;
    opacity: 0.8;
    animation: roadFlow 8s ease-in-out infinite;
    box-shadow: 
        0 -10px 30px rgba(255, 215, 0, 0.2),
        inset 0 5px 15px rgba(255, 255, 255, 0.1);
}

.roadmap-timeline .free-flowing-road::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    height: 2px;
    background: 
        repeating-linear-gradient(90deg, 
            transparent 0px, 
            transparent 20px, 
            rgba(255, 255, 255, 0.6) 20px, 
            rgba(255, 255, 255, 0.6) 25px);
    animation: roadLines 3s linear infinite;
}

.roadmap-timeline .free-flowing-road::after {
    content: '';
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    height: 2px;
    background: 
        repeating-linear-gradient(90deg, 
            transparent 0px, 
            transparent 20px, 
            rgba(255, 255, 255, 0.4) 20px, 
            rgba(255, 255, 255, 0.4) 25px);
    animation: roadLines 3s linear infinite reverse;
}

@keyframes roadFlow {
    0%, 100% { 
        transform: translateX(-50%) scale(1); 
        opacity: 0.8;
    }
    50% { 
        transform: translateX(-50%) scale(1.02); 
        opacity: 1;
    }
}

@keyframes roadLines {
    0% { transform: translateX(0); }
    100% { transform: translateX(-25px); }
}

@keyframes infinityRotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes infinityPulse {
    0%, 100% { opacity: 0.15; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.25; transform: translate(-50%, -50%) scale(1.05); }
}

.roadmap-phase {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 2rem;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.roadmap-phase:nth-child(odd) {
    flex-direction: row;
}

.roadmap-phase:nth-child(even) {
    flex-direction: row-reverse;
}

.phase-marker {
    position: relative;
    z-index: 4;
    flex-shrink: 0;
}

.phase-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-secondary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.6rem;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.15);
}

.phase-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: iconGlow 3s linear infinite;
}

.phase-icon::after {
    content: '';
    position: absolute;
    top: 15%;
    left: 15%;
    right: 15%;
    bottom: 15%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconGlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); opacity: 0.2; }
    50% { transform: scale(1.05); opacity: 0.4; }
}

.phase-icon i {
    font-size: 1.6rem;
    color: white;
    z-index: 2;
    position: relative;
}

.phase-date {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-primary);
    background: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}

.phase-content {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 1) 100%);
  padding: 1.5rem;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  position: relative;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  flex: 1;
  max-width: 350px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 215, 0, 0.1);
  overflow: hidden;
}

.phase-visual {
  margin-bottom: 1rem;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.phase-image {
  width: 100%;
  height: 120px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.phase-content::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border: 8px solid transparent;
    border-bottom-color: rgba(255, 255, 255, 0.98);
}

.phase-content::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold-primary), var(--gold-secondary), var(--gold-primary));
    background-size: 200% 100%;
    animation: shimmer 4s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.phase-content:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(255, 215, 0, 0.2);
    border-color: rgba(255, 215, 0, 0.25);
}

.phase-content:hover .phase-icon {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.5);
}

.phase-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark-primary);
    margin-bottom: 1rem;
    text-align: center;
    line-height: 1.4;
    letter-spacing: 0.02em;
}

.phase-achievements {
    margin-top: 0.6rem;
}

.achievement-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.6rem;
    font-size: 0.85rem;
    line-height: 1.5;
    font-weight: 500;
}

.achievement-item i {
    color: var(--gold-primary);
    margin-right: 0.6rem;
    margin-top: 0.15rem;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.achievement-item span {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.85rem;
    line-height: 1.5;
}

.achievement-item i {
    color: var(--success-color);
    margin-right: 0.75rem;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.achievement-item span {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.ecosystem-support {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--gold-primary);
}

.ecosystem-support h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-primary);
    margin-bottom: 1rem;
}

.partner-logos {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.partner-logo {
    padding: 0.5rem 1rem;
    background: white;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark-primary);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.partner-logo:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(255, 215, 0, 0.2);
}

.partner-logo.aws { border-left: 3px solid #FF9900; }
.partner-logo.azure { border-left: 3px solid #0078D4; }
.partner-logo.google { border-left: 3px solid #4285F4; }
.partner-logo.servicenow { border-left: 3px solid #81C784; }
.partner-logo.snowflake { border-left: 3px solid #29B5E8; }
.partner-logo.databricks { border-left: 3px solid #FF3621; }
.partner-logo.openai { border-left: 3px solid #10A37F; }
.partner-logo.palantir { border-left: 3px solid #000000; }
.partner-logo.crowdstrike { border-left: 3px solid #FF6B35; }
.partner-logo.tcs { border-left: 3px solid #0066CC; }
.partner-logo.infosys { border-left: 3px solid #0066CC; }
.partner-logo.accenture { border-left: 3px solid #A100FF; }
.partner-logo.sap { border-left: 3px solid #003366; }
.partner-logo.oracle { border-left: 3px solid #F80000; }
.partner-logo.salesforce { border-left: 3px solid #00A1E0; }

.roadmap-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    position: relative;
    z-index: 4;
}

.metric-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.4s ease;
    border-left: 4px solid var(--gold-primary);
}

.metric-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 48px rgba(255, 215, 0, 0.2);
}

.metric-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-secondary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.metric-icon i {
    font-size: 1.5rem;
    color: white;
}

.metric-content h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold-primary);
    margin-bottom: 0.5rem;
}

.metric-content p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin: 0;
}

/* Responsive Design for Roadmap */
@media (max-width: 1200px) {
    .roadmap-timeline {
        gap: 0.5rem;
        min-height: 550px;
    }
    
    .roadmap-timeline::before {
        width: 500px;
        height: 250px;
    }
    
    .roadmap-timeline::after {
        width: 350px;
        height: 175px;
    }
    
    .roadmap-phase {
        width: 220px;
    }
    
    .roadmap-phase:nth-child(5) {
        max-width: 280px;
    }
    
    .edge-line {
        width: 2px;
    }
    
    .edge-line.left-edge {
        left: 6%;
    }
    
    .edge-line.right-edge {
        right: 6%;
    }
}

@media (max-width: 900px) {
    .roadmap-timeline {
        gap: 2rem;
        padding: 1rem;
    }
    
    .roadmap-timeline::before {
        display: none;
    }
    
    .roadmap-timeline .free-flowing-road {
        height: 80px;
        bottom: -10px;
    }
    
    .roadmap-phase {
        width: 100%;
        max-width: 500px;
        margin: 0 auto 2rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
    }
    
    .roadmap-phase:nth-child(odd),
    .roadmap-phase:nth-child(even) {
        flex-direction: column;
    }
    
    .phase-marker {
        margin-bottom: 1rem;
    }
    
    .phase-icon {
        width: 70px;
        height: 70px;
    }
    
    .phase-icon i {
        font-size: 1.8rem;
    }
    
    .phase-content {
        flex: 1;
        max-width: none;
        margin-top: 0;
    }
    
    .phase-content::before {
        display: none;
    }
    
    .phase-visual {
        margin-bottom: 0.8rem;
    }
    
    .phase-image {
        height: 100px;
    }
    
    .roadmap-metrics {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }
    
    .roadmap-edge-lines {
        display: none;
    }
}

@media (max-width: 600px) {
    .roadmap-phase {
        flex-direction: column;
        text-align: center;
        align-items: center;
        max-width: 100%;
    }
    
    .phase-marker {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .phase-icon {
        width: 60px;
        height: 60px;
    }
    
    .phase-icon i {
        font-size: 1.5rem;
    }
    
    .phase-content {
        padding: 1.5rem;
        max-width: 100%;
    }
    
    .phase-content h3 {
        font-size: 1.3rem;
    }
    
    .roadmap-metrics {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .metric-card {
        padding: 1.5rem;
    }
    
    .metric-content h3 {
        font-size: 2rem;
    }
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.feature i {
    width: 40px;
    height: 40px;
    background: var(--gold-gradient);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-primary);
    font-size: 1rem;
}

.feature h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    color: var(--dark-primary);
}

.feature p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
}

.about-visual {
    display: flex;
    justify-content: center;
}

.about-image {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: var(--gold-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-gold);
}

.about-image .image-placeholder {
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image .image-placeholder i {
    font-size: 4rem;
    color: var(--gold-primary);
}

/* Case Studies Section */
.case-studies {
    padding: 6rem 0;
    background: var(--white-primary);
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.2rem;
}

.case-study-card {
  background: var(--gray-light);
  border-left: 4px solid var(--gold-primary);
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(40,40,80,0.06);
  padding: 1.5rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

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

.case-study-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 18px rgba(255, 215, 0, 0.10);
    background: var(--white-primary);
}

.case-study-image {
    height: 200px;
    background: var(--gold-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
}

.case-study-image .image-placeholder {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.case-study-image .image-placeholder i {
    font-size: 2rem;
    color: var(--gold-primary);
}

.case-study-content {
  text-align: left;
}

.case-study-content h3 {
  font-size: 0.97rem;
  margin-bottom: 0.7rem;
}

.case-study-content p {
  font-size: 0.87rem;
  margin-bottom: 1rem;
}

.case-study-metrics {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Contact Section */
.contact {
    padding: 4rem 0;
    background: var(--gray-light);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-info h2 {
    font-size: 2.8rem;
    margin-bottom: 1.2rem;
    color: var(--dark-primary);
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.contact-intro {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
    line-height: 1.6;
    font-weight: 500;
    letter-spacing: 0.01em;
}

/* Trust Signals */
.contact-trust-signals {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark-primary);
}

.trust-item i {
    color: var(--gold-primary);
    font-size: 1rem;
}

/* Contact Methods Grid */
.contact-methods-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

/* Contact Methods */
.contact-methods {
    margin-bottom: 0;
}

.contact-methods h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-primary);
    margin-bottom: 0.75rem;
    border-bottom: 2px solid var(--gold-primary);
    padding-bottom: 0.5rem;
    display: inline-block;
}

.contact-details.primary {
    margin-bottom: 0;
}

.contact-details.secondary {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-item.primary {
    background: rgba(255, 215, 0, 0.05);
    border: 2px solid rgba(255, 215, 0, 0.2);
    margin-bottom: 1rem;
}

.contact-item.primary:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: var(--gold-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.2);
}

.contact-item.secondary {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.contact-item.secondary:hover {
    background: rgba(255, 255, 255, 0.9);
    border-color: var(--gold-primary);
}

.contact-item i {
    width: 35px;
    height: 35px;
    background: var(--gold-gradient);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-primary);
    font-size: 0.9rem;
    flex-shrink: 0;
}

.contact-item.primary i {
    background: var(--gold-gradient);
    color: white;
}

.contact-item.secondary i {
    background: rgba(255, 215, 0, 0.2);
    color: var(--gold-primary);
}

.contact-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.contact-value {
    font-weight: 700;
    color: var(--dark-primary);
    letter-spacing: 0.01em;
    display: block;
    margin-bottom: 0.25rem;
}

.contact-note {
    font-size: 0.8rem;
    color: var(--text-light);
    font-style: italic;
}

.contact-form {
    background: rgba(255, 255, 255, 0.95);
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: 0 12px 40px rgba(40, 40, 80, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
    height: fit-content;
}

.form-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.form-header h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--dark-primary);
    margin-bottom: 0.5rem;
}

.form-header p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
}

.form-section {
    margin-bottom: 1.5rem;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.form-section h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-primary);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-section h4::before {
    content: '';
    width: 4px;
    height: 20px;
    background: var(--gold-gradient);
    border-radius: 2px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.char-counter {
    text-align: right;
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.form-actions {
    text-align: center;
    margin-top: 1.5rem;
}

.form-actions .btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.form-actions .btn i {
    font-size: 1rem;
}

.form-note {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 1rem;
    line-height: 1.5;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: var(--white-primary);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold-primary);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

/* Footer */
.footer {
    background: var(--dark-primary);
    color: var(--white-primary);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
}

.footer-logo .logo {
    height: 50px;
    width: auto;
    background: transparent;
    padding: 6px;
    border-radius: 4px;
}



.footer-section h4 {
    margin-bottom: 1.2rem;
    color: var(--gold-primary);
    font-weight: 700;
    letter-spacing: 0.02em;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
    letter-spacing: 0.01em;
}

.footer-section ul li a:hover {
    color: var(--gold-primary);
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-primary);
    text-decoration: none;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    text-align: center;
    color: #9ca3af;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 10px;
    }
    
    .nav-container {
        padding: 0 10px;
    }
    
    .hero-container {
        padding: 0 10px;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.9);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-lg);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }
    
    .stat-item {
        padding: 1rem 1.5rem;
        min-width: 120px;
    }
    
    .stat-number {
        font-size: 1.3rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .central-feature-tiles-row .feature-tile {
        width: 140px;
        height: 110px;
        padding: 1.5rem 1rem;
    }
    
    .central-feature-tiles-row .feature-label {
        font-size: 0.8rem;
    }
    
    .central-hero-actions-row .stat-item {
        padding: 1.2rem 1.8rem;
        min-width: 130px;
    }
    
    .central-hero-actions-row .stat-number {
        font-size: 1.8rem;
    }
    
    .central-hero-actions-row .stat-label {
        font-size: 0.8rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .vmv-item {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        padding: 2rem;
    }
    
    .vmv-content h4 {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }
    
    .vmv-content p {
        font-size: 1.1rem;
        padding-left: 0;
        border-left: none;
        text-align: center;
    }
    
    .vision-mission-values {
        margin: 2rem 0;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .value-item {
        padding: 1.2rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-trust-signals {
        flex-direction: column;
        gap: 1rem;
    }
    
    .trust-item {
        justify-content: center;
    }
    
    .contact-methods-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-details.secondary {
        flex-direction: column;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-section {
        padding: 1rem;
    }

    .case-studies-grid {
        grid-template-columns: 1fr;
    }

    .floating-elements {
        display: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 8px;
    }
    
    .nav-container {
        padding: 0 8px;
    }
    
    .hero-container {
        padding: 0 8px;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .solutions-grid {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gold-gradient);
    border: none;
    border-radius: 50%;
    color: var(--dark-primary);
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: var(--shadow-gold);
}

.back-to-top:hover {
    background: var(--gold-gradient-hover);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold-bright);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

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



.service-card,
.solution-item,
.case-study-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Modernized Service Categories Group */
.services-categories-group {
    margin-top: 0 !important;
}
.services-categories-group > section:first-child {
    padding-top: 2.5rem;
}
.services-categories-group > section:first-child .services-top-category {
    margin-top: 0 !important;
}

.services-top-category {
    font-family: 'Poppins', 'Montserrat', 'Inter', Arial, sans-serif;
    font-size: 2.1rem;
    font-weight: 800;
    color: #B8860B;
    margin: 2.5rem 0 1.5rem 0;
    letter-spacing: 0.01em;
    text-shadow: 0 2px 12px rgba(184, 134, 11, 0.18), 0 1px 0 #fff, 0 2px 8px rgba(40,40,80,0.10);
    border-left: 6px solid var(--gold-primary);
    padding: 1.2rem 1.2rem 1.2rem 1.2rem;
    background: linear-gradient(90deg, var(--gold-light) 0%, transparent 100%);
    border-radius: 0 18px 18px 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background 0.2s, color 0.2s;
}

.services-top-category:hover, .services-top-category:focus {
    background: linear-gradient(90deg, var(--gold-primary) 0%, var(--gold-light) 100%);
    color: #fff;
}

/* Accordion fix: ensure expanded category grows to fit content and tiles are always visible */
.services-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.2rem;
    margin-bottom: 2.5rem;
    width: 100%;
    max-width: 100%;
    transition: none;
    overflow: visible;
}
section:not(.expanded) .services-categories {
    display: none;
}
section.expanded .services-categories {
    display: grid;
}

.service-category-card {
    background: linear-gradient(135deg, var(--white-primary) 80%, var(--gray-light) 100%);
    border-radius: 22px;
    box-shadow: 0 6px 32px 0 rgba(40, 40, 80, 0.10), 0 1.5px 8px 0 rgba(255, 215, 0, 0.07);
    padding: 2.2rem 1.5rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: box-shadow 0.3s, transform 0.3s, background 0.3s;
    position: relative;
    cursor: pointer;
    border: none;
    width: 100%;
    max-width: 100%;
    min-height: unset;
    height: auto;
}

.service-category-card:hover,
.service-category-card.selected {
    box-shadow: 0 12px 40px 0 rgba(255, 215, 0, 0.18), 0 4px 24px 0 rgba(40, 40, 80, 0.13);
    transform: translateY(-10px) scale(1.035);
    background: linear-gradient(120deg, var(--gold-light) 60%, var(--white-primary) 100%);
}

.service-category-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-gradient), var(--gray-light) 90%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.3rem;
    color: var(--gold-secondary);
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 12px rgba(255, 215, 0, 0.13);
    transition: background 0.3s, color 0.3s, box-shadow 0.3s;
}

.service-category-card:hover .service-category-icon,
.service-category-card.selected .service-category-icon {
    background: var(--gold-gradient);
    color: var(--dark-primary);
    box-shadow: 0 6px 24px rgba(255, 215, 0, 0.18);
}

.service-category-card h3 {
    font-family: 'Poppins', 'Montserrat', 'Inter', Arial, sans-serif;
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--dark-primary);
    margin-bottom: 1.2rem;
    letter-spacing: 0.01em;
    line-height: 1.25;
    text-shadow: 0 1px 8px rgba(40,40,80,0.04);
}

.service-desc {
    font-family: 'Inter', 'Poppins', Arial, sans-serif;
    font-size: 1.08rem;
    color: var(--text-secondary);
    margin-bottom: 1.3rem;
    line-height: 1.7;
    font-weight: 500;
    letter-spacing: 0.01em;
}

.service-offerings {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.service-offerings li {
    font-family: 'Inter', 'Poppins', Arial, sans-serif;
    font-size: 1.09rem;
    color: var(--text-primary);
    margin-bottom: 1.05rem;
    padding-left: 2.1em;
    position: relative;
    transition: color 0.3s;
    line-height: 1.6;
    font-weight: 500;
    letter-spacing: 0.01em;
}

.service-offerings li:before {
    content: '\f058';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--gold-primary);
    position: absolute;
    left: 0;
    top: 0.1em;
    font-size: 1.15em;
    filter: drop-shadow(0 1px 2px rgba(255,215,0,0.13));
}

.service-category-card.selected h3,
.service-category-card.selected .service-offerings li {
    color: var(--gold-accent);
}

@media (max-width: 1100px) {
    .services-categories {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 700px) {
    .services-categories {
        grid-template-columns: 1fr;
    }
    .service-category-card {
        min-height: 0;
        padding: 1.5rem 1rem 1rem 1rem;
    }
    .service-category-icon {
        width: 54px;
        height: 54px;
        font-size: 1.3rem;
    }
    .services-top-category {
        font-size: 1.3rem;
        padding: 0.8rem 0.8rem 0.8rem 1rem;
    }
}

/* Consistent Card/Tiles Across Sections */
.case-study-card, .feature {
    background: linear-gradient(135deg, var(--white-primary) 80%, var(--gray-light) 100%);
    border-radius: 22px;
    box-shadow: 0 6px 32px 0 rgba(40, 40, 80, 0.10), 0 1.5px 8px 0 rgba(255, 215, 0, 0.07);
    padding: 2.7rem 2.2rem 2.2rem 2.2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: box-shadow 0.3s, transform 0.3s, background 0.3s;
    position: relative;
    min-height: 340px;
    border: none;
}

.case-study-card:hover, .case-study-card.selected,
.feature:hover, .feature.selected {
    box-shadow: 0 12px 40px 0 rgba(255, 215, 0, 0.18), 0 4px 24px 0 rgba(40, 40, 80, 0.13);
    transform: translateY(-10px) scale(1.035);
    background: linear-gradient(120deg, var(--gold-light) 60%, var(--white-primary) 100%);
}

.case-study-card h3, .feature h4 {
    font-family: 'Poppins', 'Montserrat', 'Inter', Arial, sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark-primary);
    margin-bottom: 1.1rem;
    letter-spacing: 0.01em;
    line-height: 1.25;
    text-shadow: 0 1px 8px rgba(40,40,80,0.04);
}

.case-study-card p, .feature p {
    font-family: 'Inter', 'Poppins', Arial, sans-serif;
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 1.1rem;
    line-height: 1.7;
    font-weight: 500;
    letter-spacing: 0.01em;
}

.case-study-image .image-placeholder, .feature i {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-gradient), var(--gray-light) 90%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--gold-secondary);
    margin-bottom: 1.2rem;
    box-shadow: 0 2px 12px rgba(255, 215, 0, 0.13);
    transition: background 0.3s, color 0.3s, box-shadow 0.3s;
}

.case-study-card:hover .case-study-image .image-placeholder,
.case-study-card.selected .case-study-image .image-placeholder,
.feature:hover i, .feature.selected i {
    background: var(--gold-gradient);
    color: var(--dark-primary);
    box-shadow: 0 6px 24px rgba(255, 215, 0, 0.18);
}

@media (max-width: 1100px) {
    .case-studies-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 700px) {
    .case-studies-grid {
        grid-template-columns: 1fr;
    }
    .case-study-card {
        padding: 1.5rem;
    }
}

/* Modern Dropdown Menu for Services */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  color: #fff !important;
  background: transparent;
  font-weight: 700;
  font-size: inherit;
  border: none;
  padding: 0.45em 1.1em;
  border-radius: 7px;
  cursor: pointer;
  transition: color 0.22s, background 0.22s;
}

.nav-dropdown-toggle:hover, .nav-dropdown.open .nav-dropdown-toggle {
  color: #FFD700;
  background: rgba(255,215,0,0.08);
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: #fff;
  border: 1.5px solid #e5e5e5;
  border-radius: 8px;
  box-shadow: 0 6px 24px rgba(40,40,80,0.10);
  padding: 0.7em 0.2em;
  margin-top: 0.3em;
  z-index: 1001;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  display: block;
}

.nav-dropdown-link {
  display: block;
  color: #23293a;
  padding: 0.7em 1.2em;
  text-decoration: none;
  font-size: 1.01em;
  border-radius: 6px;
  transition: background 0.18s, color 0.18s;
}

.nav-dropdown-link:hover, .nav-dropdown-link:focus {
  background: #f7f8fa;
  color: #b8860b;
}

@media (max-width: 900px) {
  .nav-dropdown-menu {
    position: static;
    min-width: 100%;
    box-shadow: none;
    border-radius: 0;
    background: #fff;
    margin-top: 0;
  }
  .nav-dropdown-link {
    padding: 1rem 2rem;
    font-size: 1.08rem;
  }
}

.scroll-offset {
    scroll-margin-top: 120px;
    display: block;
    height: 1px;
    width: 100%;
    padding: 0;
    margin: 0;
    border: 0;
    background: transparent;
}

.category-tiles {
    display: none;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s;
    overflow: hidden;
    opacity: 0;
    max-height: 0;
}
section.expanded .category-tiles {
    display: block;
    opacity: 1;
    max-height: 3000px;
}
.category-toggle {
    cursor: pointer;
    user-select: none;
    display: flex;
    align-items: center;
    gap: 0.7em;
    transition: color 0.2s;
}
.category-toggle:hover, .category-toggle:focus {
    color: var(--gold-primary);
}
.toggle-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1em;
    color: var(--gold-primary);
    transition: transform 0.3s;
}
section.expanded .toggle-icon {
    transform: rotate(-180deg);
}

/* Service Tiles Grid for Our Services section */
.service-tiles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.service-tile {
  background: var(--gray-light);
  border-left: 4px solid var(--gold-primary);
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(40,40,80,0.06);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-tile::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gold-gradient-modern);
    transition: width 0.4s ease;
}

.service-tile:hover::before {
    width: 100%;
    opacity: 0.05;
}

.service-tile:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 18px rgba(255, 215, 0, 0.10);
    background: var(--white-primary);
}

.service-tile h4 {
  margin-bottom: 1rem;
  font-size: 1.3rem;
  color: #b8860b;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.service-summary {
  margin-bottom: 1.2rem;
  font-size: 1.05rem;
  color: #49516a;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.01em;
  font-style: italic;
  padding: 0.8rem;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, rgba(255, 251, 230, 0.1) 100%);
  border-radius: 8px;
  border-left: 3px solid rgba(255, 215, 0, 0.3);
}

.service-tile ul {
  padding-left: 1.2em;
  margin: 0;
}

.service-tile li {
  margin-bottom: 0.6em;
  color: #49516a;
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.01em;
}

@media (max-width: 700px) {
  .service-tiles-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  .service-tile {
    padding: 1.2rem 0.8rem;
  }
}

/* Accordion styles for Our Services section */
.service-category-group {
  margin-bottom: 0.5rem;
  border-radius: 0;
  background: none;
  box-shadow: none;
  border: none;
  border-bottom: 1.5px solid #e5c96a;
  overflow: hidden;
  transition: none;
}

.service-category-toggle {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(90deg, #23293a 0%, #49516a 100%);
  padding: 1.3rem 2rem;
  margin: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border: none;
  outline: none;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, border-radius 0.18s;
  box-shadow: 0 2px 8px rgba(40, 40, 80, 0.10);
  border-left: 6px solid #FFD700;
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
  letter-spacing: 0.01em;
  text-shadow: 0 1px 4px rgba(40,40,80,0.08);
  position: relative;
  overflow: hidden;
}

.service-category-toggle:hover, .service-category-toggle:focus {
  background: linear-gradient(90deg, #2d3548 0%, #6a7899 100%);
  color: #FFD700;
  box-shadow: 0 4px 16px 0 rgba(40, 40, 80, 0.13);
  filter: none;
}

/* Remove toggle-icon rules as icon is gone */
.toggle-icon { display: none !important; }

.service-category-group .service-tiles-grid {
  display: none;
  padding: 0 1.5rem 1.5rem 1.5rem;
}

.service-category-group.expanded .service-tiles-grid {
  display: grid;
}

.service-category-group.expanded .toggle-icon {
  transform: rotate(-180deg);
}

/* Undo Services Section Header styled like category */
#services .section-header {
  background: none;
  border-left: none;
  box-shadow: none;
  padding: 0;
  border-radius: 0;
  margin-bottom: 4rem;
}

#services .section-title {
  color: var(--dark-primary);
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: normal;
  text-shadow: none;
  border-bottom: none;
  display: block;
  padding-bottom: 0;
  margin-bottom: 1rem;
}

#services .section-badge {
  background: var(--gold-gradient-modern);
  color: var(--dark-primary);
  font-weight: 600;
  border-radius: 20px;
  padding: 8px 16px;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  display: inline-block;
}

#services .section-subtitle {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 0;
}

/* Case Study Card Styling */
.case-studies {
  padding: 6rem 0;
  background: #f7f8fa;
}

.case-studies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.2rem;
}

.case-study-card.styled {
  background: linear-gradient(120deg, #fff 80%, #fffbe6 100%);
  border: 1.5px solid #d4b94c;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(40,40,80,0.07);
  padding: 2.2rem 1.5rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.2s, border-color 0.2s, background 0.2s, transform 0.18s;
  min-height: 340px;
}

.case-study-card.styled:hover, .case-study-card.styled:focus {
  border-color: #FFD700;
  background: linear-gradient(90deg, #fffbe6 0%, #fff 100%);
  box-shadow: 0 8px 32px rgba(255, 215, 0, 0.13), 0 2px 12px rgba(40,40,80,0.10);
  transform: scale(1.018);
}

.case-study-summary {
  color: #49516a;
  font-size: 1rem;
  margin-bottom: 1.2rem;
  line-height: 1.7;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.case-study-link {
  display: inline-block;
  padding: 0.45em 1.2em;
  font-size: 0.93em;
  font-weight: 600;
  color: #b8860b;
  background: rgba(255, 255, 255, 0.85);
  border: 1.5px solid rgba(184, 134, 11, 0.22);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(184, 134, 11, 0.07);
  text-decoration: none;
  transition: border-color 0.18s, box-shadow 0.18s, background 0.18s, color 0.18s;
  margin-top: 0.5em;
}
.case-study-link:hover, .case-study-link:focus {
  border-color: #FFD700;
  background: #fffbe6;
  color: #b8860b;
  box-shadow: 0 4px 18px rgba(255, 215, 0, 0.13);
}

.case-study-content {
  width: 100%;
}

.case-study-section {
  margin-bottom: 2rem;
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
}

.case-study-section:last-child {
  margin-bottom: 0;
}

.case-study-icon {
  width: 48px;
  height: 48px;
  background: #fffbe6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #b8860b;
  box-shadow: 0 2px 8px rgba(255, 215, 0, 0.08);
  flex-shrink: 0;
}

.case-study-icon.gold {
  background: #FFD700;
  color: #fff;
}

.case-study-section h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #2d3548;
  margin-bottom: 0.8rem;
  margin-top: 0.2rem;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.case-study-section ul {
  margin: 0;
  padding-left: 1.3em;
}

.case-study-section li {
  color: #49516a;
  font-size: 1.04rem;
  margin-bottom: 0.6em;
  font-weight: 500;
}

.case-study-benefits {
  list-style: none;
  padding-left: 0;
}

.case-study-benefits li {
  color: #2d3548;
  font-size: 0.95rem;
  margin-bottom: 0.6em;
  line-height: 1.6;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.case-study-benefits li i {
  color: #FFD700;
  font-size: 1.1em;
}

@media (max-width: 700px) {
  .case-studies-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  .case-study-card.styled {
    padding: 1.2rem 0.7rem;
    min-height: 0;
  }
  .case-study-section {
    gap: 0.7rem;
  }
  .case-study-icon {
    width: 36px;
    height: 36px;
    font-size: 1.1rem;
  }
}

.tech-stack-section {
  padding: 4rem 0 2rem 0;
  background: #f7f8fa;
}
.tech-stack-card {
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid rgba(212, 185, 76, 0.3);
  border-radius: 24px;
  box-shadow: 0 12px 40px rgba(40, 40, 80, 0.1);
  padding: 3rem 2.5rem 2.5rem 2.5rem;
  margin: 0 auto;
  max-width: 1600px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}

.tech-stack-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gold-gradient-modern);
}

.tech-stack-block {
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 50%, #f8f9fa 100%);
    border-radius: 16px;
    border-left: 4px solid var(--gold-primary);
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(40, 40, 80, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

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

.tech-stack-block:hover::before {
    left: 100%;
}

.tech-stack-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(255, 215, 0, 0.15);
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 50%, #fff 100%);
}

.tech-stack-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: #2d3548;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  border-bottom: 3px solid #FFD700;
  display: inline-block;
  padding-bottom: 0.3em;
  line-height: 1.2;
}
.tech-stack-title i {
  color: #FFD700;
  margin-right: 0.5em;
}
.tech-stack-intro {
  color: #49516a;
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  line-height: 1.7;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.tech-stack-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}
.tech-stack-note {
  color: #2d3548;
  font-size: 1.15rem;
  font-weight: 600;
  margin-top: 2em;
  border-left: 4px solid #FFD700;
  padding-left: 1.2em;
  line-height: 1.7;
  letter-spacing: 0.01em;
}
@media (max-width: 900px) {
  .tech-stack-card {
    padding: 1.2rem 0.7rem;
    max-width: 98vw;
  }
  .tech-stack-title {
    font-size: 1.3rem;
  }
  .tech-stack-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

.tech-stack-capabilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
  margin-top: 2.5rem;
}
.tech-stack-cap-block {
  background: #f7f8fa;
  border-radius: 12px;
  border-left: 4px solid #FFD700;
  padding: 1.2rem 1.2rem 1.2rem 1.5rem;
  box-shadow: 0 2px 8px rgba(255, 215, 0, 0.05);
}
.tech-stack-cap-block h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.13rem;
  color: #b8860b;
  font-weight: 700;
  margin-bottom: 0.7em;
}
.tech-stack-cap-block ul {
  margin: 0;
  padding-left: 1.2em;
}
.tech-stack-cap-block li {
  color: #49516a;
  font-size: 1.02rem;
  margin-bottom: 0.5em;
  font-weight: 500;
}
@media (max-width: 900px) {
  .tech-stack-capabilities-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* Uniform font sizes and tile styling across all sections */
:root {
  --tile-title-size: 1.13rem;
  --tile-body-size: 1.02rem;
  --tile-title-weight: 700;
  --tile-body-weight: 500;
  --tile-padding: 1.2rem 1.2rem 1.2rem 1.5rem;
}

.tech-stack-block h4,
.tech-stack-cap-block h4,
.solution-item h3,
.service-tile h4,
.case-study-section h3 {
  font-family: 'Playfair Display', serif;
  font-size: var(--tile-title-size);
  color: #b8860b;
  font-weight: var(--tile-title-weight);
  margin-bottom: 0.7em;
  letter-spacing: 0.01em;
}

.tech-stack-block li,
.tech-stack-cap-block li,
.solution-item li,
.service-tile li,
.case-study-section li {
  color: #49516a;
  font-size: var(--tile-body-size);
  margin-bottom: 0.5em;
  font-weight: var(--tile-body-weight);
}

.tech-stack-block,
.tech-stack-cap-block,
.solution-item,
.service-tile,
.case-study-card.styled {
  padding: var(--tile-padding);
  min-height: 320px;
  transition: box-shadow 0.2s, border-color 0.2s, background 0.2s, transform 0.18s;
}

.tech-stack-block:hover,
.tech-stack-cap-block:hover,
.solution-item:hover,
.service-tile:hover,
.case-study-card.styled:hover {
  border-color: #FFD700;
  background: linear-gradient(90deg, #fffbe6 0%, #fff 100%);
  box-shadow: 0 8px 32px rgba(255, 215, 0, 0.13), 0 2px 12px rgba(40,40,80,0.10);
  transform: scale(1.018);
}

@media (max-width: 900px) {
  .tech-stack-block,
  .tech-stack-cap-block,
  .solution-item,
  .service-tile,
  .case-study-card.styled {
    padding: 1.5rem;
    min-height: 0;
  }
  .tech-stack-block h4,
  .tech-stack-cap-block h4,
  .solution-item h3,
  .service-tile h4,
  .case-study-section h3 {
    font-size: 1rem;
  }
  .tech-stack-block li,
  .tech-stack-cap-block li,
  .solution-item li,
  .service-tile li,
  .case-study-section li {
    font-size: 0.97rem;
  }
}

.hero-capabilities {
  list-style: none;
  padding: 0;
  margin: 2rem 0 2.5rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 2.2rem;
  font-size: 1.08rem;
  color: #2d3548;
  font-weight: 500;
}
.hero-capabilities li {
  display: flex;
  align-items: center;
  gap: 0.7em;
  font-size: 1.08rem;
  color: #2d3548;
  font-weight: 500;
  background: #fffbe6;
  border-radius: 8px;
  padding: 0.7em 1.3em;
  box-shadow: 0 2px 8px rgba(255, 215, 0, 0.07);
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
}
.hero-capabilities li i {
  color: #FFD700;
  font-size: 1.2em;
}
.hero-capabilities li:hover {
  background: #FFD700;
  color: #23293a;
  box-shadow: 0 4px 16px rgba(255, 215, 0, 0.13);
}
@media (max-width: 900px) {
  .hero-capabilities {
    flex-direction: column;
    gap: 1.1rem;
    font-size: 1rem;
  }
  .hero-capabilities li {
    font-size: 1rem;
    padding: 0.7em 0.9em;
  }
}

.floating-card {
  min-width: 220px;
  min-height: 120px;
  font-size: 1.18rem;
  padding: 1.7rem 2.2rem;
  background: #fff;
  color: #2d3548;
  border-radius: 14px;
  box-shadow: var(--shadow-gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--gold-primary);
  transition: box-shadow 0.3s, transform 0.18s, background 0.18s;
}
.floating-card i {
  font-size: 2.6rem;
  color: var(--gold-accent);
  margin-bottom: 0.8rem;
  text-shadow: none;
}
.floating-card span {
  color: #2d3548;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-shadow: none;
}
.floating-card:hover, .floating-card:focus {
  box-shadow: 0 8px 32px rgba(255, 215, 0, 0.13), 0 2px 12px rgba(40,40,80,0.10);
  background: #fffbe6;
  transform: scale(1.03);
}

/* Split Hero Layout */
.split-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #f7f8fa 0%, #fffbe6 100%);
  padding-top: 80px;
}
.split-hero-container {
  display: flex;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 0 0 10px;
  align-items: center;
  justify-content: center;
  position: relative;
}
.split-hero-left {
  flex: 0 1 340px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.7rem;
  z-index: 2;
  min-width: 260px;
  max-width: 380px;
  margin-right: 1vw;
}
.split-hero-right {
  flex: 2 1 0;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hero-logo {
  width: 70px;
  height: auto;
  margin-bottom: 0.5rem;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 2px 10px rgba(40,40,80,0.07);
}
.hero-badge {
  display: inline-block;
  background: var(--gold-gradient);
  color: #2d3548;
  padding: 10px 22px;
  border-radius: 22px;
  font-size: 1.05rem;
  font-weight: 700;
  box-shadow: 0 2px 12px rgba(255, 215, 0, 0.10);
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: #2d3548;
  line-height: 1.1;
  letter-spacing: 0.01em;
  margin-bottom: 0.2rem;
}
.hero-title .gold-text {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  color: #49516a;
  font-size: 1.18rem;
  font-weight: 500;
  max-width: 520px;
  margin-bottom: 0.5rem;
}
.hero-buttons {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin-bottom: 0.5rem;
}
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-top: 0.7rem;
  justify-content: flex-start;
}
.stat-item {
  background: linear-gradient(135deg, rgba(255, 251, 230, 0.95) 0%, rgba(255, 255, 255, 0.98) 100%);
  border-radius: 16px;
  padding: 1.2rem 1.8rem;
  box-shadow: 0 8px 24px rgba(255, 215, 0, 0.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(255, 215, 0, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  min-width: 140px;
  position: relative;
  overflow: hidden;
}

.stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold-gradient);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.stat-item:hover::before {
  transform: scaleX(1);
}
.stat-number {
  font-size: 1.5rem;
  font-weight: 800;
  color: #DAA520;
  letter-spacing: -0.02em;
  line-height: 1;
  text-shadow: 0 1px 3px rgba(218, 165, 32, 0.2);
  transition: all 0.3s ease;
}

.stat-item:hover .stat-number {
  transform: scale(1.05);
  text-shadow: 0 2px 6px rgba(218, 165, 32, 0.3);
}
.stat-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #2d3548;
  letter-spacing: 0.02em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  opacity: 0.85;
  transition: all 0.3s ease;
}

.stat-item:hover .stat-label {
  opacity: 1;
  color: var(--dark-primary);
}
.split-hero-accent {
  width: 6px;
  min-width: 6px;
  height: 80%;
  background: var(--gold-gradient);
  border-radius: 8px;
  margin: 0 3vw;
  box-shadow: 0 0 18px 2px #FFD70033;
}
.split-hero-right {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hero-image-placeholder {
  position: relative;
  width: 420px;
  height: 420px;
  background: rgba(255,255,255,0.85); /* lighter, more transparent */
  border-radius: 50%;
  box-shadow: 0 8px 32px rgba(255, 215, 0, 0.13), 0 2px 12px rgba(40,40,80,0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2.5px solid var(--gold-primary);
}
.hero-visual-img {
  width: 280px;
  height: 280px;
  object-fit: contain;
  border-radius: 50%;
  opacity: 1;
  z-index: 1;
  box-shadow: 0 4px 18px rgba(40,40,80,0.10);
  background: #fff;
  border: 2px solid #FFD700;
}
.floating-icon {
  position: absolute;
  background: var(--gold-gradient);
  color: #fff;
  border-radius: 50%;
  width: 64px;
  height: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 2px 12px rgba(255, 215, 0, 0.18);
  z-index: 2;
  transition: transform 0.18s, box-shadow 0.18s;
  border: 2px solid #fff;
}
.floating-label {
  display: block;
  margin-top: 0.3em;
  font-size: 1rem;
  font-weight: 600;
  color: #2d3548;
  background: rgba(255,255,255,0.92);
  border-radius: 8px;
  padding: 2px 10px 1px 10px;
  box-shadow: 0 1px 6px rgba(40,40,80,0.08);
  text-align: center;
  min-width: 70px;
  white-space: nowrap;
  pointer-events: none;
  position: relative;
  top: 4px;
}
@media (max-width: 1100px) {
  .floating-label {
    font-size: 0.8rem;
    min-width: 48px;
    padding: 1px 6px 1px 6px;
  }
}
@media (max-width: 700px) {
  .floating-label {
    font-size: 0.65rem;
    min-width: 32px;
    padding: 0 3px;
  }
}
.floating-icon-1 { top: 5%; left: 60%; }
.floating-icon-2 { top: 70%; left: 85%; }
.floating-icon-3 { top: 35%; left: 80%; }
.floating-icon-4 { top: 80%; left: 35%; }
.floating-icon:hover {
  transform: scale(1.12) rotate(-8deg);
  box-shadow: 0 8px 32px rgba(255, 215, 0, 0.22);
}
@media (max-width: 1100px) {
  .split-hero-container {
    flex-direction: column;
    align-items: flex-start;
    padding: 0 10px;
  }
  .split-hero-accent {
    width: 80%;
    min-width: 0;
    height: 6px;
    margin: 3vw 0;
    border-radius: 8px;
    align-self: center;
  }
  .split-hero-right, .split-hero-left {
    width: 100%;
    min-width: 0;
    align-items: center;
    text-align: center;
  }
  .hero-image-placeholder {
    width: 300px;
    height: 300px;
  }
  .hero-visual-img {
    width: 180px;
    height: 180px;
  }
  .floating-icon {
    width: 44px;
    height: 44px;
    font-size: 1.2rem;
  }
}
@media (max-width: 700px) {
  .split-hero-container {
    padding: 0 4px;
  }
  .hero-image-placeholder {
    width: 180px;
    height: 180px;
  }
  .hero-visual-img {
    width: 90px;
    height: 90px;
  }
  .floating-icon {
    width: 28px;
    height: 28px;
    font-size: 0.8rem;
  }
}

.hero-image-arc-layout {
  position: relative;
  width: 420px;
  height: 420px;
  background: rgba(255,255,255,0.85);
  border-radius: 50%;
  box-shadow: 0 8px 32px rgba(255, 215, 0, 0.13), 0 2px 12px rgba(40,40,80,0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2.5px solid var(--gold-primary);
}
.hero-visual-img {
  width: 280px;
  height: 280px;
  object-fit: contain;
  border-radius: 50%;
  opacity: 1;
  z-index: 1;
  box-shadow: 0 4px 18px rgba(40,40,80,0.10);
  background: #fff;
  border: 2px solid #FFD700;
}
.arc-icon {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 74px;
  height: 74px;
  background: var(--gold-gradient);
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 12px rgba(255, 215, 0, 0.18);
  border: 2px solid #fff;
  z-index: 2;
  transition: transform 0.18s, box-shadow 0.18s;
}
.arc-icon i {
  font-size: 2rem;
  margin-bottom: 0.2em;
}
.arc-label {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: #2d3548;
  background: rgba(255,255,255,0.92);
  border-radius: 8px;
  padding: 2px 10px 1px 10px;
  box-shadow: 0 1px 6px rgba(40,40,80,0.08);
  text-align: center;
  min-width: 70px;
  white-space: nowrap;
  pointer-events: none;
  margin-top: 0.2em;
}
.arc-icon-1 { top: 0%; left: 55%; transform: translate(-50%, 0); }
.arc-icon-2 { top: 25%; left: 100%; transform: translate(-50%, -50%); }
.arc-icon-3 { top: 65%; left: 95%; transform: translate(-50%, -50%); }
.arc-icon-4 { top: 90%; left: 60%; transform: translate(-50%, -50%); }
.arc-icon:hover {
  transform: scale(1.12) rotate(-8deg);
  box-shadow: 0 8px 32px rgba(255, 215, 0, 0.22);
}
@media (max-width: 1100px) {
  .hero-image-arc-layout {
    width: 300px;
    height: 300px;
  }
  .hero-visual-img {
    width: 180px;
    height: 180px;
  }
  .arc-icon {
    width: 48px;
    height: 48px;
  }
  .arc-label {
    font-size: 0.8rem;
    min-width: 48px;
    padding: 1px 6px 1px 6px;
  }
  .arc-icon-1 { top: 0%; left: 60%; }
  .arc-icon-2 { top: 20%; left: 100%; }
  .arc-icon-3 { top: 65%; left: 95%; }
  .arc-icon-4 { top: 90%; left: 65%; }
}
@media (max-width: 700px) {
  .hero-image-arc-layout {
    width: 180px;
    height: 180px;
  }
  .hero-visual-img {
    width: 90px;
    height: 90px;
  }
  .arc-icon {
    width: 28px;
    height: 28px;
  }
  .arc-label {
    font-size: 0.65rem;
    min-width: 32px;
    padding: 0 3px;
  }
  .arc-icon-1 { top: 0%; left: 60%; }
  .arc-icon-2 { top: 20%; left: 100%; }
  .arc-icon-3 { top: 65%; left: 95%; }
  .arc-icon-4 { top: 90%; left: 65%; }
}

.feature-tiles-grid {
  position: relative;
  z-index: 2;
  width: 420px;
  height: 420px;
  background: rgba(255,255,255,0.85);
  border-radius: 32px;
  box-shadow: 0 8px 32px rgba(255, 215, 0, 0.13), 0 2px 12px rgba(40,40,80,0.10);
  align-items: center;
  justify-items: center;
  padding: 2.5rem;
  border: 2.5px solid var(--gold-primary);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 2rem;
}
.feature-label {
  font-size: 1.1rem;
  font-weight: 700;
  color: #2d3548;
  text-align: center;
  letter-spacing: 0.01em;
}
@media (max-width: 1100px) {
  .feature-tiles-visual-wrap {
    width: 300px;
    height: 300px;
  }
  .hero-visual-img-large {
    width: 270px;
    height: 270px;
  }
  .feature-tiles-grid {
    width: 260px;
    height: 260px;
    padding: 1.2rem;
    gap: 1.1rem;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
  }
  .feature-label {
    font-size: 0.8rem;
  }
  .feature-tile {
    width: 90px;
    height: 90px;
  }
  .feature-tile i {
    font-size: 1.3rem;
  }
}
@media (max-width: 700px) {
  .feature-tiles-visual-wrap {
    width: 140px;
    height: 140px;
  }
  .hero-visual-img-large {
    width: 120px;
    height: 120px;
  }
  .feature-tiles-grid {
    width: 110px;
    height: 110px;
    padding: 0.5rem;
    gap: 0.5rem;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
  }
  .feature-label {
    font-size: 0.65rem;
  }
  .feature-tile {
    width: 48px;
    height: 48px;
    border-radius: 10px;
  }
  .feature-tile i {
    font-size: 0.7rem;
  }
}

.feature-tiles-visual-wrap {
  position: relative;
  width: 560px;
  height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-visual-img-large {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 520px;
  height: 520px;
  object-fit: contain;
  border-radius: 32px;
  transform: translate(-50%, -50%);
  opacity: 0.18;
  z-index: 1;
  background: #fff;
  box-shadow: 0 8px 32px rgba(255, 215, 0, 0.13), 0 2px 12px rgba(40,40,80,0.10);
}
.feature-tiles-grid {
  position: relative;
  z-index: 2;
  width: 500px;
  height: 500px;
  background: rgba(255,255,255,0.85);
  border-radius: 32px;
  box-shadow: 0 8px 32px rgba(255, 215, 0, 0.13), 0 2px 12px rgba(40,40,80,0.10);
  align-items: center;
  justify-items: center;
  padding: 3rem;
  border: 2.5px solid var(--gold-primary);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 2.2rem;
}
@media (max-width: 1100px) {
  .feature-tiles-visual-wrap {
    width: 360px;
    height: 360px;
  }
  .hero-visual-img-large {
    width: 320px;
    height: 320px;
  }
  .feature-tiles-grid {
    width: 300px;
    height: 300px;
    padding: 1.5rem;
    gap: 1.2rem;
  }
}
@media (max-width: 700px) {
  .feature-tiles-visual-wrap {
    width: 180px;
    height: 180px;
  }
  .hero-visual-img-large {
    width: 140px;
    height: 140px;
  }
  .feature-tiles-grid {
    width: 120px;
    height: 120px;
    padding: 0.5rem;
    gap: 0.5rem;
  }
} 

.central-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  overflow: hidden;
  padding-top: 80px;
}
.hero-animated-bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  z-index: 0;
  background: linear-gradient(135deg, #fffbe6 0%, #f7f8fa 100%);
  opacity: 1;
  pointer-events: none;
  animation: heroBgPulse 8s ease-in-out infinite alternate;
}
@keyframes heroBgPulse {
  0% { opacity: 1; }
  100% { opacity: 0.93; }
}
.central-hero-container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
}
.central-hero .hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 3.2rem;
  font-weight: 900;
  color: #2d3548;
  margin-bottom: 2rem;
  line-height: 1.1;
  letter-spacing: -0.03em;
  max-width: 900px;
  text-shadow: 0 2px 25px rgba(255, 215, 0, 0.18);
}

.central-hero .hero-title .gold-text {
  font-size: 2.6rem;
  display: inline-block;
  max-width: 700px;
  line-height: 1.1;
  background: linear-gradient(135deg, #FFD700 0%, #DAA520 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 900;
}

.central-hero .hero-subtitle {
  color: #49516a;
  font-size: 1.5rem;
  margin-bottom: 3.5rem;
  font-weight: 500;
  max-width: 900px;
  line-height: 1.7;
  letter-spacing: 0.01em;
}

.central-feature-tiles-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
  margin-bottom: 3rem;
  width: 100%;
}

.central-feature-tiles-row .feature-tile {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 251, 230, 0.98) 100%);
  border: 2px solid rgba(255, 215, 0, 0.25);
  border-radius: 20px;
  padding: 1.8rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  width: 170px;
  height: 130px;
  box-shadow: 0 8px 32px rgba(255, 215, 0, 0.12);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.central-feature-tiles-row .feature-tile::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transition: left 0.6s ease;
}

.central-feature-tiles-row .feature-tile:hover::before {
    left: 100%;
}

.central-feature-tiles-row .feature-tile:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 20px 50px rgba(255, 215, 0, 0.25);
    border-color: rgba(255, 215, 0, 0.6);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 251, 230, 1) 100%);
}

.central-feature-tiles-row .feature-tile i {
    font-size: 2.2rem;
    color: #DAA520;
    margin-bottom: 0.3rem;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 8px rgba(218, 165, 32, 0.3));
    text-shadow: 0 1px 3px rgba(218, 165, 32, 0.2);
}

.central-feature-tiles-row .feature-tile:hover i {
    transform: scale(1.1);
    filter: drop-shadow(0 4px 12px rgba(218, 165, 32, 0.5));
}

.central-feature-tiles-row .feature-label {
  font-size: 0.9rem;
  font-weight: 700;
  color: #2d3548;
  text-align: center;
  line-height: 1.2;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  opacity: 0.9;
  transition: all 0.3s ease;
  word-wrap: break-word;
  hyphens: auto;
}

.central-feature-tiles-row .feature-tile:hover .feature-label {
  opacity: 1;
  color: var(--dark-primary);
  transform: scale(1.02);
}

.feature-tile-link {
  text-decoration: none;
  color: inherit;
  display: block;
  transition: all 0.3s ease;
  cursor: pointer;
}

.feature-tile-link:hover {
  text-decoration: none;
  color: inherit;
  transform: translateY(-2px);
}

.feature-tile-link:focus {
  outline: none;
}

.feature-tile-link:focus .feature-tile {
  box-shadow: 0 0 0 3px rgba(218, 165, 32, 0.3);
}

.central-hero-actions-row {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
}

.central-hero-actions-row .btn {
  padding: 1.4rem 3rem;
  font-size: 1.15rem;
  font-weight: 800;
  border-radius: 16px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  letter-spacing: 0.03em;
  position: relative;
  overflow: hidden;
}

.central-hero-actions-row .stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  padding: 1.5rem 2.2rem;
  background: linear-gradient(135deg, rgba(255, 251, 230, 0.95) 0%, rgba(255, 255, 255, 0.98) 100%);
  border-radius: 18px;
  box-shadow: 0 10px 36px rgba(255, 215, 0, 0.15);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 215, 0, 0.25);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  min-width: 150px;
  position: relative;
  overflow: hidden;
}

.central-hero-actions-row .stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold-gradient);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.central-hero-actions-row .stat-item:hover::before {
  transform: scaleX(1);
}

.central-hero-actions-row .stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 50px rgba(40, 40, 80, 0.2);
    background: rgba(255, 255, 255, 0.98);
}

.central-hero-actions-row .stat-number {
  font-size: 2.2rem;
  font-weight: 900;
  color: #DAA520;
  font-family: 'Playfair Display', serif;
  letter-spacing: -0.02em;
  line-height: 1;
  text-shadow: 0 2px 6px rgba(218, 165, 32, 0.3);
  transition: all 0.3s ease;
}

.central-hero-actions-row .stat-item:hover .stat-number {
  transform: scale(1.05);
  text-shadow: 0 3px 8px rgba(218, 165, 32, 0.4);
}

.central-hero-actions-row .stat-label {
  font-size: 0.9rem;
  font-weight: 700;
  color: #49516a;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-align: center;
  opacity: 0.9;
  transition: all 0.3s ease;
  word-wrap: break-word;
  hyphens: auto;
}

.central-hero-actions-row .stat-item:hover .stat-label {
  opacity: 1;
  color: var(--dark-primary);
  transform: scale(1.02);
}

@media (max-width: 1100px) {
  .central-hero-container {
    max-width: 98vw;
    padding: 2.2rem 0.5rem 1.5rem 0.5rem;
  }
  .central-feature-tiles-row {
    gap: 0.7rem;
    max-width: 98vw;
  }
  .central-feature-tiles-row .feature-tile {
    width: 70px;
    height: 70px;
    min-width: 70px;
  }
}
@media (max-width: 700px) {
  .central-hero-container {
    max-width: 100vw;
    padding: 1.1rem 0.2rem 0.7rem 0.2rem;
  }
  .central-feature-tiles-row {
    gap: 0.3rem;
    max-width: 100vw;
  }
  .central-feature-tiles-row .feature-tile {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    min-width: 44px;
  }
}

.hero-side-image {
  position: absolute;
  top: 50%;
  width: 320px;
  height: 480px;
  object-fit: cover;
  z-index: 1;
  opacity: 0.92;
  pointer-events: none;
  transform: translateY(-50%);
  border-radius: 0;
  box-shadow: none;
  /* Gold-white overlay */
  position: relative;
}
.hero-side-image::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255,215,100,0.22) 0%, rgba(255,255,255,0.38) 100%);
  mix-blend-mode: lighten;
  border-radius: inherit;
  z-index: 2;
}
.hero-side-image.left {
  left: 0;
  margin-left: 2vw;
}
.hero-side-image.right {
  right: 0;
  margin-right: 2vw;
}
@media (max-width: 1300px) {
  .hero-side-image {
    width: 180px;
    height: 260px;
  }
}
@media (max-width: 900px) {
  .hero-side-image {
    display: none;
  }
}

.hero-bg-elements {
  position: relative;
  min-height: 100vh;
  background-image: 
    linear-gradient(135deg, rgba(255,255,255,0.92) 0%, rgba(255,255,255,0.88) 100%),
    url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2072&q=80'),
    url('images/elements.jpg');
  background-size: cover, cover, cover;
  background-position: center, center, center;
  background-repeat: no-repeat, no-repeat, no-repeat;
  z-index: 0;
}
.hero-bg-elements::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(255, 215, 0, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 237, 78, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(218, 165, 32, 0.06) 0%, transparent 50%);
  z-index: 1;
  pointer-events: none;
}
.central-hero-container {
  position: relative;
  z-index: 2;
}
@media (min-width: 900px) {
  .hero-bg-elements {
    background-attachment: fixed;
  }
}

/* Removed .cover-digital-word element to eliminate white rectangle */

.nav-dropdown.open .nav-dropdown-toggle,
.nav-dropdown:hover .nav-dropdown-toggle {
  color: #FFD700 !important;
  background: rgba(255,215,0,0.10);
  box-shadow: 0 2px 12px rgba(255, 215, 0, 0.08);
}

.nav-dropdown-menu {
  display: none;
}
.nav-dropdown.open .nav-dropdown-menu,
.nav-dropdown:hover .nav-dropdown-menu {
  display: block;
}

.about-text h2 .gold-text {
  font-size: 1.18em;
  font-weight: 800;
  text-shadow: 0 2px 12px rgba(255, 215, 0, 0.18), 0 1px 2px rgba(184, 134, 11, 0.10);
  letter-spacing: 0.01em;
}

.section-title .gold-text {
  font-weight: 900;
  background: linear-gradient(90deg, #FFD700 0%, #DAA520 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 2px 18px #FFD700, 0 1px 2px #B8860B, 0 0 2px #fffbe6;
  letter-spacing: 0.01em;
  filter: brightness(1.08) contrast(1.12);
}

.about-split-layout {
  display: flex;
  flex-direction: row;
  gap: 3.5rem;
  align-items: flex-start;
  justify-content: space-between;
}
.about-main-text {
  flex: 2 1 0;
  min-width: 0;
}
.about-side-features {
  flex: 1 1 0;
  min-width: 260px;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}
.about-side-features .about-image {
  margin-bottom: 0.7rem;
}
.about-features {
  width: 100%;
}
@media (max-width: 1100px) {
  .about-split-layout {
    flex-direction: column;
    gap: 2.2rem;
  }
  .about-side-features {
    flex-direction: row;
    max-width: 100%;
    gap: 1.2rem;
    align-items: flex-start;
    justify-content: flex-start;
  }
  .about-side-features .about-image {
    margin-bottom: 0;
    margin-right: 1.2rem;
  }
  .about-features {
    width: auto;
  }
}
@media (max-width: 700px) {
  .about-split-layout {
    flex-direction: column;
    gap: 1.2rem;
  }
  .about-side-features {
    flex-direction: column;
    align-items: center;
    gap: 0.7rem;
  }
  .about-side-features .about-image {
    margin: 0 0 0.7rem 0;
  }
}

.about-horizontal-layout {
  margin-bottom: 2.2rem;
}
.about-features-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}
.about-features-row .feature {
  background: var(--gray-light);
  padding: 1.5rem;
  border-radius: 10px;
  border-left: 4px solid var(--gold-primary);
  box-shadow: 0 2px 8px rgba(40,40,80,0.06);
  transition: all 0.3s ease;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  min-height: unset;
}
.about-features-row .feature:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 18px rgba(255, 215, 0, 0.10);
  background: var(--white-primary);
}
.about-features-row .feature i {
  width: 32px;
  height: 32px;
  background: var(--gold-gradient);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark-primary);
  font-size: 1.2rem;
  flex-shrink: 0;
}
.about-features-row .feature h4 {
  font-size: 1.15rem;
  margin-bottom: 0.3rem;
  color: #2d3548;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.about-features-row .feature p {
  font-size: 1rem;
  color: #49516a;
  margin: 0;
  line-height: 1.6;
  font-weight: 500;
  letter-spacing: 0.01em;
}
@media (max-width: 900px) {
  .about-features-row {
    grid-template-columns: 1fr;
    gap: 1.1rem;
  }
}

/* About Icon Badge */
.about-icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: var(--gold-gradient-modern);
  border-radius: 50%;
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

.about-icon-badge:hover::before {
  left: 100%;
}

.about-icon-badge:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 215, 0, 0.4);
}

.about-icon-badge i {
  font-size: 2rem;
  color: var(--dark-primary);
  z-index: 2;
  position: relative;
}

/* Hero Images for Sections */
.about-horizontal-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 3rem;
}

.about-content {
  order: 1;
}

.about-visual {
  order: 2;
  text-align: center;
}

.about-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.about-image:hover {
  transform: translateY(-5px);
}

/* Vision Mission Values Hero Image */
.vmv-hero-image {
  text-align: center;
  margin: 2rem 0 3rem 0;
  width: 100%;
}

.vmv-image {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.vmv-image:hover {
  transform: scale(1.02);
}

/* Services Hero Image */
.services-hero-image {
  text-align: center;
  margin: 2rem 0 3rem 0;
  width: 100%;
}

.services-image {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.services-image:hover {
  transform: scale(1.02);
}

/* Solutions Hero Image */
.solutions-hero-image {
  text-align: center;
  margin: 2rem 0 3rem 0;
  width: 100%;
}

.solutions-image {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.solutions-image:hover {
  transform: scale(1.02);
}

/* Case Studies Hero Image */
.case-studies-hero-image {
  text-align: center;
  margin: 2rem 0 3rem 0;
  width: 100%;
}

.case-studies-image {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.case-studies-image:hover {
  transform: scale(1.02);
}

/* Tech Stack Hero Image */
.tech-stack-hero-image {
  text-align: center;
  margin: 2rem 0 3rem 0;
  width: 100%;
}

.tech-stack-image {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.tech-stack-image:hover {
  transform: scale(1.02);
}

/* Contact Hero Image */
.contact-hero-image {
  text-align: center;
  margin: 1.5rem 0;
  width: 100%;
}

.contact-image {
  width: 100%;
  height: auto;
  max-height: 180px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.contact-image:hover {
  transform: translateY(-5px);
}



/* Responsive Design for Hero Images */
@media (max-width: 768px) {
  .about-horizontal-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .about-content {
    order: 2;
  }
  
  .about-visual {
    order: 1;
  }
  
  .about-icon-badge {
    width: 70px;
    height: 70px;
  }
  
  .about-icon-badge i {
    font-size: 1.8rem;
  }
  
  .about-image,
  .vmv-image,
  .services-image,
  .solutions-image,
  .case-studies-image,
  .tech-stack-image,
  .contact-image {
    width: 100%;
  }
  
  .vmv-hero-image,
  .services-hero-image,
  .solutions-hero-image,
  .case-studies-hero-image,
  .tech-stack-hero-image {
    margin: 1.5rem 0 2rem 0;
  }
}

@media (max-width: 480px) {
  .about-horizontal-layout {
    gap: 1.5rem;
  }
  
  .about-icon-badge {
    width: 60px;
    height: 60px;
  }
  
  .about-icon-badge i {
    font-size: 1.5rem;
  }
  
  .vmv-hero-image,
  .services-hero-image,
  .solutions-hero-image,
  .case-studies-hero-image,
  .tech-stack-hero-image {
    margin: 1rem 0 1.5rem 0;
  }
}