
/* Quote Section Styling */
.quote-section {
  background: #f8f9fa;
  border-left: 4px solid #4154f1;
  padding: 20px;
  margin: 20px 0;
  border-radius: 0 8px 8px 0;
}

.quote-section p {
  margin-bottom: 10px;
  font-style: italic;
  color: #2c3e50;
}

.quote-section cite {
  display: block;
  text-align: right;
  font-style: normal;
  font-weight: 600;
  color: #4154f1;
  font-size: 0.9em;
}

/*--------------------------------------------------------------
# Interactive Card Enhancements
--------------------------------------------------------------*/
.interactive-card {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.interactive-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(65, 84, 241, 0.1), rgba(102, 126, 234, 0.1));
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.interactive-card:hover::before {
  opacity: 1;
}

.interactive-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.interactive-card .member-info,
.interactive-card .news-item,
.interactive-card .DIC-box {
  position: relative;
  z-index: 2;
}

/* Enhanced hover effects for existing elements */
.member:hover,
.news-item:hover,
.DIC-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Staggered animation delays */
.member:nth-child(1) { animation-delay: 0.1s; }
.member:nth-child(2) { animation-delay: 0.2s; }
.member:nth-child(3) { animation-delay: 0.3s; }
.member:nth-child(4) { animation-delay: 0.4s; }

.news-item:nth-child(1) { animation-delay: 0.1s; }
.news-item:nth-child(2) { animation-delay: 0.2s; }
.news-item:nth-child(3) { animation-delay: 0.3s; }

/*--------------------------------------------------------------
# Scroll Animations
--------------------------------------------------------------*/
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.scale-in {
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

/* Staggered animation delays for scroll animations */
.stagger-item:nth-child(1) { transition-delay: 0.1s; }
.stagger-item:nth-child(2) { transition-delay: 0.2s; }
.stagger-item:nth-child(3) { transition-delay: 0.3s; }
.stagger-item:nth-child(4) { transition-delay: 0.4s; }
.stagger-item:nth-child(5) { transition-delay: 0.5s; }
.stagger-item:nth-child(6) { transition-delay: 0.6s; }

/*--------------------------------------------------------------
# Loading States & Skeleton
--------------------------------------------------------------*/
.skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
  border-radius: 8px;
}

@keyframes loading {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.skeleton-text {
  height: 16px;
  margin-bottom: 8px;
}

.skeleton-text.short { width: 60%; }
.skeleton-text.medium { width: 80%; }
.skeleton-text.long { width: 100%; }

.skeleton-image {
  height: 200px;
  width: 100%;
  border-radius: 8px;
}

.skeleton-avatar {
  height: 60px;
  width: 60px;
  border-radius: 50%;
}

/* Loading spinner */
.spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid #4154f1;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 20px auto;
}

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

/* Progress bar */
.progress-bar {
  width: 100%;
  height: 4px;
  background: #e0e0e0;
  border-radius: 2px;
  overflow: hidden;
  margin: 10px 0;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #4154f1, #667eea);
  width: 0%;
  transition: width 0.3s ease;
}



/* Hamburger menu animation */
.hamburger {
  width: 30px;
  height: 20px;
  position: relative;
  cursor: pointer;
  display: none;
  z-index: 1001;
  margin-left: 15px;
}

/* Prevent body scroll when mobile nav is open */
body.nav-open {
  overflow: hidden;
}

body.nav-open .mobile-overlay {
  opacity: 1;
  visibility: visible;
}

.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background: #333;
  margin: 5px 0;
  transition: 0.3s;
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile overlay */
.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
}

.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Navbar Dropdown Fixes */
.navbar .dropdown {
  position: relative;
}

.navbar .dropdown > a {
  display: flex;
  align-items: center;
  gap: 5px;
}

.navbar .dropdown > a i {
  transition: transform 0.3s ease;
  font-size: 12px;
}

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

.navbar .dropdown > ul {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 200px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  border-radius: 15px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  padding: 5px 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
}

.navbar .dropdown:hover > ul {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.navbar .dropdown > ul li {
  margin: 0;
}

.navbar .dropdown > ul a {
  display: block;
  padding: 8px 15px;
  color: #333;
  text-decoration: none;
  transition: all 0.3s ease;
  border-radius: 0;
}

.navbar .dropdown > ul a:hover {
  background: rgba(65, 84, 241, 0.1);
  color: #4154f1;
  transform: translateX(5px);
}

/* Nested dropdowns */
.navbar .dropdown .dropdown {
  position: relative;
}

.navbar .dropdown .dropdown > ul {
  position: absolute;
  top: 0;
  left: 100%;
  margin-left: 5px;
}



/* Get Started button styling */
.navbar .getstarted {
  background: linear-gradient(45deg, #4154f1, #667eea);
  color: white !important;
  padding: 8px 20px;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
}

.navbar .getstarted:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(65, 84, 241, 0.3);
  color: white !important;
}

/*--------------------------------------------------------------
# Clean Mobile Navigation
--------------------------------------------------------------*/

/* Mobile Navigation Toggle Button */
.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: #012970;
  cursor: pointer;
  padding: 8px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

/* Ensure mobile nav toggle is hidden on desktop */
@media (min-width: 992px) {
  .mobile-nav-toggle {
    display: none !important;
  }
}

.mobile-nav-toggle:hover {
  background: rgba(1, 41, 112, 0.1);
  color: #012970;
}

/* Mobile Navigation Styles */
@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block !important;
    color: #012970 !important;
    position: relative;
    z-index: 1001;
  }
  
  .navbar ul {
    display: none !important;
  }
  
  .navbar.navbar-mobile {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: #FFFFFF;
    box-shadow: -2px 0 15px rgba(44, 62, 80, 0.3);
    z-index: 9999;
    padding: 20px;
    overflow-y: auto;
    transition: right 0.3s ease;
  }
  
  .navbar.navbar-mobile.active {
    right: 0;
  }
  
  .navbar.navbar-mobile ul {
    display: block;
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .navbar.navbar-mobile li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
  
  .navbar.navbar-mobile a {
    display: block;
    padding: 12px 0;
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
  }
  
  .navbar.navbar-mobile a:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.15);
    padding-left: 10px;
  }
  
  .navbar.navbar-mobile .dropdown > ul {
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.08);
    margin: 0;
    padding: 0;
    border-radius: 15px;
  }
  
  .navbar.navbar-mobile .dropdown > ul a {
    padding: 8px 15px;
    font-size: 14px;
    color: #ffffff;
    border-radius: 12px;
  }
  
  .navbar.navbar-mobile .dropdown .dropdown > ul {
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.12);
    margin-left: 20px;
    border-radius: 12px;
  }
  
  .navbar.navbar-mobile .dropdown .dropdown > ul a {
    padding: 6px 12px;
    font-size: 13px;
    color: #ffffff;
    border-radius: 10px;
  }
  
  .navbar.navbar-mobile .getstarted {
    margin-top: 20px;
    text-align: center;
    background: #4154f1;
    color: white !important;
    padding: 12px 20px;
    border-radius: 25px;
  }
}

/* Desktop Navigation - Show on larger screens */
@media (min-width: 992px) {
  .navbar ul {
    display: flex !important;
    align-items: center;
    gap: 30px;
    margin: 0;
    padding: 0;
    list-style: none;
  }
  
  .mobile-nav-toggle {
    display: none !important;
  }
  
  .hamburger {
    display: none !important;
  }
  
  .navbar.navbar-mobile {
    display: none !important;
  }
}

/* Navbar general styling */
.navbar ul {
  display: flex;
  align-items: center;
  gap: 30px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.navbar ul li {
  margin: 0;
}

.navbar ul a {
  color: #333;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 8px 0;
  position: relative;
}

.navbar ul a:hover {
  color: #4154f1;
}

.navbar ul a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #4154f1;
  transition: width 0.3s ease;
}

.navbar ul a:hover::after {
  width: 100%;
}

/* Show hamburger on mobile */
@media (max-width: 991px) {
  .hamburger {
    display: block !important;
  }
  
  .navbar ul {
    display: none !important;
  }
  
  .mobile-nav-toggle {
    display: block !important;
    color: #012970 !important;
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: all 0.3s ease;
  }
  
  .mobile-nav-toggle:hover {
    background: rgba(1, 41, 112, 0.1) !important;
    color: #012970 !important;
  }
  
  .navbar .dropdown > ul {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: transparent;
    padding: 0;
    margin: 10px 0 0 20px;
  }
  
  .navbar .dropdown > ul a {
    padding: 8px 0;
    color: #666;
  }
  
  .navbar .dropdown > ul a::after {
    display: none;
  }
}

/*--------------------------------------------------------------
# Modern Button Styles
--------------------------------------------------------------*/
.btn-modern {
  position: relative;
  overflow: hidden;
  background: linear-gradient(45deg, #4154f1, #667eea);
  border: none;
  color: white;
  padding: 12px 30px;
  border-radius: 50px;
  transition: all 0.3s ease;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
}

.btn-modern::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;
}

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

.btn-modern:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(65, 84, 241, 0.3);
}

.btn-modern:active {
  transform: translateY(0);
}

/* Button variants */
.btn-outline {
  background: transparent;
  border: 2px solid #4154f1;
  color: #4154f1;
}

.btn-outline:hover {
  background: #4154f1;
  color: white;
}

.btn-ghost {
  background: rgba(65, 84, 241, 0.1);
  color: #4154f1;
  border: none;
}

.btn-ghost:hover {
  background: rgba(65, 84, 241, 0.2);
}

