/* Global Rock Consulting - J.P. Morgan Inspired Design
   Designed to match the corporate J.P. Morgan style
*/

/* Base Styles */
:root {
  /* Color palette - J.P. Morgan inspired */
  --primary: #003057;     /* Navy blue (primary J.P. Morgan color) */
  --secondary: #004c97;   /* Medium blue */
  --accent: #006eaa;      /* Bright blue accent */
  --light: #f5f5f5;       /* Light gray */
  --white: #ffffff;
  --text: #333333;
  --muted: #666666;
  --gradient-start: rgba(0, 48, 87, 0.95);
  --gradient-end: rgba(0, 76, 151, 0.9);
}

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

body {
  font-family: 'Georgia', serif;
  color: var(--text);
  line-height: 1.5;
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Georgia', serif;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--primary);
}

p {
  margin-bottom: 1.5rem;
  font-size: 1rem;
  font-family: Arial, Helvetica, sans-serif;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--primary);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-title {
  text-align: left;
  margin-bottom: 2rem;
  position: relative;
  font-size: 2rem;
  font-weight: 400;
}

.section-subtitle {
  text-align: left;
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 0 2rem 0;
  font-family: Arial, Helvetica, sans-serif;
}

.btn {
  display: inline-block;
  padding: 1rem 2rem;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border-radius: 25px;
  font-size: 0.9rem;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  font-family: Arial, Helvetica, sans-serif;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

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

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

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  border: none;
  box-shadow: 0 4px 15px rgba(0, 48, 87, 0.25);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 48, 87, 0.35);
}

.btn-secondary {
  background-color: transparent;
  color: var(--white);
  border: 1px solid var(--white);
}

.btn-secondary:hover {
  background-color: var(--white);
  color: var(--primary);
  transform: translateY(0);
  box-shadow: none;
}

.btn-dark {
  background-color: var(--primary);
  color: var(--white);
  border: none;
}

.btn-dark:hover {
  background-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Header & Navigation - J.P. Morgan Style */
header {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 48, 87, 0.08);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  padding: 0;
  box-shadow: 0 2px 20px rgba(0, 48, 87, 0.08);
}

header .container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 0;
  max-width: none;
  width: 100%;
}

.logo {
  display: flex;
  align-items: center;
  padding: 1rem 2rem;
  background: rgba(0, 48, 87, 0.02);
  border-right: 1px solid rgba(0, 48, 87, 0.08);
  min-width: 280px;
}

.logo img {
  height: 45px;
  margin-right: 1rem;
}

.logo h1 {
  font-size: 1.6rem;
  margin: 0;
  color: var(--primary);
  font-weight: 500;
}

.main-nav {
  display: flex;
  align-items: center;
  padding-left: 2rem;
  flex: 1;
}

.main-nav li {
  margin-right: 3rem;
  position: relative;
}

.main-nav > li:first-child {
  margin-left: 0;
}

.main-nav a {
  color: var(--primary);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding: 1.5rem 0;
  display: block;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  letter-spacing: 0.3px;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--secondary));
  transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.main-nav a:hover::after, .main-nav a.active::after {
  width: 100%;
}

.main-nav a:hover, .main-nav a.active {
  color: var(--accent);
  font-weight: 600;
}

.main-nav a:hover, .main-nav a.active {
  color: var(--accent);
}

.dropdown {
  position: relative;
}

/* Expanded hover area for easier menu access */
.dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: -2rem;
  right: -2rem;
  height: 1rem;
  z-index: 1000;
  pointer-events: auto;
}

.dropdown > a::after {
  content: '▼';
  font-size: 0.7rem;
  margin-left: 0.5rem;
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: inline-block;
}

.dropdown:hover > a::after {
  transform: rotate(180deg);
}

.dropdown-content {
  display: none;
  position: fixed;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  width: 100vw;
  left: 0;
  right: 0;
  transform: translateY(-15px);
  box-shadow: 0 20px 40px rgba(0, 48, 87, 0.18), 0 8px 20px rgba(0, 0, 0, 0.1);
  z-index: 1001;
  top: 80px;
  max-height: 80vh;
  overflow-y: auto;
  border-top: 1px solid rgba(0, 48, 87, 0.08);
  border-bottom: 1px solid rgba(0, 48, 87, 0.08);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  pointer-events: none;
}

.dropdown-content::before {
  display: none;
}

.mega-menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding: 2rem 0;
  max-width: 1200px;
  margin: 0 auto;
}

.mega-menu-column {
  display: flex;
  flex-direction: column;
}

.dropdown-content .section-header {
  color: var(--accent);
  padding: 0 0 1.5rem 0;
  margin-bottom: 1rem;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 2px solid var(--accent);
  position: relative;
}

.dropdown-content a {
  color: var(--primary);
  padding: 1.5rem 0;
  display: block;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  border-left: 3px solid transparent;
  text-decoration: none;
}

.dropdown-content .service-item {
  display: flex;
  flex-direction: column;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(0, 48, 87, 0.06);
  margin-bottom: 1rem;
}

.dropdown-content .service-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.dropdown-content .service-item strong {
  color: var(--primary);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.dropdown-content .service-item span {
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.4;
  font-weight: 400;
}



.dropdown-content a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, rgba(0, 110, 170, 0.1), rgba(0, 76, 151, 0.05));
  transition: width 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.dropdown-content a:hover {
  transform: translateX(8px);
  border-left: 3px solid var(--accent);
}

.dropdown-content .service-item:hover strong {
  color: var(--accent);
}

.dropdown-content .service-item:hover span {
  color: var(--primary);
}

/* Service Card Styling for Dropdown */
.dropdown-content .service-card {
  display: block;
  padding: 1.5rem;
  margin-bottom: 1rem;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(0, 48, 87, 0.08);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.dropdown-content .service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 48, 87, 0.15);
  background: rgba(255, 255, 255, 0.95);
  border-color: var(--accent);
}

