/* Brand New Header CSS - No Webflow Dependencies */
.new-header {
  background-color: #1C39BB; /* Changed from #3a4b47 to brand blue */
  color: white;
  padding: 80px 0; /* Increased header height for better proportions */
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
    gap: 20px;
}

/* Logo and Company Name */
.header-brand {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  max-width: 80px !important; /* Force container width */
  max-height: 80px !important; /* Force container height */
  overflow: hidden !important; /* Hide any overflow */
}

.logo-image {
  height: 80px !important; /* Standard header logo size - increased from 70px to 80px */
  width: auto !important;
  max-width: 80px !important; /* Force maximum width */
  max-height: 80px !important; /* Force maximum height */
  object-fit: contain !important;
  flex-shrink: 0 !important; /* Prevent flexbox from resizing */
  box-sizing: border-box !important; /* Include padding/border in sizing */
  display: block !important; /* Ensure block display */
}

.company-title {
  font-size: 2.5rem; /* Much bigger text - was 2rem */
  font-weight: 700; /* Bolder font weight */
  margin: 0;
  white-space: nowrap;
  letter-spacing: 0.5px; /* Better letter spacing */
}

/* Navigation Menu */
.header-nav {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-link {
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 8px 16px;
  border-radius: 6px;
  position: relative;
}

.nav-link:hover {
  background-color: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}

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

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

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  gap: 4px;
}

.hamburger-line {
  width: 25px;
  height: 3px;
  background-color: white;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Responsive Design */
@media (max-width: 768px) {
  .header-nav {
    display: none; /* Hide navigation on mobile for now */
  }
  
  .mobile-menu-btn {
    display: flex;
  }
  
  .company-title {
    font-size: 2rem; /* Bigger for tablet - was 1.6rem */
  }
  
  .logo-image {
    height: 70px !important; /* Standard size for tablet */
    max-width: 70px !important;
    max-height: 70px !important;
  }
  
  .logo-link {
    max-width: 70px !important;
    max-height: 70px !important;
  }
}

@media (max-width: 480px) {
  .header-container {
    padding: 0 15px;
  }
  
  .company-title {
    font-size: 1.8rem; /* Bigger for mobile - was 1.4rem */
  }
  
  .logo-image {
    height: 65px !important; /* Standard size for mobile */
    max-width: 65px !important;
    max-height: 65px !important;
  }
  
  .logo-link {
    max-width: 65px !important;
    max-height: 65px !important;
  }
}

/* Team member image sizing */
  .team-card img {
  width: 300px !important;
  height: 300px !important;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
  }

.team-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 30px;
}
  
  .flex-block-3 {
    flex: 1;
    min-width: 0;
  }
  
  .heading-3 {
    margin: 0;
    padding: 0;
  }
  
  .paragraph {
    margin: 0;
    padding: 0;
    line-height: 1.6;
  }

/* Service Categories Styling */
.category-section {
  margin-bottom: 40px;
}

.category-title {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #333;
  border-bottom: 2px solid #007bff;
  padding-bottom: 10px;
}

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

/* Category-specific styling */
.all-services-service {
  border-left: 4px solid #6f42c1;
}

/* Brand New Footer CSS - No Webflow Dependencies */
.new-footer {
  background-color: #1C39BB; /* Changed from #3a4b47 to brand blue */
  color: white;
  padding: 20px 0 10px 0;
  margin-top: 30px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
}

/* Company Branding */
.footer-brand {
  flex: 1;
  max-width: 300px;
  background: none !important; /* Remove any background */
  background-color: transparent !important; /* Ensure no background color */
}

.company-name {
  font-size: 2rem;
  font-weight: 700;
  margin: 0 0 10px 0;
}

.company-tagline {
  font-size: 1rem;
  margin: 0;
  line-height: 1.5;
  background: none !important; /* Remove any background */
  background-color: transparent !important; /* Ensure no background color */
  padding: 0; /* Remove any padding that might create background appearance */
}

/* Navigation */
.footer-nav {
  display: flex;
  gap: 60px;
}

.footer-section {
  min-width: 150px;
}

.section-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 15px 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding-bottom: 6px;
}

.nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links li {
  margin: 0 0 8px 0;
}

.nav-links a {
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
}

.nav-links a:hover {
  color: white;
  background-color: #0a1441;
  transform: translateX(5px);
}



.nav-links a::before {
  content: '→';
  position: absolute;
  left: -20px;
  opacity: 0;
  transition: all 0.3s ease;
  color: #4FB0D2;
  font-size: 1.2rem;
  font-weight: bold;
}

.nav-links a:hover::before {
  opacity: 1;
  left: -25px;
  color: #4FB0D2;
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  margin-top: 15px;
  padding-top: 10px;
  border-top: 1px solid #34495e;
}

.footer-bottom p {
  font-size: 0.9rem;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }
  
  .footer-nav {
    justify-content: center;
    gap: 40px;
  }
  
  .footer-brand {
    max-width: none;
  }
  
  .company-name {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .footer-nav {
    flex-direction: column;
    gap: 30px;
  }
  
  .footer-section {
    min-width: auto;
  }
}

/* ===== GLOBAL PAGE LAYOUT ===== */

/* Main content container for all pages */
.main-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
  box-sizing: border-box;
  margin-top: 0;
}

/* Responsive margins */
@media (max-width: 768px) {
  .main-content {
    padding: 0 15px;
  }
}

@media (max-width: 480px) {
  .main-content {
    padding: 0 10px;
  }
}

/* ===== SERVICES CATEGORIES STYLING ===== */

.services-categories {
  padding: 40px 0;
}

.category-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.category-btn {
  padding: 12px 24px;
  background: #f8f9fa;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #495057;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 120px;
}



.category-btn.active {
  background: #3498db;
  border-color: #3498db;
  color: white;
  box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

/* ===== EXISTING STYLES ===== */

/* Team Member Styling */
.team-card {
  width: 300px !important;
  height: 300px !important;
  object-fit: cover !important;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}



.team-card img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

.team-card .team-member-info {
  padding: 20px;
  background: white;
}

.team-card .team-member-name {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #333;
}

.team-card .team-member-description {
  color: #333;
  line-height: 1.5;
}

/* ===== SERVICE CATEGORIES STYLING ===== */

.category-section {
  margin-bottom: 40px;
}

.category-title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 30px;
  text-align: center;
  color: #333;
}

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

.service-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: block;
  position: relative;
}



.service-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-content {
  padding: 20px;
}

.service-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0 0 10px 0;
  color: #0a1441;
  line-height: 1.3;
}

.service-description {
  color: #333;
  line-height: 1.6;
  margin: 0 0 15px 0;
  font-size: 0.95rem;
}

.service-button {
  display: inline-block !important;
  padding: 15px 30px !important;
  background: #BB9E1C !important;
  color: #0a1441 !important;
  text-decoration: none !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
  font-size: 1rem !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 8px 25px rgba(187, 158, 28, 0.4) !important;
  position: relative !important;
  overflow: hidden !important;
}



/* Category-specific borders */
.design-service {
  border-color: #e74c3c;
}

.simulation-service {
  border-color: #9b59b6;
}

.all-services-service {
  border-color: #f39c12;
}

/* ===== HEADER STYLING ===== */

