body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #f0f4f8;
  color: #1a1a1a;
  scroll-behavior: smooth;
}

header.hero {
  background: url('https://trainingtowers.com/wp-content/uploads/2023/06/AdobeStock_560510379.jpeg') no-repeat center center/cover;
  color: white;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  animation: fadeIn 2s ease;
}

/* nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: rgba(0, 0, 0, 0.5);
  position: sticky;
  top: 0;
  z-index: 999;
  transition: background 0.3s ease;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0;
}

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

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

.nav-links a:hover {
  color: #00bcd4;
}
 */

 nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: rgba(0, 0, 0, 0.5);
  position: sticky;
  top: 0;
  z-index: 999;
  flex-wrap: wrap;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.logo {
  font-size: 1.8rem; /* Default size */
  font-weight: 700;
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0;
}

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

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

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

/* Menu toggle (hamburger) hidden by default */
.menu-toggle {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

/* ✅ Responsive adjustments */
@media (max-width: 768px) {
  nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    gap: 1rem;
    margin-top: 1rem;
  }

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

  .menu-toggle {
    display: inline;
  }

  /* ✅ Resize logo text for smaller screens */
  .logo {
    font-size: 1.2rem;
  }
}



.hero-content {
  text-align: center;
  padding: 0 2rem 4rem;
  animation: fadeInUp 2s ease;
}

.hero-content h2 {
  font-size: 3.5rem;
  margin: 0;
  line-height: 1.2;
}

.hero-content p {
  font-size: 1.3rem;
  margin: 1.2rem 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta {
  display: inline-block;
  background: #00bcd4;
  color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
  margin-top: 1.5rem;
}

.cta:hover {
  background: #0097a7;
}

.section {
  padding: 4rem 2rem;
  background: #ffffff;
  text-align: center;
  animation: fadeIn 1.5s ease;
}






.about-us {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

@media(min-width: 768px) {
  .about-us {
    flex-direction: row;
    justify-content: center;
    text-align: left;
  }
}

.about-us img {
  
  max-width: 500px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-us .text {
  max-width: 600px;
}






.services {
  background: url('https://www.transparenttextures.com/patterns/brushed-alum.png');
  background-color: #f9fafb;
}

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

.card {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-12px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 1rem;
}




/* Basic Section Styling */

/*   */

.content-container {
display: flex;
align-items: center; /* Center vertically */
justify-content: space-between; /* Space out the items */
padding: 20px; /* Add some padding */
}

.text-content {
width: 50%; /* Adjust width as needed */
}

.image-content {
width: 50%; /* Adjust width as needed */
text-align: center; /* Center the image */
}

.image-content img {
max-width: 100%; /* Ensure the image is responsive */
height: auto;
border-radius: 10px; /* Rounded corners */
}

.why-list {
list-style-type: none;
padding: 0;
}

.why-list li {
font-size: 1.1rem;
margin-bottom: 15px;
line-height: 1.5;
color: #555;
}


.social-media {
display: flex;
gap: 20px;
justify-content: center;
margin-top: 10px;
}

.social-media a {
text-decoration: none;
color: #333;
font-size: 28px; /* Adjust size here for logo scale */
transition: transform 0.2s, color 0.2s;
}

.social-media a:hover {
transform: scale(1.2);
color: #0077b5; /* LinkedIn blue, but you can customize */
}

#follow-us h2 {
text-align: center;
margin-bottom: 10px;
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial {
  background: #fff;
  padding: 1.5rem;
  border-left: 5px solid var(--secondary-color);
  border-radius: 10px;
}







#partners {
padding: 40px 20px;
background-color: #f5f5f5;
text-align: center;
}

#partners h2 {
margin-bottom: 30px;
font-size: 2em;
color: #333;
}

.partners-container {
display: flex;
justify-content: center;
align-items: center;
gap: 40px;
flex-wrap: wrap;
}

.partners-container img {
width: 100px;
height: 100px;

background: white;
padding: 10px;
box-shadow: 0 2px 8px rgba(0,0,0,0.1);
transition: transform 0.3s ease;
}

.partners-container img:hover {
transform: scale(1.05);
}

@media (max-width: 600px) {
.partners-container {
  gap: 20px;
}

.partners-container img {
  width: 80px;
  height: 80px;
}
}









.social-media {
display: flex;
justify-content: center;
gap: 25px;
}

.social-media a img {
width: 40px;
height: 40px;
object-fit: contain;
transition: transform 0.3s ease;
}

.social-media a:hover img {
transform: scale(1.1);
}




/* Location Section */
#location {
  padding: 60px 20px;
  background-color: #f4f4f4; /* Match the general section style */
  box-sizing: border-box; /* Ensure padding is included in element's total width/height */
}