.dropdown-content .service-card h4 {
  color: var(--primary);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.dropdown-content .service-card p {
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.4;
  margin-bottom: 1rem;
  font-weight: 400;
}

.dropdown-content .service-card .service-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.dropdown-content .service-card .service-list li {
  color: var(--text);
  font-size: 0.8rem;
  margin-bottom: 0.3rem;
  line-height: 1.3;
  padding-left: 0.5rem;
}

.dropdown-content .service-card:hover h4 {
  color: var(--accent);
}

.dropdown-content .service-card:hover p {
  color: var(--primary);
}

.dropdown-content .service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, rgba(0, 110, 170, 0.08), rgba(0, 76, 151, 0.03));
  transition: width 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 0;
}

.dropdown-content .service-card:hover::before {
  width: 100%;
}

.dropdown-content .service-card > * {
  position: relative;
  z-index: 1;
}

.dropdown-content a:hover::before {
  width: 100%;
}

.dropdown-content a:last-child {
  border-bottom: none;
}

.dropdown:hover .dropdown-content,
.dropdown-content:hover {
  display: block;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Keep menu open when hovering over the bridge area */
.dropdown:hover::after {
  pointer-events: auto;
}

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

.mobile-nav-toggle span {
  width: 30px;
  height: 3px;
  background-color: var(--primary);
  margin: 3px 0;
  transition: all 0.3s ease;
}

/* Hero Section */
.hero {
  background: var(--primary);
  color: var(--white);
  padding: 6rem 0 4rem;
  margin-top: 80px;
  position: relative;
  z-index: 2;
  min-height: 60vh;
  overflow: hidden;
}

/* Two-column hero layout */
.hero-two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 2rem;
  position: relative;
}

.hero-left::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 1px;
  background: linear-gradient(to bottom, 
    transparent 0%, 
    rgba(255, 255, 255, 0.3) 20%, 
    rgba(255, 255, 255, 0.3) 80%, 
    transparent 100%);
}

.hero-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 2rem;
}

.hero-content {
  width: 100%;
  max-width: none;
  margin: 0;
  text-align: left;
  position: relative;
  z-index: 3;
}

.hero h1 {
  font-size: calc(1.8rem + 1vw);
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1.2;
  font-weight: 400;
  word-wrap: break-word;
}

.hero p {
  font-size: calc(0.9rem + 0.3vw);
  width: 100%;
  max-width: 600px;
  margin: 0 0 2rem 0;
  opacity: 0.9;
  font-family: Arial, Helvetica, sans-serif;
}

.hero-buttons {
  display: flex;
  justify-content: flex-start;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

/* Services Section */
.services {
  padding: 8rem 0;
  background-color: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-top: 4rem;
}

.service-card {
  background-color: var(--white);
  border: 1px solid rgba(0, 48, 87, 0.08);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: left;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 4px 20px rgba(0, 48, 87, 0.04);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, var(--accent), var(--secondary), #667eea);
  transform: translateX(-100%);
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(0, 110, 170, 0.2);
  box-shadow: 0 20px 40px rgba(0, 48, 87, 0.12);
  background-color: rgba(255, 255, 255, 0.98);
}

.service-card:hover::before {
  transform: translateX(0);
}

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: var(--accent);
  height: 70px;
  width: 70px;
  line-height: 70px;
  background: linear-gradient(135deg, rgba(0, 110, 170, 0.1), rgba(0, 76, 151, 0.1));
  border-radius: 20px;
  margin: 0 0 2rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.service-icon::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transform: rotate(45deg);
  transition: all 0.6s ease;
  opacity: 0;
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, var(--accent), var(--secondary));
  color: var(--white);
  box-shadow: 0 10px 25px rgba(0, 110, 170, 0.3);
}

.service-card:hover .service-icon::before {
  opacity: 1;
  transform: rotate(45deg) translate(50%, 50%);
}

.service-card h3 {
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.service-card p {
  margin-bottom: 1.5rem;
  color: var(--muted);
}

.service-link {
  display: inline-block;
  font-weight: 600;
  color: var(--accent);
  position: relative;
}

.service-link:after {
  content: '→';
  opacity: 0;
  margin-left: 0;
  transition: all 0.3s ease;
}

.service-link:hover:after {
  opacity: 1;
  margin-left: 5px;
}

/* Sophisticated Image Overlay */
.sophisticated-overlay {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 40%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
  max-height: 100%;
}

.overlay-image {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 100%;
  width: 100%;
  object-fit: cover;
  opacity: 0.7;
  mix-blend-mode: multiply;
  filter: contrast(1.1) brightness(0.9);
}

/* Why Us Section */
.testimonials {
  padding: 5rem 0;
  background-color: #F7F7F7; /* J.P. Morgan light color */
  position: relative;
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-top: 4rem;
}

.why-us-item {
  background-color: var(--white);
  border: 1px solid #e6e6e6;
  padding: 2rem;
  transition: all 0.2s ease;
}

.why-us-item:hover {
  transform: translateY(0);
  border-color: var(--accent);
}

.why-us-item h3 {
  color: var(--primary);
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  position: relative;
  padding-bottom: 1rem;
}

.why-us-item h3:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: var(--accent);
}

/* CTA Section */
.cta {
  background-color: var(--primary);
  color: var(--white);
  padding: 6rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../images/pattern.png') repeat;
  opacity: 0.05;
  z-index: 0;
}

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

.cta h2 {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-size: 2.5rem;
}

.cta p {
  margin-bottom: 3rem;
  font-size: 1.25rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
}

/* Featured Project Section - Our Approach */
.featured-project {
  padding: 6rem 0;
  background: linear-gradient(135deg, 
    rgba(240, 248, 255, 0.6) 0%, 
    rgba(237, 245, 254, 0.8) 100%);
  position: relative;
  overflow: hidden;
}