.new-header {
  background: #1C39BB !important;
  padding: 20px 0 !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-brand {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-image {
  height: 80px !important;
  width: auto !important;
  max-width: 80px !important;
  max-height: 80px !important;
  object-fit: contain !important;
  flex-shrink: 0 !important;
  box-sizing: border-box !important;
  display: block !important;
}



.header-nav {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-link {
  text-decoration: none !important;
  font-weight: 500 !important;
  font-size: 1.1rem !important;
  transition: color 0.3s ease !important;
  padding: 8px 16px !important;
  border-radius: 12px !important;
}

.nav-link:hover {
  color: #3498db !important;
  background: rgba(255, 255, 255, 0.15) !important;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.hamburger-line {
  width: 25px;
  height: 3px;
  background: white;
  border-radius: 2px;
  transition: 0.3s;
}

/* ===== FOOTER STYLING ===== */

.new-footer {
  background: #1C39BB !important;
  color: white !important;
  padding: 50px 0 20px !important;
  margin-top: 0 !important;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-brand {
  text-align: left;
  margin-bottom: 40px;
}

.company-name {
  font-size: 2rem !important;
  font-weight: 700 !important;
  margin-bottom: 10px !important;
}

.company-tagline {
  font-size: 1.1rem !important;
  margin: 0 !important;
}

.footer-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.footer-section {
  text-align: left;
}

.section-title {
  font-size: 1.3rem !important;
  font-weight: 600 !important;
  margin-bottom: 20px !important;
  padding-bottom: 10px !important;
  display: inline-block !important;
}

.nav-links {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.nav-links li {
  margin-bottom: 12px !important;
}

.nav-links a {
  text-decoration: none !important;
  transition: color 0.3s ease !important;
  font-size: 1rem !important;
}

.nav-links a:hover {
  color: #3498db !important;
}

/* Footer specific link styles - keep arrows but remove background color change */
.footer-nav .nav-links a:hover {
  color: #0a1441 !important;
  background-color: transparent !important;
  transform: translateX(5px) !important;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom p {
  color: #000000 !important;
  margin: 0 !important;
  font-size: 0.9rem !important;
}

/* ===== RESPONSIVE DESIGN ===== */

@media (max-width: 768px) {
  .header-container {
    padding: 0 15px;
  }
  
  .company-title {
    font-size: 2rem !important;
  }
  
  .logo-image {
    height: 60px !important;
    max-width: 60px !important;
    max-height: 60px !important;
  }
  
  .header-nav {
    gap: 20px;
  }
  
  .nav-link {
    font-size: 1rem !important;
    padding: 6px 12px !important;
  }
  
  .footer-container {
    padding: 0 15px;
  }
  
  .footer-nav {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 500px;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .category-buttons {
    gap: 15px;
  }
  
  .category-btn {
    padding: 10px 20px;
    font-size: 1rem;
    min-width: 100px;
  }
  
  /* Homepage Products Responsive */
  .homepage-products-section {
    padding: 60px 40px;
    margin: 0;
  }
  
  .homepage-products-section .section-title {
    font-size: 2rem !important;
  }
  
  .homepage-products-section .section-subtitle {
    font-size: 1.1rem;
  }
  
  .section-header .section-title {
    font-size: 2rem;
  }
  
  .section-header .section-subtitle {
    font-size: 1.1rem;
  }
  
  .homepage-products-grid {
    gap: 15px;
    padding: 15px 0;
  }
  
  .homepage-product-card {
    flex: 0 0 280px;
    min-width: 280px;
    height: 360px;
  }
  
  .nav-arrow {
    width: 45px;
    height: 45px;
  }
  
  .nav-arrow-left {
    left: 8px;
  }
  
  .nav-arrow-right {
    right: 8px;
  }
  
  .nav-arrow svg {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 480px) {
  .header-container {
    padding: 0 10px;
  }
  
  .company-title {
    font-size: 1.5rem !important;
  }
  
  .logo-image {
    height: 50px !important;
    max-width: 50px !important;
    max-height: 50px !important;
  }
  
  .header-nav {
    gap: 15px;
  }
  
  .nav-link {
    font-size: 0.9rem !important;
    padding: 5px 10px !important;
  }
  
  .footer-container {
    padding: 0 10px;
  }
  
  .company-name {
    font-size: 1.5rem !important;
  }
  
  .footer-nav {
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 300px;
  }
  
  .services-grid {
    gap: 15px;
  }
  
  .service-content {
    padding: 20px;
  }
  
  .category-buttons {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  
  .category-btn {
    width: 100%;
    max-width: 200px;
  }
  
  /* Homepage Products Mobile Responsive */
  .homepage-products-section {
    padding: 40px 40px;
    margin: 0;
    border-radius: 0;
  }
  
  .homepage-products-section .section-title {
    font-size: 1.8rem !important;
  }
  
  .homepage-products-section .section-subtitle {
    font-size: 1rem;
  }
  
  .homepage-products-grid {
    gap: 12px;
    padding: 12px 0;
  }
  
  .homepage-product-card {
    flex: 0 0 240px;
    min-width: 240px;
    height: 320px;
  }
  
  .nav-arrow {
    width: 40px;
    height: 40px;
  }
  
  .nav-arrow-left {
    left: 5px;
  }
  
  .nav-arrow-right {
    right: 5px;
  }
  
  .nav-arrow svg {
    width: 18px;
    height: 18px;
  }
  
  .section-header .section-title {
    font-size: 1.8rem;
  }
  
  .section-header .section-subtitle {
    font-size: 1rem;
    padding: 0 20px;
  }
  
  .homepage-products-grid {
    gap: 20px;
  }
  
  .homepage-product-card {
    border-radius: 12px;
  }
  
  .homepage-product-content {
    padding: 20px;
  }
  
  .homepage-product-title {
    font-size: 1.2rem;
  }
  
  .view-all-btn {
    padding: 14px 28px;
    font-size: 1rem;
  }
}


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

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

/* ===== HOMEPAGE PRODUCTS SHOWCASE ===== */

/* Remove side margins from homepage hero section */
.no-side-margins {
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  max-width: none !important;
  width: 100% !important;
}

.no-side-margins .heading {
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  max-width: none !important;
  width: 100% !important;
}

.no-side-margins .w-row {
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  max-width: none !important;
  width: 100% !important;
}

.no-side-margins .w-col {
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.no-side-margins .column-6,
.no-side-margins .column-2 {
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* Override main-content container for hero section */
.main-content .no-side-margins {
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  max-width: none !important;
  width: 100vw !important;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw !important;
  margin-right: -50vw !important;
}

.homepage-products-section {
  padding: 0 40px 80px 40px;
  background: #AAAAAA;
  margin: 0 !important;
  margin-top: 0 !important;
  border-top: none !important;
  border-radius: 0;
  overflow: hidden;
}

.homepage-products-section .container {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

.homepage-products-section .section-text {
  max-width: 800px;
  margin: 20px auto 0 auto;
  text-align: center;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #333;
  background: transparent !important;
}

.homepage-products-section .section-header {
  text-align: center;
  margin-bottom: 50px;
  padding-top: 80px;
}

.homepage-products-section .section-title {
  font-size: 2.5rem !important;
  font-weight: 700 !important;
  color: #0a1441 !important;
  margin-bottom: 20px !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important;
  background: transparent !important;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

/* Even more specific override */
section.homepage-products-section .section-header .section-title {
  font-size: 2.5rem !important;
  font-weight: 700 !important;
  color: #0a1441 !important;
  margin-bottom: 20px !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important;
  background: transparent !important;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

/* Maximum specificity override */
#products-showcase .section-header .section-title {
  font-size: 2.5rem !important;
  font-weight: 700 !important;
  color: #0a1441 !important;
  margin-bottom: 20px !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important;
  background: transparent !important;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.homepage-products-section .section-subtitle {
  font-size: 1.2rem !important;
  color: #64748b !important;
  max-width: 800px !important;
  margin: 0 auto !important;
  line-height: 1.6 !important;
  background: transparent !important;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

/* Even more specific override for subtitle */
section.homepage-products-section .section-header .section-subtitle {
  font-size: 1.2rem !important;
  color: #64748b !important;
  max-width: 800px !important;
  margin: 0 auto !important;
  line-height: 1.6 !important;
  background: transparent !important;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

/* Maximum specificity override for subtitle */
#products-showcase .section-header .section-subtitle {
  font-size: 1.2rem !important;
  color: #64748b !important;
  max-width: 800px !important;
  margin: 0 auto !important;
  line-height: 1.6 !important;
  background: transparent !important;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header .section-title {
  font-size: 2.5rem !important;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.section-header .section-subtitle {
  background: transparent !important;
  background-color: transparent !important;
  color: #0a1441 !important;
  font-size: 1.3rem !important;
  font-weight: 500 !important;
  margin: 20px auto 0 auto !important;
  white-space: nowrap !important;
  text-align: center !important;
  display: block !important;
  width: 100% !important;
  max-width: none !important;
}

#homepage-products-content {
  margin-bottom: 50px;
}

.products-navigation-container {
  position: relative;
  display: flex;
  align-items: center;
  margin: 40px 0 10px 0;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  overflow: visible;
}

.homepage-products-grid {
  display: flex;
  flex-wrap: nowrap;
  gap: 20px;
  width: 100%;
  max-width: 1200px;
  overflow-x: auto;
  padding: 20px 0;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* Internet Explorer 10+ */
  position: relative;
}

/* Hide scrollbar for webkit browsers */
.homepage-products-grid::-webkit-scrollbar {
  display: none;
}

/* Navigation Arrow Buttons */
.nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(135deg, #6A3189, #0A1441);
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 100;
  box-shadow: 0 4px 15px rgba(106, 49, 137, 0.3);
  color: white;
  pointer-events: auto;
}

.nav-arrow:hover {
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(106, 49, 137, 0.4);
}

.nav-arrow:active {
  transform: translateY(-50%) scale(0.95);
}

.nav-arrow-left {
  left: 20px;
}

.nav-arrow-right {
  right: 20px;
}

.nav-arrow svg {
  width: 24px;
  height: 24px;
  transition: transform 0.2s ease;
}

.nav-arrow:hover svg {
  transform: scale(1.1);
}

/* Disable arrows when at scroll boundaries */
.nav-arrow:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: translateY(-50%);
}

.nav-arrow:disabled:hover {
  transform: translateY(-50%);
  box-shadow: 0 4px 15px rgba(106, 49, 137, 0.3);
}


.homepage-product-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  position: relative;
  flex: 0 0 320px;
  min-width: 320px;
  height: 400px;
  transform-origin: center center;
  z-index: 1;
}

.homepage-product-card:hover {
  transform: translateY(-10px);
  z-index: 10;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
  border-radius: 12px !important;
  overflow: hidden !important;
}

.homepage-product-card:hover .homepage-product-image {
  transform: scale(1.05);
}

.homepage-product-card:hover .homepage-product-title {
  color: #0a1441;
  transform: translateY(-2px);
}





.homepage-product-image {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: #f8f9fa;
  flex-shrink: 0;
}

.homepage-product-content {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 120px;
}

.homepage-product-category {
  display: inline-block;
  background: linear-gradient(135deg, #1C39BB, #18309f);
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.homepage-product-category.design {
  background: linear-gradient(135deg, #BB9E1C, #a88a16);
}

.homepage-product-category.simulation {
  background: linear-gradient(135deg, #BB9E1C, #B8860B);
}

.homepage-product-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0 0 10px 0;
  color: #2c3e50;
  line-height: 1.3;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.homepage-product-description {
  color: #333;
  line-height: 1.4;
  margin: 0;
  font-size: 0.9rem;
  text-align: center;
  word-wrap: break-word;
  overflow-wrap: break-word;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.view-all-services {
  text-align: center;
  margin-top: 20px;
}

.view-all-btn {
  display: inline-block;
  padding: 16px 32px;
  background: linear-gradient(135deg, #6A3189, #0A1441);
  color: white !important;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(106, 49, 137, 0.3);
  position: relative;
  overflow: hidden;
}

.view-all-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(106, 49, 137, 0.4);
}

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





/* ===== CUSTOM HERO RESPONSIVE DESIGN ===== */

@media (max-width: 768px) {
  .custom-hero {
    min-height: 500px;
  }
  
  .hero-container {
    padding: 0 20px;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .hero-text {
    text-align: center;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .hero-image {
    order: -1; /* Move image to the top on mobile */
  }
  
  .hero-img {
    height: 350px;
  }
}

@media (max-width: 480px) {
  .custom-hero {
    min-height: 450px;
  }
  
  .hero-container {
    padding: 0 15px;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .hero-cta {
    padding: 16px 32px;
    font-size: 1rem;
  }
  
  .hero-img {
    height: 250px;
  }
}

/* ===== PRODUCT DETAIL PAGE ===== */

.product-detail-section {
  padding: 60px 0;
  background: #f8f9fa;
}

.product-detail-content {
  background: white;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.product-image-container {
  background: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  min-height: 400px;
}

.product-main-image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  background: #f8f9fa;
  padding: 20px;
}

.product-info {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.product-category-badge {
  display: inline-block;
  background: linear-gradient(135deg, #3498db, #2980b9);
  color: white;
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  align-self: flex-start;
}

.product-category-badge.design {
  background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.product-category-badge.simulation {
  background: linear-gradient(135deg, #9b59b6, #8e44ad);
}

.product-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 0 20px 0;
  color: #BB1C88;
  line-height: 1.2;
}

.product-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #333;
  margin: 0 0 30px 0;
}

.product-features {
  margin-bottom: 40px;
}

.product-features h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0 0 15px 0;
  color: #BB1C88;
}

.product-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.product-features li {
  padding: 8px 0;
  color: #333;
  position: relative;
  padding-left: 25px;
}

.product-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #27ae60;
  font-weight: bold;
  font-size: 1.1rem;
}

.product-cta {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.contact-btn {
  background: linear-gradient(135deg, #3498db, #2980b9);
  color: white;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}

.back-btn {
  background: transparent;
  color: #333;
  padding: 15px 30px;
  border: 2px solid #6c757d;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.back-btn:hover {
  background: #6c757d;
  color: white;
}

/* Responsive Design for Product Detail */
@media (max-width: 768px) {
  .product-detail-grid {
    grid-template-columns: 1fr;
  }
  
  .product-image-container {
    padding: 30px;
    min-height: 300px;
  }
  
  .product-info {
    padding: 30px;
  }
  
  .product-title {
    font-size: 2rem;
  }
  
  .product-cta {
    flex-direction: column;
  }
  
  .contact-btn,
  .back-btn {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .product-detail-section {
    padding: 40px 0;
  }
  
  .product-image-container {
    padding: 20px;
    min-height: 250px;
  }
  
  .product-info {
    padding: 20px;
  }
  
  .product-title {
    font-size: 1.8rem;
  }
  
  .product-description {
    font-size: 1rem;
  }
}

/* ===== SERVICES PAGE SECTIONS ===== */

.services-section {
  padding: 80px 0;
  position: relative;
  background: #AAAAAA;
}

.services-section:nth-child(even) {
  background-color: #AAAAAA;
}

.design-services {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.simulation-services {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.services-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.services-section .section-header {
  text-align: center;
  margin-bottom: 60px;
}

.services-section .section-header .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0a1441 !important;
  margin: 0 0 20px 0;
  line-height: 1.2;
}

.services-section .section-header .section-subtitle {
  background: transparent !important;
  background-color: transparent !important;
  color: #0a1441 !important;
  font-size: 1.3rem !important;
  font-weight: 500 !important;
  margin: 20px auto 0 auto !important;
  white-space: nowrap !important;
  text-align: center !important;
  display: block !important;
  width: 100% !important;
  max-width: none !important;
}

.services-section .section-header .section-summary {
  font-size: 1rem;
  color: #333 !important;
  margin: 20px auto 0 auto;
  line-height: 1.7;
  text-align: center;
  max-width: 800px;
  font-weight: 400;
  background: transparent !important;
}

/* ===== PRODUCT LIST STYLES ===== */

.product-list {
  margin-top: 40px;
}

.product-item {
  border: none;
  border-radius: 12px;
  margin-bottom: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
  background: white;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}



.product-header {
  background: linear-gradient(135deg, #6A3189, #0A1441);
  padding: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
  border: none;
  border-radius: 0;
}



.product-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: white;
  margin: 0;
}

.dropdown-arrow {
  font-size: 1.2rem;
  color: white !important;
  transition: transform 0.3s ease;
  background: none;
  padding: 0;
  border-radius: 0;
  font-weight: bold;
}

.product-item.active .dropdown-arrow {
  transform: rotate(180deg);
}

.product-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background-color: #ffffff;
  border-top: 1px solid #f0f0f0;
  padding: 0 20px;
}

.product-item.active .product-content {
  max-height: 500px !important;
}

.product-content p:first-child {
  margin: 0;
  padding: 20px 20px 15px 20px;
  color: #333;
  line-height: 1.6;
  border-top: none;
  text-align: left;
}

.product-summary {
  margin: 0;
  padding: 0 20px 15px 20px;
  color: #333;
  line-height: 1.6;
  font-size: 0.95rem;
  font-style: italic;
  border-left: 3px solid #1C39BB;
  margin-left: 20px;
  background: #f8f9fa;
  padding-left: 15px;
  border-radius: 0 4px 4px 0;
}

.product-actions {
  padding: 0 20px 20px 20px;
  text-align: left;
}

.product-button {
  display: inline-block !important;
  padding: 15px 30px !important;
  background: #BB9E1C !important;
  color: #0a1441 !important;
  text-decoration: none !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
  font-size: 1rem !important;
  transition: all 0.3s ease !important;
  position: relative !important;
  border: none !important;
  z-index: 2 !important;
}

.product-button {
  position: relative !important;
  overflow: hidden !important;
}

.product-button::before {
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent) !important;
  opacity: 0 !important;
  transition: all 0.6s ease-out !important;
  pointer-events: none !important;
  z-index: 1 !important;
}



@keyframes glow-sweep {
  0% {
    left: -100%;
  }
  50% {
    left: 0%;
  }
  100% {
    left: 100%;
  }
}

/* Responsive Design for Services Sections */
@media (max-width: 768px) {
  .services-section {
    padding: 60px 0;
  }
  
  .services-section .section-title {
    font-size: 2rem;
  }
  
  .services-section .section-subtitle {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .services-section {
    padding: 40px 0;
  }
  
  .services-section .section-title {
    font-size: 1.8rem;
  }
  
  .services-section .section-subtitle {
    font-size: 1rem;
  }
}

/* ===== TEAM PAGE SECTIONS ===== */

.team-section {
  padding: 80px 0;
  position: relative;
}

.team-section:nth-child(even) {
  background-color: #AAAAAA;
}

.leadership {
  background: #AAAAAA;
}

/* CEO Section Styling */
.ceo-section {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 40px 0;
}

.ceo-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 400px;
  background: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.ceo-image {
  width: 200px !important;
  height: 200px !important;
  object-fit: cover !important;
  border-radius: 50% !important;
  margin-bottom: 20px;
  border: 4px solid #4FB0D2;
}

/* Technical team image without border */
.technical-team .ceo-image {
  border: none !important;
}

.ceo-name {
  font-size: 1.8rem;
  font-weight: 700;
  color: #0a1441;
  margin: 0 0 10px 0;
}

.ceo-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #4FB0D2;
  margin: 0 0 15px 0;
}

.ceo-description {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
  margin: 0;
}

.technical-team {
  background: #AAAAAA;
}

.interns {
  background: #AAAAAA;
}


.third-section {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.team-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.team-section .section-header {
  text-align: center;
  margin-bottom: 60px;
}

.team-section .section-header .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0a1441 !important;
  margin: 0 0 20px 0;
  line-height: 1.2;
  background: transparent !important;
}

.team-section .section-header .section-subtitle {
  background: transparent !important;
  background-color: transparent !important;
  color: #0a1441 !important;
  font-size: 1.3rem !important;
  font-weight: 500 !important;
  margin: 20px auto 0 auto !important;
  white-space: nowrap !important;
  text-align: center !important;
  display: block !important;
  width: 100% !important;
  max-width: none !important;
}

.team-section .section-header .section-summary {
  font-size: 1rem;
  color: #333 !important;
  margin: 20px auto 0 auto;
  line-height: 1.7;
  text-align: center;
  max-width: 800px;
  font-weight: 400;
  background: transparent !important;
}

.team-content {
  margin-top: 40px;
}

/* Responsive design for team sections */
@media (max-width: 768px) {
  .team-section {
    padding: 60px 0;
  }
  
  .team-section .section-header .section-title {
    font-size: 2rem;
  }
  
  .team-section .section-header .section-subtitle {
    font-size: 1.1rem;
  }
  
  .team-section .section-header .section-summary {
    font-size: 0.95rem;
    padding: 0 20px;
  }
}

@media (max-width: 480px) {
  .team-section {
    padding: 40px 0;
  }
  
  .team-section .section-header .section-title {
    font-size: 1.8rem;
  }
  
  .team-section .section-header .section-subtitle {
    font-size: 1rem;
  }
  
  .team-section .section-header .section-summary {
    font-size: 0.9rem;
    padding: 0 15px;
  }
}

/* ===== INTERN CARDS STYLING ===== */

.interns-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
  align-items: start;
}

.intern-card {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  max-width: 100%;
}



.intern-header {
  padding: 25px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: background-color 0.3s ease;
}



.intern-image {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 3px solid #4FB0D2;
}

.intern-info {
  flex: 1;
  min-width: 0;
}

.intern-name {
  font-size: 1.3rem;
  font-weight: 600;
  color: #0a1441;
  margin: 0 0 8px 0;
  line-height: 1.2;
}

.intern-role {
  font-size: 1rem;
  color: #4FB0D2;
  margin: 0;
  line-height: 1.4;
  font-weight: 600;
}

.intern-expand-arrow {
  font-size: 1.2rem;
  color: #0a1441;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  font-weight: bold;
}

.intern-card.active .intern-expand-arrow {
  transform: rotate(180deg);
}

.intern-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background-color: #f8f9fa;
}

.intern-card.active .intern-content {
  max-height: 200px;
  overflow-y: auto;
}

/* Custom scrollbar styling for intern content */
.intern-content::-webkit-scrollbar {
  width: 6px;
}

.intern-content::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 3px;
}

.intern-content::-webkit-scrollbar-thumb {
  background: #4FB0D2;
  border-radius: 3px;
}

.intern-content::-webkit-scrollbar-thumb:hover {
  background: #3a8bb8;
}

.intern-description {
  margin: 0;
  padding: 25px;
  color: #333;
  line-height: 1.7;
  border-top: 1px solid #e0e0e0;
  font-size: 0.95rem;
  text-align: left;
}

/* Responsive design for intern cards */
@media (max-width: 768px) {
  .interns-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
  }
  
  .intern-header {
    padding: 20px;
  }
  
  .intern-image {
    width: 70px;
    height: 70px;
  }
  
  .intern-name {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .interns-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .intern-header {
    padding: 15px;
    gap: 15px;
  }
  
  .intern-image {
    width: 60px;
    height: 60px;
  }
  
  .intern-name {
    font-size: 1.1rem;
  }
  
  .intern-role {
    font-size: 0.9rem;
  }
}

/* ===== ABOUT PAGE STYLING ===== */

/* Page background for all pages */
body {
  background-color: #AAAAAA !important;
}

/* Ensure body background shows through on all pages */
html {
  background-color: #AAAAAA !important;
}

/* Override any section backgrounds that might be covering the body */
body .main-content {
  background-color: transparent !important;
}

/* About Sections */
.about-section {
  padding: 80px 0;
  position: relative;
  z-index: 1;
  background-color: #AAAAAA;
}

.philosophy-section {
  padding: 100px 0;
  background-color: #AAAAAA;
}

.values-section {
  color: #2c3e50;
  background-color: #AAAAAA;
}

.values-section .section-title {
  color: #0a1441 !important;
  position: relative;
}

.values-section .section-title::after {
  display: none;
}

.philosophy-section .section-header {
  text-align: center;
  margin-bottom: 0;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.philosophy-section .section-title {
  color: #0a1441 !important;
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 50px;
  line-height: 1.1;
}

.philosophy-section .section-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

.philosophy-section .section-content p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 25px;
  font-weight: 400;
  background: transparent !important;
}

.philosophy-section .section-content p:last-child {
  margin-bottom: 0;
}

.values-intro p {
  background: transparent !important;
  background-color: transparent !important;
}

.philosophy-section .section-subtitle {
  background: transparent !important;
  background-color: transparent !important;
  color: #0a1441 !important;
  font-size: 1.3rem !important;
  font-weight: 500 !important;
  margin: 20px auto 0 auto !important;
  white-space: nowrap !important;
  text-align: center !important;
  display: block !important;
  width: 100% !important;
  max-width: none !important;
}

.mission-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.approach-section {
  background-color: #AAAAAA;
}

.about-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.about-section .section-header {
  text-align: center;
  margin-bottom: 60px;
}

.about-section .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0a1441;
  margin: 0 0 30px 0;
  line-height: 1.2;
  position: relative;
}

.about-section .section-title::after {
  display: none;
}

.philosophy-section .section-title {
  color: #0a1441 !important;
}

.values-section .section-title {
  color: #0a1441;
}

.section-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
  background: transparent !important;
}

.section-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 20px;
  background: transparent !important;
}

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

/* Philosophy Section */
.philosophy-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 40px;
}

.philosophy-text {
  text-align: left;
}

.philosophy-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #333;
  margin-bottom: 20px;
  background: transparent !important;
}

.philosophy-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.philosophy-image {
  width: 400px;
  height: 400px;
  position: relative;
  overflow: hidden;
  margin: 0 auto;
}

.philosophy-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Approach Section */
.approach-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-top: 40px;
}

.approach-text {
  text-align: left;
}

.approach-text h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #0a1441;
  margin: 0 0 15px 0;
  line-height: 1.3;
  background: transparent !important;
}

.approach-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #333;
  margin-bottom: 30px;
  background: transparent !important;
}

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

.approach-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: sticky;
  top: 100px;
}

.approach-image {
  max-width: 100%;
  height: auto;
}

/* Values Pyramid */
.values-pyramid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 80px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.pyramid-row {
  display: flex;
  justify-content: center;
  align-items: center;
}

.pyramid-top {
  /* Top card - smallest width */
}

.pyramid-second {
  /* Second row - medium width */
}

.pyramid-bottom {
  /* Bottom row - largest width */
}

/* Responsive Design */
@media (max-width: 768px) {
  .philosophy-content,
  .approach-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .philosophy-text,
  .approach-text {
    text-align: center;
  }
  
  .approach-visual {
    position: static;
  }
  
  .values-pyramid {
    gap: 15px;
    padding: 0 20px;
  }
  
  .pyramid-level-7 .value-card {
    width: 240px;
  }
  
  .pyramid-level-6 .value-card {
    width: 320px;
  }
  
  .pyramid-level-5 .value-card {
    width: 400px;
  }
  
  .pyramid-level-4 .value-card {
    width: 480px;
  }
  
  .pyramid-level-3 .value-card {
    width: 560px;
  }
  
  .pyramid-level-2 .value-card {
    width: 640px;
  }
  
  .pyramid-level-1 .value-card {
    width: 720px;
  }
}

@media (max-width: 600px) {
  .values-pyramid {
    gap: 12px;
  }
  
  .pyramid-level-7 .value-card {
    width: 210px;
  }
  
  .pyramid-level-6 .value-card {
    width: 280px;
  }
  
  .pyramid-level-5 .value-card {
    width: 350px;
  }
  
  .pyramid-level-4 .value-card {
    width: 420px;
  }
  
  .pyramid-level-3 .value-card {
    width: 490px;
  }
  
  .pyramid-level-2 .value-card {
    width: 560px;
  }
  
  .pyramid-level-1 .value-card {
    width: 630px;
  }
}

.value-card {
  padding: 0;
  text-align: left;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  height: 60px;
  display: flex;
  flex-direction: column;
  background: transparent;
  cursor: pointer;
  margin: 0 auto;
}

/* Pyramid card widths - 7-level equilateral triangle progression (reduced by 20%) */
/* Pyramid cards using custom trapezoid images with exact widths and 10px spacing */
.pyramid-level-8 .value-card {
  width: 118px;
  background: url('../images/background/value-card-8.png') no-repeat center center !important;
  background-size: 100% 82.5px !important;
  position: relative;
  height: 82.5px;
}

.pyramid-level-8 .value-content {
  display: none !important;
}

.pyramid-level-7 .value-card {
  width: 218px;
  background: url('../images/background/value-card-7.png') no-repeat center center !important;
  background-size: 100% 60px !important;
  position: relative;
  height: 60px;
}

.pyramid-level-6 .value-card {
  width: 320px;
  background: url('../images/background/value-card-6.png') no-repeat center center !important;
  background-size: 100% 60px !important;
  position: relative;
  height: 60px;
}

.pyramid-level-5 .value-card {
  width: 417px;
  background: url('../images/background/value-card-5.png') no-repeat center center !important;
  background-size: 100% 60px !important;
  position: relative;
  height: 60px;
}

.pyramid-level-4 .value-card {
  width: 516px;
  background: url('../images/background/value-card-4.png') no-repeat center center !important;
  background-size: 100% 60px !important;
  position: relative;
  height: 60px;
}

.pyramid-level-3 .value-card {
  width: 617.5px;
  background: url('../images/background/value-card-3.png') no-repeat center center !important;
  background-size: 100% 60px !important;
  position: relative;
  height: 60px;
}

.pyramid-level-2 .value-card {
  width: 716px;
  background: url('../images/background/value-card-2.png') no-repeat center center !important;
  background-size: 100% 60px !important;
  position: relative;
  height: 60px;
}

.pyramid-level-1 .value-card {
  width: 817px;
  background: url('../images/background/value-card-1.png') no-repeat center center !important;
  background-size: 100% 60px !important;
  position: relative;
  height: 60px;
}

/* Blue gradient overlay removed - cards now show pure base colors */











.value-content {
  position: relative;
  z-index: 2;
  background: transparent;
  padding: 15px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.value-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0a1441;
  margin: 0;
  line-height: 1.2;
  background: transparent;
  letter-spacing: -0.2px;
  text-align: center;
}



.value-description {
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
  background: transparent;
  font-weight: 400;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
  opacity: 0.9;
  text-align: center;
}

/* Mission and Approach Sections */
.mission-content,
.approach-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.mission-text,
.approach-text {
  text-align: left;
}

.mission-text .section-title,
.approach-text .section-title {
  text-align: left;
  margin-bottom: 30px;
}

.mission-text p,
.approach-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #333;
  margin-bottom: 20px;
}

.mission-text p:last-child,
.approach-text p:last-child {
  margin-bottom: 0;
}

.mission-image,
.approach-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-placeholder {
  width: 100%;
  max-width: 500px;
  height: 400px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.mission-img,
.approach-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}



/* Responsive Design for About Page */
@media (max-width: 768px) {
  .about-hero {
    padding: 80px 0;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-text p {
    font-size: 1.1rem;
  }
  
  .about-section {
    padding: 60px 0;
  }
  
  .philosophy-section {
    padding: 80px 0;
  }
  
  .philosophy-section .section-title {
    font-size: 2.5rem;
    margin-bottom: 40px;
  }
  
  .philosophy-section .section-content {
    max-width: 700px;
  }
  
  .philosophy-section .section-content p {
    font-size: 1.1rem;
  }
  
  .about-section .section-title {
    font-size: 2rem;
  }
  
  .values-grid {
    gap: 30px;
    max-width: 600px;
  }
  
  .value-card {
    padding: 50px 35px;
    height: 280px;
  }
  
  .mission-content,
  .approach-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .mission-text,
  .approach-text {
    text-align: center;
  }
  
  .mission-text .section-title,
  .approach-text .section-title {
    text-align: center;
  }
  
  .image-placeholder {
    height: 300px;
  }
}

@media (max-width: 480px) {
  .about-hero {
    padding: 60px 0;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-text p {
    font-size: 1rem;
  }
  
  .about-section {
    padding: 40px 0;
  }
  
  .philosophy-section {
    padding: 60px 0;
  }
  
  .philosophy-section .section-title {
    font-size: 2rem;
    margin-bottom: 30px;
  }
  
  .philosophy-section .section-content {
    max-width: 100%;
    padding: 0 20px;
  }
  
  .philosophy-section .section-content p {
    font-size: 1rem;
    margin-bottom: 20px;
  }
  
  .about-section .section-title {
    font-size: 1.8rem;
  }
  
  .values-grid {
    gap: 25px;
    max-width: 100%;
    padding: 0 20px;
  }
  
  .value-card {
    padding: 40px 30px;
    height: 260px;
  }
  
  .value-title {
    font-size: 1.3rem;
  }
  
  .value-title.highlight {
    font-size: 1.5rem;
  }
  
  .image-placeholder {
    height: 250px;
  }
}

/* ===== CONTACT PAGE STYLING ===== */

.contact-section {
  padding: 80px 0;
  background: #AAAAAA;
}

.contact-header {
  text-align: center;
  margin-bottom: 60px;
  background: transparent !important;
}

.contact-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0a1441;
  margin: 0 0 20px 0;
  line-height: 1.2;
  background: transparent !important;
}

.contact-subtitle {
  font-size: 1.2rem;
  color: #0A1441;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
  background: transparent !important;
}

.contact-form-container {
  max-width: 800px;
  margin: 0 auto;
  background: #0A1441;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  padding: 50px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
}

.form-label {
  font-size: 1rem;
  font-weight: 600;
  color: white;
  margin-bottom: 8px;
  background: transparent !important;
}

.form-input,
.form-select,
.form-textarea {
  padding: 15px 18px;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
  background: #ffffff;
  color: #0A1441;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: #3498db;
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

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

.submit-button {
  background: #BB9E1C; /* Golden Yellow - Primary */
  color: #1C39BB;
  border: none;
  padding: 18px 36px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(187, 158, 28, 0.4);
  position: relative;
  overflow: hidden;
}



.submit-button:active {
  transform: translateY(0);
}

.button-loading {
  display: none;
}

.submit-button.loading .button-text {
  display: none;
}

.submit-button.loading .button-loading {
  display: inline;
}

/* Form Messages */
.form-message {
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  margin-top: 30px;
}

.form-message.success {
  background: linear-gradient(135deg, #d4edda, #c3e6cb);
  border: 1px solid #c3e6cb;
  color: #155724;
}

.form-message.error {
  background: linear-gradient(135deg, #f8d7da, #f5c6cb);
  border: 1px solid #f5c6cb;
  color: #721c24;
}

.message-content h3 {
  margin: 0 0 15px 0;
  font-size: 1.5rem;
  font-weight: 600;
}

.message-content p {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Contact Information Section */
.contact-info-section {
  padding: 80px 0;
  background: #AAAAAA;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 30px;
  background: #E5E5E5;
  border-radius: 12px;
  transition: all 0.3s ease;
  text-align: left;
}



.contact-icon {
  flex-shrink: 0;
}

.contact-icon img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.contact-details {
  flex: 1;
  text-align: left;
}

.contact-info-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #0A1441;
  margin: 0 0 10px 0;
  background: transparent !important;
}

.contact-info-text {
  font-size: 1rem;
  color: #0A1441;
  line-height: 1.6;
  margin: 0;
  background: transparent !important;
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact-section {
    padding: 60px 0;
  }
  
  .contact-title {
    font-size: 2.5rem;
  }
  
  .contact-subtitle {
    font-size: 1.1rem;
  }
  
  .contact-form-container {
    padding: 30px;
    margin: 0 20px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .contact-info-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 0 20px;
  }
}

@media (max-width: 480px) {
  .contact-section {
    padding: 40px 0;
  }
  
  .contact-title {
    font-size: 2rem;
  }
  
  .contact-form-container {
    padding: 25px;
    margin: 0 15px;
  }
  
  .contact-info-item {
    padding: 25px;
  }
  
  .contact-icon img {
    width: 50px;
    height: 50px;
  }
}

/* ===== PRIMARY BUTTON STYLES ===== */

.primary-button,
.btn-primary,
.button-primary {
  background: var(--deep-blue); /* Deep Blue - Primary */
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(28, 57, 187, 0.3);
  text-decoration: none;
  display: inline-block;
  text-align: center;
}



.primary-button:active,
.btn-primary:active,
.button-primary:active {
  transform: translateY(0);
  box-shadow: 0 4px 15px rgba(28, 57, 187, 0.3);
}

/* Secondary button styles */
.secondary-button,
.btn-secondary,
.button-secondary {
  background: var(--vibrant-green); /* Vibrant Green - Secondary */
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  box-shadow: 0 4px 15px rgba(28, 187, 79, 0.3);
}



.secondary-button:active,
.btn-secondary:active,
.button-secondary:active {
  transform: translateY(0);
  box-shadow: 0 4px 15px rgba(79, 176, 210, 0.3);
}

/* Tertiary button styles */
.tertiary-button,
.btn-tertiary,
.button-tertiary {
  background: transparent;
  color: var(--deep-blue); /* Deep Blue text */
  border: 2px solid var(--golden-yellow); /* Golden border */
  padding: 13px 28px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}



/* ===== WEBSITE COLOR PALETTE ===== */
:root {
  /* Primary Brand Colors */
  --deep-blue: #1C39BB;      /* Headers, footers, primary actions */

  --golden-yellow: #BB9E1C;  /* Highlights, premium, featured */
  --magenta-pink: #BB1C88;   /* Creative, technology, modern */
  
  /* Color Combinations */
  --gradient-tech: linear-gradient(135deg, var(--magenta-pink), var(--deep-blue));
  --gradient-innovation: linear-gradient(135deg, var(--golden-yellow), var(--magenta-pink));
  --gradient-nature: linear-gradient(135deg, var(--magenta-pink), var(--golden-yellow));
  --gradient-creative: linear-gradient(135deg, var(--deep-blue), var(--magenta-pink));
}

/* ===== SECTION BACKGROUNDS ===== */
.tech-section,
.technology-section {
  background: var(--gradient-tech);
  color: white;
}

.innovation-section,
.featured-section {
  background: var(--gradient-innovation);
  color: white;
}

.nature-section,
.eco-section {
  background: var(--gradient-nature);
  color: white;
}

.creative-section,
.modern-section {
  background: var(--gradient-creative);
  color: white;
}

/* ===== CARD ACCENTS ===== */






/* ===== INTERACTIVE ELEMENTS ===== */
.link,
a:not(.primary-button):not(.secondary-button):not(.tertiary-button) {
  color: var(--deep-blue);
  transition: color 0.3s ease;
}



.highlight {
  background: var(--golden-yellow);
  color: white;
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 600;
}

.success-message,
.success {
  color: var(--golden-yellow);
  font-weight: 600;
}

.tech-badge {
  background: var(--magenta-pink);
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
}

.innovation-badge {
  background: var(--golden-yellow);
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
}

/* ===== FORM ELEMENTS ===== */
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--magenta-pink);
  box-shadow: 0 0 0 3px rgba(187, 28, 136, 0.1);
}

.form-success {
  border-left: 4px solid var(--golden-yellow);
  background: rgba(187, 158, 28, 0.1);
}

.form-error {
  border-left: 4px solid #e74c3c;
  background: rgba(231, 76, 60, 0.1);
}

/* ===== NAVIGATION HIGHLIGHTS ===== */
.nav-item.active {
  color: var(--golden-yellow);
  font-weight: 600;
}



/* ===== SECTION HEADERS ===== */
.section-title.tech-title {
  color: var(--magenta-pink);
}

.section-title.innovation-title {
  color: var(--golden-yellow);
}

.section-title.nature-title {
  color: var(--magenta-pink);
}

.section-title.creative-title {
  color: var(--deep-blue);
}

/* ===== HERO SECTION MARGIN FIX ===== */
body,
html {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  background-color: #AAAAAA;
}

.custom-hero {
  margin: 0 !important;
  padding: 0 !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

.hero-container {
  margin: 0 auto !important;
  padding: 0 40px !important;
  box-sizing: border-box !important;
  width: 100% !important;
  max-width: 1400px !important;
}

/* ===== FORCE HERO BUTTON TEXT COLOR ===== */
.custom-hero .hero-cta,
.custom-hero a.hero-cta,
body .custom-hero .hero-cta {
  color: white !important;
  background: var(--golden-yellow) !important;
}

/* ===== NEW HERO SECTION STYLES ===== */



.hero-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 2;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  width: 100%;
  height: 100%;
  gap: 30px;
}

.hero-heading {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 30px;
  color: white;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  max-width: 600px;
}

.hero-button {
  display: inline-block;
  padding: 15px 30px;
  background: var(--golden-yellow);
  color: #0a1441; /* Very dark blue text */
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(187, 158, 28, 0.4);
  position: relative;
  overflow: hidden;
}



.hero-button:active {
  transform: translateY(-1px);
}

/* Responsive Design for Hero */
@media (max-width: 768px) {
  .hero-heading {
    font-size: 2.5rem;
  }
  
  .hero-wrapper {
    padding: 0 20px;
  }
}

@media (max-width: 480px) {
  .hero-heading {
    font-size: 2rem;
  }
  
  .hero-button {
    padding: 15px 30px;
    font-size: 1rem;
  }
}

/* ===== MISSION & VISION SECTION STYLES ===== */
.mission-vision-section {
  padding: 40px 0 80px 0;
  background: #AAAAAA;
  position: relative;
  margin-top: -20px;
}

/* Ensure hero section has no bottom margin */
.hero-section {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

/* ===== OUR APPROACH SECTION STYLES ===== */
.our-approach-section {
  padding: 80px 0;
  background: #AAAAAA;
  position: relative;
}

.our-approach-section .section-header {
  text-align: center;
  margin-bottom: 0;
}

.our-approach-section .section-title {
  font-size: 2.5rem !important;
  font-weight: 700;
  color: #0a1441;
  margin-bottom: 20px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  background: transparent !important;
}

.our-approach-section .section-subtitle {
  font-size: 1.1rem;
  color: #333;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
  background: transparent !important;
}

.our-approach-section .section-text {
  max-width: 800px;
  margin: 20px auto 0 auto;
  text-align: center;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #333;
  background: transparent !important;
}

.no-buzzwords-section {
  background: #AAAAAA;
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
  border-bottom: none !important;
}

.no-buzzwords-section .container {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

.no-buzzwords-section .section-header {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

.no-buzzwords-section .section-title {
  font-size: 2.5rem !important;
  font-weight: 700;
  color: #0a1441;
  margin-bottom: 20px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  background: transparent !important;
}

.no-buzzwords-section .section-text {
  max-width: 800px;
  margin: 20px auto 0 auto;
  text-align: center;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #333;
  background: transparent !important;
}

.mission-vision-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, #1C39BB 50%, transparent 100%);
}

.mission-vision-section .section-header {
  text-align: center;
  margin-bottom: 60px;
}

.mission-vision-section .section-title {
  font-size: 2.5rem !important;
  font-weight: 700;
  color: #0a1441;
  margin-bottom: 16px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.mission-vision-section .section-subtitle {
  font-size: 1.1rem;
  color: #333;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
  background: transparent !important;
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.mission-card,
.vision-card {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(28, 57, 187, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.mission-card::before,
.vision-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #6A3189, #0A1441);
}



.card-header {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
  gap: 20px;
}

.card-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  background: #E5E5E5;
  border-radius: 20px;
  margin-bottom: 0;
  transition: all 0.3s ease;
  flex-shrink: 0;
}



.card-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #0a1441;
  margin-bottom: 0;
  text-align: left;
  flex: 1;
}

.card-content {
  font-size: 1rem;
  line-height: 1.7;
  color: #333;
  text-align: left;
  margin: 0;
}

.card-subtitle {
  font-size: 1.2rem;
  font-weight: 600;
  color: #0a1441;
  margin: 15px 0 10px 0;
  line-height: 1.4;
  text-align: left;
  background: transparent !important;
}

/* Responsive Design */
@media (max-width: 768px) {
  .mission-vision-section {
    padding: 30px 0 60px 0;
  }
  
  .mission-vision-section .section-title {
    font-size: 2rem !important;
  }
  
  .our-approach-section {
    padding: 60px 0;
  }
  
  .our-approach-section .section-title {
    font-size: 2rem;
  }
  
  .mission-vision-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 0 20px;
  }
  
  .mission-card,
  .vision-card {
    padding: 30px 25px;
  }
  
  .card-header {
    gap: 16px;
  }
  
  .card-icon {
    width: 60px;
    height: 60px;
  }
  
  .card-title {
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .mission-vision-section .section-title {
    font-size: 1.8rem;
  }
  
  .mission-vision-section .section-subtitle {
    font-size: 1rem;
  }
  
  .our-approach-section {
    padding: 40px 0;
  }
  
  .our-approach-section .section-title {
    font-size: 1.8rem;
  }
  
  .our-approach-section .section-subtitle {
    font-size: 1rem;
  }
  
  .mission-card,
  .vision-card {
    padding: 25px 20px;
  }
  
  .card-header {
    gap: 12px;
  }
  
  .card-icon {
    width: 50px;
    height: 50px;
  }
  
  .card-title {
    font-size: 1.2rem;
  }
}

/* ===== CUSTOM MAGNETIC DEVICES PAGE STYLING ===== */

/* Product Hero Section */
.product-hero-section {
  background: linear-gradient(135deg, #6A3189, #0A1441);
  padding: 100px 0;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
}



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

.product-hero-section .hero-content {
  max-width: 1000px;
  margin: 0 auto;
  background: transparent !important;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.product-hero-section .hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin: 0 0 20px 0;
  color: white;
  text-shadow: none;
  background: transparent !important;
}

.product-hero-section .hero-subtitle {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 0 20px 0;
  color: #E8E8E8;
  opacity: 1;
  background: transparent !important;
}

.product-hero-section .hero-description {
  font-size: 1.1rem;
  line-height: 1.7;
  margin: 0;
  color: #D0D0D0;
  opacity: 1;
  background: transparent !important;
}

/* Services Overview Section */
.services-overview {
  padding: 100px 0;
  background: #AAAAAA;
}

.services-overview .section-header {
  text-align: center;
  margin-bottom: 10px;
}

.services-overview .section-title {
  font-size: 2.5rem !important;
  font-weight: 700;
  color: #0a1441 !important;
  margin: 0 0 20px 0;
  line-height: 1.2;
  background: transparent !important;
}

.services-overview .section-subtitle {
  font-size: 1.3rem;
  color: #333;
  margin: 0;
  line-height: 1.6;
  background: transparent !important;
  text-align: center !important;
}

/* Override any conflicting left alignment */
.services-overview .section-header .section-subtitle {
  text-align: center !important;
}

/* Even more specific override for product pages */
.services-overview .container .section-header .section-subtitle {
  text-align: center !important;
}

/* Maximum specificity override */
section.services-overview .container .section-header p.section-subtitle {
  text-align: center !important;
}

/* Ultimate override - target all possible selectors */
.services-overview .section-subtitle,
.services-overview .section-header .section-subtitle,
.services-overview .container .section-header .section-subtitle,
section.services-overview .section-subtitle,
section.services-overview .section-header .section-subtitle,
section.services-overview .container .section-header .section-subtitle,
section.services-overview .container .section-header p.section-subtitle {
  text-align: center !important;
}

/* Specific override for antenna page and all product pages */
body .services-overview .container .section-header p.section-subtitle,
body .services-overview .section-header p.section-subtitle,
body .services-overview p.section-subtitle {
  text-align: center !important;
}

/* Force center alignment with maximum specificity */
html body .services-overview .container .section-header p.section-subtitle {
  text-align: center !important;
  text-align-last: center !important;
}

/* Also center the parent container to ensure alignment */
.services-overview .section-header {
  text-align: center !important;
}

/* Nuclear option - force centering with transform if text-align fails */
.services-overview .section-subtitle {
  text-align: center !important;
  display: block !important;
  margin-left: auto !important;
  margin-right: auto !important;
  width: fit-content !important;
  max-width: 100% !important;
}

/* Unified Services Layout */
.unified-services-container {
  max-width: 1200px !important;
  margin: 0 auto !important;
  background: #AAAAAA !important;
  border-radius: 20px !important;
  box-shadow: none !important;
  overflow: hidden !important;
}

.services-intro {
  text-align: center !important;
  padding: 5px 30px 40px !important;
  background: #AAAAAA !important;
  border-bottom: 2px solid transparent !important;
  border-image: linear-gradient(135deg, #6A3189, #0A1441) 1 !important;
}

.services-intro p {
  font-size: 1.2rem !important;
  line-height: 1.7 !important;
  color: #2c3e50 !important;
  max-width: 800px !important;
  margin: 0 auto !important;
  background: transparent !important;
}

.services-list {
  padding: 0 !important;
}

.service-row {
  display: flex !important;
  align-items: flex-start !important;
  padding: 40px 30px !important;
  border-bottom: 2px solid transparent !important;
  border-image: linear-gradient(135deg, #6A3189, #0A1441) 1 !important;
  transition: background-color 0.3s ease !important;
  gap: 30px !important;
  background: #AAAAAA !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  margin: 0 !important;
  justify-content: space-between !important;
}

.service-row:last-child {
  border-bottom: none !important;
}

.service-row:hover {
  background-color: #AAAAAA !important;
}

.service-number {
  flex-shrink: 0 !important;
  width: 60px !important;
  height: 60px !important;
  background: linear-gradient(135deg, #6A3189, #0A1441) !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 1.2rem !important;
  font-weight: 700 !important;
  color: white !important;
  box-shadow: 0 4px 15px rgba(106, 49, 137, 0.3) !important;
}

.service-content {
  flex: 1 !important;
  min-width: 0 !important;
  text-align: left !important;
}

.service-header {
  display: flex !important;
  align-items: center !important;
  gap: 20px !important;
  margin-bottom: 15px !important;
}

.service-image {
  flex-shrink: 0 !important;
  width: 320px !important;
  height: 320px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: #AAAAAA !important;
  border-radius: 8px !important;
  border: 2px solid transparent !important;
  border-image: linear-gradient(135deg, #6A3189, #0A1441) 1 !important;
}

.service-image img {
  width: 256px !important;
  height: 256px !important;
  object-fit: contain !important;
  opacity: 1.0 !important;
  border-radius: 12px !important;
}

.service-title {
  font-size: 1.4rem !important;
  font-weight: 700 !important;
  color: #0a1441 !important;
  margin: 0 0 15px 0 !important;
  line-height: 1.3 !important;
  background: transparent !important;
}

.service-description {
  font-size: 1.1rem !important;
  line-height: 1.7 !important;
  color: #34495e !important;
  margin: 0 !important;
  background: transparent !important;
}

/* Legacy Services Grid (keeping for other pages) */
.services-grid {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.service-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  background: white;
  border-radius: 20px;
  padding: 60px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  transition: all 0.4s ease;
  overflow: hidden;
  position: relative;
}

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



.service-card.reverse {
  direction: rtl;
}

.service-card.reverse .service-content {
  direction: ltr;
}

.service-card.reverse .service-image {
  direction: ltr;
}

/* Service Content */
.service-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #1C39BB;
  margin: 0;
  line-height: 1.2;
}

.service-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #333;
  margin: 0;
}





/* Service Image */
.service-image {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 300px;
}

.service-img {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}



/* Call to Action Section */
.cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #6A3189, #0A1441);
  text-align: center;
  color: white;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.cta-content {
  max-width: 900px;
  margin: 0 auto;
  background: transparent !important;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 0 20px 0;
  color: white;
  line-height: 1.2;
  background: transparent !important;
}

.cta-description {
  font-size: 1.2rem;
  line-height: 1.6;
  margin: 0 0 40px 0;
  color: #BCD4E6;
  opacity: 0.9;
  background: transparent !important;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  background: transparent !important;
}

.cta-button {
  display: inline-block;
  padding: 18px 36px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.cta-button.primary {
  background: #BB9E1C;
  color: #0a1441;
  box-shadow: 0 6px 20px rgba(187, 158, 28, 0.4);
}



.cta-button.secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}



/* Responsive Design */
@media (max-width: 1024px) {
  .service-card {
    padding: 40px;
    gap: 40px;
  }
  
  .service-title {
    font-size: 1.8rem;
  }
  
  .product-hero-section .hero-title {
    font-size: 3rem;
  }
  
  .service-row {
    padding: 30px !important;
    gap: 25px !important;
  }
  
  .service-number {
    width: 50px !important;
    height: 50px !important;
    font-size: 1.1rem !important;
  }
}

@media (max-width: 768px) {
  .service-card {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 30px;
    text-align: center;
  }
  
  .service-card.reverse {
    direction: ltr;
  }
  
  .service-features {
    justify-content: center;
  }
  
  .product-hero-section {
    padding: 80px 0;
  }
  
  .product-hero-section .hero-title {
    font-size: 2.5rem;
  }
  
  .product-hero-section .hero-subtitle {
    font-size: 1.3rem;
  }
  
  .services-overview {
    padding: 80px 0;
  }
  
  .services-overview .section-title {
    font-size: 2rem;
  }
  
  .unified-services-container {
    margin: 0 15px !important;
    border-radius: 15px !important;
  }
  
  .services-intro {
    padding: 40px 25px 30px !important;
  }
  
  .services-intro p {
    font-size: 1.1rem !important;
  }
  
  .service-row {
    padding: 25px !important;
    flex-direction: column !important;
    text-align: center !important;
    gap: 20px !important;
    justify-content: center !important;
  }
  
  .service-content {
    text-align: center !important;
  }
  
  .service-header {
    justify-content: center !important;
    gap: 15px !important;
  }
  
  .service-image {
    width: 280px !important;
    height: 280px !important;
    margin: 0 auto !important;
  }
  
  .service-image img {
    width: 224px !important;
    height: 224px !important;
    border-radius: 12px !important;
  }
  
  .service-number {
    width: 50px !important;
    height: 50px !important;
    font-size: 1rem !important;
    margin: 0 auto !important;
  }
  
  .service-title {
    font-size: 1.3rem !important;
  }
  
  .service-description {
    font-size: 1rem !important;
  }
  
  .cta-section {
    padding: 80px 0;
  }
  
  .cta-title {
    font-size: 2rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-button {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .product-hero-section .hero-title {
    font-size: 2rem;
  }
  
  .product-hero-section .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .product-hero-section .hero-description {
    font-size: 1rem;
  }
  
  .services-overview .section-title {
    font-size: 1.8rem;
  }
  
  .service-title {
    font-size: 1.5rem;
  }
  
  .service-card {
    padding: 25px;
  }
  
  .cta-title {
    font-size: 1.6rem;
  }
  
  .cta-description {
    font-size: 1.1rem;
  }
}

/* ===== HEADER DROPDOWN MENU STYLING ===== */

/* Navigation Dropdown */
.nav-dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-toggle {
  display: flex !important;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dropdown-arrow {
  font-size: 0.8rem;
  transition: transform 0.3s ease;
  color: #0a1441;
}

.nav-dropdown .dropdown-arrow {
  color: #BCD4E6 !important;
}

.nav-dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #BCD4E6;
  min-width: 280px;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  border: 1px solid #e9ecef;
  padding: 8px 0;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* Dropdown Items */
.dropdown-item {
  display: block;
  padding: 12px 24px;
  color: #0a1441 !important;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  border-bottom: 1px solid #f8f9fa;
}

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

.dropdown-item:hover {
  background: linear-gradient(135deg, #1C39BB, #4FB0D2);
  color: white !important;
  transform: translateX(8px);
}

/* Dropdown Arrow Indicator */
.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid white;
}

.dropdown-menu::after {
  content: '';
  position: absolute;
  top: -9px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-bottom: 9px solid #e9ecef;
  z-index: -1;
}

/* Responsive Design for Dropdown */
@media (max-width: 768px) {
  .nav-dropdown {
    position: static;
  }
  
  .dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    border: none;
    background: #f8f9fa;
    border-radius: 8px;
    margin: 10px 0;
    padding: 0;
  }
  
  .dropdown-item {
    padding: 15px 24px;
    border-bottom: 1px solid #e9ecef;
    font-size: 1rem;
  }
  
  .dropdown-item:hover {
    transform: none;
    background: #e9ecef;
    color: #0a1441 !important;
  }
  
  .dropdown-menu::before,
  .dropdown-menu::after {
    display: none;
  }
  
  .dropdown-arrow {
    display: none;
  }
}

/* Service Details Styling */
.service-details {
  margin-top: 25px;
}

.detail-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #BB1C88;
  margin: 20px 0 12px 0;
  line-height: 1.3;
}

.detail-title:first-child {
  margin-top: 0;
}

.detail-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.detail-list li {
  padding: 6px 0;
  color: #333;
  position: relative;
  padding-left: 20px;
  font-size: 0.95rem;
  line-height: 1.5;
}

.detail-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #1C39BB;
  font-weight: bold;
  font-size: 1.2rem;
  line-height: 1;
}

.detail-list li:last-child {
  margin-bottom: 0;
}

/* Responsive adjustments for service details */
@media (max-width: 768px) {
  .detail-title {
    font-size: 1rem;
    margin: 15px 0 10px 0;
  }
  
  .detail-list li {
    font-size: 0.9rem;
    padding: 5px 0;
    padding-left: 18px;
  }
}

/* Additional override for homepage products section */
.homepage-products-section .section-header .section-title,
section.homepage-products-section .section-header .section-title {
  font-size: 2.5rem !important;
  font-weight: 700 !important;
  color: #0a1441 !important;
  margin-bottom: 20px !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important;
}