* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body{
  background-image: url('T4 copy.jpg'); /* Replace with your actual image path */
  background-size: cover;         /* Ensures image covers entire screen */
  background-position: center;    /* Center the image */
  background-repeat: no-repeat;   /* Prevent image from repeating */
  background-attachment: fixed;   /* Makes the background static while content scrolls */
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
}

body, html {
  font-family: 'Segoe UI', sans-serif;
  scroll-behavior: smooth;
}

header {
  background: darkgreen;
  color: white;
  position: fixed;
  width: 100%;
  z-index: 1000;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 4rem;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
}

.logo img {
  height: 50px; /* Adjust as needed */
  width: auto;  /* Keeps aspect ratio */
  max-height: 100%;
  object-fit: contain;
  border-radius: 12px; /* Rounded corners */
  border: 2px solid #eee; /* Optional subtle border */
  padding: 2px; /* Optional padding inside border */
  background-color: #fff; /* Optional background */
}


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

.nav-links li {
  position: relative;
}

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

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

.dropdown-menu {
  display: none;
  position: absolute;
  min-width: 220px; 
  background: black;
  border-radius: 10px;
  top: 100%;
  left: 0;
  padding: 0.5rem 0;
}

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

.dropdown-menu li {
  padding: 0.5rem 1rem;
  list-style: none;
}

.menu-toggle {
  display: none;
  font-size: 2rem;
  cursor: pointer;
  color: white;
}

.slider {
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.slides {
  height: 100%;
  width: 100%;
  position: relative;
}

.slide {
  position: absolute;
  height: 100%;
  width: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  background-color: rgba(0,0,0,0.4);
  padding: 2rem;
  border-radius: 1rem;
}

/* VMV Section Styling */
.vmv-section {
  padding: 60px 20px;
  background-color: #ffffff;
  text-align: center;
}

.vmv-section .section-title {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #1a1a1a;
  font-weight: bold;
  letter-spacing: 1px;
}

/* Flex Container */
.vmv-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

/* Card Base */
.vmv-card {
  background: #f5f5f5;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  padding: 30px 25px;
  max-width: 320px;
  flex: 1 1 300px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vmv-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}

/* Card Headings */
.vmv-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #005a45;
}

/* Paragraph Text */
.vmv-card p {
  font-size: 1rem;
  color: #333333;
  line-height: 1.6;
}

/* Values List */
.vmv-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.vmv-card ul li {
  font-size: 1rem;
  color: #333333;
  line-height: 1.5;
  margin-bottom: 10px;
}

/* Responsive Breakpoint */
@media (max-width: 768px) {
  .vmv-card {
    max-width: 100%;
  }
}

/* About TNG Section */
.about-tng-section {
  background-color: #f4f9f8;
  padding: 50px 15px;
  text-align: center;
}

.about-tng-container {
  max-width: 1000px;
  margin: 0 auto;
  background-color: #ffffff;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.about-tng-container h2 {
  font-size: 2.2rem;
  color: #007b5e;
  margin-bottom: 20px;
  font-weight: 700;
}

.about-tng-container p {
  font-size: 1.05rem;
  color: #333333;
  line-height: 1.7;
  margin-bottom: 16px;
  text-align: left;
}

/* Responsive Design */
@media (max-width: 768px) {
  .about-tng-container {
    padding: 25px 15px;
  }

  .about-tng-container h2 {
    font-size: 1.8rem;
  }

  .about-tng-container p {
    font-size: 1rem;
    text-align: left;
  }
}


.contact-section {
  background-color: darkgreen;
  color: white;
  padding: 40px 20px;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  max-width: 1200px;
  margin: auto;
}

.contact-card {
  flex: 1;
  min-width: 280px;
  margin: 20px;
  background: linear-gradient(135deg, #e8fdf5, #d9f2ff); /* Soft gradient background */
  color: rgb(11, 196, 168);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(255,255,255,0.1);
}

.contact-card h3 {
  color: #131001;
  margin-bottom: 15px;
}

.contact-card a {
  color: #00BFFF;
  text-decoration: none;
}
.contact-card a:hover {
  text-decoration: underline;
}


footer {
  background: linear-gradient(135deg, #e8fdf5, #d9f2ff); /* Soft gradient background */
  color: rgb(11, 196, 168);
  text-align: center;
  padding: 1rem;
  margin-top: 2rem;
}



/*.partners-section {
  padding: 2rem 1rem;
  background-color: #f9f9f9;
  text-align: center;
}

.section-title h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: #333;
}

.logo-sliders {
  overflow: hidden;
  position: relative;
  width: 100%;
}

/*.logos-wrapper {
  display: flex;
  animation: slide 20s linear infinite;
  gap: 2rem;
}*/
/*.logos-wrapper {
  display: flex;
  animation: slide 20s linear infinite;
  gap: 2rem;
  min-width: 200%; /* or more depending on content */



/*.logo-item {
  flex: 0 0 auto;
  width: 150px;
  height: auto;
}

.logo-item img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Keyframes for continuous sliding */
/*@keyframes slide {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Responsive Styles */
@media (max-width: 768px) {
  .nav-links {
    flex-direction: column;
    background: #111;
    position: absolute;
    top: 60px;
    right: 0;
    width: 200px;
    display: none;
  }

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

  .menu-toggle {
    display: block;
  }

  .dropdown-menu {
    position: static;
  }
}
@media (max-width: 600px) {
  .logo img {
    height: 40px;
  }
}