.featured-project::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 15% 85%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 85% 15%, rgba(99, 102, 241, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.featured-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.featured-content {
  padding: 3rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 
    0 25px 50px rgba(0, 48, 87, 0.08),
    0 12px 25px rgba(0, 0, 0, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    inset 0 -1px 0 rgba(255, 255, 255, 0.3);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

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

.featured-content:hover::before {
  left: 100%;
}

.featured-content:hover {
  transform: translateY(-8px);
  box-shadow: 
    0 35px 70px rgba(0, 48, 87, 0.12),
    0 20px 40px rgba(0, 0, 0, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    inset 0 -1px 0 rgba(255, 255, 255, 0.4);
}

.featured-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1.5rem;
  line-height: 1.2;
  position: relative;
}

.featured-content h2::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--secondary));
  border-radius: 2px;
}

.featured-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.featured-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.featured-list li {
  padding: 0.75rem 0;
  position: relative;
  padding-left: 2rem;
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.6;
  transition: all 0.3s ease;
}

.featured-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0.75rem;
  width: 1.5rem;
  height: 1.5rem;
  background: linear-gradient(135deg, var(--accent), var(--secondary));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: bold;
  transition: all 0.3s ease;
}

.featured-list li:hover {
  color: var(--primary);
  transform: translateX(8px);
}

.featured-list li:hover::before {
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.featured-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 
    0 20px 40px rgba(0, 48, 87, 0.1),
    0 8px 24px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.featured-image:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 
    0 30px 60px rgba(0, 48, 87, 0.15),
    0 12px 30px rgba(0, 0, 0, 0.08);
}

.featured-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

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

/* Featured Project Responsive Design */
@media (max-width: 768px) {
  .featured-project {
    padding: 4rem 0;
  }
  
  .featured-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .featured-content {
    padding: 2rem;
  }
  
  .featured-content h2 {
    font-size: 2rem;
  }

  .featured-list li {
    font-size: 1rem;
  }
}

/* Floating Elements - Apple/J.P. Morgan Hybrid Style */
.floating-card {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 20px;
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  box-shadow: 0 12px 40px rgba(0, 48, 87, 0.08), 
              0 4px 16px rgba(0, 0, 0, 0.04),
              inset 0 1px 0 rgba(255, 255, 255, 0.6);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.floating-card::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.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.floating-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
}

.floating-card:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 25px 50px rgba(0, 48, 87, 0.12), 
              0 8px 24px rgba(0, 0, 0, 0.06),
              inset 0 1px 0 rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(0, 110, 170, 0.3);
  background: rgba(255, 255, 255, 0.8);
}

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

.floating-card-small {
  background: rgba(255, 255, 255, 0.95) !important;
  border: 1px solid rgba(0, 48, 87, 0.08) !important;
  border-radius: 20px !important;
  backdrop-filter: blur(25px) !important;
  -webkit-backdrop-filter: blur(25px) !important;
  box-shadow: 0 12px 40px rgba(0, 48, 87, 0.12), 
              0 4px 16px rgba(0, 0, 0, 0.04),
              inset 0 1px 0 rgba(255, 255, 255, 0.7) !important;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
  position: relative !important;
  overflow: hidden !important;
  padding: 2.5rem 2rem !important;
  text-align: center !important;
  display: block !important;
  min-height: 200px;
}

.floating-card-small::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.7), transparent);
}



.floating-element {
  position: relative;
  margin-top: -100px;
  z-index: 10;
  background-color: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(0, 48, 87, 0.1);
  border-radius: 16px;
  padding: 2rem;
  backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px rgba(0, 48, 87, 0.12);
}

.floating-element-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  position: relative;
  z-index: 10;
  margin: 3rem auto;
  padding: 0 2rem;
  max-width: 1200px;
  container-type: inline-size;
}

.floating-card-small::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #00539C, #004C97);
  transform: translateX(-100%);
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.floating-card-small:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 60px rgba(0, 48, 87, 0.18),
              0 8px 24px rgba(0, 0, 0, 0.06);
  border-color: rgba(0, 83, 156, 0.15);
  background: rgba(255, 255, 255, 0.98);
}

.floating-card-small:hover::before {
  transform: translateX(0);
}

.floating-card-small h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #00305F;
  font-weight: 500;
}

.floating-card-small p {
  font-size: 0.95rem;
  margin-bottom: 0;
  color: #666;
  line-height: 1.6;
}

.featured-news {
  position: relative;
  z-index: 5;
  margin-top: -60px;
  background-color: var(--light);
  padding: 6rem 0 4rem;
}

.featured-news .container {
  position: relative;
}

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

.news-card {
  background-color: var(--white);
  border: 1px solid #e6e6e6;
  overflow: hidden;
}

.news-content {
  padding: 1.5rem;
}

.news-card h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.news-card p {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 1rem;
}

.quick-links {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.quick-link {
  width: 40px;
  height: 40px;
  background-color: var(--white);
  border: 1px solid #e6e6e6;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  transition: all 0.3s ease;
}

.quick-link:hover {
  background-color: var(--primary);
  color: var(--white);
}

@media (max-width: 1200px) {
  .hero-content {
    max-width: 55%;
  }
}

@media (max-width: 992px) {
  .hero-content {
    max-width: 60%;
  }
  
  .sophisticated-overlay {
    width: 35%;
  }
}

@media (max-width: 768px) {
  .hero-content {
    max-width: 100%;
    padding-right: 2rem;
  }
  
  .hero {
    padding: 5rem 0 3rem;
  }
  
  .sophisticated-overlay {
    width: 100%;
    height: 100%;
    opacity: 0.15;
    z-index: 1;
  }
  
  .overlay-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .floating-element-container {
    grid-template-columns: 1fr;
    margin-top: -40px;
  }
  
  .floating-element {
    margin-top: -50px;
  }
  
  .featured-news {
    margin-top: -30px;
  }
  
  .quick-links {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 4rem 0 2rem;
  }
  
  .hero h1 {
    font-size: calc(1.5rem + 1vw);
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .hero-buttons .btn {
    width: 100%;
    margin-bottom: 1rem;
  }
}

/* ========================================
   J.P. MORGAN STYLE CAPABILITIES CAROUSEL
   ======================================== */

.capabilities-carousel {
  padding: 160px 0 60px 0;
  position: relative;
  overflow: hidden;
  min-height: 600px;
}

.capabilities-carousel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(99, 102, 241, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

/* Background image container */
.carousel-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 55%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
  border-radius: 0 20px 20px 0;
}

.carousel-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.carousel-layout {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
  min-height: 600px;
  padding: 0;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
}


/* Carousel Content Area */
.carousel-content-area {
  display: flex;
  flex-direction: column;
  padding: 1rem 0;
  width: 100%;
}

.carousel-header {
  margin-bottom: 3rem;
}

.carousel-title {
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--primary);
  line-height: 1.2;
  margin: 0;
  position: relative;
  text-align: left;
}

.carousel-title::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--secondary));
  border-radius: 2px;
}

