  * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  overflow-x: hidden;
  background-color: #fff;
}

/* === Announcement Bar === */
.announcement-bar {
  background: #007bff;
  color: white;
  text-align: center;
  padding: 8px 5%;
  font-size: 15px;
  font-weight: 500;
}

.new-badge {
  font-weight: 600;
  margin-right: 6px;
}

/* === Header === */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 5%;
  background: white;
  border-bottom: 1px solid #ddd;
  position: relative;
  z-index: 100;
}

.logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.logo i {
  color: #007bff;
  font-size: 22px;
  margin-bottom: 3px;
}

.logo h1 {
  color: #000;
  font-size: 26px;
  font-weight: 700;
}

.logo h1 span {
  color: #007bff;
}

.logo p {
  font-size: 13px;
  color: gray;
  margin-top: 2px;
}

/* Navbar */
.navbar ul {
  list-style: none;
  display: flex;
  gap: 25px;
}

.navbar a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: 0.3s;
}

.navbar a:hover {
  color: #007bff;
}

/* Hamburger */
.hamburger {
  display: none;
  font-size: 22px;
  cursor: pointer;
  color: #007bff;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 70%;
  height: 100vh;
  background: white;
  transition: 0.4s ease;
  box-shadow: -3px 0 8px rgba(0,0,0,0.1);
  z-index: 999;
}

.mobile-menu.active {
  right: 0;
}

.close-btn {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 22px;
  color: #007bff;
  cursor: pointer;
}

.mobile-menu ul {
  list-style: none;
  padding: 70px 40px;
}

.mobile-menu ul li {
  margin: 20px 0;
}

.mobile-menu ul li a {
  text-decoration: none;
  color: #333;
  font-size: 18px;
  transition: 0.3s;
}

.mobile-menu ul li a:hover {
  color: #007bff;
}

/* === Hero Section === */
.hero {
  background: #0d47a1;
  color: white;
  text-align: center;
  padding: 80px 20px;
  background-image: radial-gradient(circle at top left, #007bff, #003d99);
}

.hero-content h2 {
  font-size: 34px;
  font-weight: 700;
  margin: 15px 0;
}

.hero-content h2 span {
  color: #fff;
}

.hero-content p {
  font-size: 16px;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
  color: #dbe4ff;
}

.hero-btn {
  background: #1a73e8;
  color: white;
  border: none;
  padding: 10px 22px;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 500;
  font-size: 15px;
  transition: 0.3s;
}

.hero-btn:hover {
  background: #0b5ed7;
}

/* === Responsive === */
@media (max-width: 992px) {
  .navbar {
    display: none;
  }
  .hamburger {
    display: block;
  }
}

@media (max-width: 600px) {
  .hero-content h2 {
    font-size: 26px;
  }
  .hero-content p {
    font-size: 14px;
  }
  .hero-btn {
    padding: 8px 18px;
    font-size: 14px;
  }
}
/* === Scroll & Height Fix === */
html, body {
  height: 100%;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

/* Prevent extra blank space below last section */
body {
  overflow-y: auto;
}

/* Ensure all sections fit properly and are visible */
section {
  width: 100%;
  display: block;
}
/* Contact Section */
.contact-section {
  background: #f8f9fa;
  padding: 80px 20px;
}

.contact-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.contact-section h2 {
  text-align: left;
  color: #000;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.contact-section .contact-intro {
  color: #555;
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 700px;
  margin-bottom: 40px;
}

/* Contact Grid */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: flex-start;
}

/* Contact Info */
.contact-info {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  padding: 30px 25px;
}

.info-item {
  margin-bottom: 25px;
}

.info-item i {
  font-size: 1.6rem;
  color: #007bff;
  margin-bottom: 10px;
}

.info-item h3 {
  font-size: 1.1rem;
  color: #000;
  font-weight: 600;
}

.info-item p, 
.info-item a {
  color: #555;
  font-size: 1rem;
  text-decoration: none;
}

/* Form */
.contact-form {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  padding: 30px 25px;
}

.form-group {
  margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  outline: none;
  transition: 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #007bff;
  box-shadow: 0 0 5px rgba(0,123,255,0.3);
}

.contact-btn {
  background: #007bff;
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
  width: 100%;
}

.contact-btn:hover {
  background: #0056b3;
}

/* Responsive */
@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .contact-section {
    padding: 50px 15px;
  }

  .contact-section h2 {
    font-size: 1.6rem;
  }

  .contact-btn {
    font-size: 0.95rem;
  }
}
/* === Footer Bottom === */
.footer-bottom {
  background-color: #007bff;
  color: #fff;
  text-align: center;
  padding: 15px 10px;
  font-size: 15px;
  font-weight: 500;
  border-top: 2px solid #0056b3;
}

.footer-bottom p {
  margin: 0;
  line-height: 1.6;
}

.footer-bottom a {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom a:hover {
  color: #dbe9ff;
}

/* Responsive */
@media (max-width: 600px) {
  .footer-bottom {
    font-size: 13px;
    padding: 12px 8px;
  }

  .footer-bottom a {
    display: block;
    margin-top: 5px;
  }
}
