/* ====== GENERAL STYLES ====== */
body {
  margin: 0;
  padding: 0;
  font-family: "Oswald", sans-serif;
  background-color: #f8f9fa;
  color: #333;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ====== TOPBAR ====== */
.topbar {
  background-color: #1e3a8a; /* Deep blue */
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 20px;
  font-size: 0.95rem;
}

.topbar-left {
  font-weight: 400;
}

.topbar-right .call-now {
  background-color: #ff4d6d;
  border: none;
  color: #fff;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 25px;
  cursor: pointer;
  transition: 0.3s;
}

.topbar-right .call-now:hover {
  background-color: #e63f61;
}

/* ====== NAVBAR ====== */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #fff;
  padding: 15px 25px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  position: relative;
  z-index: 1000;
}

.logo a {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1e3a8a;
  transition: color 0.3s ease;
}

.logo a:hover {
  color: #ff4d6d;
}

/* ====== NAV LINKS ====== */
.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
  margin: 0;
}

.nav-links li a {
  color: #1e3a8a;
  font-weight: 500;
  font-size: 1rem;
  transition: 0.3s;
  position: relative;
}

.nav-links li a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background: #ff4d6d;
  left: 0;
  bottom: -5px;
  transition: 0.3s;
}

.nav-links li a:hover {
  color: #ff4d6d;
}

.nav-links li a:hover::after {
  width: 100%;
}

/* ====== HAMBURGER MENU ====== */
.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: #1e3a8a;
}

/* ====== MOBILE MENU ====== */
@media (max-width: 991px) {
  .nav-links {
    position: absolute;
    top: 65px;
    right: 0;
    background: #1e3a8a;
    flex-direction: column;
    width: 220px;
    padding: 20px;
    gap: 20px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    border-radius: 8px 0 0 8px;
  }

  .nav-links.active {
    transform: translateX(0);
  }

  .nav-links li a {
    color: #fff;
    font-size: 1rem;
  }

  .hamburger {
    display: block;
  }
}