/* Carousel Container */
.capabilities-carousel-container {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  max-width: 65%;
  margin-left: auto;
  margin-right: 0;
  box-shadow: 
    0 20px 40px rgba(0, 48, 87, 0.08),
    0 8px 24px rgba(0, 0, 0, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.capabilities-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.capabilities-slide {
  min-width: 100%;
  opacity: 0;
  transition: opacity 0.6s ease;
  padding: 3rem;
}

.capabilities-slide.active {
  opacity: 1;
}

.capabilities-carousel-container {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  max-width: 65%;
  margin-left: auto;
  margin-right: 0;
  box-shadow: 
    0 20px 40px rgba(0, 48, 87, 0.08),
    0 8px 24px rgba(0, 0, 0, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.capabilities-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.capabilities-slide {
  min-width: 100%;
  opacity: 0;
  transition: opacity 0.6s ease;
  padding: 3rem;
}

.capabilities-slide.active {
  opacity: 1;
}

.capability-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.capability-tile {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 320px;
  width: 100%;
}

.capability-tile::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.02), rgba(99, 102, 241, 0.02));
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.capability-tile:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 
    0 20px 40px rgba(0, 48, 87, 0.12),
    0 8px 24px rgba(0, 0, 0, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
  border-color: rgba(59, 130, 246, 0.2);
}

.capability-tile:hover::before {
  opacity: 1;
}

.capability-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(99, 102, 241, 0.1));
  border-radius: 16px;
  border: 1px solid rgba(59, 130, 246, 0.2);
  transition: all 0.3s ease;
}

.capability-tile:hover .capability-icon {
  transform: scale(1.1);
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(99, 102, 241, 0.15));
  box-shadow: 0 8px 16px rgba(59, 130, 246, 0.2);
}

.capability-favicon {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.capability-icon i {
  font-size: 1.5rem;
  color: var(--primary);
  transition: all 0.3s ease;
}

.capability-tile:hover .capability-icon i {
  color: var(--accent);
  transform: scale(1.1);
}

.capability-tile h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary);
  margin: 0 0 1rem 0;
  line-height: 1.3;
}

.capability-tile p {
  color: var(--text);
  line-height: 1.6;
  margin: 0 0 1.5rem 0;
  font-size: 0.95rem;
}

.capability-link {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  position: relative;
}

.capability-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--secondary));
  transition: width 0.3s ease;
}

.capability-link:hover::after {
  width: calc(100% - 1rem);
}

.capability-link:hover {
  color: var(--secondary);
  transform: translateX(4px);
}

.capability-link i {
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.capability-link:hover i {
  transform: translateX(4px);
}

/* Navigation Controls */
.carousel-navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
  position: relative;
  z-index: 10;
}