/* Touch-friendly buttons */
.touch-target {
  min-height: 44px;
  min-width: 44px;
  padding: 12px;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.touch-target:active {
  transform: scale(0.95);
  background-color: rgba(0,0,0,0.1);
}

/*--------------------------------------------------------------
# Enhanced Form Styling
--------------------------------------------------------------*/
.form-group {
  position: relative;
  margin-bottom: 25px;
}

.form-input {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  font-size: 16px;
  transition: all 0.3s ease;
  background: transparent;
  color: #333;
}

.form-input:focus {
  outline: none;
  border-color: #4154f1;
  box-shadow: 0 0 0 3px rgba(65, 84, 241, 0.1);
  transform: translateY(-2px);
}

.form-label {
  position: absolute;
  top: 15px;
  left: 20px;
  color: #999;
  transition: all 0.3s ease;
  pointer-events: none;
  background: white;
  padding: 0 5px;
}

.form-input:focus + .form-label,
.form-input:not(:placeholder-shown) + .form-label {
  top: -8px;
  left: 15px;
  font-size: 12px;
  color: #4154f1;
  font-weight: 600;
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
  font-family: inherit;
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 12px center;
  background-repeat: no-repeat;
  background-size: 16px;
  padding-right: 40px;
}

/* Form validation states */
.form-input.error {
  border-color: #e74c3c;
  box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

.form-input.success {
  border-color: #27ae60;
  box-shadow: 0 0 0 3px rgba(39, 174, 96, 0.1);
}

.form-error {
  color: #e74c3c;
  font-size: 12px;
  margin-top: 5px;
  display: block;
}

.form-success {
  color: #27ae60;
  font-size: 12px;
  margin-top: 5px;
  display: block;
}

/*--------------------------------------------------------------
# Smooth Scrolling & Custom Scrollbar
--------------------------------------------------------------*/
html {
  scroll-behavior: smooth;
}

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

::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb {
  background: #232e87;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background:#232e87;
}

/* Firefox scrollbar */
* {
  scrollbar-width: thin;
  scrollbar-color: #232e87 #f1f1f1;
}

/*--------------------------------------------------------------
# Glass Morphism Effects
--------------------------------------------------------------*/
.glass-morphism {
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 15px;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
}

.glass-dark {
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 15px;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

/*--------------------------------------------------------------
# Gradient Backgrounds
--------------------------------------------------------------*/
.hero-gradient {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.section-gradient {
  background: linear-gradient(45deg, #f093fb 0%, #f5576c 100%);
}

.tech-gradient {
  background: linear-gradient(135deg, #4154f1 0%, #667eea 50%, #764ba2 100%);
}

.sustainability-gradient {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
  scroll-behavior: smooth;
  
  /* SEO-Optimized Color Palette */
  --primary-color: #4154f1;
  --secondary-color: #6c5ce7;
  --accent-color: #012970;
  --text-color: #444444;
  --text-light: #666666;
  --text-muted: #888888;
  --light-bg: #f8f9fa;
  --white: #ffffff;
  --black: #000000;
  
  /* Gradients for visual hierarchy */
  --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --gradient-secondary: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  --gradient-accent: linear-gradient(45deg, #4154f1, #6c5ce7);
  
  /* Shadows for depth and SEO-friendly contrast */
  --shadow-light: 0 10px 30px rgba(0, 0, 0, 0.1);
  --shadow-medium: 0 20px 40px rgba(0, 0, 0, 0.15);
  --shadow-heavy: 0 30px 60px rgba(0, 0, 0, 0.2);
  
  /* Spacing and layout */
  --border-radius: 15px;
  --border-radius-sm: 8px;
  --border-radius-lg: 25px;
  --transition: all 0.3s ease;
  --transition-fast: all 0.15s ease;
  --transition-slow: all 0.5s ease;
  
  /* Typography scale for SEO */
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 1.875rem;
  --font-size-4xl: 2.25rem;
  --font-size-5xl: 3rem;
  
  /* Line heights for readability */
  --line-height-tight: 1.1;
  --line-height-snug: 1.2;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.6;
  --line-height-loose: 1.8;
  
  /* Font weights for hierarchy */
  --font-weight-light: 300;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --font-weight-extrabold: 800;
  --font-weight-black: 900;
}

/* Font Display Optimization for SEO */
/* Note: Font loading is optimized in HTML with preload and font-display: swap */

body {
  font-family: "Inter", "Source Sans Pro", "Roboto", "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--text-color);
  line-height: var(--line-height-relaxed);
  overflow-x: hidden;
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-normal);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-display: swap;
}

/* Smooth scrolling for all elements */
* {
  scroll-behavior: smooth;
}

/* Enhanced focus states for accessibility */
*:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

/* Improved selection styling */
::selection {
  background-color: var(--primary-color);
  color: white;
}

::-moz-selection {
  background-color: var(--primary-color);
  color: white;
}

a {
  color: #4154f1;
  text-decoration: none;
}

a:hover {
  color: #717ff5;
  text-decoration: none;
}

/* SEO-Optimized Typography Hierarchy */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Source Sans Pro", "Inter", "Nunito", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.5em;
  color: var(--accent-color);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* H1 - Main page titles (SEO critical) */
h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: var(--font-weight-extrabold);
  line-height: var(--line-height-tight);
  margin-bottom: 0.75em;
  letter-spacing: -0.02em;
  color: var(--accent-color);
}

/* H2 - Section headings (SEO important) */
h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-snug);
  margin-bottom: 0.6em;
  letter-spacing: -0.01em;
  color: var(--accent-color);
}

/* H3 - Subsection headings */
h3 {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: var(--font-weight-semibold);
  line-height: var(--line-height-snug);
  margin-bottom: 0.5em;
  color: var(--accent-color);
}

/* H4 - Content headings */
h4 {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: var(--font-weight-semibold);
  line-height: var(--line-height-normal);
  margin-bottom: 0.4em;
  color: var(--text-color);
}

/* H5 - Minor headings */
h5 {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: var(--font-weight-semibold);
  line-height: var(--line-height-normal);
  margin-bottom: 0.3em;
  color: var(--text-color);
}

/* H6 - Small headings */
h6 {
  font-size: clamp(0.9rem, 1.8vw, 1.1rem);
  font-weight: var(--font-weight-semibold);
  line-height: var(--line-height-normal);
  margin-bottom: 0.3em;
  color: var(--text-light);
}

/* Paragraph optimization for SEO */
p {
  font-size: var(--font-size-base);
  line-height: var(--line-height-relaxed);
  margin-bottom: 1.2em;
  color: var(--text-color);
  text-rendering: optimizeLegibility;
  font-weight: var(--font-weight-normal);
}

/* Strong and emphasis for SEO */
strong, b {
  font-weight: var(--font-weight-bold);
  color: var(--accent-color);
}

em, i {
  font-style: italic;
  color: #ffffff;
  font-weight: var(--font-weight-medium);
}

/* Specific styling for arrow icons */
.bi-arrow-right {
  color: #ffffff !important;
}

/* Links optimization for SEO */
a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
  font-weight: var(--font-weight-medium);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--secondary-color);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

/* Focus states for accessibility and SEO */
a:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
  border-radius: var(--border-radius-sm);
}

/* List styling for better readability */
ul, ol {
  margin-bottom: 1.2em;
  padding-left: 1.5em;
}

li {
  margin-bottom: 0.5em;
  line-height: 1.6;
}

/* Blockquote for testimonials and quotes */
blockquote {
  font-size: var(--font-size-lg);
  font-style: italic;
  line-height: var(--line-height-relaxed);
  margin: 1.5em 0;
  padding: 1em 1.5em;
  border-left: 4px solid var(--primary-color);
  background: var(--light-bg);
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
  font-weight: var(--font-weight-medium);
}

/* SEO-optimized text utilities */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.text-xs { font-size: var(--font-size-xs); }
.text-sm { font-size: var(--font-size-sm); }
.text-base { font-size: var(--font-size-base); }
.text-lg { font-size: var(--font-size-lg); }
.text-xl { font-size: var(--font-size-xl); }
.text-2xl { font-size: var(--font-size-2xl); }
.text-3xl { font-size: var(--font-size-3xl); }
.text-4xl { font-size: var(--font-size-4xl); }
.text-5xl { font-size: var(--font-size-5xl); }

.font-light { font-weight: var(--font-weight-light); }
.font-normal { font-weight: var(--font-weight-normal); }
.font-medium { font-weight: var(--font-weight-medium); }
.font-semibold { font-weight: var(--font-weight-semibold); }
.font-bold { font-weight: var(--font-weight-bold); }
.font-extrabold { font-weight: var(--font-weight-extrabold); }

.leading-tight { line-height: var(--line-height-tight); }
.leading-snug { line-height: var(--line-height-snug); }
.leading-normal { line-height: var(--line-height-normal); }
.leading-relaxed { line-height: var(--line-height-relaxed); }
.leading-loose { line-height: var(--line-height-loose); }

/* SEO-friendly content containers */
.content-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.seo-content {
  font-size: var(--font-size-base);
  line-height: var(--line-height-relaxed);
  color: var(--text-color);
  margin-bottom: 1.5em;
}

.seo-content h1,
.seo-content h2,
.seo-content h3,
.seo-content h4,
.seo-content h5,
.seo-content h6 {
  margin-top: 2em;
  margin-bottom: 0.5em;
}

.seo-content h1:first-child,
.seo-content h2:first-child,
.seo-content h3:first-child {
  margin-top: 0;
}

/* Improved readability for long content */
.readable-content {
  max-width: 65ch;
  margin: 0 auto;
  font-size: var(--font-size-lg);
  line-height: var(--line-height-loose);
}

/* SEO-optimized paragraph widths for different content types */
.hero-paragraph {
  max-width: 50ch;
  line-height: var(--line-height-relaxed);
  font-size: var(--font-size-lg);
  margin-bottom: 1.2em;
}

.content-paragraph {
  max-width: 60ch;
  line-height: var(--line-height-relaxed);
  margin-bottom: 1.5em;
}

.lead-paragraph {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-medium);
  line-height: var(--line-height-relaxed);
  max-width: 55ch;
  color: var(--text-color);
  margin-bottom: 2em;
}

/* Specific hero text styling */
.hero-text-content {
  max-width: 500px;
  width: 100%;
}

.hero-text-content p {
  max-width: 50ch;
  line-height: 1.6;
  margin-bottom: 1.2em;
  font-size: 1.1rem;
}

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

/* Text width utilities for different screen sizes */
.text-width-sm { max-width: 45ch; }
.text-width-md { max-width: 60ch; }
.text-width-lg { max-width: 75ch; }
.text-width-xl { max-width: 90ch; }

/* Heading width utilities */
.heading-width-sm { max-width: 40ch; }
.heading-width-md { max-width: 50ch; }
.heading-width-lg { max-width: 60ch; }
.heading-width-xl { max-width: 70ch; }

/* Specific hero heading styling */
.hero-heading {
  max-width: 60ch;
  word-wrap: break-word;
  hyphens: auto;
  line-height: 1.1;
}

/* Responsive text width */
@media (max-width: 768px) {
  .text-width-sm,
  .text-width-md,
  .text-width-lg,
  .text-width-xl {
    max-width: 100%;
  }
}

/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-header {
  text-align: center;
  padding-bottom: 40px;
  padding-top: 40px;
  margin-bottom: 20px;
  position: relative;
}

.section-header::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  border-radius: 2px;
}

.section-header h2 {
  font-size: 24px;
  letter-spacing: 2px;
  font-weight: 700;
  margin: 0;
  color: #233954ff;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 15px;
}

.section-header p {
  margin: 10px 0 0 0;
  padding: 10px;
  font-size: 28px;
  line-height: 38px;
  font-weight: 700;
  color: #233954ff;
  text-transform: uppercase;
  background: #ffffff;
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
  cursor: pointer;

}


.section-header p a {
  color: #233954ff;
  text-decoration: none;
  transition: color 0.3s ease;
}



@media (max-width: 768px) {
  .section-header p {
    font-size: 28px;
    line-height: 32px;
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 30px 0px 10px 0px;
  background: #012970;
  min-height: 40px;
  margin-top: 100px;
  color: #fff;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 57px;
  }
}

.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 500;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol a {
  color: #fff;
  transition: 0.15s;
}

.breadcrumbs ol a:hover {
  text-decoration: underline;
}

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

.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #8894f6;
  content: "/";
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background: #012970;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #4f833aff;
  color: #fff;
}

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

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
  transition: all 0.5s;
  z-index: 997;
  padding: 20px 0;
  background-color: white;
}

.header.header-scrolled {
  background: #fff;
  padding: 15px 0;
  box-shadow: 0px 2px 20px rgba(1, 41, 112, 0.1);
}

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

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

.header .logo span {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #012970;
  font-family: "Nunito", sans-serif;
  margin-top: 3px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-family: "Nunito", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #013289;
  white-space: nowrap;
  transition: 0.15s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
  color: #4154f1;
}

.navbar .getstarted,
.navbar .getstarted:focus {
  background-image: url("../img/PulseHub.png");
  background-repeat: no-repeat;
  height: 2em;
  width: 3.5em;
  background-size: 90% 85%;
  margin-left: 2.5em;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  color: #fff;
}

.navbar .dropdown ul {
  display: flex;
  flex-direction: column;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 5px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.15s;
  border-radius: 15px;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 8px 15px;
  font-size: 15px;
  text-transform: none;
  font-weight: 600;
}

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

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover > a {
  color: #4154f1;
}

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

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

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

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/**
* Mobile Navigation
*/
.mobile-nav-toggle {
  color: #012970;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.15s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(1, 22, 61, 0.9);
  transition: 0.15s;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 10px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.15s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #012970;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
  color: #4154f1;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  flex-direction: column;
  margin: 8px 15px;
  padding: 8px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  border-radius: 15px;
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 8px 15px;
}

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

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover > a {
  color: #4154f1;
}

