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

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Animation Classes */
.animate-fadeInUp {
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}

.animate-fadeIn {
  opacity: 0;
  animation: fadeIn 0.8s ease forwards;
}

/* Delay Classes */
.delay-100 {
  animation-delay: 0.1s;
}

.delay-200 {
  animation-delay: 0.2s;
}

.delay-300 {
  animation-delay: 0.3s;
}

.delay-400 {
  animation-delay: 0.4s;
}

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

:root {
  --primary: #dc2626;   
  --primary-dark: #b91c1c; 
  --secondary: #991b1b;   
  --accent: #ef4444;       
  --text: #1f2937;
  --text-light: #4b5563;
  --white: #ffffff;
  --background: #ffffff;  
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}

body {
  font-family: "Raleway", sans-serif;
  line-height: 1.6;
  color: var(--text);
  background: var(--background);
  letter-spacing: 0.5px;
}

/* Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.logo img {
  height: 40px;
  width: auto;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

.menu-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)), url('images/hero-bg.jpg') center/cover no-repeat;
  color: var(--white);
  padding: 0 2rem;
}

.hero-content {
  max-width: 800px;
}

.hero h1 {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
  color: var(--white);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero h2 {
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 3rem;
  opacity: 0.8;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-button {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: var(--primary);
  color: var(--white);
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-button:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

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

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

  .hero p {
    font-size: 1rem;
  }
  .home h1
  {
    margin-left: -19px;
  }
  #Applications 
  {
    padding: 2rem 2rem 3rem;
  }
  #Home 
  {
    padding: 2rem 2rem;
  }
}


h1, h2, h3 
{
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1.5rem;
}

p 
{
  margin-bottom: 15px;
  font-size: 14px;
}

hr 
{
  border: none;
  border-top: 1px solid #ddd;
  margin: 0;
}

/* Nav Styles */
#Main-nav 
{
  background-color: var(--white);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 0 2rem;
  backdrop-filter: blur(10px);
}

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

.nav img 
{
  height: 45px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.nav-links 
{
  display: flex;
  list-style: none;
  align-items: center;
  gap: 2.5rem;
  margin: 0;
  padding: 0;
}

.nav-links a 
{
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.5rem 0;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links a::after 
{
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateX(-50%);
}

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

.nav-links a:hover::after 
{
  width: 100%;
}

/* Dropdown Styles */
.dropdown 
{
  position: relative;
}

.dropdown-arrow 
{
  font-size: 10px;
  margin-left: 5px;
}

.dropdown-content 
{
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 220px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  padding: 1rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.dropdown:hover .dropdown-content 
{
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-content a 
{
  padding: 0.8rem 1.5rem;
  display: block;
  color: #2c3e50;
  transition: all 0.2s ease;
  text-transform: none;
  font-size: 0.9rem;
}

.dropdown-content a:hover 
{
  background: #f8f9fa;
  color: #3498db;
  padding-left: 2rem;
}

.nav-links li.dropdown:hover .dropdown-content 
{
  display: block;
}

.nav-links li.dropdown 
{
  display: flex;
  align-items: center;
}

/* Hamburger Menu */
.hamburger 
{
  display: none;
  font-size: 24px;
  cursor: pointer;
}

/* Video */
.video 
{
  position: relative;
  height: 90vh;
  overflow: hidden;
  margin-top: 80px;
}

.video::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.6));
  z-index: 1;
}

.video video 
{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Container Base Styles */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
}

.container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,0,0,0.1), transparent);
}

.container::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,0,0,0.1), transparent);
}

/* Section Container Styles */
#About-us .container,
#Applications .container,
#products-intro .container {
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 5rem;
  position: relative;
  overflow: hidden;
}

#About-us .container::before,
#Applications .container::before,
#products-intro .container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,0,0,0.1), transparent);
}

/* Content Container Styles */
.home-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-top: 4rem;
}

.feature-block {
  background: var(--white);
  border: 1px solid rgba(220, 38, 38, 0.1);
  box-shadow: 0 4px 20px rgba(220, 38, 38, 0.08);
  margin-top: -20px;
  padding: 2rem;
  padding-top: 50px;
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.feature-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,0,0,0.1), transparent);
}

.feature-block:hover {
  border-color: #f5c4c4;
  box-shadow: 0 8px 30px rgba(220, 38, 38, 0.12);
  transform: translateY(-5px);
}

.product-info h3::after {
  background: var(--primary);
}