.carousel-nav-btn {
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  color: var(--primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 
    0 4px 16px rgba(0, 48, 87, 0.06),
    0 2px 8px rgba(0, 0, 0, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.carousel-nav-btn:hover {
  transform: scale(1.1);
  background: var(--accent);
  color: white;
  box-shadow: 
    0 8px 24px rgba(59, 130, 246, 0.3),
    0 4px 12px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.carousel-nav-btn:active {
  transform: scale(0.95);
}

.carousel-nav-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none !important;
}

.carousel-indicators {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.indicator {
  width: 12px;
  height: 12px;
  border: none;
  border-radius: 50%;
  background: rgba(0, 48, 87, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.indicator.active {
  background: var(--accent);
  transform: scale(1.2);
  box-shadow: 
    0 0 0 4px rgba(59, 130, 246, 0.2),
    0 4px 8px rgba(59, 130, 246, 0.3);
}

.indicator:hover:not(.active) {
  background: rgba(0, 48, 87, 0.5);
  transform: scale(1.1);
}

/* Responsive Design for Capabilities Carousel */
@media (max-width: 1024px) {
  .carousel-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .carousel-image-area {
    min-height: 300px;
    order: 2;
  }
  
  .carousel-content-area {
    order: 1;
  }
  
  .carousel-title {
    font-size: 2rem;
    text-align: center;
  }
  
  .capability-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .capabilities-slide {
    padding: 2rem;
  }
}

@media (max-width: 768px) {
  .capabilities-carousel {
    padding: 60px 0;
  }
  
  .carousel-title {
    font-size: 1.75rem;
  }
  
  .carousel-header {
    margin-bottom: 2rem;
  }
  
  .capabilities-slide {
    padding: 1.5rem;
  }
  
  .capability-tile {
    padding: 1.5rem;
  }
  
  .carousel-navigation {
    padding: 1.5rem;
    gap: 1rem;
  }
  
  .carousel-nav-btn {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 480px) {
  .carousel-image-area {
    min-height: 250px;
  }
  
  .carousel-title {
    font-size: 1.5rem;
  }
  
  .capabilities-slide {
    padding: 1rem;
  }
  
  .capability-tile {
    padding: 1.25rem;
  }
  
  .capability-tile h3 {
    font-size: 1.1rem;
  }
  
  .capability-tile p {
    font-size: 0.9rem;
  }
}

/* Trusted Brands Carousel Styles */
.trusted-brands {
    background: linear-gradient(135deg, rgba(30, 50, 100, 0.15), rgba(20, 40, 80, 0.1));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px 0;
    margin: 20px 0 80px 0;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.trusted-brands::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(74, 144, 226, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.trusted-brands-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.trusted-brands-title {
    font-size: 2.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.trusted-brands-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 40px;
    font-weight: 400;
}

.logo-carousel {
    overflow: hidden;
    position: relative;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-radius: 20px;
    padding: 20px 0;
    margin: 0 auto;
    max-width: 1200px;
    width: 90%;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        0 4px 16px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.logo-carousel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, 
        rgba(255, 255, 255, 0.8) 0%, 
        transparent 10%, 
        transparent 90%, 
        rgba(255, 255, 255, 0.8) 100%);
    pointer-events: none;
    z-index: 1;
}

.logo-track {
    display: flex;
    animation: scroll 30s linear infinite;
    width: calc(200%);
    will-change: transform;
}

.logo-item {
    flex: 0 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 200px;
    height: 100px;
}

.logo-item img {
    max-height: 80px;
    max-width: 160px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: opacity(0.85);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
}

.logo-carousel:hover .logo-track {
    animation-play-state: paused;
}

.logo-item:hover img {
    filter: opacity(1);
    transform: scale(1.05);
}

@keyframes scroll {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Responsive Design for Trusted Brands */
@media (max-width: 768px) {
    .trusted-brands {
        padding: 40px 0;
        margin: 40px 0;
    }
    
    .trusted-brands-title {
        font-size: 1.8rem;
    }
    
    .trusted-brands-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .logo-carousel {
        margin: 0 10px;
        padding: 20px 0;
    }
    
    .logo-item {
        min-width: 140px;
        padding: 0 20px;
        height: 60px;
    }
    
    .logo-item img {
        max-height: 45px;
        max-width: 100px;
    }
    
    .logo-track {
        animation-duration: 25s;
    }
}

@media (max-width: 480px) {
    .trusted-brands {
        padding: 30px 0;
        margin: 30px 0;
    }
    
    .trusted-brands-title {
        font-size: 1.6rem;
    }
    
    .logo-item {
        min-width: 120px;
        padding: 0 15px;
        height: 50px;
    }
    
    .logo-item img {
        max-height: 35px;
        max-width: 80px;
    }
}

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

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

.footer-col h3 {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
  position: relative;
  padding-bottom: 1rem;
}

.footer-col h3:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: var(--accent);
}

.footer-col p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
}

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

.footer-col a {
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
}

.footer-col a:hover {
  color: var(--accent);
  padding-left: 5px;
}

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

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: all 0.3s ease;
  color: var(--white);
}

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

.copyright {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

/* ========================================
   MOBILE OPTIMIZATIONS & RESPONSIVE DESIGN
   ======================================== */

/* Mobile Navigation Toggle */
.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--primary);
  cursor: pointer;
  padding: 1rem;
  z-index: 1002;
}

.mobile-nav-toggle:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 48, 87, 0.95);
  backdrop-filter: blur(20px);
  z-index: 1001;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
  opacity: 1;
}

.mobile-menu {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 90%;
  max-width: 400px;
}

.mobile-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-menu li {
  margin: 1.5rem 0;
}

.mobile-menu a {
  color: white;
  font-size: 1.2rem;
  font-weight: 500;
  text-decoration: none;
  display: block;
  padding: 1rem;
  border-radius: 12px;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.mobile-menu a:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/* Touch-friendly button sizing */
.btn {
  min-height: 44px;
  min-width: 44px;
}

/* Responsive Typography */
@media (max-width: 768px) {
  :root {
    font-size: 14px;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  h3 {
    font-size: 1.5rem;
  }
  
  .section-title {
    font-size: 1.75rem;
    text-align: center;
  }
  
  .section-subtitle {
    font-size: 1rem;
    text-align: center;
  }
}

/* Tablet Styles */
@media (max-width: 1024px) {
  .container {
    padding: 0 1.5rem;
  }
  
  .floating-element-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  /* Header & Navigation */
  header {
    padding: 0;
  }
  
  header .container {
    justify-content: space-between;
    padding: 0;
  }
  
  .logo {
    min-width: auto;
    padding: 1rem;
    border-right: none;
    flex: 1;
  }
  
  .logo img {
    height: 35px;
  }
  
  .logo h1 {
    font-size: 1.3rem;
  }
  
  .main-nav {
    display: none;
  }
  
  .mobile-nav-toggle {
    display: block;
  }
  
  .mobile-menu-overlay {
    display: block;
  }
  
  /* Hero Section */
  .hero {
    min-height: 60vh;
    padding: 8rem 0 4rem;
  }
  
  /* Two-column hero becomes single column on mobile */
  .hero-two-column {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .hero-left {
    padding-right: 0;
    order: 1;
  }
  
  .hero-left::before {
    display: none;
  }
  
  .hero-right {
    padding-left: 0;
    order: 2;
  }
  
  .hero-content {
    text-align: center;
    max-width: 100%;
  }
  
  .hero h1 {
    font-size: 2.2rem;
    line-height: 1.2;
    margin-bottom: 1rem;
  }
  
  .hero p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
  
  .hero-buttons .btn {
    width: 100%;
    max-width: 280px;
  }
  
  /* Container */
  .container {
    padding: 0 1rem;
  }
  
  /* Floating Elements */
  .floating-element-container {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: -40px;
    padding: 0 0.5rem;
  }
  
  .floating-card-small {
    padding: 1.5rem 1rem;
  }
  
  .floating-card-small h3 {
    font-size: 1.1rem;
  }
  
  .floating-card-small p {
    font-size: 0.85rem;
  }
  
  /* Services Grid */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .service-card {
    padding: 1.5rem;
  }
  
  .service-card h3 {
    font-size: 1.2rem;
  }
  
  .service-card p {
    font-size: 0.9rem;
  }
  
  /* News Grid */
  .news-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  /* Sections */
  section {
    padding: 3rem 0;
  }
  
  .featured-news {
    padding: 4rem 0 3rem;
    margin-top: -30px;
  }
  
  /* Quick Links - Hide on mobile */
  .quick-links {
    display: none;
  }
  
  /* Buttons */
  .btn {
    padding: 0.875rem 1.5rem;
    font-size: 0.9rem;
  }
  
  /* Dropdown - Mobile Friendly */
  .dropdown-content {
    position: static;
    width: 100%;
    transform: none;
    box-shadow: none;
    background: rgba(0, 48, 87, 0.1);
    backdrop-filter: none;
    border: none;
    margin-top: 0.5rem;
  }
  
  .dropdown-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1rem;
  }
  
  .dropdown-section {
    padding: 1rem;
  }
  
  .dropdown-section h4 {
    font-size: 1rem;
  }
  
  .dropdown-section ul li {
    margin: 0.5rem 0;
  }
  
  .dropdown-section a {
    font-size: 0.9rem;
    padding: 0.5rem 0;
  }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
  .container {
    padding: 0 0.75rem;
  }
  
  .hero {
    padding: 6rem 0 3rem;
  }
  
  .hero h1 {
    font-size: 1.8rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .logo {
    padding: 0.75rem;
  }
  
  .logo img {
    height: 30px;
  }
  
  .logo h1 {
    font-size: 1.1rem;
  }
  
  .floating-card-small {
    padding: 1.25rem 0.75rem;
  }
  
  .service-card {
    padding: 1.25rem;
  }
  
  section {
    padding: 2.5rem 0;
  }
  
  .btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.85rem;
  }
}

/* Landscape Mobile Styles */
@media (max-width: 768px) and (orientation: landscape) {
  .hero {
    min-height: 80vh;
    padding: 6rem 0 3rem;
  }
  
  .floating-element-container {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
  /* Remove hover effects on touch devices */
  .floating-card:hover,
  .floating-card-small:hover,
  .service-card:hover {
    transform: none;
    box-shadow: inherit;
  }
  
  /* Make interactive elements more touch-friendly */
  .btn,
  .main-nav a,
  .mobile-menu a {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  /* Increase tap targets */
  .mobile-nav-toggle {
    min-width: 44px;
    min-height: 44px;
  }
}

/* High DPI Display Optimizations */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .logo img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .floating-card:hover,
  .floating-card-small:hover,
  .service-card:hover {
    transform: none;
  }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
  :root {
    --light: #1a1a1a;
    --white: #2d2d2d;
    --text: #e0e0e0;
    --muted: #a0a0a0;
  }
  
  body {
    background-color: #1a1a1a;
    color: var(--text);
  }
  
  .floating-card,
  .floating-card-small {
    background: rgba(45, 45, 45, 0.8);
    border-color: rgba(255, 255, 255, 0.1);
  }
  
  header {
    background: rgba(26, 26, 26, 0.9);
    border-bottom-color: rgba(255, 255, 255, 0.1);
  }
}

/* About Page Styles */
.page-header {
  background: linear-gradient(var(--gradient-start), var(--gradient-end)), url('../images/page-header-bg.jpg') center/cover no-repeat;
  color: var(--white);
  padding: 8rem 0 4rem;
  text-align: center;
  margin-top: 80px;
}

.page-header h1 {
  color: var(--white);
  font-size: 3rem;
}

.breadcrumbs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.breadcrumbs a {
  color: rgba(255, 255, 255, 0.8);
}

.breadcrumbs .separator {
  color: rgba(255, 255, 255, 0.5);
}

.breadcrumbs .current {
  color: var(--white);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .hero h1 {
    font-size: 2.75rem;
  }
  
  .hero p {
    font-size: 1.2rem;
  }
  
  .services-grid, .why-us-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  header .container {
    padding: 1rem;
  }
  
  .main-nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
  }
  
  .main-nav.active {
    display: flex;
  }
  
  .main-nav li {
    margin: 0;
    width: 100%;
  }
  
  .main-nav a {
    display: block;
    padding: 1rem 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }
  
  .dropdown-content {
    position: static;
    box-shadow: none;
    margin-top: 0;
    display: none;
  }
  
  .dropdown-content a {
    padding-left: 3rem;
  }
  
  .dropdown.active .dropdown-content {
    display: block;
  }
  
  .mobile-nav-toggle {
    display: flex;
  }
  
  .hero {
    padding: 8rem 0 6rem;
  }
  
  .hero h1 {
    font-size: 2.25rem;
  }
  
  .hero p {
    font-size: 1.1rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
  }
  
  .services-grid, .why-us-grid, .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .service-card, .why-us-item {
    padding: 2rem 1.5rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
}

/* Solutions Page Specific Styles */
.solutions-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, rgba(245, 245, 245, 0.4) 0%, rgba(255, 255, 255, 0.6) 100%);
  position: relative;
}

.solutions-section:nth-child(even) {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.6) 0%, rgba(245, 245, 245, 0.4) 100%);
}

.service-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.service-list li {
  color: var(--text);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  line-height: 1.4;
  font-family: Arial, Helvetica, sans-serif;
}

.floating-card-small .service-list {
  margin-bottom: 2rem;
}

.floating-card-small .btn {
  margin-top: auto;
  font-size: 0.85rem;
  padding: 0.8rem 1.5rem;
}

.creative-solutions {
  grid-template-columns: repeat(2, 1fr);
  max-width: 900px;
  margin: 0 auto;
}

/* Mobile adjustments for solutions */
@media screen and (max-width: 768px) {
  .solutions-section {
    padding: 3rem 0;
  }
  
  .creative-solutions {
    grid-template-columns: 1fr;
  }
  
  .floating-card-small {
    padding: 2rem 1.5rem;
  }
  
  .service-list li {
    font-size: 0.85rem;
  }
}

/*===================================*/
/* Services Reference Section */
/*===================================*/

.services-reference {
  padding: 6rem 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  position: relative;
}

.services-reference::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 80%, rgba(0, 48, 87, 0.05) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(0, 76, 151, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.reference-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 24px;
  padding: 3rem;
  box-shadow: 
    0 25px 50px rgba(0, 48, 87, 0.08),
    0 12px 24px rgba(0, 0, 0, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.reference-card::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;
  opacity: 0;
}

.reference-card:hover::before {
  left: 100%;
  opacity: 1;
}

.reference-card:hover {
  transform: translateY(-5px);
  box-shadow: 
    0 35px 70px rgba(0, 48, 87, 0.12),
    0 20px 40px rgba(0, 0, 0, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.services-reference .section-title {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
  position: relative;
  text-align: center;
}

.services-reference .section-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--secondary), var(--accent));
  border-radius: 2px;
}

.services-reference .subtitle {
  font-size: 1.1rem;
  color: var(--muted);
  font-weight: 400;
  font-style: italic;
}

.services-heading {
  font-size: 1.8rem;
  color: var(--secondary);
  text-align: center;
  margin: 2rem 0 3rem 0;
  font-weight: 500;
}

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

.service-column {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.service-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(0, 48, 87, 0.1);
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

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

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

.service-item:hover {
  transform: translateX(8px);
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(0, 110, 170, 0.2);
  box-shadow: 
    0 8px 25px rgba(0, 48, 87, 0.08),
    0 4px 12px rgba(0, 0, 0, 0.04);
}

.service-item i {
  font-size: 1.2rem;
  color: var(--accent);
  width: 24px;
  text-align: center;
  transition: all 0.3s ease;
}

.service-item:hover i {
  color: var(--secondary);
  transform: scale(1.1);
}

.service-item span {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: var(--text);
  font-weight: 500;
  line-height: 1.4;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .services-reference {
    padding: 4rem 0;
  }
  
  .reference-card {
    padding: 2rem;
    margin: 0 1rem;
  }
  
  .services-reference .section-title {
    font-size: 2rem;
  }
  
  .services-heading {
    font-size: 1.5rem;
    margin: 1.5rem 0 2rem 0;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .service-item {
    padding: 0.875rem 1.25rem;
  }
  
  .service-item span {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .reference-card {
    padding: 1.5rem;
  }
  
  .services-reference .section-title {
    font-size: 1.75rem;
  }
  
  .service-item {
    padding: 0.75rem 1rem;
    gap: 0.75rem;
  }
  
  .service-item i {
    font-size: 1.1rem;
  }
  
  .service-item span {
    font-size: 0.9rem;
  }
}

/* Dark mode adjustments */
@media (prefers-color-scheme: dark) {
  .services-reference {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  }
  
  .reference-card {
    background: rgba(51, 65, 85, 0.8);
    border-color: rgba(148, 163, 184, 0.2);
  }
  
  .service-item {
    background: rgba(51, 65, 85, 0.6);
    border-color: rgba(148, 163, 184, 0.1);
  }
  
  .service-item:hover {
    background: rgba(71, 85, 105, 0.8);
    border-color: rgba(0, 110, 170, 0.3);
  }
  
  .service-item span {
    color: #f1f5f9;
  }
}

/*===================================*/
/* Service Offerings Styles */
/*===================================*/
.service-offerings {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.9), rgba(255, 255, 255, 0.95));
}

.offerings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.offering-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(0, 48, 87, 0.08);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 8px 32px rgba(0, 48, 87, 0.08);
    position: relative;
    overflow: hidden;
}

.offering-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 3px;
    background: linear-gradient(135deg, #00539C, #004C97);
    transition: left 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.offering-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 48, 87, 0.15);
}

.offering-card:hover::before {
    left: 0;
}

.offering-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00539C, #004C97);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 25px rgba(0, 83, 156, 0.25);
}