.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}


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

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

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

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}








/* Add body padding to account for fixed header */
body {
  padding-top: 80px;
}

@media (max-width: 768px) {
  body {
    padding-top: 70px;
  }
}

@media (max-width: 480px) {
  body {
    padding-top: 60px;
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 100vh;
  background: transparent;
  background-attachment: fixed;
  position: relative;
  overflow: hidden;
}

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

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

.hero h1 {
  margin-top: 1em;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: var(--font-weight-extrabold);
  color: #012970; /* Dark blue color */
  text-shadow: none; /* Remove text shadow for dark text */
  animation: fadeInUp 1s ease-out;
  line-height: var(--line-height-tight);
  max-width: 60ch; /* Control heading width for better readability */
  word-wrap: break-word;
  hyphens: auto;
}

.hero h2 {
  color: #012970; /* Dark blue color */
  margin: 15px 0 0 0;
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-weight: var(--font-weight-normal);
  animation: fadeInUp 1s ease-out 0.2s both;
  line-height: var(--line-height-snug);
}

.hero p {
  margin-top: 1.3em;
  color: #012970; /* Dark blue color */
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  line-height: var(--line-height-relaxed);
  animation: fadeInUp 1s ease-out 0.4s both;
  font-weight: var(--font-weight-normal);
  max-width: 50ch; /* Reduced width for better readability */
  text-align: left;
  margin-bottom: 1.2em;
}

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

/* Hero text container for better width control */
.hero .hero-text {
  max-width: 500px; /* Reduced container width */
  width: 100%;
}

.hero .hero-text p {
  max-width: 100%;
  margin-bottom: 1.2em;
}

.hero .hero-text p:last-child {
  margin-bottom: 0;
}

/* Specific styling for hero paragraphs */
.hero .col-lg-6:first-child {
  max-width: 50%;
  flex: 0 0 50%;
}

.hero .col-lg-6:last-child {
  max-width: 50%;
  flex: 0 0 50%;
}

.hero .btn-get-started {
  line-height: 0;
  padding: 18px 45px;
  border-radius: 50px;
  transition: all 0.3s ease;
  color: #fff;
  background: #012970;
  box-shadow: 0px 8px 25px rgba(65, 84, 241, 0.4);
  border: none;
  position: relative;
  overflow: hidden;
  animation: fadeInUp 1s ease-out 0.6s both;
}

.hero .btn-get-started::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;
}

.hero .btn-get-started:hover::before {
  left: 100%;
}

.hero .btn-get-started span {
  font-family: "Nunito", sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
  position: relative;
  z-index: 1;
}

.hero .btn-get-started i {
  margin-left: 8px;
  font-size: 18px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.hero .btn-get-started:hover {
  transform: translateY(-3px);
  box-shadow: 0px 12px 35px rgba(65, 84, 241, 0.6);
}

.hero .btn-get-started:hover i {
  transform: translateX(8px);
}

.hero .hero-img {
  text-align: center;
  margin-top: 4em;
  width: 100%;
  animation: fadeInRight 1s ease-out 0.8s both;
}

.hero .hero-img img {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
  transition: transform 0.3s ease;
}

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

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

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

/* Modern loading animations */
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

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

@keyframes shimmer {
  0% {
    background-position: -200px 0;
  }
  100% {
    background-position: calc(200px + 100%) 0;
  }
}

/* Loading shimmer effect for images */
.project-image img {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200px 100%;
  animation: shimmer 1.5s infinite;
}

.project-image img:not([src=""]) {
  animation: none;
  background: none;
}

/* Enhanced hover effects */
.project-row {
  position: relative;
  overflow: hidden;
}

.project-row::after {
  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;
}

.project-row:hover::after {
  left: 100%;
}

@media (min-width: 1024px) {
  .hero {
    background-attachment: fixed;
  }
}

@media (max-width: 991px) {
  .hero {
    height: auto;
    padding: 120px 0 60px 0;
  }

  .hero .hero-img {
    text-align: center;
    margin-top: 8em;
    width: 50%;
  }

  .hero .hero-img img {
    padding-top: 10em;
  }
}

/* Responsive Design for Hero and Projects */
@media (max-width: 768px) {
  .hero {
    text-align: center;
    min-height: 80vh;
    padding: 2em 0;
  }

  .hero h1 {
    font-size: 2.5em;
    margin-top: 0.5em;
    max-width: 100%;
    text-align: center;
  }

  .hero h2 {
    font-size: 1.4em;
  }

  .hero p {
    font-size: 1.1em;
    max-width: 100%;
    text-align: center;
    margin-bottom: 1em;
  }

  .hero .hero-text {
    max-width: 100%;
    padding: 0 1rem;
  }

  .hero .col-lg-6:first-child,
  .hero .col-lg-6:last-child {
    max-width: 100%;
    flex: 0 0 100%;
  }

  .hero .btn-get-started {
    padding: 15px 35px;
    font-size: 14px;
  }

  .hero .hero-img {
    margin-top: 2em;
  }

  .hero .hero-img img {
    width: 90%;
    max-width: 300px;
  }

  /* Projects responsive */
  .about-current,
  .about-previous {
    padding: 40px 0;
  }

  .about-current .content,
  .about-previous .content {
    padding: 2em 1.5em;
    margin: 0 1em;
  }

  .about-current h2,
  .about-previous h2 {
    font-size: 2em;
  }

  .project-row {
    flex-direction: column;
    text-align: center;
    padding: 1.5em;
    gap: 1em;
  }

  .project-image {
    flex-basis: auto;
    margin-bottom: 1em;
  }

  .project-text {
    flex-basis: auto;
  }

  .project-text a {
    font-size: 1.1em;
  }

  .about-previous .content li {
    padding: 0.8em;
    font-size: 0.95em;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2em;
  }

  .hero h2 {
    font-size: 1.2em;
  }

  .hero p {
    font-size: 1em;
    max-width: 100%;
    line-height: 1.6;
  }

  .hero .hero-text {
    padding: 0 0.5rem;
  }

  .about-current h2,
  .about-previous h2 {
    font-size: 1.8em;
  }

  .project-row {
    padding: 1em;
  }

  .about-current .content,
  .about-previous .content {
    padding: 1.5em 1em;
    margin: 0 0.5em;
  }
}

/* Medium screens - better paragraph control */
@media (min-width: 768px) and (max-width: 1199px) {
  .hero .hero-text {
    max-width: 450px;
  }

  .hero h1 {
    max-width: 50ch;
    font-size: clamp(2rem, 4vw, 2.8rem);
  }

  .hero p {
    max-width: 45ch;
    font-size: 1.1rem;
    line-height: 1.6;
  }
}

/* Large screens - optimize paragraph width for better readability */
@media (min-width: 1200px) {
  .hero .hero-text {
    max-width: 500px;
  }

  .hero h1 {
    max-width: 55ch;
    font-size: clamp(2.5rem, 4vw, 3.2rem);
  }

  .hero p {
    max-width: 50ch;
    font-size: 1.2rem;
    line-height: 1.7;
  }
}

/* Extra large screens */
@media (min-width: 1400px) {
  .hero .hero-text {
    max-width: 600px;
  }

  .hero h1 {
    max-width: 60ch;
    font-size: clamp(2.8rem, 4vw, 3.5rem);
  }

  .hero p {
    max-width: 55ch;
    font-size: 1.3rem;
  }
}

/*--------------------------------------------------------------
# Index Page
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .content {
  padding: 40px;
  border-radius: 15px;
}

.about h3 {
  font-size: 20px;
  font-weight: 700;
  color: #202daa;
}

.about h2 {
  font-size: 24px;
  font-weight: 700;
  color: #012970;
  text-transform: uppercase;
}

.about p {
  margin: 15px 0 30px 0;
  line-height: 24px;
}

.about .btn-read-more {
  line-height: 0;
  padding: 15px 40px;
  border-radius: 4px;
  transition: 0.15s;
  color: #fff;
  background: #012970;
  box-shadow: 0px 5px 25px rgba(65, 84, 241, 0.3);
}

.about .btn-read-more span {
  font-family: "Nunito", sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
}

.about .btn-read-more i {
  margin-left: 5px;
  font-size: 18px;
  transition: 0.15s;
}

.about .btn-read-more:hover i {
  transform: translateX(5px);
}

.about .logo_test {
  display: flex;
  justify-content: center;
  max-width: 15%;
}

/*--------------------------------------------------------------
# Current projects
--------------------------------------------------------------*/
.about-current {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  padding: 80px 0;
  position: relative;
}

.about-current::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="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23ffffff" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="%23ffffff" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.about-current .content {
  background: transparent;
  padding: 3em;
  border-radius: 20px;
  box-shadow: none;
  backdrop-filter: none;
  border: none;
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-current .content:hover {
  transform: none;
  box-shadow: none;
}

.about-current h2 {
  font-size: 2.5em;
  color: #012970;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 1em;
  position: relative;
  text-align: center;
}

.about-current h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(45deg, #4154f1, #6c5ce7);
  border-radius: 2px;
}

.about-current p {
  margin: 15px 0 30px 0;
  line-height: 28px;
  font-size: 1.1em;
  color: #555;
  text-align: center;
}

.about-current .content li {
  list-style: none;
  margin-top: 1em;
}

.about-current .content a {
  font-weight: 600;
  font-size: large;
  transition: color 0.3s ease;
}

.project-table {
  display: flex;
  flex-direction: column;
  gap: 2em;
}

.project-row {
  display: flex;
  align-items: center;
  padding: 2em;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid rgba(65, 84, 241, 0.1);
  position: relative;
  overflow: hidden;
}

.project-row::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(45deg, #4154f1, #6c5ce7);
  transition: width 0.3s ease;
}

.project-row:hover::before {
  width: 8px;
}

.project-row:hover {
  transform: translateX(10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.project-cell {
  margin-right: 2em;
}

.project-image {
  flex-basis: 20%;
  text-align: center;
  transition: transform 0.3s ease;
}

.project-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  transition: transform 0.3s ease, filter 0.3s ease;
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
}

.project-image:hover img {
  transform: scale(1.05);
  filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.2));
}

.project-text {
  flex-basis: 80%;
}

.project-text a {
  color: #012970;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: 600;
  transition: color 0.3s ease;
  position: relative;
}

.project-text a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(45deg, #4154f1, #6c5ce7);
  transition: width 0.3s ease;
}

.project-text a:hover {
  color: #4154f1;
}

.project-text a:hover::after {
  width: 100%;
}

/*--------------------------------------------------------------
# Previous projects
--------------------------------------------------------------*/
.about-previous {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 80px 0;
  position: relative;
  margin-top: -2em;
}

.about-previous::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="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
  opacity: 0.2;
}

.about-previous .content {
  background: transparent;
  padding: 3em;
  border-radius: 20px;
  box-shadow: none;
  backdrop-filter: none;
  border: none;
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-previous .content:hover {
  transform: none;
  box-shadow: none;
}

.about-previous h2 {
  font-size: 2.5em;
  color: #012970;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 1em;
  position: relative;
  text-align: center;
}

.about-previous h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(45deg, #4154f1, #6c5ce7);
  border-radius: 2px;
}

.about-previous p {
  margin: 15px 0 30px 0;
  line-height: 28px;
  font-size: 1.1em;
  color: #555;
  text-align: center;
}

.about-previous .content li {
  list-style: none;
  margin-bottom: 1em;
  font-weight: 500;
  padding: 1em;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  border-left: 4px solid #4154f1;
}

.about-previous .content li::before {
  content: '▶';
  color: #4154f1;
  font-weight: bold;
  margin-right: 10px;
  transition: transform 0.3s ease;
}

.about-previous .content li:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  border-left-color: #6c5ce7;
}

