/* MODERN ATTRACTIVE WEBSITE STYLES */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&family=Roboto:wght@300;400;500;700&display=swap');

:root {
    /* Modern Color Palette */
    --primary: #0059D4;
    --primary-dark: #0047B3;
    --primary-light: #E3F2FD;
    --secondary: #CFE8FF;
    --accent: #FFC107;
    --accent-dark: #FF8F00;
    --text-dark: #1A1A1A;
    --text-light: #666666;
    --text-muted: #999999;
    --bg-light: #FFFFFF;
    --bg-gray: #F8FAFC;
    --bg-dark: #1A1A1A;
    --border-light: #E5E7EB;
    --border-dark: #D1D5DB;
    
    /* Modern Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    
    /* Modern Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    
    /* Modern Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;
}

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

body {
    font-family: 'Montserrat', 'Roboto', sans-serif;
    font-weight: 400;
  line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
  overflow-x: hidden;
}

/* Modern Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
  line-height: 1.2;
    margin-bottom: var(--space-md);
    color: var(--text-dark);
}

h1 { font-size: 3.5rem; font-weight: 800; }
h2 { font-size: 2.5rem; font-weight: 700; }
h3 { font-size: 2rem; font-weight: 600; }
h4 { font-size: 1.5rem; font-weight: 600; }
h5 { font-size: 1.25rem; font-weight: 500; }
h6 { font-size: 1.125rem; font-weight: 500; }

p {
  font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: var(--space-md);
}

/* Modern Navbar */
.navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
    padding: var(--space-sm) 0;
    transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary) !important;
}

.navbar-brand img {
    height: 60px;
    width: auto;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--text-dark) !important;
    padding: var(--space-sm) var(--space-md) !important;
    margin: 0 var(--space-xs);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
  position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary) !important;
    background: var(--primary-light);
    transform: translateY(-2px);
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

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

/* Modern Buttons */
.btn {
  font-weight: 600;
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-lg);
  border: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
    gap: var(--space-xs);
}

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

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

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: white;
  transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

.btn-outline-primary:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-warning {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: var(--text-dark);
    box-shadow: var(--shadow-md);
}

.btn-warning:hover {
    background: linear-gradient(135deg, var(--accent-dark), var(--accent));
    color: var(--text-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-lg {
    padding: var(--space-md) var(--space-xl);
    font-size: 1.125rem;
}

/* Modern Hero Section - Brand Compliant Design */
.hero-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  position: relative;
  overflow: hidden;
    min-height: 50vh; /* Much smaller height to eliminate gap */
    display: flex;
    align-items: center;
    padding: 0; /* Remove extra padding */
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 193, 7, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(207, 232, 255, 0.1) 0%, transparent 50%);
    animation: float 8s ease-in-out infinite;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
  left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="hero-pattern" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="10" cy="10" r="0.5" fill="rgba(255,255,255,0.03)"/><circle cx="40" cy="40" r="0.5" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23hero-pattern)"/></svg>');
    opacity: 0.3;
}