/* Product Container Styles */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  max-width: 1200px;
  margin: 4rem auto;
  padding: 0 2rem;
}

.product-card {
  background: var(--white);
  border: 1px solid rgba(220, 38, 38, 0.1);
  box-shadow: 0 4px 20px rgba(220, 38, 38, 0.08);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

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

.product-card:hover {
  border-color: #b0b0b0;
  box-shadow: 0 8px 30px rgba(220, 38, 38, 0.12);
}

/* Application Content Container */
#application-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.application-hero {
  margin-top: 40px;
  position: relative;
  height: 600px;
  border-radius: 0;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.application-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.6));
  z-index: 1;
}

.app-content-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  z-index: 2;
  width: 100%;
  padding: 0 20px;
}

.app-content-overlay h2 {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.app-content-overlay p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.read-more-btn {
  display: inline-block;
  padding: 0.8rem 2.5rem;
  background: rgb(229, 228, 228);
  color: black;
  text-decoration: none;
  border-radius: 0;
  font-weight: 500;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.read-more-btn:hover {
  background: white;
  color: rgb(9, 9, 9);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .application-hero {
    height: 400px;
  }
  
  .app-content-overlay h2 {
    font-size: 2.5rem;
  }
  
  .app-content-overlay p {
    font-size: 1rem;
  }
}

/* Contact Container */
#contact {
  background: var(--white);
  padding: 6rem 2rem 3rem;
  position: relative;
  text-align: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

#contact h1 {
  margin-top: -35px;
  font-size: 3.5rem;
  color: var(--secondary);
  margin-bottom: 1.5rem;
  font-weight: 700;
  letter-spacing: -1px;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  -webkit-text-fill-color: transparent;
  position: relative;
  display: inline-block;
}

#contact h1::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 2px;
}

#contact h2 {
  color: var(--text-light);
  font-size: 1.5rem;
  margin-bottom: 2rem;
  font-weight: 500;
}

#contact p {
  color: var(--text-light);
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto;
  line-height: 2;
}

#contact a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

#contact a:hover {
  color: var(--secondary);
}

/* News Section */
#NEWS {
  background: var(--white);
  padding: 2rem 42px;
  position: relative;
  width: 1400px;
  margin-left: 35px;
}

.news-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.news-header {
  text-align: center;
  margin-bottom: 4rem;
}

.news-header h1 {
  font-size: 3.5rem;
  color: var(--secondary);
  margin-bottom: 1.5rem;
  font-weight: 700;
  letter-spacing: -1px;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  -webkit-text-fill-color: transparent;
  position: relative;
  display: inline-block;
}

.news-header h1::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 2px;
}

.news-header h2 {
  color: var(--text-light);
  font-size: 1.5rem;
  font-weight: 500;
  margin-top: 1rem;
}

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

.news-card {
  background: var(--white);
  border: 1px solid rgba(220, 38, 38, 0.1);
  box-shadow: 0 4px 20px rgba(220, 38, 38, 0.08);
  border-radius: 12px;
  padding: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.news-card:hover {
  border-color: var(--primary);
  box-shadow: 0 8px 30px rgba(220, 38, 38, 0.12);
  transform: translateY(-5px);
}

.news-date {
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.news-card h3 {
  color: var(--secondary);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.news-card p {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.news-excerpt {
  font-style: italic;
  color: var(--text-light);
  opacity: 0.8;
  margin-bottom: 2rem;
}

.news-read-more {
  display: inline-flex;
  align-items: center;
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.news-read-more .arrow {
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.news-read-more:hover {
  color: var(--secondary);
}

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

/* Responsive Adjustments */
@media (max-width: 768px) {
  #NEWS {
    padding: 1rem 0;
    width: 352px;
  }

  .news-container {
    padding: 0 1.5rem;
  }

  .news-header h1 {
    font-size: 2.5rem;
  }

  .news-header h2 {
    font-size: 1.2rem;
  }

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

  .news-card {
    padding: 1.5rem;
  }
}

/* About Us Section */
#About-us {
  background: var(--white);
  padding: 4rem 2rem;
  position: relative;
}

#About-us::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,0,0,0.1), transparent);
}

#About-us .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem;
  background: var(--white);
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 1;
}

#About-us h1 {
  margin-top: -35px;
  margin-left: -15px;
  text-align: center;
  font-size: 3.5rem;
  color: var(--secondary);
  margin-bottom: 3rem;
  position: relative;
  display: inline-block;
}

#About-us h1::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 14%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 2px;
}