#location h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 20px;
}

.location-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  max-width: 100%;
  box-sizing: border-box;
}

.location-info {
  flex: 1;
  padding: 20px;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  min-width: 300px;
  margin-bottom: 20px;
  box-sizing: border-box;
}

.location-info h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.location-info p {
  font-size: 1rem;
  margin-bottom: 10px;
}

.location-info strong {
  font-weight: bold;
}

.location-map {
  flex: 1;
  min-width: 300px;
  box-sizing: border-box;
}

.map-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
}

.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Ensure no overflow and add some margin for padding */
body, html {
  margin: 0;
  padding: 0;
  overflow-x: hidden; /* Prevent horizontal scrolling */
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
  .location-container {
    flex-direction: column;
    gap: 20px;
  }

  .location-map, .location-info {
    width: 100%;
  }
}

@media (max-width: 480px) {
  #location h2 {
    font-size: 1.5rem;
  }

  .location-info h3 {
    font-size: 1.25rem;
  }

  .location-info p {
    font-size: 0.9rem;
  }
}
 






/* 
#location {
padding: 40px 20px;
background: #f9f9f9;
}

#location h2 {
text-align: center;
margin-bottom: 30px;
font-size: 2em;
}

.location-container {
display: flex;
flex-wrap: wrap;
gap: 20px;
justify-content: center;
align-items: stretch;
}

.location-info {
flex: 1 1 300px;
max-width: 400px;
padding: 20px;
background: white;
border-radius: 10px;
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.location-info h3 {
margin-top: 0;
font-size: 1.4em;
color: #333;
}

.location-info p {
margin: 10px 0;
line-height: 1.5;
}

.location-map {
flex: 2 1 500px;
min-height: 400px;
border-radius: 10px;
overflow: hidden;
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
.location-container {
  flex-direction: column;
}

.location-map {
  height: 300px;
}
} */










.contact {
background: #f0f4f8;
padding: 4rem 1.5rem;
display: flex;
justify-content: center;
}

.contact-container {
max-width: 600px;
width: 100%;
text-align: center;
}

.contact h2 {
font-size: 2rem;
margin-bottom: 0.5rem;
}

.contact .subtitle {
color: #555;
margin-bottom: 2rem;
}

.contact-details p {
margin: 0.3rem 0;
font-size: 1.1rem;
}

.contact-details a {
text-decoration: none;
color: #1a73e8;
}

.contact-form {
display: flex;
flex-direction: column;
gap: 1rem;
margin-top: 2rem;
}

.contact-form input,
.contact-form textarea {
padding: 0.75rem;
border: 1px solid #ccc;
border-radius: 8px;
font-size: 1rem;
resize: vertical;
}

.contact-form button {
background: #ff9a00;
color: white;
padding: 0.75rem;
border: none;
border-radius: 8px;
font-size: 1rem;
cursor: pointer;
transition: background 0.3s ease;
}

.contact-form button:hover {
background: #155ab6;
}






/*footer {*/
/*  background: #1a1a1a;*/
/*  color: #eee;*/
/*  text-align: center;*/
/*  padding: 1rem;*/
/*  font-size: 0.9rem;*/
/*}*/

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

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