.hero-background {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
    clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.hero-headline {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: var(--space-sm); /* Further reduced margin */
    line-height: 1.1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 1s ease-out 0.3s both;
    margin-top: 110px;
}

.hero-subheadline {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-md); /* Further reduced margin */
    max-width: 600px;
    line-height: 1.6;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-cta {
    margin-bottom: var(--space-lg); /* Further reduced margin */
    animation: fadeInUp 1s ease-out 0.9s both;
}

.hero-cta .btn {
    padding: var(--space-md) var(--space-xl);
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.hero-cta .btn-primary {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: var(--text-dark);
    border: none;
}

.hero-cta .btn-primary:hover {
    background: linear-gradient(135deg, var(--accent-dark), var(--accent));
  transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.hero-cta .btn-outline-primary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.hero-cta .btn-outline-primary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.hero-stats {
    margin-top: var(--space-md); /* Further reduced margin */
    animation: fadeInUp 1s ease-out 1.2s both;
}

.stat-item {
    text-align: center;
    padding: var(--space-md); /* Reduced padding */
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

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

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    background: rgba(255, 255, 255, 0.2);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent);
    display: block;
    margin-bottom: var(--space-xs);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.hero-image {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeInUp 1s ease-out 1.5s both;
}

.hero-image::before {
    content: '';
  position: absolute;
  top: 0;
  left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(207, 232, 255, 0.1));
    border-radius: var(--radius-xl);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-image img {
    position: relative;
    z-index: 2;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    max-width: 100%;
    height: auto;
}

/* Hero Section Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes shimmer {
    0%, 100% { opacity: 0.3; transform: translateX(0); }
    50% { opacity: 0.5; transform: translateX(10px); }
}

@keyframes expandWidth {
    from { width: 0; }
    to { width: 100px; }
}

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

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

/* Hero Section Responsive Design */
@media (max-width: 768px) {
    .hero-headline {
        font-size: 2.5rem;
    }
    
    .hero-subheadline {
        font-size: 1.1rem;
}

.hero-cta {
        flex-direction: column;
        align-items: stretch;
    }
    
    .hero-cta .btn {
        width: 100%;
        margin-bottom: var(--space-sm);
    }
    
    .hero-stats .row {
        text-align: center;
}

.stat-item {
        margin-bottom: var(--space-md);
    }
    
    .hero-image {
        height: 300px;
        margin-top: var(--space-lg); /* Reduced margin */
    }
    
    .hero-visual-placeholder {
        margin-top: 0; /* Reset margin on mobile */
        padding: var(--space-md); /* Reduced padding */
    }
    
    .hero-icon {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
    }
    
    .hero-visual-placeholder h4 {
        font-size: 1.25rem;
    }
    
    .hero-visual-placeholder p {
        font-size: 0.9rem;
    }
    
    .feature-badge {
        padding: var(--space-xs) var(--space-sm);
    }
    
    .feature-badge span {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .hero-headline {
        font-size: 2rem;
    }
    
    .hero-subheadline {
        font-size: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .hero-image {
        height: 250px;
    }
    
    .hero-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    .hero-visual-placeholder h4 {
        font-size: 1.1rem;
    }
    
    .hero-visual-placeholder p {
        font-size: 0.85rem;
    }
    
    .feature-badge span {
        font-size: 0.85rem;
    }
}

/* Enhanced Hero Section Features */
.hero-section .container {
  position: relative;
    z-index: 2;
}

.hero-section .row {
    align-items: center;
    min-height: 52vh; /* Much smaller row height */
    margin: 0; /* Remove any default margins */
}

/* Floating Elements Animation */
.hero-section::before {
    animation: float 8s ease-in-out infinite;
}

/* Gradient Text Animation */
.hero-title {
    animation: fadeInUp 1s ease-out 0.3s both, gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { 
        background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #e9ecef 100%);
        -webkit-background-clip: text;
        background-clip: text;
    }
    50% { 
        background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
        -webkit-background-clip: text;
        background-clip: text;
    }
}

/* Enhanced Button Hover Effects */
.hero-buttons .btn {
  position: relative;
  overflow: hidden;
}

.hero-buttons .btn::after {
  content: '';
  position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.hero-buttons .btn:hover::after {
    width: 300px;
    height: 300px;
}

/* Enhanced Stats Animation */
.stat-item {
    animation: fadeInUp 1s ease-out 1.2s both;
}

.stat-item:nth-child(1) { animation-delay: 1.2s; }
.stat-item:nth-child(2) { animation-delay: 1.4s; }
.stat-item:nth-child(3) { animation-delay: 1.6s; }

/* Modern Scroll Indicator */
.hero-section::after {
    content: '';
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
  height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    animation: scrollIndicator 2s ease-in-out infinite;
}

.hero-section::after::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 2px;
    transform: translateX(-50%);
    animation: scrollDot 2s ease-in-out infinite;
}

@keyframes scrollIndicator {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

@keyframes scrollDot {
    0% { transform: translateX(-50%) translateY(0); opacity: 1; }
    100% { transform: translateX(-50%) translateY(20px); opacity: 0; }
}

/* Modern Sections */
.section {
    padding: var(--space-3xl) 0;
    position: relative;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: var(--space-sm);
    color: var(--text-dark);
}

.section-subtitle {
    font-size: 1.25rem;
    text-align: center;
    color: var(--text-light);
    margin-bottom: var(--space-2xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Modern About Section */
.about-section {
    background: var(--bg-gray);
    padding: 0 0 var(--space-3xl) 0; /* Remove all top padding to eliminate gap */
    margin-top: -100px; /* Much larger negative margin to eliminate gap */
}

.feature-item {
    text-align: center;
    padding: var(--space-xl);
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
    height: 100%;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-md);
    font-size: 2rem;
    color: white;
  box-shadow: var(--shadow-md);
}

/* Modern Services Section */
.service-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
    height: 100%;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-2xl);
}

.service-icon {
  width: 60px;
  height: 60px;
    background: linear-gradient(135deg, var(--primary-light), var(--secondary));
    border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
    margin-bottom: var(--space-md);
    font-size: 1.5rem;
    color: var(--primary);
}

.service-features {
  list-style: none;
  padding: 0;
    margin-top: var(--space-md);
}

.service-features li {
    padding: var(--space-xs) 0;
    color: var(--text-light);
  position: relative;
    padding-left: var(--space-lg);
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

/* Modern Industries Section */
.industry-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
  height: 100%;
    text-align: center;
  position: relative;
  overflow: hidden;
}

.industry-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-light), transparent);
  opacity: 0;
    transition: opacity 0.3s ease;
}

.industry-card:hover::after {
    opacity: 0.1;
}

.industry-card:hover {
  transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.industry-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
    margin: 0 auto var(--space-md);
    font-size: 2rem;
    color: var(--text-dark);
    box-shadow: var(--shadow-md);
}

/* Modern Why Choose Us Section */
.feature-box {
    background: white;
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
    height: 100%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.feature-box i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: var(--space-md);
    display: block;
}

/* Modern Team Section */
.team-section {
    background: var(--bg-gray);
}

.team-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
    height: 100%;
    text-align: center;
    position: relative;
  overflow: hidden;
}

.team-card:hover {
  transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.team-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-light), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-md);
    font-size: 2.5rem;
    color: var(--primary);
    box-shadow: var(--shadow-md);
}