.offering-card h3 {
    font-size: 1.4rem;
    color: #00305F;
    margin-bottom: 1rem;
    font-weight: 500;
}

.offering-card p {
    color: #666;
    line-height: 1.6;
}

/*===================================*/
/* Why Choose Service Styles */
/*===================================*/
.why-choose-service {
    padding: 6rem 0;
    background-color: white;
}

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

.feature-item {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(0, 48, 87, 0.08);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 8px 32px rgba(0, 48, 87, 0.08);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 48, 87, 0.12);
}

.feature-item h3 {
    color: #00539C;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 500;
}

.feature-item p {
    color: #666;
    line-height: 1.6;
}

/*===================================*/
/* Case Studies Styles */
/*===================================*/
.case-studies {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.9), rgba(255, 255, 255, 0.95));
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.case-study {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(0, 48, 87, 0.08);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 8px 32px rgba(0, 48, 87, 0.08);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.case-study::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #00539C, #004C97);
}

.case-study:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 48, 87, 0.12);
}

.case-meta {
    color: #00539C;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.case-study h3 {
    color: #00305F;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.case-study p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.case-results {
    display: flex;
    justify-content: space-around;
    margin-top: 2rem;
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 48, 87, 0.1);
}

.result-item {
    flex: 1;
}

.result-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 700;
    color: #00539C;
    margin-bottom: 0.5rem;
    font-family: 'Georgia', serif;
}