.about-previous .content li:hover::before {
  transform: translateX(5px);
}
/*--------------------------------------------------------------
# Values
--------------------------------------------------------------*/
.values .box {
  padding: 30px;
  box-shadow: 0px 0 5px rgba(1, 41, 112, 0.08);
  text-align: center;
  transition: 0.15s;
  height: 100%;
}

.values .box img {
  padding: 30px 50px;
  transition: 0.15s;
  transform: scale(1.1);
}

.values .box h3 {
  font-size: 24px;
  color: #012970;
  font-weight: 700;
  margin-bottom: 18px;
}

.values .box a {
  font-size: 16px;
  color: #0b52cd;
  font-weight: 700;
  margin-bottom: 18px;
}

.values .box:hover {
  box-shadow: 0px 0 30px rgba(1, 41, 112, 0.08);
}

.values .box:hover img {
  transform: scale(1);
}

/*--------------------------------------------------------------
# Products and Services
--------------------------------------------------------------*/
.DIC-box {
  border-radius: 20px;
  background-color: #e8ebf9;
  display: flexbox;
  padding: 30px;
  box-shadow: 0px 0 5px rgba(1, 41, 112, 0.08);
  text-align: center;
  transition: 0.15s;
  height: 100%;
}

.DIC-row-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 20px;
}
@media (min-width: 200px) {
  .DIC-row-grid {
    grid-template-columns: repeat(auto-fit, minmax(20em, 1fr));
  }
}

.DIC-box img {
  height: 16em;
  object-fit: contain;
}
.DIC-box h3 {
  font-size: 24px;
  color: #012970;
  font-weight: 700;
  margin-top: 20px;
  margin-bottom: 18px;
}

.DIC-box a {
  font-size: 16px;
  color: #0444b1;
  font-weight: 700;
  margin-bottom: 18px;
}

.values .box a:hover {
  font-size: 16px;
  color: #3f81f3;
  font-weight: 700;
  margin-bottom: 18px;
}

.btn-related-products {
  transition: 0.15s;
  color: #fff;
  background: #4154f1;
  box-shadow: 0px 5px 30px rgba(65, 84, 241, 0.4);
}

.btn-related-products img {
  width: 90%;
  padding-bottom: 20px;
  padding-left: 20px;
}

.btn-related-products h1 {
  font-size: 26px;
  color: white;
  font-weight: 700;
  margin: 20px;
}

.btn-related-products:hover img {
  transition: all ease-in-out 0.5s;
  transform: scale(1.1);
}

.digital-twin-container {
  position: relative;
  width: 100%;
  height: 300px;
  margin: 30px 0;
  perspective: 1000px;
}

.digital-twin-model {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  animation: rotate 20s infinite linear;
}

.digital-twin-face {
  position: absolute;
  width: 200px;
  height: 200px;
  top: 50px;
  left: calc(50% - 100px);
  background-color: rgba(0, 153, 204, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  color: white;
  border: 2px solid #003366;
  transform-origin: center;
}

.face-1 {
  transform: translateZ(100px);
}
.face-2 {
  transform: rotateY(90deg) translateZ(100px);
}
.face-3 {
  transform: rotateY(180deg) translateZ(100px);
}
.face-4 {
  transform: rotateY(-90deg) translateZ(100px);
}
.face-5 {
  transform: rotateX(90deg) translateZ(100px);
}
.face-6 {
  transform: rotateX(-90deg) translateZ(100px);
}

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

/*--------------------------------------------------------------
# Login
--------------------------------------------------------------*/
.login {
  margin-top: 5em;
  border-radius: 20px;
  border: #9ab9ee dotted;
  padding: 2em;
  background-color: #e8ebf9;
  display: flexbox;
  box-shadow: 0px 0 5px rgba(1, 41, 112, 0.08);
  text-align: center;
  transition: 0.15s;
  height: 100%;
  width: 40%;
}
.pulsehub {
  width: 40%;
  object-fit: contain;
}
.login h2 {
  font-size: 2em;
  color: #013289;
  font-weight: 800;
  padding-bottom: 1em;
  object-fit: contain;
}
@media (max-width: 600px) {
  .pulsehub {
    width: 100%;
  }

  .login h2 {
    font-size: 1.5em;
  }
}

.login input {
  display: flexbox;
  text-align: center;
  width: 100%;
  margin-bottom: 1em;
}

.login button {
  display: flexbox;
  text-align: center;
  width: 100%;
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  padding: 70px 0 60px;
}

.counts .count-box {
  display: flex;
  align-items: center;
  padding: 30px;
  width: 100%;
  background: #fff;
  box-shadow: 0px 0 30px rgba(1, 41, 112, 0.08);
}

.counts .count-box i {
  font-size: 42px;
  line-height: 0;
  margin-right: 20px;
  color: #4154f1;
}

.counts .count-box span {
  font-size: 36px;
  display: block;
  font-weight: 600;
  color: #233954ff;
}

.counts .count-box p {
  padding: 0;
  margin: 0;
  font-family: "Nunito", sans-serif;
  font-size: 14px;
}

/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.features .feature-box {
  padding: 24px 20px;
  box-shadow: 0px 0 30px rgba(1, 41, 112, 0.08);
  transition: 0.15s;
  height: 100%;
}

.features .feature-box h3 {
  font-size: 18px;
  color: #012970;
  font-weight: 700;
  margin: 0;
}

.features .feature-box a {
  font-size: 18px;
  color: #012970;
  font-weight: 700;
  margin: 0;
}

.features .feature-box a:hover {
  color: #751ad0;
}

.features .feature-box i {
  line-height: 0;
  background: #ecf3ff;
  padding: 4px;
  margin-right: 10px;
  font-size: 24px;
  border-radius: 3px;
  transition: 0.15s;
}

.features .feature-box:hover i {
  background: #4154f1;
  color: #fff;
}

.features .feture-tabs {
  margin-top: 120px;
}

.features .feture-tabs h3 {
  color: #012970;
  font-weight: 700;
  font-size: 32px;
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .features .feture-tabs h3 {
    font-size: 28px;
  }
}

.features .feture-tabs .nav-pills {
  border-bottom: 1px solid #eee;
}

.features .feture-tabs .nav-link {
  background: none;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 600;
  color: #012970;
  padding: 12px 0;
  margin-right: 25px;
  margin-bottom: -2px;
  border-radius: 0;
}

.features .feture-tabs .nav-link.active {
  color: #4154f1;
  border-bottom: 3px solid #4154f1;
}

.features .feture-tabs .tab-content h4 {
  font-size: 18px;
  margin: 0;
  font-weight: 700;
  color: #012970;
}

.features .feture-tabs .tab-content i {
  font-size: 24px;
  line-height: 0;
  margin-right: 8px;
  color: #4154f1;
}

.features .feature-icons {
  margin-top: 120px;
}

.features .feature-icons h3 {
  color: #012970;
  font-weight: 700;
  font-size: 32px;
  margin-bottom: 20px;
  text-align: center;
}

@media (max-width: 768px) {
  .features .feature-icons h3 {
    font-size: 28px;
  }
}

.features .feature-icons .content .icon-box {
  display: flex;
}

.features .feature-icons .content .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 10px 0;
  color: #012970;
}

.features .feature-icons .content .icon-box i {
  font-size: 44px;
  line-height: 44px;
  color: #0245bc;
  margin-right: 15px;
}

.features .feature-icons .content .icon-box p {
  font-size: 15px;
  color: #848484;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .service-box {
  box-shadow: 0px 0 30px rgba(1, 41, 112, 0.08);
  height: 100%;
  padding: 60px 30px;
  text-align: center;
  transition: 0.15s;
  border-radius: 5px;
}

.services .service-box .icon {
  font-size: 36px;
  padding: 40px 20px;
  border-radius: 4px;
  position: relative;
  margin-bottom: 25px;
  display: inline-block;
  line-height: 0;
  transition: 0.15s;
}

.services .service-box h3 {
  color: #444444;
  font-weight: 700;
}

.services .service-box .read-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 16px;
  padding: 8px 20px;
}

.services .service-box .read-more i {
  line-height: 0;
  margin-left: 5px;
  font-size: 18px;
}

.services .service-box.blue {
  border-bottom: 3px solid #2db6fa;
}

.services .service-box.blue .icon {
  color: #2db6fa;
  background: #dbf3fe;
}

.services .service-box.blue .read-more {
  color: #2db6fa;
}

.services .service-box.blue:hover {
  background: #2db6fa;
}

.services .service-box.orange {
  border-bottom: 3px solid #f68c09;
}

.services .service-box.orange .icon {
  color: #f68c09;
  background: #fde3c4;
}

.services .service-box.orange .read-more {
  color: #f68c09;
}

.services .service-box.orange:hover {
  background: #f68c09;
}

.services .service-box.green {
  border-bottom: 3px solid #08da4e;
}

.services .service-box.green .icon {
  color: #08da4e;
  background: #cffddf;
}

.services .service-box.green .read-more {
  color: #08da4e;
}

.services .service-box.green:hover {
  background: #08da4e;
}

.services .service-box.red {
  border-bottom: 3px solid #e9222c;
}

.services .service-box.red .icon {
  color: #e9222c;
  background: #fef7f8;
}

.services .service-box.red .read-more {
  color: #e9222c;
}

.services .service-box.red:hover {
  background: #e9222c;
}

.services .service-box.purple {
  border-bottom: 3px solid #b50edf;
}

.services .service-box.purple .icon {
  color: #b50edf;
  background: #f8e4fd;
}

.services .service-box.purple .read-more {
  color: #b50edf;
}

.services .service-box.purple:hover {
  background: #b50edf;
}

.services .service-box.pink {
  border-bottom: 3px solid #f51f9c;
}

.services .service-box.pink .icon {
  color: #f51f9c;
  background: #feecf7;
}

.services .service-box.pink .read-more {
  color: #f51f9c;
}

.services .service-box.pink:hover {
  background: #f51f9c;
}

.services .service-box:hover h3,
.services .service-box:hover p,
.services .service-box:hover .read-more {
  color: #fff;
}

