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

body {
  font-family: "Poppins", sans-serif;
  background-color: #f9fafb;
  color: #111827;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
}

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

/* ✅ Navbar - Transparent Glass + Header Height Reduced */
.navbar {
  background-color: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 10px 0;
}

.navbar .container {
  color: white;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
  font-weight: 600;
  color: white;
  text-shadow: 1px 1px 3px black;
}

.logo img {
  height: 36px;
  width: auto;
  border-radius: 6px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

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

.company-name {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: white;
  letter-spacing: 1px;
  text-shadow: 1px 1px 3px black;
}

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

.nav-links li {
  list-style: none;
}

.nav-links a {
  color: white;
  font-weight: 500;
  text-shadow: 1px 1px 3px black;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #00ffcc;
}

.hamburger {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: white;
}

/* ✅ Hero Section */
.hero {
  padding: 3rem 0;
  background-color: transparent;
  position: relative;
  z-index: 1;
}

.hero-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4rem;
}

.hero-text {
  flex: 1;
}

.hero-text h1 {
  font-size: 2.6rem;
  color: #ffffff;
  margin-bottom: 1rem;
  text-shadow: 1px 1px 5px rgba(0,0,0,0.6);
}

.hero-text p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: #e0e0e0;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.cta-buttons {
  display: flex;
  gap: 1rem;
}

.btn {
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
  transition: 0.3s;
}

.btn.primary {
  background-color: #1e3a8a;
  color: white;
}

.btn.primary:hover {
  background-color: #17367a;
}

.btn.secondary {
  background-color: #22c55e;
  color: white;
}

.btn.secondary:hover {
  background-color: #1e9e4c;
}

.hero-image {
  flex: 1;
  text-align: center;
}

/* ✅ Background Video Styling */
#bgVideo {
  position: fixed;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  object-fit: cover;
  z-index: -1;
  opacity: 0.6;
}

/* ✅ Make all sections visible above video */
.hero,
.about-section,
.services-section,
.business-nature,
.modal,
.footer {
  position: relative;
  z-index: 1;
}

/* ✅ Responsive Adjustments */
@media (max-width: 768px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.85);
    position: absolute;
    top: 60px;
    right: 20px;
    padding: 1rem;
    border-radius: 8px;
  }

  .nav-links.active {
    display: flex;
  }

  .hamburger {
    display: block;
  }

  .navbar {
    padding: 10px 1rem;
  }

  .about-container {
    flex-direction: column;
  }

  .about-images {
    width: 100%;
  }

  .about-text {
    text-align: center;
  }
}

/* ✅ About Section */
.about-section {
 background-color: #f0f4ef;
  background-color: transparent;
     padding: 60px 20px;

}

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

.about-images {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-images img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.about-text {
  flex: 1;
  color: #344966;
}

.about-tag {
  display: inline-block;
  padding: 5px 15px;
  border: 2px solid #0d1821;
  color: #0d1821;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 15px;
}

.about-text h2 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 15px;
}

.about-text h2 .highlight {
  color: #bfcc94;
}

.about-text p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 25px;
}

.about-btn {
  background-color: #0d1821;
  color: white;
  padding: 12px 28px;
  border-radius: 8px;
  transition: background 0.3s ease;
  text-decoration: none;
}

.about-btn:hover {
  background-color: rgba(13, 24, 33, 0.9);
}

/* ✅ Services Section */
.services-section {
  padding: 10px 10px;
    /* border: 2px solid #1e3a8a;    */
  color: #1e3a8a;
}


.services-card {
  padding: 40px 10px;
  background-color: transparent;
}
.services-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 40px;
}

.services-left {
  display: flex;
  align-items: center;
  justify-content: center;
}

.services-tag {
  padding: 6px 20px;
  border: 2px solid #0d1821;
  border-radius: 50px;
  font-weight: 600;
  color: #0d1821;
  font-size: 14px;
  white-space: nowrap;
}

.services-right h2 {
  font-size: 36px;
  line-height: 1.2;
  margin: 0 0 20px;
}

.services-right h2 .light,
.services-right h2 .highlight {
  color: #bfcc94;
  font-weight: 700;
}

.services-right h2 .bold {
  color: #0d1821;
  font-weight: 800;
}

.services-right p {
  font-size: 16px;
  color: #344966;
  line-height: 1.7;
  max-width: 700px;
}

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

.service-card {
  background-color: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
  text-align: center;
  display: flex;
  flex-direction: column;
  height: 100%;
}

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

.service-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.service-card h4 {
  font-size: 20px;
  color: #1e3a8a;
  margin: 16px 0 10px;
}

.service-card p {
  font-size: 14px;
  color: #374151;
  padding: 0 15px 15px;
  flex-grow: 1;
}

/* ✅ Business Nature Section */


.business-nature .bn-tag {
  border: 2px solid #1e3a8a;   /* darker border for contrast */
  color: #1e3a8a;
}

.business-nature .bn-left p {
  color: #344966;              /* darker paragraph text */
}

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

.bn-left {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  padding: 20px;
}

.bn-tag {
  border: 2px solid #ffffff;
  border-radius: 50px;
  padding: 6px 20px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 20px;
  display: inline-block;
}

.bn-left h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.bn-left h2 .green {
  color: #6fc16e;
}

.bn-left p {
  font-size: 16px;
  color: #d0e0d0;
  margin-top: 20px;
  line-height: 1.6;
  max-width: 90%;
}