.result-text {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
}

/* Mobile Responsive for Service Sections */
@media (max-width: 768px) {
    .offerings-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .case-studies-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .case-results {
        flex-direction: column;
        gap: 1rem;
    }
    
    .offering-card {
        padding: 2rem;
    }
    
    .offering-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

/* Dark mode adjustments for service sections */
@media (prefers-color-scheme: dark) {
    .service-offerings {
        background: linear-gradient(135deg, rgba(30, 41, 59, 0.8), rgba(51, 65, 85, 0.9));
    }
    
    .case-studies {
        background: linear-gradient(135deg, rgba(30, 41, 59, 0.8), rgba(51, 65, 85, 0.9));
    }
    
    .offering-card,
    .feature-item,
    .case-study {
        background: rgba(30, 41, 59, 0.95);
        border: 1px solid rgba(71, 85, 105, 0.3);
    }
    
    .why-choose-service {
        background-color: #1e293b;
    }
    
    .offering-card h3,
    .feature-item h3,
    .case-study h3 {
        color: #e2e8f0;
    }
    
    .offering-card p,
    .feature-item p,
    .case-study p,
    .result-text {
        color: #cbd5e1;
    }
    
    .case-meta {
        color: #60a5fa;
    }
}

/*===================================*/
/* Feature Sections Styles */
/*===================================*/
.feature-sections {
    padding: 0;
}

.feature-section {
    padding: 8rem 0;
    position: relative;
}

.feature-section:nth-child(even) {
    background: linear-gradient(135deg, rgba(245, 245, 245, 0.8), rgba(255, 255, 255, 0.9));
}

.feature-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.feature-section:nth-child(even) .feature-content {
    grid-template-columns: 1fr 1fr;
}

.feature-text {
    max-width: 500px;
}

.feature-section:nth-child(even) .feature-text {
    order: 2;
}

.feature-visual {
    position: relative;
    min-height: 400px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(0, 48, 87, 0.08);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(0, 48, 87, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-section:nth-child(even) .feature-visual {
    order: 1;
}

.feature-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #00539C, #004C97);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    box-shadow: 0 15px 35px rgba(0, 83, 156, 0.3);
}

.feature-title {
    font-size: 2.5rem;
    color: #00305F;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.feature-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #333;
    margin-bottom: 2rem;
}

.feature-stats {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #00539C;
    font-family: 'Georgia', serif;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.5rem;
}

/*===================================*/
/* Getting Started Section Styles */
/*===================================*/
.getting-started-stripe {
    padding: 8rem 0;
    background-color: white;
}

.getting-started-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.complexity-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(0, 48, 87, 0.08);
    border-radius: 24px;
    padding: 3rem;
    text-align: left;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 8px 32px rgba(0, 48, 87, 0.08);
    position: relative;
    overflow: hidden;
}

.complexity-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #00539C, #004C97);
    transform: translateX(-100%);
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.complexity-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 48, 87, 0.15);
}