/* Modern Testimonials Section */
.testimonials-section {
    background: linear-gradient(135deg, var(--primary-light), var(--secondary));
}

.testimonial-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
    height: 100%;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
    top: -10px;
    left: var(--space-lg);
    font-size: 4rem;
    color: var(--primary-light);
  font-family: serif;
}

.testimonial-content {
  font-style: italic;
    color: var(--text-light);
    margin-bottom: var(--space-lg);
  position: relative;
  z-index: 1;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary);
    margin-bottom: var(--space-xs);
}

.testimonial-position {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Modern FAQ Section */
.faq-section {
    background: var(--bg-gray);
}

.accordion-item {
  border: none;
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-md);
  box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.accordion-button {
    background: white;
  border: none;
    padding: var(--space-lg);
    font-weight: 600;
    color: var(--text-dark);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background: var(--primary-light);
    color: var(--primary);
    box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
    border: none;
}

.accordion-body {
    padding: var(--space-lg);
    background: white;
    color: var(--text-light);
}

/* Modern Contact Section */
.contact-section {
    background: white;
}

.contact-info {
    background: var(--bg-gray);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    height: 100%;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: var(--space-lg);
    padding: var(--space-md);
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary);
    margin-right: var(--space-md);
    width: 40px;
    text-align: center;
}