.bn-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
  min-width: 280px;
}

.stat-card {
  background-color: #ffffff;
  color: #1d2a3a;
  border-radius: 16px;
  padding: 24px 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

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

.stat-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}

.stat-card p {
  font-size: 14px;
  color: #344966;
  line-height: 1.5;
}

/* ✅ Footer */
.footer {
  background-color: #001a00;
  color: #d0e0d0;
  padding: 60px 20px 20px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.footer-column {
  flex: 1;
  min-width: 220px;
}

.logo-col p {
  font-size: 14px;
  line-height: 1.7;
  margin-top: 15px;
  margin-bottom: 20px;
}

.footer-logo {
  max-width: 160px;
}

.footer-column h4 {
  font-size: 16px;
  margin-bottom: 15px;
  color: #fff;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: #d0e0d0;
  text-decoration: none;
  font-size: 14px;
}

.footer-column p {
  font-size: 14px;
  line-height: 1.5;
}

.footer-bottom {
  border-top: 1px solid #0e2e0e;
  text-align: center;
  padding-top: 15px;
  font-size: 13px;
  color: #ccc;
  margin-top: 40px;
}

.social-icons a {
  color: #d0e0d0;
  margin-right: 10px;
  font-size: 16px;
  text-decoration: none;
}
/* ✅ Contact Modal */
.modal {
  display: none; /* Hidden by default */
  position: fixed;
  z-index: 9999; /* Make sure it's above everything */
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.7); /* Black background with opacity */
  justify-content: center;
  align-items: center;
}

.modal-content {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  width: 90%;
  max-width: 500px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  position: relative;
  z-index: 10000;
}

.modal-content h2 {
  margin-bottom: 20px;
  color: #1e3a8a;
}

.close-button {
  position: absolute;
  right: 20px;
  top: 20px;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
  color: #333;
}

.contact-form label {
  display: block;
  margin: 15px 0 5px;
  font-weight: 500;
  color: #333;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
  font-family: inherit;
}

.contact-form button {
  margin-top: 20px;
  padding: 12px 20px;
  background-color: #1e3a8a;
  color: white;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}

.contact-form button:hover {
  background-color: #17367a;
}

/* ✅ Night Mode Toggle Button */
.dark-mode-btn {
  background: transparent;
  border: none;
  font-size: 18px;
  cursor: pointer;
  color: white;
  transition: transform 0.3s ease;
}

.dark-mode-btn:hover {
  transform: scale(1.1);
}

/* ✅ Dark Mode Classes */
body.dark-mode {
  background-color: #0d1117;
  color: #e6edf3;
}

body.dark-mode .navbar {
  background-color: rgba(0, 0, 0, 0.7);
}

body.dark-mode .nav-links a {
  color: #e6edf3;
}

body.dark-mode .about-section,
body.dark-mode .services-section,
body.dark-mode .business-nature,
body.dark-mode .footer {
  background-color: #161b22;
  color: #e6edf3;
}

body.dark-mode .about-card,
body.dark-mode .service-card,
body.dark-mode .stat-card,
body.dark-mode .modal-content {
  background-color: #21262d;
  color: #e6edf3;
}

body.dark-mode .btn.primary,
body.dark-mode .about-btn,
body.dark-mode .contact-form button {
  background-color: #238636;
  color: white;
}

body.dark-mode .btn.primary:hover,
body.dark-mode .about-btn:hover,
body.dark-mode .contact-form button:hover {
  background-color: #2ea043;
}

body.dark-mode .footer-bottom {
  border-top: 1px solid #30363d;
  color: #8b949e;
}


html {
  scroll-behavior: smooth;
}

/* Reuse modal style */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: flex-start;
  padding-top: 50px;
}

.modal-content.large-footer-modal {
  background: #fff;
  padding: 30px;
  max-width: 1100px;
  width: 90%;
  border-radius: 12px;
  font-family: 'Poppins', sans-serif;
  position: relative;
}

.close-button {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 26px;
  font-weight: bold;
  cursor: pointer;
  color: #333;
}

.about-welcome-section {
  display: none;
  background: linear-gradient(to right, #eef2f3, #f9f9f9);
  padding: 100px 20px 60px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.about-welcome-section::before {
  content: "";
  position: absolute;
  top: -40px;
  left: -20%;
  width: 140%;
  height: 200%;
  background: radial-gradient(circle at center, #dfe9f3 0%, #ffffff 100%);
  opacity: 0.3;
  z-index: 0;
  animation: fadeBg 10s infinite alternate;
}

.welcome-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  animation: fadeInUp 1.2s ease-out;
}

.welcome-content h1 {
  font-size: 38px;
  font-weight: 700;
  color: #222;
  margin-bottom: 15px;
}

.welcome-content p {
  font-size: 24px;
  color: #555;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeBg {
  0% {
    transform: rotate(0deg) scale(1);
  }
  100% {
    transform: rotate(2deg) scale(1.05);
  }
}
.rainbow-text {
  font-size: 2em;
  font-weight: bold;
  text-align: center;
  background: radial-gradient(circle at center, 
              red 0%, orange 20%, yellow 40%, green 60%, blue 80%, indigo 90%, violet 100%);
  -webkit-text-fill-color: transparent;
  background-size: 200% 200%;
  background-position: center;
  display: inline-block;
}


    marquee h1 {
      margin: 0;
    }