.services .service-box:hover .icon {
  background: #fff;
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .box {
  padding: 40px 20px;
  background: #fff;
  text-align: center;
  box-shadow: 0px 0 30px rgba(1, 41, 112, 0.08);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  transition: 0.15s;
}

.pricing .box:hover {
  transform: scale(1.1);
  box-shadow: 0px 0 30px rgba(1, 41, 112, 0.1);
}

.pricing h3 {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 15px;
}

.pricing .price {
  font-size: 36px;
  color: #444444;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
}

.pricing .price sup {
  font-size: 20px;
  top: -15px;
  left: -3px;
}

.pricing .price span {
  color: #bababa;
  font-size: 16px;
  font-weight: 300;
}

.pricing img {
  padding: 30px 40px;
}

.pricing ul {
  padding: 0;
  list-style: none;
  color: #444444;
  text-align: center;
  line-height: 26px;
  font-size: 16px;
  margin-bottom: 25px;
}

.pricing ul li {
  padding-bottom: 10px;
}

.pricing ul .na {
  color: #ccc;
  text-decoration: line-through;
}

.pricing .btn-buy {
  display: inline-block;
  padding: 8px 40px 10px 40px;
  border-radius: 50px;
  color: #4154f1;
  transition: none;
  font-size: 16px;
  font-weight: 400;
  font-family: "Nunito", sans-serif;
  font-weight: 600;
  transition: 0.15s;
  border: 1px solid #4154f1;
}

.pricing .btn-buy:hover {
  background: #4154f1;
  color: #fff;
}

.pricing .featured {
  width: 200px;
  position: absolute;
  top: 18px;
  right: -68px;
  transform: rotate(45deg);
  z-index: 1;
  font-size: 14px;
  padding: 1px 0 3px 0;
  background: #4154f1;
  color: #fff;
}

/*--------------------------------------------------------------
# F.A.Q
--------------------------------------------------------------*/
.faq .accordion-collapse {
  border: 0;
}

.faq .accordion-button {
  padding: 15px 15px 20px 0;
  font-weight: 600;
  border: 0;
  font-size: 18px;
  color: #444444;
  text-align: left;
}

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

.faq .accordion-button:not(.collapsed) {
  background: none;
  color: #4154f1;
  border-bottom: 0;
}

.faq .accordion-body {
  padding: 0 0 25px 0;
  border: 0;
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 25px auto;
  list-style: none;
  text-align: center;
  background: white;
  border-radius: 50px;
  padding: 2px 15px;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 20px 10px 20px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  color: #444444;
  margin: 0 4px 8px 4px;
  transition: 0.15s;
  border-radius: 50px;
  border: 1px solid #fff;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  color: #4154f1;
  border-color: #4154f1;
}

.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

.portfolio .portfolio-wrap {
  transition: 0.15s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: rgba(255, 255, 255, 0.75);
}

.portfolio .portfolio-wrap::before {
  content: "";
  background: rgba(255, 255, 255, 0.75);
  position: absolute;
  left: 30px;
  right: 30px;
  top: 30px;
  bottom: 30px;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 0;
}

.portfolio .portfolio-wrap img {
  transition: 1s;
}

.portfolio .portfolio-wrap .portfolio-info {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.portfolio .portfolio-wrap .portfolio-info::before {
  display: block;
  content: "";
  width: 48px;
  height: 48px;
  position: absolute;
  top: 35px;
  left: 35px;
  border-top: 3px solid rgba(1, 41, 112, 0.2);
  border-left: 3px solid rgba(1, 41, 112, 0.2);
  transition: all 0.5s ease 0s;
  z-index: 9994;
}

.portfolio .portfolio-wrap .portfolio-info::after {
  display: block;
  content: "";
  width: 48px;
  height: 48px;
  position: absolute;
  bottom: 35px;
  right: 35px;
  border-bottom: 3px solid rgba(1, 41, 112, 0.2);
  border-right: 3px solid rgba(1, 41, 112, 0.2);
  transition: all 0.5s ease 0s;
  z-index: 9994;
}

.portfolio .portfolio-wrap .portfolio-info h4 {
  font-size: 20px;
  color: #012970;
  font-weight: 700;
}

.portfolio .portfolio-wrap .portfolio-info p {
  color: #012970;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  padding: 0;
  margin: 0;
}

.portfolio .portfolio-wrap .portfolio-links {
  text-align: center;
  z-index: 4;
}

.portfolio .portfolio-wrap .portfolio-links a {
  color: #fff;
  background: #4154f1;
  margin: 10px 2px;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: 0.15s;
}

.portfolio .portfolio-wrap .portfolio-links a i {
  font-size: 24px;
  line-height: 0;
}

.portfolio .portfolio-wrap .portfolio-links a:hover {
  background: #5969f3;
}

.portfolio .portfolio-wrap:hover img {
  transform: scale(1.1);
}

.portfolio .portfolio-wrap:hover::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 1;
}

.portfolio .portfolio-wrap:hover .portfolio-info {
  opacity: 1;
}

.portfolio .portfolio-wrap:hover .portfolio-info::before {
  top: 15px;
  left: 15px;
}

.portfolio .portfolio-wrap:hover .portfolio-info::after {
  bottom: 15px;
  right: 15px;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}

.portfolio-details .portfolio-details-slider img {
  width: 80%;
  display: block;
  margin: auto;
}

.page-slider {
  display: grid;
  column-count: 1;
  width: 70%;
  overflow: hidden;
}
.page-slider img {
  width: 100%;
  transition: 0.1s;
}

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

.swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #012970;
}

.swiper-pagination .swiper-pagination-bullet-active {
  background-color: #012970;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(1, 41, 112, 0.08);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li + li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  color: #012970;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonial-item {
  box-sizing: content-box;
  padding: 30px;
  margin: 40px 30px;
  box-shadow: 0px 0 20px rgba(1, 41, 112, 0.1);
  background: #fff;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  text-align: center;
  transition: 0.15s;
}

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

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  border: 4px solid #fff;
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #111;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0;
}

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

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

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #012970;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #012970;
}

.testimonials .swiper-slide {
  opacity: 0.3;
}

@media (max-width: 1199px) {
  .testimonials .swiper-slide-active {
    opacity: 1;
  }

  .testimonials .swiper-pagination {
    margin-top: 0;
  }
}

@media (min-width: 1200px) {
  .testimonials .swiper-slide-next {
    opacity: 1;
    transform: scale(1.12);
  }
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team {
  background: #fff;
  padding: 60px 0;
}

.team .member {
  overflow: hidden;
  text-align: center;
  border-radius: 5px;
  background: #fff;
  box-shadow: 0px 0 30px rgba(1, 41, 112, 0.08);
  transition: 0.15s;
}

.team .member .member-img {
  position: relative;
  overflow: hidden;
}

.team .member .member-img:after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  background: url(../img/team-shape.svg) no-repeat center bottom;
  background-size: contain;
  z-index: 1;
}

.team .member .social {
  position: absolute;
  right: -100%;
  top: 30px;
  opacity: 0;
  border-radius: 4px;
  transition: 0.15s;
  background: rgba(255, 255, 255, 0.4);
  z-index: 2;
}

.team .member .social a {
  transition: color 0.3s;
  color: rgba(1, 41, 112, 0.6);
  margin: 15px 12px;
  display: block;
  line-height: 0;
  text-align: center;
}

.team .member .social a:hover {
  color: rgba(1, 41, 112, 0.9);
}

.team .member .social i {
  font-size: 18px;
}

.team .member .member-info {
  padding: 10px 15px 20px 15px;
}

.team .member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 20px;
  color: #012970;
}

.team .member .member-info span {
  display: block;
  font-size: 14px;
  font-weight: 400;
  color: #aaaaaa;
}

.team .member .member-info p {
  font-style: italic;
  font-size: 14px;
  padding-top: 15px;
  line-height: 26px;
  color: #5e5e5e;
}

.team .member:hover {
  transform: scale(1.08);
  box-shadow: 0px 0 30px rgba(1, 41, 112, 0.1);
}

.team .member:hover .social {
  right: 8px;
  opacity: 1;
}

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients .clients-slider .swiper-slide img {
  opacity: 0.6;
  transition: 0.1s;
}

.clients .clients-slider .swiper-slide img:hover {
  opacity: 1;
}

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

.clients .clients-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #012970;
}

.clients .clients-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #012970;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-box {
  color: #444444;
  background: #fff;
  padding: 24px;
  margin-bottom: 16px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  transition: all 0.2s ease;
  position: relative;
}

.contact .info-box:hover {
  border-color: #233954ff;
  box-shadow: 0 4px 12px rgba(35, 57, 84, 0.08);
}

.contact .info-box i {
  font-size: 18px;
  line-height: 1;
  color: #233954ff;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background-color: rgba(35, 57, 84, 0.1);
  margin-bottom: 12px;
  flex-shrink: 0;
}

.contact .info-box h3 {
  font-size: 16px;
  color: #233954ff;
  font-weight: 600;
  margin: 0 0 8px 0;
  line-height: 1.4;
}

.contact .info-box h2 {
  font-size: 1.3em;
  color: #012970;
  font-weight: 700;
  margin-top: 1em;
}
.contact .info-box p {
  padding: 0;
  line-height: 1.5;
  font-size: 14px;
  margin: 0;
  color: #6b7280;
  font-weight: 400;
}

.contact .info-box p a {
  color: #233954ff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.contact .info-box p a:hover {
  color: #4154f1;
  text-decoration: none;
}

/* Contact method specific icons */
.contact .info-box.phone i::before {
  content: "\f095"; /* Phone icon */
}

.contact .info-box.email i::before {
  content: "\f0e0"; /* Email icon */
}

.contact .info-box.address i::before {
  content: "\f3c5"; /* Map marker icon */
}

.contact .info-box.hours i::before {
  content: "\f017"; /* Clock icon */
}

.contact .info-box.social i::before {
  content: "\f1e0"; /* Share icon */
}