.complexity-card:hover::before {
    transform: translateX(0);
}

.complexity-badge {
    display: inline-block;
    background: linear-gradient(135deg, #00539C, #004C97);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.complexity-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #00305F;
}

.complexity-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.complexity-card .btn {
    width: 100%;
    justify-content: center;
}

/* Mobile Responsive for Feature Sections */
@media (max-width: 768px) {
    .feature-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .feature-section:nth-child(even) .feature-content {
        grid-template-columns: 1fr;
    }
    
    .feature-section:nth-child(even) .feature-text {
        order: 1;
    }
    
    .feature-section:nth-child(even) .feature-visual {
        order: 2;
    }
    
    .feature-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .getting-started-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .feature-title {
        font-size: 2rem;
    }
    
    .feature-visual {
        min-height: 300px;
        padding: 2rem;
    }
    
    .feature-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
}

/* Dark mode adjustments for feature sections */
@media (prefers-color-scheme: dark) {
    .feature-section:nth-child(even) {
        background: linear-gradient(135deg, rgba(30, 41, 59, 0.8), rgba(51, 65, 85, 0.9));
    }
    
    .feature-visual {
        background: rgba(30, 41, 59, 0.95);
        border: 1px solid rgba(71, 85, 105, 0.3);
    }
    
    .complexity-card {
        background: rgba(30, 41, 59, 0.95);
        border: 1px solid rgba(71, 85, 105, 0.3);
    }
    
    .getting-started-stripe {
        background-color: #1e293b;
    }
    
    .feature-title {
        color: #e2e8f0;
    }
    
    .feature-description {
        color: #cbd5e1;
    }
    
    .complexity-card h3 {
        color: #e2e8f0;
    }
    
    .complexity-card p {
        color: #94a3b8;
    }
}

/* === Service Intro Section === */
.service-intro {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.service-intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(0, 83, 156, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(0, 48, 87, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.service-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.service-intro-single {
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.service-intro-single .service-intro-content {
    max-width: 800px;
    text-align: center;
}

.service-intro-content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-radius: 24px;
    padding: 3rem;
    border: 1px solid rgba(0, 48, 87, 0.08);
    box-shadow: 0 12px 40px rgba(0, 48, 87, 0.12),
                0 4px 16px rgba(0, 0, 0, 0.04),
                inset 0 1px 0 rgba(255, 255, 255, 0.7);
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(0);
}

.service-intro-content:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 48, 87, 0.18),
                0 8px 24px rgba(0, 0, 0, 0.08),
                inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.service-intro-content:hover::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.1) 50%, 
        transparent 100%);
    animation: shimmer 1.5s ease-in-out;
    pointer-events: none;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.service-intro-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #00539C, #004C97);
}

.service-intro-content h2 {
    font-size: 2.5rem;
    font-weight: 500;
    color: #00305F;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.service-intro-content p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-intro-content p:last-of-type {
    margin-bottom: 2rem;
}

.service-intro-image {
    position: relative;
    z-index: 1;
}

.service-intro-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 48, 87, 0.15);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .service-intro-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-intro-content {
        padding: 2rem;
    }
    
    .service-intro-content h2 {
        font-size: 2rem;
    }
    
    .service-intro-content p {
        font-size: 1rem;
    }
}
