/* ================= ROOT VARIABLES ================= */
:root {
  --primary: #3a1ec8;
  --secondary: #329a22;
  --dark: #190505;
  --light: #f7f8fa;
  --white: #ffffff;
}
/* Navbar */
.navbar {
    position: fixed;
    width: 100%;
    background: var(--white);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

.nav-links { 
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary-color);
}

/* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ================= BASE ================= */
body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background: var(--light);
  color: var(--dark);
  line-height: 1.6;
  padding-top: 80px;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* ================= NAVBAR ================= */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: var(--white);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  z-index: 1000;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: left;
  padding: 1rem 20px;
}

.nav-logo {
  font-size: 1.4rem;
  font-weight: bold;
  color: var(--primary);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  text-decoration: none;
  font-weight: 600;
  color: var(--dark);
}

/* Hamburger */
.menu-toggle {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
}

/* ===== MOBILE VIEW ===== */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: white;
    flex-direction: column;
    align-items: center;
    display: none;
    padding: 1rem 0;
  }

  .nav-links.active {
    display: flex;
  }
}
/* ================= HEADER ================= */
header {
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  color: var(--white);
  padding: 6rem 0 2rem;
  margin-top: flexible;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.header-content {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.logo-left {
  height: 70px;
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

header h1 {
  font-size: 2.4rem;
}

header p {
  font-size: 1.1rem;
}
/* ===== Company Hero Section ===== */
.company-hero {
  width: 100%;
  height: flexible;
  background: url("../images/background.jpg") center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Gradient + Blur Panel */
.company-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 60, 140, 0.9) 0%,
    rgba(0, 60, 140, 0.65) 30%,
    rgba(0, 60, 140, 0.35) 55%,
    rgba(0, 60, 140, 0.15) 70%,
    rgba(0, 60, 140, 0) 100%
  );
  backdrop-filter: blur(10px);
}




/* Text Content */
.company-hero-content {
  position: relative;
  max-width: 600px;
  padding:100px;
  color: #141414;

  animation: heroFadeSlide 1.8s ease forwards;
  transform: translateX(-80px);
  opacity: 0;
}




.company-hero-content h2 {
  font-size: 2.8rem;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.company-hero-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #f0f4ff;
}

/* Animation */
@keyframes heroFadeSlide {
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .company-hero {
    height: auto;
    padding: 60px 0;
  }

  .company-hero::before {
    background: rgba(0, 60, 140, 0.9);
  }

  .company-hero-content {
    padding: 0 20px;
  }
}


/* ================= PRODUCTS ================= */
main {
  padding: 3rem 0;
}

h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: #6c80aa;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.product-card {
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 24px rgba(79,140,255,0.15);
}

.product-image {
  width: 100%;
  height: 370px;
  object-fit: cover;
}

.product-info {
  padding: 1.2rem;
}

.product-title {
  font-size: 1.2rem;
  font-weight: 600;
}

.product-desc {
  color: #555;
  margin-top: 0.5rem;
}

/* ================= CONTACT FORM ================= */
.contact-form {
  max-width: 400px;
  margin: 3rem auto;
  background: var(--white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.contact-form h3 {
  color: var(--primary);
  text-align: center;
}

.contact-form input {
  padding: 0.6rem;
  border-radius: 6px;
  border: 1px solid #bcd0ee;
}

.contact-form button {
  background: var(--primary);
  color: var(--white);
  border: none;
  padding: 0.7rem;
  border-radius: 6px;
  cursor: pointer;
}

.contact-form button:hover {
  background: var(--secondary);
}

/* ================= WHY US ================= */
.why-us {
  padding: 4rem 0;
  background: var(--white);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.benefit-card {
  text-align: center;
  padding: 2rem;
}

.benefit-card i {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

/* ================= FOOTER ================= */
.footer {
  background: var(--dark);
  color: var(--white);
  padding: 3rem 0 1rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.footer-section h3 {
  margin-bottom: 1rem;
}

.footer-section a {
  color: var(--white);
  text-decoration: none;
}

.footer-section a:hover {
  color: var(--primary);
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  font-size: 1.4rem;
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.9rem;
  opacity: 0.8;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .header-content {
    flex-direction: column;
    text-align: center;
  }

  .nav-links {
    display: none;
  }
}