/* Ensure all contact icons are consistent */
.contact .info-box i {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 18px;
  line-height: 1;
  color: #233954ff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background-color: rgba(35, 57, 84, 0.1);
  margin-bottom: 12px;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

/* Icon hover effects */
.contact .info-box:hover i {
  transform: scale(1.05);
  background-color: rgba(35, 57, 84, 0.15);
  color: #233954ff;
}

.contact .php-email-form {
  background: #fff;
  padding: 24px;
  height: 100%;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  transition: all 0.2s ease;
}

.contact .php-email-form:hover {
  border-color: #233954ff;
  box-shadow: 0 4px 12px rgba(35, 57, 84, 0.08);
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #edd30d;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 8px;
  border: 1px solid #d1d5db;
  font-size: 14px;
  padding: 12px 16px;
  transition: all 0.2s ease;
  background-color: #fff;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: #233954ff;
  box-shadow: 0 0 0 3px rgba(35, 57, 84, 0.1);
  outline: none;
}


.contact .php-email-form input {
  padding: 10px 15px;
}

.contact .php-email-form textarea {
  padding: 12px 15px;
}

.contact .php-email-form button[type="submit"] {
  background: #233954ff;
  border: 0;
  padding: 12px 24px;
  color: #fff;
  transition: all 0.2s ease;
  border-radius: 8px;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
}

.contact .php-email-form button[type="submit"]:hover {
  background: #4154f1;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(35, 57, 84, 0.2);
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

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

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

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

/*--------------------------------------------------------------
# News
--------------------------------------------------------------*/
.news .news-item {
  box-sizing: border-box;
  padding: 20px;
  margin: 20px 15px;
  box-shadow: 0px 0 20px rgba(1, 41, 112, 0.1);
  background: #fff;
  min-height: 280px;
  width: 100%;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  text-align: center;
  transition: 0.15s;
}

.news .news-item .news-img {
  object-fit: cover;
  max-height: 12em;
  width: 100%;
  max-width: 15em;
  margin: 0 auto;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news .news-item h3 {
  font-size: 16px;
  font-weight: bold;
  margin: 8px 0 5px 0;
  color: #0e0668;
  line-height: 1.3;
  border: none !important;
  border-bottom: none !important;
  outline: none !important;
  box-shadow: none !important;
  text-decoration: none !important;
}

.news .news-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0;
}

.news .news-item p {
  margin: 0 auto 15px auto;
  font-size: 14px;
  line-height: 1.4;
}

/* Hover effect for news images */
.news .news-item:hover .news-img {
  transform: scale(1.05);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Remove any borders on h3 elements when hovering over news cards */
.news .news-item:hover h3,
.news .news-item h3:hover,
.news .news-item:hover h3:after,
.news .news-item:hover h3:before,
.news .news-item h3:after,
.news .news-item h3:before {
  border: none !important;
  border-bottom: none !important;
  outline: none !important;
  box-shadow: none !important;
  text-decoration: none !important;
}

/* Ensure no pseudo-elements create borders */
.news .news-item h3:after,
.news .news-item h3:before {
  content: none !important;
  border: none !important;
  border-bottom: none !important;
}

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

.news .swiper-pagination .swiper-pagination-bullet {
  width: 14px;
  height: 14px;
  background-color: #fff;
  opacity: 0.6;
  border: 2px solid #012970;
  border-radius: 50%;
  transition: all 0.3s ease;
  cursor: pointer;
}

.news .swiper-pagination .swiper-pagination-bullet:hover {
  opacity: 0.8;
  transform: scale(1.1);
  border-color: #012970;
}

.news .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #012970;
  opacity: 1;
  transform: scale(1.2);
  box-shadow: 0 0 10px rgba(1, 41, 112, 0.5);
}

.news .read-more {
  display: grid;
  align-items: center;
  justify-content: center;
}

.news .read-more a {
  color: #233954ff;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: color 0.3s ease;
}

.news .read-more a:hover {
  color: #4154f1;
  text-decoration: none;
}

.news .read-more a i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.news .read-more a:hover i {
  transform: translateX(5px);
}

/* NEWS section specific styling */
.news .section-header {
  padding-bottom: 30px;
  padding-top: 20px;
  color:#233954ff;
}

.news .section-header p {
  font-size: 32px;
  font-weight: 800;
  color: #233954;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin: 0;
  padding: 0;
}

.news .swiper-slide {
  opacity: 0.3;
}

@media (max-width: 1199px) {
  .news .swiper-slide-active {
    opacity: 1;
  }

  .news .swiper-pagination {
    margin-top: 0;
  }
}

@media (min-width: 1200px) {
  .news .swiper-slide-next {
    opacity: 1;
    transform: scale(1.12);
  }
}

/* Responsive pagination dots */
@media (max-width: 768px) {
  .news .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    border-width: 1px;
    border-color: #012970;
  }
  
  .news .swiper-pagination .swiper-pagination-bullet-active {
    transform: scale(1.1);
    background-color: #012970;
  }
}

@media (min-width: 1200px) {
  .news .swiper-pagination {
    margin-top: 30px;
  }
  
  .news .swiper-pagination .swiper-pagination-bullet {
    width: 16px;
    height: 16px;
    margin: 0 8px;
  }
}

/* Simplified responsive adjustments for news cards */
@media (max-width: 768px) {
  .news .news-item {
    padding: 15px;
    margin: 15px 10px;
    min-height: 250px;
    max-width: 100%;
  }
  
  .news .news-item .news-img {
    max-height: 10em;
    max-width: 100%;
  }
}

@media (min-width: 769px) {
  .news .news-item {
    padding: 20px;
    margin: 20px 15px;
    min-height: 280px;
    max-width: 320px;
    flex-shrink: 0;
  }
  
  .news .news-item .news-img {
    max-height: 12em;
    max-width: 100%;
  }
}

/*--------------------------------------------------------------
# Recent Blog Posts
--------------------------------------------------------------*/
.recent-blog-posts .post-box {
  box-shadow: 0px 0 30px rgba(1, 41, 112, 0.08);
  transition: 0.15s;
  height: 100%;
  overflow: hidden;
  padding: 30px;
  border-radius: 8px;
  position: relative;
  display: flex;
  flex-direction: column;
}

.recent-blog-posts .post-box .post-img {
  overflow: hidden;
  margin: -30px -30px 15px -30px;
  position: relative;
}

.recent-blog-posts .post-box .post-img img {
  transition: 0.15s;
}

.recent-blog-posts .post-box .post-date {
  font-size: 16px;
  font-weight: 600;
  color: rgba(1, 41, 112, 0.6);
  display: block;
  margin-bottom: 10px;
}

.recent-blog-posts .post-box .post-title {
  font-size: 24px;
  color: #012970;
  font-weight: 700;
  margin-bottom: 18px;
  position: relative;
  transition: 0.15s;
}

.recent-blog-posts .post-box .readmore {
  display: flex;
  align-items: center;
  font-weight: 600;
  line-height: 1;
  transition: 0.15s;
}

.recent-blog-posts .post-box .readmore i {
  line-height: 0;
  margin-left: 4px;
  font-size: 18px;
}

.recent-blog-posts .post-box:hover .post-title {
  color: #4154f1;
}

.recent-blog-posts .post-box:hover .post-img img {
  transform: rotate(6deg) scale(1.2);
}

/*--------------------------------------------------------------
# Blog
--------------------------------------------------------------*/
.blog {
  padding: 40px 0 20px 0;
}

.blog .entry {
  padding: 30px;
  margin-bottom: 60px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .entry .entry-img {
  max-width: 100%;
  max-height: auto;
  display: grid;
  justify-content: center;
  margin-bottom: 2em;
}

.blog .entry .entry-img-proj {
  max-width: 15em;
  display: flex;
  justify-content: center;
}

.blog .entry .entry-title {
  font-size: 28px;
  font-weight: bold;
  margin-top: 2em;
  margin: 1em;
}

.blog .entry .entry-title a {
  color: #012970;
  transition: 0.15s;
}

.blog .entry .entry-title a:hover {
  color: #4154f1;
}

.blog .entry .entry-meta {
  margin-bottom: 15px;
  color: #777777;
  font-size: 14px;
}

.blog .entry .entry-meta ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.blog .entry .entry-meta ul li + li {
  padding-left: 20px;
}

.blog .entry .entry-meta i {
  font-size: 16px;
  color: #4084fd;
  margin-right: 8px;
  line-height: 0;
}

.blog .entry .entry-meta a {
  color: #777777;
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.blog .entry .entry-content p {
  line-height: 24px;
}

.blog .entry .entry-content .read-more {
  -moz-text-align-last: right;
  text-align-last: right;
}

.blog .entry .entry-content .read-more a {
  display: inline-block;
  background: #4154f1;
  color: #fff;
  padding: 6px 20px;
  transition: 0.15s;
  font-size: 14px;
  border-radius: 4px;
}

.blog .entry .entry-content .read-more a:hover {
  background: #5969f3;
}

.blog .entry .entry-content h3 {
  font-size: 22px;
  margin-top: 30px;
  font-weight: bold;
}

.blog .entry .entry-content blockquote {
  overflow: hidden;
  background-color: #fafafa;
  padding: 60px;
  position: relative;
  text-align: center;
  margin: 20px 0;
}

.blog .entry .entry-content blockquote p {
  color: #444444;
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
}

.blog .entry .entry-content blockquote::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: #012970;
  margin-top: 20px;
  margin-bottom: 20px;
}

.blog .entry .entry-footer {
  padding-top: 10px;
  border-top: 1px solid #e6e6e6;
}

.blog .entry .entry-footer i {
  color: #0d64fd;
  display: inline;
}

.blog .entry .entry-footer a {
  color: #013289;
  transition: 0.15s;
}

.blog .entry .entry-footer a:hover {
  color: #4154f1;
}

.blog .entry .entry-footer .cats {
  list-style: none;
  display: inline;
  padding: 0 20px 0 0;
  font-size: 14px;
}

.blog .entry .entry-footer .cats li {
  display: inline-block;
}

.blog .entry .entry-footer .tags {
  list-style: none;
  display: inline;
  padding: 0;
  font-size: 14px;
}

.blog .entry .entry-footer .tags li {
  display: inline-block;
}

.blog .entry .entry-footer .tags li + li::before {
  padding-right: 6px;
  color: #6c757d;
  content: ",";
}

.blog .entry .entry-footer .share {
  font-size: 16px;
}

.blog .entry .entry-footer .share i {
  padding-left: 5px;
}

.blog .entry-single {
  margin-bottom: 30px;
}

.blog .blog-author {
  padding: 20px;
  margin-bottom: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .blog-author img {
  width: 120px;
  margin-right: 20px;
}

.blog .blog-author h4 {
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 0px;
  padding: 0;
  color: #012970;
}

.blog .blog-author .social-links {
  margin: 0 10px 10px 0;
}

.blog .blog-author .social-links a {
  color: rgba(1, 41, 112, 0.5);
  margin-right: 5px;
}

.blog .blog-author p {
  font-style: italic;
  color: #b7b7b7;
}

.blog .blog-comments {
  margin-bottom: 30px;
}

.blog .blog-comments .comments-count {
  font-weight: bold;
}

.blog .blog-comments .comment {
  margin-top: 30px;
  position: relative;
}

.blog .blog-comments .comment .comment-img {
  margin-right: 14px;
}

.blog .blog-comments .comment .comment-img img {
  width: 60px;
}

.blog .blog-comments .comment h5 {
  font-size: 16px;
  margin-bottom: 2px;
}

.blog .blog-comments .comment h5 a {
  font-weight: bold;
  color: #444444;
  transition: 0.15s;
}

.blog .blog-comments .comment h5 a:hover {
  color: #4154f1;
}

.blog .blog-comments .comment h5 .reply {
  padding-left: 10px;
  color: #012970;
}

.blog .blog-comments .comment h5 .reply i {
  font-size: 20px;
}

.blog .blog-comments .comment time {
  display: block;
  font-size: 14px;
  color: #013ca3;
  margin-bottom: 5px;
}

.blog .blog-comments .comment.comment-reply {
  padding-left: 40px;
}

.blog .blog-comments .reply-form {
  margin-top: 30px;
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .blog-comments .reply-form h4 {
  font-weight: bold;
  font-size: 22px;
}

.blog .blog-comments .reply-form p {
  font-size: 14px;
}

.blog .blog-comments .reply-form input {
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
}

.blog .blog-comments .reply-form input:focus {
  box-shadow: none;
  border-color: #a0aaf8;
}

.blog .blog-comments .reply-form textarea {
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
}

.blog .blog-comments .reply-form textarea:focus {
  box-shadow: none;
  border-color: #a0aaf8;
}

.blog .blog-comments .reply-form .form-group {
  margin-bottom: 25px;
}

.blog .blog-comments .reply-form .btn-primary {
  border-radius: 4px;
  padding: 10px 20px;
  border: 0;
  background-color: #012970;
}

.blog .blog-comments .reply-form .btn-primary:hover {
  background-color: #013289;
}

.blog .blog-pagination {
  color: #024ed5;
}

.blog .blog-pagination ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.blog .blog-pagination li {
  margin: 0 5px;
  transition: 0.15s;
}

.blog .blog-pagination li a {
  color: #012970;
  padding: 7px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog .blog-pagination li.active,
.blog .blog-pagination li:hover {
  background: #4154f1;
}

.blog .blog-pagination li.active a,
.blog .blog-pagination li:hover a {
  color: #fff;
}

.blog .sidebar {
  padding: 30px;
  margin: 0 0 60px 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .sidebar .sidebar-title {
  font-size: 20px;
  font-weight: 700;
  padding: 0 0 0 0;
  margin: 0 0 15px 0;
  color: #012970;
  position: relative;
}

.blog .sidebar .sidebar-item {
  margin-bottom: 30px;
}

.blog .sidebar .search-form form {
  background: #fff;
  border: 1px solid #ddd;
  padding: 3px 10px;
  position: relative;
}

.blog .sidebar .search-form form input[type="text"] {
  border: 0;
  padding: 4px;
  border-radius: 4px;
  width: calc(100% - 40px);
}

.blog .sidebar .search-form form button {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 15px;
  margin: -1px;
  background: #4154f1;
  color: #fff;
  border-radius: 0 4px 4px 0;
  line-height: 0;
}

.blog .sidebar .search-form form button i {
  line-height: 0;
}

.blog .sidebar .search-form form button:hover {
  background: #5465f2;
}

.blog .sidebar .categories ul {
  list-style: none;
  padding: 0;
}

.blog .sidebar .categories ul li + li {
  padding-top: 10px;
}

.blog .sidebar .categories ul a {
  color: #012970;
  transition: 0.15s;
}

.blog .sidebar .categories ul a:hover {
  color: #4154f1;
}

.blog .sidebar .categories ul a span {
  padding-left: 5px;
  color: #aaaaaa;
  font-size: 14px;
}

.blog .sidebar .recent-posts .post-item + .post-item {
  margin-top: 15px;
}

.blog .sidebar .recent-posts img {
  width: 80px;
  float: left;
}

.blog .sidebar .recent-posts h4 {
  font-size: 15px;
  margin-left: 95px;
  font-weight: bold;
}

.blog .sidebar .recent-posts h4 a {
  color: #012970;
}

.blog .sidebar .recent-posts h4 a:hover {
  color: #4154f1;
}

.blog .sidebar .recent-posts time {
  display: block;
  margin-left: 95px;
  font-style: italic;
  font-size: 14px;
  color: #aaaaaa;
}

.blog .sidebar .tags {
  margin-bottom: -10px;
}

.blog .sidebar .tags ul {
  list-style: none;
  padding: 0;
}

.blog .sidebar .tags ul li {
  display: inline-block;
}

.blog .sidebar .tags ul a {
  color: #0257ee;
  font-size: 14px;
  padding: 6px 14px;
  margin: 0 6px 8px 0;
  border: 1px solid #d7e6ff;
  display: inline-block;
}

.blog .sidebar .tags ul a:hover {
  color: #fff;
  border: 1px solid #4154f1;
  background: #4154f1;
}

.blog .sidebar .tags ul a span {
  padding-left: 5px;
  color: #a5c5fe;
  font-size: 14px;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  background: #f6f9ff;
  padding: 0 0 30px 0;
  font-size: 14px;
}

.footer .footer-newsletter {
  padding: 50px 0;
  background: #f6f9ff;
  border-top: 1px solid #e1ecff;
}

.footer .footer-newsletter h4 {
  font-size: 24px;
  margin: 0 0 10px 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  color: #012970;
}

.footer .footer-newsletter form {
  margin-top: 20px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 4px;
  border: 1px solid #e1ecff;
}

.footer .footer-newsletter form input[type="email"] {
  border: 0;
  padding: 8px;
  width: calc(100% - 140px);
}

.footer .footer-newsletter form input[type="submit"] {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 30px;
  margin: 3px;
  background: #012970;
  color: #fff;
  transition: 0.15s;
  border-radius: 4px;
}

.contact form input[type="submit"] {
  position: relative;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
}

/* Simple decorative elements */
.contact .info-box::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-bottom: 20px solid rgba(65, 84, 241, 0.1);
}

/* Contact section title with icon */
.contact .section-header h2::before {
  content: "\f095";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 10px;
  color: #4154f1;
}

/* Form labels styling */
.contact .php-email-form label {
  display: block;
  font-weight: 500;
  color: #233954ff;
  margin-bottom: 6px;
  font-size: 14px;
}

/* Form spacing */
.contact .php-email-form p {
  margin-bottom: 16px;
}

/* Contact form responsive layout */
@media (max-width: 768px) {
  .contact .row {
    margin: 0;
  }
  
  .contact .col-md-4,
  .contact .col-md-6,
  .contact .col-lg-6 {
    padding: 0 8px;
    margin-bottom: 16px;
  }
  
  /* Form field improvements for mobile */
  .contact form .form-control {
    font-size: 16px; /* Prevents zoom on iOS */
    padding: 12px 16px;
    border-radius: 6px;
    border: 1px solid #d1d5db;
    transition: all 0.3s ease;
  }
  
  .contact form .form-control:focus {
    border-color: #233954ff;
    box-shadow: 0 0 0 3px rgba(35, 57, 84, 0.1);
    outline: none;
  }
  
  .contact form textarea.form-control {
    min-height: 120px;
    resize: vertical;
  }
  
  .contact form button[type="submit"] {
    width: 100%;
    padding: 14px 20px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
  }
}

@media (max-width: 576px) {
  .contact .col-md-4,
  .contact .col-md-6,
  .contact .col-lg-6 {
    padding: 0 4px;
    margin-bottom: 12px;
  }
  
  .contact .container {
    padding: 0 16px;
  }
  
  /* Enhanced mobile form styling */
  .contact form .form-control {
    font-size: 16px;
    padding: 14px 16px;
    margin-bottom: 16px;
  }
  
  .contact form textarea.form-control {
    min-height: 100px;
  }
  
  .contact form button[type="submit"] {
    padding: 16px 20px;
    font-size: 16px;
    margin-top: 8px;
  }
}

@media (max-width: 480px) {
  .contact .container {
    padding: 0 12px;
  }
  
  .contact form .form-control {
    padding: 12px 14px;
    font-size: 16px;
  }
  
  .contact form button[type="submit"] {
    padding: 14px 16px;
  }
}

/* Google Maps iframe responsive */
.contact iframe {
  width: 100% !important;
  height: 400px !important;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.contact iframe:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

/* Contact section layout improvements */
.contact .row {
  align-items: stretch;
}

.contact .col-lg-6 {
  display: flex;
  flex-direction: column;
}

.contact .col-lg-6:first-child {
  padding-right: 15px;
}

.contact .col-lg-6:last-child {
  padding-left: 15px;
}

/* Contact content wrapper styling */
.contact-content-wrapper {
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

/* Mobile and tablet styling for wrapper */
@media (max-width: 991px) {
  .contact-content-wrapper {
    padding: 0 10px;
  }
}

/* Desktop horizontal padding for contact section */
@media (min-width: 992px) {
  .contact {
    padding: 60px 0;
  }
  
  .contact .container {
    padding: 0 30px;
  }
  
  .contact-content-wrapper {
    padding: 0 40px;
    max-width: 1200px;
    margin: 0 auto;
  }
}

@media (min-width: 1200px) {
  .contact {
    padding: 80px 0;
  }
  
  .contact .container {
    padding: 0 40px;
  }
  
  .contact-content-wrapper {
    padding: 0 60px;
    max-width: 1300px;
    margin: 0 auto;
  }
}

@media (min-width: 1400px) {
  .contact {
    padding: 100px 0;
  }
  
  .contact .container {
    padding: 0 60px;
  }
  
  .contact-content-wrapper {
    padding: 0 80px;
    max-width: 1400px;
    margin: 0 auto;
  }
}

/* Form container improvements */
.contact #contact_form {
  background: #fff;
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
  position: relative;
}

.contact #contact_form:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

/* Form field styling improvements */
.contact form .form-control {
  border: 1px solid #d1d5db;
  border-radius: 6px;
  padding: 12px 16px;
  font-size: 14px;
  transition: all 0.3s ease;
  background-color: #fff;
}

.contact form .form-control:focus {
  border-color: #233954ff;
  box-shadow: 0 0 0 3px rgba(35, 57, 84, 0.1);
  outline: none;
}

.contact form .form-control::placeholder {
  color: #9ca3af;
  font-size: 14px;
}

.contact form textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

.contact form button[type="submit"] {
  background: #233954ff;
  border: none;
  color: #fff;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: none;
}

.contact form button[type="submit"]:hover {
  background: #4154f1;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(35, 57, 84, 0.2);
}

.contact form button[type="submit"]:active {
  transform: translateY(0);
}

/* Large screens optimization */
@media (min-width: 1200px) {
  .contact .container {
    max-width: 1140px;
    padding: 0 40px;
  }
  
  .contact iframe {
    height: 450px !important;
  }
  
  .contact #contact_form {
    padding: 32px;
  }
}

/* Desktop padding for contact section */
@media (min-width: 992px) {
  .contact .container {
    padding: 0 30px;
  }
}

/* Extra large screens */
@media (min-width: 1400px) {
  .contact .container {
    padding: 0 60px;
    max-width: 1200px;
  }
}

/* Tablet and smaller screens */
@media (max-width: 992px) {
  .contact .col-lg-6:first-child {
    padding-right: 0;
    margin-bottom: 30px;
  }
  
  .contact .col-lg-6:last-child {
    padding-left: 0;
  }
  
  .contact iframe {
    height: 350px !important;
  }
}

@media (max-width: 768px) {
  .contact iframe {
    height: 300px !important;
    margin-bottom: 20px;
  }
  
  .contact #contact_form {
    padding: 20px;
  }
}

@media (max-width: 576px) {
  .contact iframe {
    height: 250px !important;
    margin-bottom: 16px;
  }
  
  .contact #contact_form {
    padding: 16px;
  }
}

@media (max-width: 480px) {
  .contact iframe {
    height: 200px !important;
    margin-bottom: 12px;
  }
  
  .contact #contact_form {
    padding: 12px;
  }
}

/* Accessibility improvements */
.contact form label {
  font-weight: 500;
  color: #374151;
  margin-bottom: 6px;
  display: block;
}

.contact form .form-control:focus {
  border-color: #233954ff;
  box-shadow: 0 0 0 3px rgba(35, 57, 84, 0.1);
  outline: 2px solid transparent;
  outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .contact iframe {
    border: 2px solid #000;
  }
  
  .contact #contact_form {
    border: 2px solid #000;
  }
  
  .contact form .form-control {
    border: 2px solid #000;
  }
  
  .contact form .form-control:focus {
    border-color: #000;
    box-shadow: 0 0 0 3px #000;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .contact iframe,
  .contact #contact_form,
  .contact form .form-control,
  .contact form button[type="submit"] {
    transition: none;
  }
  
  .contact iframe:hover,
  .contact #contact_form:hover,
  .contact form button[type="submit"]:hover {
    transform: none;
  }
}

/* Captcha/ReCAPTCHA Styling */
.contact form .g-recaptcha {
  margin: 20px 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  min-height: 78px;
  padding: 16px;
  background: #fff;
  border-radius: 8px;
  border: 2px solid #d1d5db;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
}

.contact form .g-recaptcha:hover {
  border-color: #012970;
  box-shadow: 0 4px 8px rgba(1, 41, 112, 0.15);
}

.contact form .g-recaptcha > div {
  transform: scale(1);
  transform-origin: left top;
  margin-left: 0;
}

.contact form .g-recaptcha iframe {
  border-radius: 6px;
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
}

/* Remove all borders from reCAPTCHA iframe */
.contact form .g-recaptcha iframe[title="reCAPTCHA"] {
  border: none !important;
  border-width: 0 !important;
  border-style: none !important;
  border-color: transparent !important;
  box-shadow: none !important;
  outline: none !important;
}

/* Additional targeting for reCAPTCHA iframe */
.contact form .g-recaptcha iframe[src*="recaptcha"] {
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
}

/* Target any iframe within captcha container */
.contact form .g-recaptcha iframe {
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
}

/* Captcha label integration */
.contact form p:has(.g-recaptcha) {
  margin-bottom: 0;
  padding: 0;
  position: relative;
}

.contact form p:has(.g-recaptcha)::before {
  content: "Captcha:";
  display: block;
  font-weight: 500;
  color: #374151;
  margin-bottom: 12px;
  font-size: 14px;
  position: absolute;
  top: -8px;
  left: 0;
  background: #fff;
  padding: 0 8px;
  z-index: 1;
}

/* Captcha container improvements */
.contact form p:has(.g-recaptcha) {
  margin-bottom: 16px;
  padding: 0;
  position: relative;
}

.contact form p:has(.g-recaptcha) label {
  display: none;
}

/* Enhanced captcha styling for better form integration */
.contact form .g-recaptcha {
  border: 2px solid #d1d5db;
  background: #fff;
  border-radius: 8px;
  padding: 16px;
  margin: 20px 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.contact form .g-recaptcha:focus-within {
  border-color: #012970;
  box-shadow: 0 0 0 3px rgba(1, 41, 112, 0.1);
  outline: none;
}

/* Captcha success state styling */
.contact form .g-recaptcha.verified {
  background: #f0f9ff;
  border-color: #012970;
  box-shadow: 0 0 0 3px rgba(1, 41, 112, 0.1);
}

/* Captcha label styling */
.contact form label[for="id_captcha"] {
  font-weight: 500;
  color: #374151;
  margin-bottom: 8px;
  display: block;
  font-size: 14px;
}

/* Alternative captcha label styling for better integration */
.contact form p:has(.g-recaptcha)::before {
  content: "Captcha:";
  display: block;
  font-weight: 500;
  color: #374151;
  margin-bottom: 8px;
  font-size: 14px;
}

/* Captcha error styling */
.contact form .captcha-error {
  color: #dc2626;
  font-size: 12px;
  margin-top: 4px;
  display: block;
}

/* Responsive captcha styling */
@media (max-width: 768px) {
  .contact form .g-recaptcha {
    margin: 16px 0;
    justify-content: center;
    padding: 12px;
  }
  
  .contact form .g-recaptcha > div {
    transform: scale(0.9);
    margin-left: 0;
  }
  
  .contact form p:has(.g-recaptcha)::before {
    position: static;
    background: transparent;
    padding: 0;
    margin-bottom: 8px;
  }
}

@media (max-width: 576px) {
  .contact form .g-recaptcha {
    margin: 14px 0;
    justify-content: center;
    padding: 10px;
  }
  
  .contact form .g-recaptcha > div {
    transform: scale(0.85);
    margin-left: 0;
  }
}

@media (max-width: 480px) {
  .contact form .g-recaptcha {
    margin: 12px 0;
    justify-content: center;
    padding: 8px;
  }
  
  .contact form .g-recaptcha > div {
    transform: scale(0.8);
    margin-left: 0;
  }
}

/* Captcha loading state */
.contact form .g-recaptcha.loading {
  opacity: 0.6;
  pointer-events: none;
}

/* Captcha success state */
.contact form .g-recaptcha.verified {
  background: #f0f9ff;
  border-color: #0ea5e9;
}

/* High contrast mode support for captcha */
@media (prefers-contrast: high) {
  .contact form .g-recaptcha {
    border: 2px solid #000;
    background: #fff;
  }
  
  .contact form .g-recaptcha iframe {
    border: 2px solid #000;
  }
}

/* Responsive Contact Section */
@media (max-width: 1200px) {
  .contact .info-box {
    padding: 20px;
    margin-bottom: 16px;
  }
  
  .contact .php-email-form {
    padding: 20px;
  }
}

@media (max-width: 992px) {
  .contact .info-box {
    padding: 18px;
    margin-bottom: 14px;
  }
  
  .contact .php-email-form {
    padding: 18px;
  }
  
  .contact .info-box i {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .contact .info-box {
    padding: 16px;
    margin-bottom: 12px;
  }
  
  .contact .php-email-form {
    padding: 16px;
  }
  
  .contact .php-email-form input,
  .contact .php-email-form textarea {
    font-size: 16px;
    padding: 14px 16px;
  }
  
  .contact .info-box i {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }
  
  .contact .info-box h3 {
    font-size: 15px;
  }
  
  .contact .info-box p {
    font-size: 13px;
  }
}

@media (max-width: 576px) {
  .contact .info-box {
    padding: 14px;
    margin-bottom: 10px;
  }
  
  .contact .php-email-form {
    padding: 14px;
  }
  
  .contact .php-email-form input,
  .contact .php-email-form textarea {
    font-size: 16px;
    padding: 12px 14px;
  }
  
  .contact .info-box i {
    width: 28px;
    height: 28px;
    font-size: 12px;
    margin-bottom: 8px;
  }
  
  .contact .info-box h3 {
    font-size: 14px;
    margin-bottom: 6px;
  }
  
  .contact .info-box p {
    font-size: 12px;
  }
  
  .contact .php-email-form button[type="submit"] {
    padding: 14px 20px;
    font-size: 14px;
    width: 100%;
  }
}

.footer .footer-newsletter form input[type="submit"]:hover {
  background: #5969f3;
}

.footer .footer-top {
  background: white url(../img/footer-bg.png) no-repeat right top;
  background-size: contain;
  border-top: 1px solid #e1ecff;
  border-bottom: 1px solid #e1ecff;
  padding: 60px 0 30px 0;
}

@media (max-width: 992px) {
  .footer .footer-top {
    background-position: center bottom;
  }
}

.footer .footer-top .footer-info {
  margin-bottom: 30px;
}

.footer .footer-top .footer-info .logo {
  line-height: 0;
  margin-bottom: 15px;
}

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

.footer .footer-top .footer-info .logo span {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #012970;
  font-family: "Nunito", sans-serif;
  margin-top: 3px;
}

/* Disable hover effects for footer logo */
.footer .footer-top .footer-info .logo:hover,
.footer .footer-top .footer-info .logo:hover img,
.footer .footer-top .footer-info .logo:hover span {
  color: #012970 !important;
  text-decoration: none !important;
  border: none !important;
  background: none !important;
  transform: none !important;
  box-shadow: none !important;
}

.footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Nunito", sans-serif;
}

.footer .footer-top .social-links a {
  font-size: 20px;
  display: inline-block;
  color: rgba(1, 41, 112, 0.5);
  line-height: 0;
  margin-right: 10px;
  transition: 0.15s;
}

.footer .footer-top .social-links a:hover {
  color: #012970;
}

.footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #012970;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 12px;
}

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

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

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

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

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

.footer .footer-top .footer-links ul a {
  color: #4f833aff;
  text-decoration: none;
}



.footer .footer-top .footer-contact p {
  font-size: 0.9em;
  line-height: 1.2em;
}

.footer .copyright {
  text-align: center;
  padding-top: 30px;
  color: #012970;
}

.footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #012970;
}

/*--------------------------------------------------------------
# Responsive Padding Fixes for All Screen Sizes
--------------------------------------------------------------*/

/* Mobile First - Base padding for all elements */
.container {
  padding-left: 15px;
  padding-right: 15px;
}

.section-header {
  padding: 20px 0;
}

/* Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }
  
  .section-header {
    padding: 15px 0;
  }
  
  .news .news-item {
    padding: 10px;
    margin: 10px 5px;
  }
  
  .contact .info-box {
    padding: 15px;
    margin-bottom: 10px;
  }
  
  .contact .php-email-form {
    padding: 15px;
  }
  
  .about .content {
    padding: 20px;
  }
  
  .hero {
    padding: 20px 0;
  }
  
  .hero .container {
    padding: 0 10px;
  }
  
  .footer .footer-top {
    padding: 30px 0 20px 0;
  }
  
  .footer .footer-top .footer-info {
    padding: 0 10px;
  }
}

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .section-header {
    padding: 25px 0;
  }
  
  .news .news-item {
    padding: 15px;
    margin: 15px 10px;
  }
  
  .contact .info-box {
    padding: 20px;
    margin-bottom: 15px;
  }
  
  .contact .php-email-form {
    padding: 20px;
  }
  
  .about .content {
    padding: 30px;
  }
  
  .hero {
    padding: 30px 0;
  }
  
  .hero .container {
    padding: 0 15px;
  }
  
  .footer .footer-top {
    padding: 40px 0 30px 0;
  }
  
  .footer .footer-top .footer-info {
    padding: 0 15px;
  }
  
  /* Grid adjustments for mobile */
  .row {
    margin-left: -10px;
    margin-right: -10px;
  }
  
  .row > * {
    padding-left: 10px;
    padding-right: 10px;
  }
}

