/* Reset and base */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', sans-serif;
  background: #f0f2f5;
  color: #222;
  line-height: 1.6;
  min-height: 100vh;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* Header */
header {
  background: #12142b;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgb(0 0 0 / 0.2);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
}

.logo {
  color: #f5a623;
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 2px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
}

nav ul li a {
  color: #eaeaea;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: color 0.3s ease;
}

nav ul li a:hover {
  color: #f5a623;
}

/* Add top padding for fixed nav */
main {
  padding-top: 70px;
}

/* Section Borders & Styling */
.section-bordered {
  background: white;
  margin: 40px 0;
  padding: 40px 30px;
  border-radius: 10px;
  box-shadow:
    0 4px 15px rgb(0 0 0 / 0.1),
    inset 0 0 0 3px #f5a623;
}

/* Accent colored background for some sections */
.section-colored {
  background: linear-gradient(135deg, #fefefe, #fff7e6);
  border-color: #f5a623;
}

/* Section Titles */
.section-title {
  font-size: 28px;
  font-weight: 700;
  color: #12142b;
  text-align: center;
  margin-bottom: 30px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

/* Hero Section */
.hero {
      background: url(https://images.unsplash.com/photo-1498050108023-c5249f4df085?auto=format&fit=crop&w=1470&q=80) center center / cover no-repeat;
    color: white;
    /* border: none; */
    padding: 100px 30px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgb(0 0 0 / 0.4);
    position: relative;
	 margin-top: -1px;
}

.hero::after {
      content: "";
    position: absolute;
    inset: 0;
    background: rgba(18, 20, 43, 0.7);
    /* border-radius: 10px; */
    z-index: 0;
    margin-top: -1px;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: auto;
}

.hero h2 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.hero p {
  font-size: 20px;
  margin-bottom: 30px;
  font-weight: 500;
  line-height: 1.4;
}

/* Buttons */
.btn-primary {
  background-color: #f5a623;
  border: none;
  padding: 15px 40px;
  font-weight: 700;
  font-size: 18px;
  color: #12142b;
  border-radius: 50px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  text-decoration: none;
}

.btn-primary:hover {
  background-color: #d18e12;
}

/* Info Grid */
.info-grid {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.info-card {
  background: #fff;
  padding: 25px 20px;
  border-radius: 10px;
  flex: 1 1 280px;
  max-width: 320px;
  box-shadow: 0 8px 20px rgb(245 166 35 / 0.15);
  text-align: center;
  transition: transform 0.3s ease;
  cursor: default;
}

.info-card:hover {
  transform: translateY(-10px);
}

.info-card img {
  width: 64px;
  margin-bottom: 20px;
  filter: drop-shadow(0 1px 1px rgba(0,0,0,0.15));
}

.info-card h4 {
  margin-bottom: 12px;
  color: #12142b;
  font-weight: 700;
  font-size: 20px;
}

.info-card p {
  font-size: 15px;
  color: #555;
}

/* Vision & Mission */
.vision-container p {
  max-width: 700px;
  margin: 15px auto;
  font-size: 18px;
  color: #333;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.3px;
}

/* Team Section */
.member-grid {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.member-card {
  background: #fff;
  padding: 20px;
  border-radius: 15px;
  max-width: 250px;
  box-shadow: 0 8px 25px rgb(245 166 35 / 0.15);
  text-align: center;
  transition: transform 0.3s ease;
  cursor: default;
}

.member-card:hover {
  transform: translateY(-8px);
}

.member-card img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 18px;
  border: 4px solid #f5a623;
}

.member-card h4 {
  font-size: 20px;
  color: #12142b;
  margin-bottom: 6px;
}

.member-card p {
  font-size: 16px;
  font-weight: 600;
  color: #777;
}

/* Contact Form */
.contact-container {
  max-width: 600px;
  margin: auto;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form input,
.contact-form textarea {
  padding: 14px 18px;
  font-size: 16px;
  border: 2px solid #f5a623;
  border-radius: 8px;
  resize: vertical;
  transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #d18e12;
  box-shadow: 0 0 8px #d18e12aa;
}

.contact-form button {
  padding: 15px;
  font-weight: 700;
  font-size: 18px;
  background: #f5a623;
  color: #12142b;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #d18e12;
}

/* Footer */
footer {
  background: #12142b;
  color: #eaeaea;
  padding: 20px 0;
  text-align: center;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  margin-top: 60px;
}

/* Responsive */
@media (max-width: 768px) {
  .info-grid, .member-grid {
    flex-direction: column;
    align-items: center;
  }
  nav ul {
    gap: 15px;
  }
  .hero h2 {
    font-size: 32px;
  }
  .hero p {
    font-size: 16px;
  }
  .product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.product-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 15px;
  text-align: center;
  transition: transform 0.2s ease;
}

.product-card img {
  width: 100%;
  border-radius: 8px;
}

.product-card h4 {
  margin: 10px 0 5px;
}

.product-card p {
  font-size: 14px;
  color: #666;
}

.product-card:hover {
  transform: scale(2px);
}


nav ul li a.active {
  font-weight: bold;
  color: #0077ff;
}
.product-card img {
  width: 100%;
  height: 180px; /* Ideal fixed height */
  object-fit: cover; /* Crop to fit without stretching */
  border-radius: 8px;
}
.contact-details:hover{
	transform: translateY(-10px);
	align-items:left;
}
.what-we-do {
  text-align: center;
  padding: 50px 20px;
  background: #fff;
}

.what-we-do h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  font-weight: bold;
  color: #333;
}

.cards {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap; /* Makes it responsive */
}

.card {
  background: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 20px;
  max-width: 300px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card img {
  width: 60px;
  margin-bottom: 15px;
}

.card h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #222;
}

.card p {
  font-size: 1rem;
  color: #555;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}.more-content {
  display: none;
  margin-top: 10px;
}

.read-more-btn {
  background: #0073e6;
  color: white;
  border: none;
  padding: 10px 16px;
  border-radius: 6px;
  cursor: pointer;
  margin-top: 10px;
  transition: 0.3s;
}

.read-more-btn:hover {
  background: #005bb5;
}
/* General Responsive Images */
img {
  max-width: 100%;
  height: auto;
}

/* Navbar Hamburger Menu */
.menu-toggle {
  display: none;
  font-size: 28px;
  color: #f5a623;
  cursor: pointer;
  background: none;
  border: none;
}

/* For Tablets & Mobile */
@media (max-width: 768px) {
  .nav-container {
    flex-direction: row;
    justify-content: space-between;
    padding: 10px 20px;
  }

  nav ul {
    flex-direction: column;
    gap: 10px;
    background: #12142b;
    position: absolute;
    top: 60px;
    right: 0;
    width: 200px;
    padding: 15px;
    border-radius: 8px;
    display: none; /* hidden by default */
  }

  nav ul.show {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .hero {
    padding: 70px 20px;
  }

  .hero h1 {
    font-size: 26px;
  }

  .hero p {
    font-size: 15px;
  }

  .info-grid, .member-grid {
    flex-direction: column;
    align-items: center;
  }

  .info-card, .member-card {
    max-width: 95%;
  }

  .CEO_DETAILS {
    font-size: 15px;
    line-height: 1.5;
    padding: 10px;
  }

  footer .outer_div {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  footer .social_links {
    flex-direction: column;
    margin-left: 0;
    margin-top: 20px;
  }
}

/* For Small Mobiles (≤ 480px) */
@media (max-width: 480px) {
  .logo {
    font-size: 20px;
  }

  .btn-primary {
    padding: 12px 24px;
    font-size: 16px;
  }

  .section-title {
    font-size: 22px;
  }

  .member-card img {
    width: 110px;
    height: 110px;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 14px;
    padding: 10px;
  }

  .contact-form button {
    font-size: 16px;
    padding: 12px;
  }
}