.contact-form {
    background: white;
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
}

.form-control {
    border: 2px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--bg-light);
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(0, 89, 212, 0.25);
    outline: none;
}

/* Modern CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
}

.cta-content {
  position: relative;
    z-index: 2;
}

/* Modern Footer */
.footer {
    background: var(--bg-dark);
    color: white;
    padding: var(--space-3xl) 0 var(--space-lg);
}

.footer h5 {
    color: white;
    margin-bottom: var(--space-lg);
    font-weight: 600;
}

.footer p,
.footer a {
    color: #D1D5DB;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: white;
}

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

.footer .social-links a:hover {
    background: var(--primary);
  transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--space-lg);
    margin-top: var(--space-xl);
}

/* Modern Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: var(--space-lg);
    right: var(--space-lg);
  width: 50px;
  height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border: none;
    border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
    font-size: 1.25rem;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}

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

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

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

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

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

.slide-in-right {
    animation: slideInRight 0.6s ease-out;
}

/* Modern Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn {
  width: 100%;
        margin-bottom: var(--space-sm);
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
    }
    
    .stat-item {
        padding: var(--space-md);
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .feature-item,
    .service-card,
    .industry-card,
    .feature-box,
    .team-card,
    .testimonial-card {
        margin-bottom: var(--space-lg);
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-item i {
        margin-right: 0;
        margin-bottom: var(--space-sm);
    }
    
    .back-to-top {
        bottom: var(--space-md);
        right: var(--space-md);
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .section {
        padding: var(--space-2xl) 0;
    }
    
    .card-icon,
    .service-icon,
    .industry-icon,
    .team-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .feature-box i {
        font-size: 2.5rem;
    }
}

/* Modern Loading States */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* Modern Focus States for Accessibility */
.btn:focus,
.form-control:focus,
.navbar-nav .nav-link:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* Modern Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-gray);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: var(--radius-sm);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
} 

.hero-visual-placeholder {
    text-align: center;
    color: white;
    padding: var(--space-sm); /* Much smaller padding */
    position: relative;
    z-index: 2;
    margin-top: -150px; /* Much larger negative margin */
}

.hero-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
    margin: 0 auto var(--space-md); /* Reduced margin */
    font-size: 3rem;
    color: var(--text-dark);
    box-shadow: var(--shadow-lg);
    animation: pulse 2s ease-in-out infinite;
}

.hero-visual-placeholder h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--space-xs); /* Reduced margin */
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-visual-placeholder p {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: var(--space-md); /* Reduced margin */
    line-height: 1.5;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs); /* Reduced gap */
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-xs) var(--space-sm); /* Reduced padding */
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.feature-badge:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(5px);
}

.feature-badge i {
    color: var(--accent);
    font-size: 1.1rem;
}

.feature-badge span {
    font-weight: 500;
    font-size: 0.95rem;
}

@keyframes pulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.4);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(255, 193, 7, 0);
    }
}

/* Responsive adjustments for hero visual */
@media (max-width: 768px) {
    .hero-visual-placeholder {
        padding: var(--space-lg);
    }
    
    .hero-icon {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
    }
    
    .hero-visual-placeholder h4 {
        font-size: 1.25rem;
    }
    
    .hero-visual-placeholder p {
        font-size: 0.9rem;
    }
    
    .feature-badge {
        padding: var(--space-xs) var(--space-sm);
    }
    
    .feature-badge span {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .hero-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    .hero-visual-placeholder h4 {
        font-size: 1.1rem;
    }
    
    .hero-visual-placeholder p {
        font-size: 0.85rem;
    }
    
    .feature-badge span {
        font-size: 0.85rem;
    }
} 

/* About Page Enhancements */
.hover-lift {
    transition: all 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1) !important;
}

.min-vh-60 {
    min-height: 60vh;
}

.stat-item {
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2) !important;
}