/* Tablet (768px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
  
  .section-header {
    padding: 30px 0;
  }
  
  .news .news-item {
    padding: 20px;
    margin: 20px 15px;
  }
  
  .contact .info-box {
    padding: 24px;
    margin-bottom: 20px;
  }
  
  .contact .php-email-form {
    padding: 24px;
  }
  
  .about .content {
    padding: 40px;
  }
  
  .hero {
    padding: 40px 0;
  }
  
  .hero .container {
    padding: 0 20px;
  }
  
  .footer .footer-top {
    padding: 50px 0 40px 0;
  }
  
  .footer .footer-top .footer-info {
    padding: 0 20px;
  }
  
  /* Grid adjustments for tablet */
  .row {
    margin-left: -15px;
    margin-right: -15px;
  }
  
  .row > * {
    padding-left: 15px;
    padding-right: 15px;
  }
}

/* Desktop (1024px - 1200px) */
@media (min-width: 1025px) and (max-width: 1200px) {
  .container {
    padding-left: 25px;
    padding-right: 25px;
  }
  
  .section-header {
    padding: 35px 0;
  }
  
  .news .news-item {
    padding: 20px;
    margin: 20px 15px;
  }
  
  .contact .info-box {
    padding: 24px;
    margin-bottom: 20px;
  }
  
  .contact .php-email-form {
    padding: 24px;
  }
  
  .about .content {
    padding: 40px;
  }
  
  .hero {
    padding: 50px 0;
  }
  
  .hero .container {
    padding: 0 25px;
  }
  
  .footer .footer-top {
    padding: 60px 0 50px 0;
  }
  
  .footer .footer-top .footer-info {
    padding: 0 25px;
  }
  
  /* Grid adjustments for desktop */
  .row {
    margin-left: -15px;
    margin-right: -15px;
  }
  
  .row > * {
    padding-left: 15px;
    padding-right: 15px;
  }
}