/* ====== SMALL SCREEN ADJUSTMENTS ====== */
@media (max-width: 576px) {
  .topbar {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .topbar-right .call-now {
    width: 100%;
    max-width: 200px;
  }

  .navbar {
    flex-wrap: wrap;
  }

  .logo a {
    font-size: 1.5rem;
  }
}
/* ====== BANNER SECTION ====== */
.banner {
  background: linear-gradient(rgba(30, 58, 138, 0.85), rgba(30, 58, 138, 0.85)),
              url('images/banner-bg.webp') center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 120px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 85vh;
}

.banner-content {
  max-width: 800px;
  margin: 0 auto;
}

.banner h2 {
  font-size: 2.6rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  font-family: "Oswald", sans-serif;
}

.banner p {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 15px;
  color: #f1f1f1;
}

.btn-banner {
  display: inline-block;
  background-color: #ff4d6d;
  color: #fff;
  padding: 14px 35px;
  border-radius: 50px;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 600;
  margin-top: 15px;
}

.btn-banner:hover {
  background-color: #ff2953;
  transform: translateY(-3px);
}

/* ====== RESPONSIVE DESIGN ====== */
@media (max-width: 992px) {
  .banner {
    padding: 100px 40px;
  }

  .banner h2 {
    font-size: 2.2rem;
  }

  .banner p {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .banner {
    padding: 80px 20px;
    min-height: 70vh;
  }

  .banner h2 {
    font-size: 1.8rem;
  }

  .banner p {
    font-size: 0.95rem;
  }

  .btn-banner {
    padding: 12px 25px;
    font-size: 0.95rem;
  }
}
/* ===== ABOUT SECTION ===== */
.about-us {
  position: relative;
  background: #f9fafc;
  padding: 100px 20px;
  text-align: center;
  overflow: hidden;
}

.about-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.about-container h2 {
  font-family: "Oswald", sans-serif;
  color: #1e3a8a;
  font-size: 2.5rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-container p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 15px;
}

/* Top & Bottom Waves */
.about-wave,
.about-wave-bottom {
  position: absolute;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.about-wave {
  top: 0;
  transform: rotate(180deg);
}

.about-wave-bottom {
  bottom: 0;
}

/* SVG Styling */
.about-wave svg,
.about-wave-bottom svg {
  display: block;
  width: 100%;
  height: 120px;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 992px) {
  .about-container h2 {
    font-size: 2.2rem;
  }

  .about-container p {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .about-us {
    padding: 70px 15px;
  }

  .about-container h2 {
    font-size: 1.8rem;
  }

  .about-container p {
    font-size: 0.95rem;
  }
}
/* ===== CTA SECTION ===== */
.cta-section {
  position: relative;
  background: url('images/banner/cta-bg.jpg') center/cover no-repeat; /* Replace with your background */
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  overflow: hidden;
}

.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(30, 58, 138, 0.85); /* Deep blue overlay */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
}

.cta-content {
  position: relative;
  max-width: 850px;
  z-index: 2;
}

.cta-content h2 {
  font-size: 2.5rem;
  font-family: "Oswald", sans-serif;
  margin-bottom: 20px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 15px;
  color: #f0f0f0;
}

.cta-button {
  display: inline-block;
  background: #ff4d6d;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  padding: 14px 40px;
  border-radius: 50px;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.cta-button:hover {
  background: #fff;
  color: #1e3a8a;
  transform: translateY(-2px);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 992px) {
  .cta-content h2 {
    font-size: 2.1rem;
  }

  .cta-content p {
    font-size: 1rem;
  }

  .cta-button {
    padding: 12px 35px;
  }
}

@media (max-width: 576px) {
  .cta-section {
    min-height: 350px;
  }

  .cta-content h2 {
    font-size: 1.8rem;
  }

  .cta-content p {
    font-size: 0.95rem;
  }

  .cta-button {
    padding: 10px 30px;
    font-size: 0.95rem;
  }
}
/* ===== HIGHLIGHTS SECTION ===== */
.highlights {
  padding: 60px 20px;
  background: #f5f7fa;
  text-align: center;
}

.highlight-title {
  font-size: 2.5rem;
  font-family: "Oswald", sans-serif;
  margin-bottom: 40px;
  color: #1e3a8a; /* Deep Blue */
}

.highlight-wrapper {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
  justify-items: center;
}

.highlight-box {
  background: #fff;
  border-radius: 15px;
  padding: 25px 20px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  max-width: 250px;
}

.highlight-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.highlight-box i {
  font-size: 3rem;
  color: #ff4d6d; /* Vibrant Accent */
  margin-bottom: 15px;
}

.highlight-box h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #1e3a8a;
}

.highlight-box p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
  .highlight-wrapper {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .highlight-wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .highlight-box i {
    font-size: 2.5rem;
  }

  .highlight-title {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .highlight-wrapper {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .highlight-box {
    padding: 20px 15px;
  }

  .highlight-title {
    font-size: 1.8rem;
  }
}
/* ===== ANGLED SECTION ===== */
.angled-section {
  position: relative;
  overflow: hidden;
  padding: 80px 20px;
  background: #1e3a8a; /* Deep Blue background */
  color: #fff;
  text-align: center;
}

.angled-bg {
  position: absolute;
  top: -50px;
  left: 0;
  width: 100%;
  height: 200%;
  background: #ff4d6d; /* Accent pink */
  transform: rotate(-3deg);
  z-index: 0;
  opacity: 0.3;
}

.angled-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.angled-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-family: "Oswald", sans-serif;
}

.angled-content p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 30px;
}

.angled-btn {
  display: inline-block;
  padding: 12px 30px;
  background: #ff4d6d;
  color: #fff;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.angled-btn:hover {
  background: #e63c5c;
  transform: translateY(-3px);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 991px) {
  .angled-section {
    padding: 60px 15px;
  }

  .angled-content h2 {
    font-size: 2.2rem;
  }

  .angled-content p {
    font-size: 0.95rem;
  }
}

@media (max-width: 575px) {
  .angled-section {
    padding: 50px 10px;
  }

  .angled-content h2 {
    font-size: 1.8rem;
  }

  .angled-content p {
    font-size: 0.9rem;
  }

  .angled-btn {
    padding: 10px 25px;
    font-size: 0.95rem;
  }
}
/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
  background: #f0f4f8;
  padding: 80px 20px;
  text-align: center;
}

.testimonial-title {
  font-size: 2.5rem;
  margin-bottom: 50px;
  font-family: "Oswald", sans-serif;
  color: #1e3a8a;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.testimonial-card p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #333;
}

.testimonial-card h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #ff4d6d;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 991px) {
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .testimonial-title {
    font-size: 2rem;
    margin-bottom: 40px;
  }
}

@media (max-width: 575px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .testimonial-title {
    font-size: 1.7rem;
    margin-bottom: 30px;
  }

  .testimonial-card {
    padding: 20px 15px;
  }
}
/* ===== FAQ SECTION ===== */
.faq-section {
  background: #f8f9fa;
  padding: 80px 20px;
  text-align: center;
}

.faq-title {
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: #1e3a8a;
  font-family: "Oswald", sans-serif;
}

/* FAQ container */
.faq-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

/* Individual FAQ items */
.faq-item {
  border-bottom: 1px solid #ddd;
  margin-bottom: 15px;
}

.faq-item label {
  display: block;
  font-weight: 600;
  cursor: pointer;
  padding: 15px 0;
  font-size: 1.1rem;
  color: #ff4d6d;
  position: relative;
}

.faq-item label::after {
  content: '+';
  position: absolute;
  right: 0;
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.faq-item input:checked + label::after {
  transform: rotate(45deg);
}

/* FAQ content */
.faq-item .faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  font-size: 1rem;
  color: #333;
  padding-bottom: 0;
}

.faq-item input:checked ~ .faq-content {
  max-height: 500px;
  padding-bottom: 15px;
}

/* Hide the checkbox */
.faq-item input {
  display: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .faq-title {
    font-size: 2rem;
    margin-bottom: 40px;
  }

  .faq-item label {
    font-size: 1rem;
  }

  .faq-item .faq-content {
    font-size: 0.95rem;
  }
}

@media (max-width: 575px) {
  .faq-title {
    font-size: 1.7rem;
    margin-bottom: 30px;
  }

  .faq-item label {
    font-size: 0.95rem;
  }

  .faq-item .faq-content {
    font-size: 0.9rem;
  }
}
.full-image-section {
  width: 100%;
  height: 500px; /* Adjust height as needed */
  background-image: url('../images/logo/banner.png'); /* Replace with your image path */
  background-size: cover;      /* Cover the entire section */
  background-position: center; /* Center the image */
  background-repeat: no-repeat;
  position: relative;
}

/* Optional: Overlay for darkening the image */
.full-image-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); /* Adjust opacity for overlay effect */
}
/* Disclaimer */
.disclaimer {
  background: #f5f5f5;
  padding: 20px;
  text-align: center;
  font-size: 0.95rem;
  color: #333;
}