#About-us p {
  color: #5a6a7a;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 1200px;
  margin-left: -20px;
  margin-right: auto;
  text-align: justify;
}

#About-us p:first-of-type {
  font-size: 1.2rem;
  color: #2c3e50;
  font-weight: 500;
  margin-bottom: 2.5rem;
  margin-left: -20px;
}

#About-us p:last-of-type {
  margin-bottom: 0;
}

/* Home Section */
#Home {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 3rem 2rem;
  position: relative;
  overflow: hidden;
}

#Home::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,0,0,0.1), transparent);
}

.home {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.home h1 {
margin-top: 40px;
  font-size: 3.5rem;
  color: #2c3e50;
  margin-bottom: 2rem;
  line-height: 1.2;
  background: linear-gradient(135deg, #dc2626, #5a6a7a);
  background-clip: text; 
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  display: inline-block;
}

.home h1::after {
  content: '';
  position: absolute;
  bottom: -7px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), rgba(220, 38, 38, 0.12));
  border-radius: 2px;
}

.home h2 {
  font-size: 2rem;
  color: #3498db;
  margin-bottom: 2rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.home h3 {
  color: #2c3e50;
  font-size: 22px;
  margin: 4rem 0 1.5rem;
  margin-top: -20px;
  text-align: left;
  position: relative;
  padding-left: 1.5rem;
}

.home h3::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 60px;
  background: linear-gradient(127deg, var(--primary), rgb(52 17 17 / 29%));  border-radius: 2px;
}

.home p {
  color: #5a6a7a;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 5px;
  text-align: left;
  max-width: 1200px;
  margin-left: 0px;
  margin-right: auto;
  margin-top: 0px;
}

/* Applications Section */
#Applications {
  background: var(--white);
  padding: 6rem 2rem 3rem;
  position: relative;
  text-align: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

#Applications h1 {
  margin-top: -10px;
  font-size: 3.5rem;
  color: var(--secondary);
  margin-bottom: 1.5rem;
  font-weight: 700;
  letter-spacing: -1px;
  background-clip: text; 
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  display: inline-block;
}

#Applications h1::after {
  content: '';
  position: absolute;
  bottom: -15px;
  top: 70px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), rgba(220, 38, 38, 0.12));  
  border-radius: 2px;
}

#Applications p {
  color: var(--text-light);
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
  font-weight: 400;
}

/* Applications Navbar */
#Applications-navbar {
  background: var(--white);
  padding: 0;
  margin: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);

  top: 80px;
  z-index: 999;
}

.app-tabs-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
}

.app-tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  list-style: none;
  padding: 0;
  margin: 0;
}

.app-tab {
  display: inline-block;
  margin: 0;
}

.app-tab a {
  display: block;
  padding: 1.2rem 2.5rem;
  text-decoration: none;
  color: var(--text-light);
  font-weight: 500;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
  position: relative;
}

.app-tab a:hover {
  color: var(--primary);
  background: rgba(220, 38, 38, 0.05);
}

.app-tab.active a {
  color: var(--primary);
  border-bottom: 2px solid var(--primary);
  background: rgba(220, 38, 38, 0.05);
}

.product-image {
  height: 220px;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .product-image img {
  transform: scale(0);
}

.product-info {
  padding: 2rem;
}

.product-info h3 {
  color: var(--secondary);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.product-info h3::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--primary);
  transition: width 0.1s ease;
}

.product-card:hover .product-info h3::after {
  width: 100%;
}

.cta-button {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  background: var(--primary);
  color: var(--white);
  text-decoration: none;
  border-radius: 12px;
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.cta-button::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;
}

.cta-button:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.cta-button:hover::before {
  left: 100%;
}

/* Footer */
.footer {
  background: var(--secondary);
  color: var(--white);
  padding: 2rem 2rem;
  text-align: center;
}

.footer a {
  color: var(--white);
  text-decoration: none;
  margin: 0 1rem;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--white);
  text-decoration: underline;
}

@media (max-width: 1200px) 
{
  .nav {
    padding: 0 1.5rem;
  }
  
  .nav-links {
    gap: 2rem;
  }
}

@media (max-width: 992px) 
{
  .nav-links 
  {
    gap: 1.5rem;
  }
  
  section {
    padding: 4rem 1.5rem;
  }
  
  .container {
    padding: 2.5rem;
  }
}