/* Large Desktop (1200px+) */
@media (min-width: 1201px) {
  .container {
    padding-left: 30px;
    padding-right: 30px;
  }
  
  .section-header {
    padding: 40px 0;
  }
  
  .news .news-item {
    padding: 20px;
    margin: 20px 15px;
  }
  
  .contact .info-box {
    padding: 24px;
    margin-bottom: 20px;
  }
  
  .contact .php-email-form {
    padding: 24px;
  }
  
  .about .content {
    padding: 40px;
  }
  
  .hero {
    padding: 60px 0;
  }
  
  .hero .container {
    padding: 0 30px;
  }
  
  .footer .footer-top {
    padding: 70px 0 60px 0;
  }
  
  .footer .footer-top .footer-info {
    padding: 0 30px;
  }
  
  /* Grid adjustments for large desktop */
  .row {
    margin-left: -15px;
    margin-right: -15px;
  }
  
  .row > * {
    padding-left: 15px;
    padding-right: 15px;
  }
}

/* Extra Large Screens (1400px+) */
@media (min-width: 1400px) {
  .container {
    padding-left: 40px;
    padding-right: 40px;
  }
  
  .section-header {
    padding: 50px 0;
  }
  
  .hero {
    padding: 80px 0;
  }
  
  .hero .container {
    padding: 0 40px;
  }
  
  .footer .footer-top {
    padding: 80px 0 70px 0;
  }
  
  .footer .footer-top .footer-info {
    padding: 0 40px;
  }
}

/* Ultra Wide Screens (1600px+) */
@media (min-width: 1600px) {
  .container {
    padding-left: 50px;
    padding-right: 50px;
  }
  
  .section-header {
    padding: 60px 0;
  }
  
  .hero {
    padding: 100px 0;
  }
  
  .hero .container {
    padding: 0 50px;
  }
  
  .footer .footer-top {
    padding: 100px 0 80px 0;
  }
  
  .footer .footer-top .footer-info {
    padding: 0 50px;
  }
}