.disclaimer b {
  color: #e63946;
}

/* Footer */
.site-footer {
  background: #1e3a8a; /* Deep blue */
  color: #fff;
  padding: 40px 20px 20px;
  font-family: 'Oswald', sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-about {
  flex: 1 1 300px;
}

.footer-about h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #ff4d6d;
}

.footer-about p {
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-links {
  flex: 1 1 200px;
}

.footer-links h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #ff4d6d;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 8px;
}

.footer-links ul li a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links ul li a:hover {
  color: #ff4d6d;
}

.footer-bottom {
  text-align: center;
  padding-top: 15px;
  border-top: 1px solid rgba(255,255,255,0.2);
  font-size: 0.9rem;
  margin-top: 20px;
}

/* Fixed Call Button */
.call-fixed {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #ff4d6d;
  color: #fff;
  padding: 12px 20px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s;
}

.call-fixed:hover {
  background: #e63946;
}

/* Responsive */
@media (max-width: 991px) {
  .footer-container {
    flex-direction: column;
    gap: 20px;
  }
}

@media (max-width: 575px) {
  .disclaimer {
    font-size: 0.85rem;
    padding: 15px;
  }

  .footer-about h3,
  .footer-links h4 {
    font-size: 1.2rem;
  }

  .call-fixed {
    padding: 10px 16px;
    font-size: 0.9rem;
  }
}
.contact-section {
  padding: 60px 20px;
  background: #f9f9f9;
  font-family: 'Oswald', sans-serif;
  color: #1e3a8a;
}

.contact-section .contact-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
  color: #ff4d6d;
}

.contact-wrapper {
  display: flex;
  gap: 40px;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.contact-form {
  flex: 1 1 500px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #ff4d6d;
}

.contact-form button {
  background: #ff4d6d;
  color: #fff;
  border: none;
  padding: 12px 20px;
  font-size: 1rem;
  border-radius: 50px;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form button:hover {
  background: #e63946;
}

.contact-info {
  flex: 1 1 400px;
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.contact-info h3 {
  margin-bottom: 15px;
  color: #ff4d6d;
}

.contact-info p {
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.map-container {
  margin-top: 20px;
  border-radius: 12px;
  overflow: hidden;
  height: 250px;
}

/* Responsive */
@media (max-width: 991px) {
  .contact-wrapper {
    flex-direction: column;
  }

  .contact-form,
  .contact-info {
    flex: 1 1 100%;
  }

  .map-container {
    height: 200px;
  }
}

@media (max-width: 575px) {
  .contact-section .contact-title {
    font-size: 1.5rem;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 0.9rem;
  }

  .contact-form button {
    font-size: 0.9rem;
    padding: 10px 16px;
  }

  .contact-info p {
    font-size: 0.85rem;
  }
}
