* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fafafa;
  padding: 5px 30px;
  color: rgb(78, 78, 78);
  position: relative;
}

.logo img {
  max-width: 100%;
  height: auto;
  width: 100px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links li a {
  text-decoration: none;
  color: rgb(7, 7, 7);
  font-size: 24px;
  transition: color 0.3s ease;
}

.nav-links li a:hover {
  color: gray !important;
}

.hamburger {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #0a0a0a;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .logo img {
    width: 50px;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    background-color: #0a0a0a;
    position: absolute;
    top: 60px;
    right: 20px;
    width: 150px;
    padding: 10px 0;
    border-radius: 8px;
    z-index: 999;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li a {
    color: white;
    padding: 10px;
    display: block;
  }

  .hamburger {
    display: block;
  }
}


/* Hero Section */
.main {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.bg-image {
  width: 100%;
  height: 300px;
  opacity: 0.7;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.main-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  font-size: 4rem;
  color: black;
  text-align: center;
  padding: 0 20px;
  font-weight: bold;
}

@media (max-width: 768px) {
  .main-text {
    font-size: 2.5rem;
  }
}

@media (max-width: 480px) {
  .main-text {
    font-size: 1.8rem;
  }
}

/* Section 1 */
.sec1 {
  
  padding: 40px 20px;
  max-width: 1000px;
  margin: 0 auto;
  background-color: #f7f7f7;
  color: #0e0e0e;
  line-height: 1.6;
  font-size: 1rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  margin-top: 40px;
}

.sec1 h3 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #444;
  text-align: center;
}

.sec1 ul {
  list-style-type: disc;
  padding-left: 20px;
}

.sec1 li {
  margin-bottom: 15px;
}

/* Section 2 */
.sec2 {
  
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  gap: 30px;
  flex-wrap: wrap;
}
.bullet {list-style-type: none !important;
}
.sec2-image {
  flex: 1 1 400px;
  text-align: center;
}

.sec2-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.sec2-text {
  /* flex: 1 1 400px; */
  text-align: center;
}

.sec2-text h3 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #333;
}

.sec2-text p {
  font-size: 1rem;
  line-height: 1.6;
  color: #0a0a0a;
}

@media (max-width: 768px) {
  .sec2 {
    flex-direction: column;
    text-align: center;
  }

  .sec2-text h3 {
    font-size: 1.6rem;
  }

  .sec2-text p {
    font-size: 0.95rem;
  }
}
/* Section 3 */
.sec3 {
    text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  gap: 30px;
  flex-wrap: wrap;
}

.sec3-text {
  /* flex: 1 1 400px; */
  text-align: center;
}

.sec3-text h3 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #333;
}

.sec3-text p {
  font-size: 1rem;
  line-height: 1.6;
  color: #0a0a0a;
}

@media (max-width: 768px) {
  .sec3 {
    flex-direction: column;
    text-align: center;
  }

  .sec3-text h3 {
    font-size: 1.6rem;
  }

  .sec3-text p {
    font-size: 0.95rem;
  }
}
/* Section 4 */
.sec4 {
  text-align: center;
  padding: 40px 20px;
  display: flex;
  justify-content: center;
}

.sec4-text {
  max-width: 800px;
  text-align: left;
}

.sec4-text h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: black;
  text-align: center;
}

.sec4-text ul {
  padding-left: 20px;
}

.sec4-text li {
  font-size: 1rem;
  line-height: 1.6;
  color: #0a0a0a;
  margin-bottom: 15px;
}

/* Responsive */
@media (max-width: 768px) {
  .sec4-text h3 {
    font-size: 1.6rem;
  }

  .sec4-text li {
    font-size: 0.95rem;
  }
}
/* Section 5 */
.sec5 {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  gap: 30px;
  flex-wrap: wrap;
}

.sec5-image {
  flex: 1 1 400px;
  text-align: center;
}

.sec5-image img {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.sec5-text {
  flex: 1 1 400px;
  text-align: left;
}

.sec5-text h3 {
    text-align: center;
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: #060606;
}

.sec5-text p {
  font-size: 1rem;
  line-height: 1.6;
  color: #0a0a0a;
}

/* Responsive Design */
@media (max-width: 768px) {
  .sec5 {
    flex-direction: column;
    text-align: center;
  }

  .sec5-text {
    text-align: center;
  }

  .sec5-text h3 {
    font-size: 1.6rem;
  }

  .sec5-text p {
    font-size: 0.95rem;
  }
}
.sec6 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap; /* Makes it responsive */
  padding: 40px 20px;
}

.sec6 img {
  max-width: 100%;
  width: 45%; /* Adjust this for how much space each should take */
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Responsive fallback for small screens */
@media (max-width: 768px) {
  .sec6 img {
    width: 90%;
  }
}
/* Main Container */
.background-container {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Background Image */
.background-image {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-image: url('images/end.png'); /* Adjust path if needed */
  background-size: cover;
  background-position: center;
  opacity: 0.9;
  z-index: 1;
}

.contact-card {
  position: relative;
  z-index: 2; /* ensures it appears above the background */
}

.orange-btn {
  background: linear-gradient(to right, #ff7e5f, #feb47b);
  color: white;
  padding: 20px 24px;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  font-size: 2rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.orange-btn:hover {
  background: linear-gradient(to right, #feb47b, #ff7e5f);
}
.button{
    background: linear-gradient(to right, #ff7e5f, #feb47b);
  color: black;
  padding: 2px 4px;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}
footer {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgb(54, 53, 53);
  height: 50px;
  color: white;
  text-align: center;
}
.pdf-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
  text-align: center;
}

.pdf-container iframe {
  width: 100%;
  max-width: 1200px;
  height: 90vh; /* Viewport height */
  border: none;
  border-radius: 8px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.15);
}

/* Responsive fallback */
@media (max-width: 768px) {
  .pdf-container iframe {
    height: 80vh;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .pdf-container iframe {
    height: 70vh;
    width: 100%;
  }
}
.pdf-container iframe {
  width: 100%;
  max-width: 1200px;
  height: 90vh; /* Viewport height */
  border: none;
  border-radius: 8px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.15);
}

/* Responsive fallback */
@media (max-width: 768px) {
  .pdf-container iframe {
    height: 80vh;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .pdf-container iframe {
    height: 70vh;
    width: 100%;
  }
}

.pdf-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
  text-align: center;
}

.pdf-container iframe {
  width: 100%;
  max-width: 1000px;
  height: 90vh;
  border: none;
  border-radius: 8px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.15);
}

.main {
    position: relative;
    display: flex;
    width: 100%;
    height: 400px;
    overflow: hidden;
  }

  .main img {
    width: 50%;
    height: 100%;
    object-fit: cover;
  }

  .main-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: black;
    font-size: 3rem;
    font-weight: bold;
    text-align: center;
    background: rgba(255, 255, 255, 0.3);
    padding: 10px 20px;
    border-radius: 10px;


/* Responsive adjustments */
/*@media (max-width: 768px) {*/
/*  .pdf-container iframe {*/
/*    height: 80vh;*/
/*    width: 100%;*/
/*  }*/
/*}*/

/*@media (max-width: 480px) {*/
/*  .pdf-container iframe {*/
/*    height: 90vh;*/
/*    width: 100%;*/
/*  }*/
/*}*/