@media (max-width: 768px) 
{
  .nav {
    height: 70px;
  }
  
  .nav img {
    height: 35px;
  }
  
  .hamburger 
  {
    display: block;
  }
  
  .nav-links 
  {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    padding: 2rem;
    flex-direction: column;
    gap: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }
  
  .nav-links.active {
    display: flex;
  }
  
  .dropdown-content {
    position: static;
    box-shadow: none;
    padding-left: 1.5rem;
  }
  
  section {
    padding: 0rem 1rem;
  }
  
  .container, .news, .contact {
    padding: 2rem;
  }
  
  .products-grid {
    grid-template-columns: 1fr;
  }

  #Applications h1 {
    font-size: 2.5rem;
    margin-top: -23px;
  }

  #Applications p {
    font-size: 1.1rem;
    padding: 0 1rem;
  }
  .app-tab.active a
  {
    width: 226px;
    margin-left: 103px;
  }
  .app-tab a
  {
    margin-left: 100px;
  }
}

/* Products Intro Section */
#products-intro {
  background: var(--white);
  padding: 6rem 2rem 2rem;
  position: relative;
  text-align: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

#products-intro h1 
{
  margin-top: -10px;
  font-size: 3.5rem;
  color: var(--secondary);
  margin-bottom: 1.5rem;
  font-weight: 700;
  letter-spacing: -1px;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  background-clip: text; 
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  display: inline-block;
}

#products-intro h1::after {
  content: '';
  position: absolute;
  bottom: -15px;
  top: 72px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), rgba(220, 38, 38, 0.12));
  border-radius: 2px;
}

#products-intro p {
  color: var(--text-light);
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
  font-weight: 400;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  #products-intro h1 {
    font-size: 2.5rem;
  }

  #products-intro p {
    font-size: 1.1rem;
    padding: 0 1rem;
  }
}

/* Contact Page Styles */
.contact-hero {
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/contact-bg.jpg');
  background-size: cover;
  background-position: center;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  margin-bottom: 50px;
}

.contact-hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.contact-hero-content p {
  font-size: 1.2rem;
  opacity: 0.9;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  margin-bottom: 50px;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.info-card {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.info-card:hover {
  transform: translateY(-5px);
}

.info-card i {
  font-size: 2.5rem;
  color: #007bff;
  margin-bottom: 15px;
}

.info-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #333;
}

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

.contact-form-container {
  background: white;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.contact-form {
  display: grid;
  gap: 20px;
}

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

.form-group label {
  margin-bottom: 8px;
  font-weight: 600;
  color: #333;
}

.form-group input,
.form-group textarea {
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #007bff;
  outline: none;
}

.submit-btn {
  background: #007bff;
  color: white;
  padding: 12px 30px;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: fit-content;
  margin-top: 10px;
}

.submit-btn:hover {
  background: #0056b3;
}

.map-container {
  margin-top: 50px;
  margin-bottom: 50px;
}

.map-container iframe {
  border-radius: 10px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .contact-container {
    grid-template-columns: 1fr;
  }
  
  .contact-info {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .contact-hero-content h1 {
    font-size: 2.5rem;
  }
  
  .contact-info {
    grid-template-columns: 1fr;
  }
  
  .contact-form-container {
    padding: 20px;
  }
}

@media (max-width: 576px) {
  .contact-hero-content h1 {
    font-size: 2rem;
  }
  
  .contact-hero-content p {
    font-size: 1rem;
  }
  
  .submit-btn {
    width: 100%;
  }
}

#product-showcase {
  padding: 50px 20px;
  background: #f8f9fa;
}

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

.section-header h2 {
  font-size: 36px;
  color: #333;
  margin-bottom: 15px;
}

.section-header p {
  font-size: 18px;
  color: #666;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  max-width: 1350px;
  margin: 0 auto;
}

.product-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.product-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
  opacity: 1;
}

.product-info {
  padding: 14px;
}

.product-info h3 {
  font-size: 24px;
  color: #333;
  margin-bottom: 15px;
}

.product-info p {
  color: #666;
  margin-bottom: 20px;
  line-height: 1.6;
}

.product-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 15px;
}

.product-features span {
  background: #f0f0f0;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 14px;
  color: #666;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: -5px;
}

.product-features i {
  color: #991b1b;
}

.cta-button {
  display: inline-block;
  padding: 12px 30px;
  background: #d9d9d9;
  color: rgb(6, 6, 6);
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background: #ffffff;
}

@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
  
  .section-header h2 {
    font-size: 30px;
  }
  
  .product-image {
    height: 200px;
  }
}