* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
  background-color: #f9f9f9;
  color: #333;
}

/* Social line */
.socialline {
  background-color: white;
  padding: 10px 0;
  font-size: 10px;
  border-bottom: 1px solid #ddd;
}

.socialgap {
  padding: 8px;
}

.acol {
  text-decoration: none;
  color: #c9c9c9;
}

.socialcall {
  margin-left: 160px;
}

.socialmail {
  margin-left: 20px;
}

.social1 {
  margin-right: 160px;
  float: right;
}

.social {
  float: right;
  margin-right: 7px;
}

/* Navigation */
nav {
  background-color: white;
  border-bottom: 1px solid #ddd;
  padding: 15px 40px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 20px;
  font-weight: bold;
  color: #222;
}

.logo img {
  height: 40px;
  width: auto;
  border-radius: 50%;
  border: 1px solid transparent;
}

.nav-links {
  display: flex;
  gap: 25px;
  align-items: center;
}

.nav-links a,
.dropbtn1 {
  text-decoration: none;
  color: #222;
  font-size: 16px;
  font-weight: 500;
  transition: color 0.3s;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px 0;
}

.nav-links a:hover,
.dropbtn1:hover {
  color: #007bff;
}

.dropdown1 {
  position: relative;
}

.dropbtn1::after {
  content: " ▼";
  font-size: 12px;
}

.dropdown-content1 {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.dropdown-content1 a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content1 a:hover {
  background-color: #f1f1f1;
}

.dropdown1:hover .dropdown-content1 {
  display: block;
}

/* Hamburger for mobile */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger div {
  width: 25px;
  height: 3px;
  background-color: #333;
  margin: 4px 0;
}

/* Mobile menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 10px 40px;
  font-size: 16px;
}

.mobile-menu a,
.mobile-menu .dropbtn1 {
  padding: 10px 0;
  border-top: 1px solid #eee;
  text-decoration: none;
  color: #000;
  background: none;
  border: none;
  text-align: left;
}

.mobile-menu .dropdown-content1 {
  position: static;
  box-shadow: none;
  background-color: transparent;
  padding-left: 10px;
}

.mobile-menu .dropdown-content1 a {
  padding: 8px 0;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-menu.active {
    display: flex;
  }
}

/* Hero Banner */
.container1 {
  position: relative;
  height: 60vh;
  overflow: hidden;
}

.vid {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.center {
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  font-family: 'Poppins', sans-serif; /* Replace with Futura if you have it */
  font-size: 56px;
  font-weight: 300;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.center2 {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 19px;
  color: white;
  text-align: center;
}

/* CTA Buttons */
.cta-button, .cta-button2 {
  font-size: 19px;
  position: absolute;
  top: 74%;
  transform: translateY(-50%);
  border-radius: 50px;
  padding: 1.1vw 3.2vw;
  text-decoration: none;
  color: white;
  font-family: Sans-serif;
  box-shadow: 0 8px 16px rgba(0,0,0,0.2), 0 6px 20px rgba(0,0,0,0.19);
  transition: background 1s;
}

.cta-button {
  left: 52%;
  border: 1px solid #4CAF50;
}
.cta-button:hover {
  background-color: #4CAF50;
}

.cta-button2 {
  left: 38%;
  border: 1px solid #4f66e8;
}
.cta-button2:hover {
  background-color: #4f66e8;
}

/* Header */
header {
  background-color: #ffffff;
  padding: 20px;
  text-align: center;
  border-bottom: 1px solid #ddd;
}

header h1 {
  margin: 0;
  font-size: 2.5rem;
}

/* About Section */
.about-section {
  max-width: 1000px;
  margin: 40px auto;
  padding: 0 20px;
  line-height: 1.6;
}

.about-section h2 {
  font-size: 2rem;
  color: #e96529;
  margin-bottom: 10px;
}

.about-section p {
  font-size: 1.1rem;
  color: #555;
}

.about-section ul {
  margin-top: 15px;
  padding-left: 20px;
}

.about-section ul li {
  margin-bottom: 8px;
}

/* Mission Box */
.mission-box {
  background-color: #ffffff;
  padding: 20px;
  margin-top: 30px;
  border-left: 5px solid #e96529;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

/* Footer */
footer {
  padding: 20px;
  background: #333;
  color: #fff;
  text-align: center;
}

/* Mobile Adjustments */
@media (max-width: 780px) {
  .logo {
    font-size: 14px;
  }

  .socialline {
    font-size: 7px;
    padding: 10px 0;
  }

  .socialcall {
    margin-left: 19px;
  }

  .social1 {
    margin-right: 2px;
  }

  .center {
    font-size: 28px;
  }

  .center2 {
    font-size: 14px;
  }

  .cta-button,
  .cta-button2 {
    font-size: 16px;
    padding: 10px 20px;
    top: 75%;
  }
  
.cta-button {
  left: 52%;
}
.cta-button2 {
  left: 28%;
}
}
