body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Fixed Top Contact Bar */
.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #022c43;
  color: white;
  padding: 5px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 40px;     /* ← Set actual height */
  z-index: 2000;
}

/* Contact info links */
.top-bar .contact-info a {
  color: white;
  text-decoration: none;
  margin-right: 20px;
  font-size: 0.9rem;
}

.top-bar .contact-info a:hover {
  text-decoration: underline;
}

/* LinkedIn icon */
.top-bar .social-links img {
  height: 22px;
  width: 22px;
  vertical-align: middle;
  transition: transform 0.3s ease, opacity 0.3s ease;
  border-radius: 4px;
}

.top-bar .social-links img:hover {
  transform: scale(1.15);
  opacity: 0.8;
}

/* ---------------- NAVIGATION BAR ---------------- */
.navbar {
  position: fixed;
  top: 40px;  /* ← SAME as top-bar height (40px) */
  left: 0;
  width: 100%;
  background-color: #fac6a8;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  box-sizing: border-box;
  z-index: 1500;   /* Below top bar but visible */
}

.navbar .logo img {
  height: 45px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;      /* prevents overflow */
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  padding: 8px 12px;
  white-space: nowrap;
}

.nav-links a:hover {
  background-color: #036b90;
  border-radius: 5px;
}

/* ---------- MOBILE FIX ---------- */
@media(max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 15px;
  }

  .nav-links {
    flex-direction: column;
    width: 100%;
    gap: 10px;
    margin-top: 10px;
  }
}

/* Logo Section */
.logo-section {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  height: 50px;
}

.company-text {
  display: flex;
  flex-direction: column;
}

.company-name {
  font-size: 1.3rem;
  margin: 0;
  color: #cc0000;
}

.company-tagline {
  font-size: 0.9rem;
  margin: 0;
  font-style: italic;
  color: #5e0ff1;
}

/* Navigation Links */
.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

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

.nav-links a:hover,
.nav-links .active {
  color: blue;
}

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

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #0a3d62;
  min-width: 180px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.dropdown-content li {
  border-bottom: 1px solid #08415c;
}

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

.dropdown-content a {
  display: block;
  padding: 10px;
  color: white;
  text-decoration: none;
}

.dropdown-content a:hover {
  background-color: #1e5f88;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* Add padding to body so content doesn’t go behind fixed bars */
body {
  margin: 0;
  padding-top: 80px; /* height of top bar + navbar */
}

.hero {
    position: relative;
    width: 100%;
    height: 500px; /* adjust if needed */
    overflow: hidden;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4); /* dark overlay so text becomes visible */
    z-index: 1;
}

.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2; /* VERY IMPORTANT */
    width: 100%;
    padding: 10px;
}

.hero-text h2 {
    font-size: 30px;
    font-weight: 600;
    color: white;
    margin: 5px 0;
}

.highlight-text {
    font-size: 42px;
    font-weight: 700;
    color: orange; /* blue */
    margin-top: 10px;
}
/* Animation for coming from bottom to top */
@keyframes slideUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animation for coming from top to bottom */
@keyframes slideDown {
    0% {
        opacity: 0;
        transform: translateY(-40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Apply animations */
.hero-text h2 {
    opacity: 0;
    animation: slideUp 1s ease-out forwards;
}

.hero-text .highlight-text {
    opacity: 0;
    animation: slideDown 1s ease-out forwards;
    animation-delay: 0.4s; /* second sentence comes later */
}


/* Arrow Buttons */
.arrow-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255,255,255,0.6);
  border: none;
  padding: 10px 15px;
  font-size: 24px;
  cursor: pointer;
  z-index: 3;
  border-radius: 50%;
  transition: 0.3s;
}

.arrow-btn:hover {
  background-color: rgba(255,255,255,0.9);
}

.arrow-btn.left { left: 20px; }
.arrow-btn.right { right: 20px; }

.fade {
  opacity: 0;
  animation: fadeIn 1s forwards;
}

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

/* Product Gallery Fix */
.product-gallery {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 50px 0;
}

.product-item {
    text-align: center;
}

.product-item img {
    width: 300px;        /* Increase width */
    height: 250px;       /* Increase height */
    object-fit: cover;   /* Ensures image fills nicely */
    border-radius: 10px; /* Optional */
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.product-item p {
    margin-top: 10px;
    font-size: 18px;
    font-weight: 600;
}

/* About Us Section */
.about-us {
  padding: 60px 30px;
  background-color: #f8f9fa;
}

.about-content {
  max-width: 1100px;
  margin: 0 auto;
}

.about-content h2 {
  text-align: center;
  font-size: 2rem;
  color: #002147;
  margin-bottom: 20px;
}

.about-content p {
  color: #333;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* Slider Container */
.slider {
  width: 100%;
  max-width: 900px;
  height: 300px;
  margin: 30px auto;
  overflow: hidden;
  border-radius: 12px;
  border: 2px solid #ddd;
}

/* Slide Images Wrapper */
.slides {
  display: flex;
  width: 400%;
  animation: slide 12s infinite;
}

/* Images Style */
.slides img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}


/* Company Details */
.company-details {
  background-color: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  margin-bottom: 30px;
}

.company-details h3 {
  color: #002147;
  margin-bottom: 10px;
}

.company-details ul {
  list-style: none;
  padding: 0;
}

.company-details li {
  font-size: 1rem;
  color: #444;
  padding: 6px 0;
}

/* Vision, Mission, Values */
.about-sections {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.about-box {
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  flex: 1 1 280px;
  padding: 20px;
}

.about-box h3 {
  color: #002147;
  margin-bottom: 10px;
}
.youtube-section {
  background-color: #ffffff; /* clean white section */
  text-align: center;
  padding: 60px 20px;
  border-top: 2px solid #002147;
}

.youtube-section h2 {
  color: #002147;
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.youtube-section p {
  color: #333;
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.youtube-section a {
  display: inline-block;
  background-color: #ff0000; /* YouTube red */
  color: white;
  font-weight: bold;
  text-decoration: none;
  padding: 12px 28px;
  border-radius: 6px;
  font-size: 1rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

.youtube-section a:hover {
  background-color: #cc0000;
  transform: scale(1.05);
}
.footer {
  background: hsl(0, 5%, 4%);
  color: white;
  text-align: center;
  padding: 15px;
}

.footer .linkedin-icon img {
  width: 26px;
  height: 26px;
  transition: transform 0.3s, filter 0.3s;
}

.footer .linkedin-icon img:hover {
  transform: scale(1.15);
  filter: brightness(1.3);
}