.bg-primary.bg-opacity-10 {
    background-color: rgba(0, 89, 212, 0.1) !important;
}

.rounded-circle {
    transition: all 0.3s ease;
}

.rounded-circle:hover {
    transform: scale(1.1);
}

/* Enhanced About Page Sections */
.about-section .lead {
    font-size: 1.25rem;
    line-height: 1.8;
}

.about-section .card {
    border-radius: 15px;
    overflow: hidden;
}

.about-section .card-body {
    padding: 2rem;
}

/* Core Values Enhancement */
.core-values .rounded-circle {
    box-shadow: 0 5px 15px rgba(0, 89, 212, 0.2);
}

.core-values .text-center:hover .rounded-circle {
    box-shadow: 0 10px 25px rgba(0, 89, 212, 0.3);
}

/* Why Choose Us Cards */
.why-choose-us .card {
    border-radius: 20px;
    transition: all 0.4s ease;
}

.why-choose-us .card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.why-choose-us .bg-primary.bg-opacity-10 {
    transition: all 0.3s ease;
}

.why-choose-us .card:hover .bg-primary.bg-opacity-10 {
    background-color: rgba(0, 89, 212, 0.2) !important;
    transform: scale(1.1);
}

/* Global Operations Enhancement */
.global-operations .d-flex {
    transition: all 0.3s ease;
}

.global-operations .d-flex:hover {
    transform: translateX(10px);
}

.global-operations .bg-primary.rounded-circle {
    box-shadow: 0 5px 15px rgba(0, 89, 212, 0.3);
}

/* Hero Section for About Page */
.hero-section.about-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    position: relative;
    overflow: hidden;
}

.hero-section.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 193, 7, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(207, 232, 255, 0.1) 0%, transparent 50%);
    animation: float 8s ease-in-out infinite;
}

/* Enhanced Typography */
.about-section h2 {
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.about-section .lead {
    font-weight: 500;
}

/* Responsive Enhancements */
@media (max-width: 768px) {
    .min-vh-60 {
        min-height: 50vh;
    }
    
    .about-section .card-body {
    padding: 1.5rem;
  }
    
    .core-values .col-lg-2 {
        margin-bottom: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-section.about-hero {
        min-height: 40vh;
    }
    
    .about-section .display-4 {
        font-size: 2.5rem;
    }
} 

/* About Page Hero Section Enhancements */
.about-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%) !important;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 193, 7, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(207, 232, 255, 0.1) 0%, transparent 50%);
    animation: float 8s ease-in-out infinite;
}

.about-hero .hero-content h1 {
    font-size: 3.5rem;
    font-weight: 900;
    text-shadow: 0 4px 8px rgba(0,0,0,0.3);
    margin-bottom: 1.5rem;
}

.about-hero .hero-content p {
    font-size: 1.4rem;
    font-weight: 500;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    opacity: 0.95;
}

.stat-card {
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

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

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

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.2) !important;
}

.stat-card h2 {
    font-size: 2.5rem !important;
    font-weight: 900;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-card p {
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.min-vh-70 {
    min-height: 70vh;
}

/* Decorative Elements Animation */
@keyframes float {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
        opacity: 0.6;
    }
    50% { 
        transform: translateY(-20px) rotate(180deg); 
    opacity: 1;
    }
}

/* Responsive Hero Section */
@media (max-width: 768px) {
    .about-hero .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .about-hero .hero-content p {
        font-size: 1.2rem;
    }
    
    .stat-card h2 {
        font-size: 2rem !important;
    }
    
    .min-vh-70 {
        min-height: 60vh;
    }
}

@media (max-width: 576px) {
    .about-hero .hero-content h1 {
        font-size: 2rem;
    }
    
    .about-hero .hero-content intu p {
        font-size: 1.1rem;
    }
    
    .stat-card h2 {
        font-size: 1.8rem !important;
    }
    
    .min-vh-70 {
        min-height: 50vh;
    }
} 

 