/* Reset + Smooth scroll */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #0b1c30; /* Was #ffffff */
  color: #f4f4f4;            /* Was #0b1c30 */
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  width: 100%;
  background-color: #ffffff; /* Was #0b1c30 */
  color: #0b1c30;            /* Was #f4f4f4 */
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  animation: fadeInDown 1s ease-in-out;
}

/* Logo */
.logo img {
  max-height: 50px;
  vertical-align: middle;
}

/* Navigation Links */
.nav-links {
  display: flex;
  gap: 1.2rem;
  transition: all 0.3s ease;
  align-items: center;
}
.nav-links a {
  color: #0b1c30;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  transition: color 0.3s;
}
.nav-links a::after {
  content: '';
  width: 0%;
  height: 2px;
  background: #57affc; /* Vibrant blue */
  position: absolute;
  bottom: -5px;
  left: 0;
  transition: 0.3s ease;
}
.nav-links a:hover::after {
  width: 100%;
}
.nav-links a:hover {
  color: #f7944d; /* Sunset orange */
}

/* Pay Now Button */
.btn-pay {
  padding: 0.45rem 1rem;
  background: #f7944d;
  color: #0b1c30;
  border-radius: 20px;
  font-weight: 600;
  transition: background 0.3s;
}
.btn-pay:hover {
  background: #db7a03;
  color: #ffffff !important;
}

/* Login Button */
.btn-login {
  padding: 0.45rem 1rem;
  background: #57affc;
  color: #f4f4f4;
  border-radius: 20px;
  font-weight: 600;
  transition: background 0.3s;
}
.btn-login:hover {
  background: #1565c0;
  color: #ffffff !important;
}

/* Hamburger for mobile */
.menu-toggle {
  display: none;
  font-size: 2rem;
  cursor: pointer;
  color: #0b1c30; /* Changed from white to dark for visibility on white navbar */
}

/* Animation */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Styles */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    right: 0;
    background-color: #0b1c30;
    flex-direction: column;
    width: 100%;
    text-align: right;
    padding: 1rem 2rem;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    color: #ffffff; /* White text for dark mobile menu */
  }

  .menu-toggle {
    display: block;
    color: #0b1c30; /* Ensure icon is visible on white navbar */
  }
}

/* Hero Section */
.hero {
  height: 90vh;
  background: url('assets/hero_bg.jpg') center center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  color: #f4f4f4;
  overflow: hidden;
  animation: fadeIn 1.5s ease-in-out;
}

.hero::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(11, 28, 48, 0.7); /* Dark blue overlay */
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  animation: slideUp 1s ease-in-out;
}

.hero h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.3;
  animation: slideInLeft 1s ease forwards;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #d6e4f0;
  animation: slideInRight 1s ease forwards;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.btn {
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: #f7944d;
  color: #0b1c30;
}

.btn-primary:hover {
  background-color: #fb8c00;
  color: #ffffff;
}

.btn-secondary {
  background-color: transparent;
  border: 2px solid #f4f4f4;
  color: #f4f4f4;
}

.btn-secondary:hover {
  background-color: #f4f4f4;
  color: #0b1c30;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from { transform: translateY(30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-50px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(50px); }
  to { opacity: 1; transform: translateX(0); }
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }
  .hero p {
    font-size: 1rem;
  }
  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
  }
}

/* About Section */
.about-section {
  background: linear-gradient(to right, #f7f9fc, #eef2f7);
  padding: 6rem 1rem;
  position: relative;
  overflow: hidden;
}

.about-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 3rem;
  padding: 0 1rem;
}

.about-image {
  flex: 1 1 480px;
  text-align: center;
}

.about-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 16px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.12);
  transition: transform 0.4s ease;
}

.about-image img:hover {
  transform: scale(1.03);
}

.about-content {
  flex: 1 1 550px;
}

.section-title {
  font-size: 2.5rem;
  color: #0a2540;
  margin-bottom: 1.2rem;
  font-weight: 700;
  line-height: 1.3;
}

.highlight {
  color: #e85d04;
}

.about-text {
  color: #1a1a1a;
  font-size: 1.2rem;
  line-height: 1.85;
  font-weight: 400;
  margin-bottom: 2.2rem;
  max-width: 700px;
  letter-spacing: 0.3px;
  text-align: justify;
  text-wrap: pretty;
}


.about-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.about-list li {
  background: #ffffff;
  border-radius: 12px;
  padding: 1rem 1.2rem;
  display: flex;
  align-items: center;
  font-size: 1.05rem;
  font-weight: 500;
  color: #0b1c30;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-list li:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.about-list i {
  background-color: #fff3e6;
  padding: 0.5rem;
  border-radius: 50%;
  color: #e85d04;
  font-size: 1.1rem;
  margin-right: 0.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2rem;
  height: 2rem;
}


/* Responsive */
@media (max-width: 900px) {
  .about-container {
    flex-direction: column;
    text-align: center;
    padding: 0 2rem;
  }

  .section-title {
    font-size: 2.1rem;
  }

  .about-text {
    font-size: 1.05rem;
  }

  .about-list {
    align-items: center;
  }
}


/* Why Choose Us */
.why-us-section {
  background-color: #0b1c30;
  padding: 5rem 1rem;
}

.why-us-container {
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

.section-title {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
  color: #0b1c30;
}

.section-subtitle {
  font-size: 1rem;
  color: #5f5f5f;
  margin-bottom: 3rem;
}

.highlight {
  color: #e85d04;
}

.why-cards {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.why-card {
  background: #162b42;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  flex: 1 1 280px;
  transition: transform 0.3s ease, background 0.3s;
}

.why-card:hover {
  transform: translateY(-8px);
  background: #1c354f;
}

.why-card .icon {
  font-size: 2.5rem;
  color: #e85d04;
  margin-bottom: 1rem;
}

.why-card h4 {
  font-size: 1.2rem;
  color: #ffffff;
  margin-bottom: 0.8rem;
}

.why-card p {
  font-size: 0.95rem;
  color: #cbd5e1;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .why-cards {
    flex-direction: column;
    align-items: center;
  }
}

/* Service */
.services-section {
  background: url('assets/services.jpg') center center/cover no-repeat;
  background-attachment: fixed;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  color: #0b1c30;
  overflow: hidden;
  animation: fadeIn 1.5s ease-in-out;
  z-index: 0;
}

.services-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(250, 226, 211, 0.8), rgba(247, 249, 252, 0.8));
  z-index: 0;
}

.services-section > * {
  position: relative;
  z-index: 2;
}

.services-container {
  width: 100%;
  margin: auto;
  text-align: center;
}

.section-title {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
  color: #0b1c30;
}

.section-subtitle {
  font-size: 1rem;
  color: #5f5f5f;
  margin-bottom: 3rem;
}

.highlight {
  color: #e85d04;
}

.services-grid {
  display: grid;
  padding: 0 1rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.service-card {
  background: #f9f9f9;
  padding: 1rem;
  border-radius: 12px;
  box-shadow: 0 6px 25px rgba(11, 28, 48, 0.15); /* Blue-ish shadow */
  transition: transform 0.4s ease, background-color 0.3s, box-shadow 0.4s ease;
  transform: scale(1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-card:hover {
  transform: scale(1.05);
  background-color: #f0f0f0;
  box-shadow: 0 10px 40px rgba(11, 28, 48, 0.25);
}

.service-card h4 {
  color: #0b1c30;
  font-size: 1.2rem;
  margin-bottom: 1.2rem;
}

.service-card p {
  color: #5f5f5f;
  font-size: 1.2rem;
  line-height: 1.6;
}

/* Know More Button */
.btn-know-more {
  display: inline-block;
  margin-top: 1.4rem;
  padding: 0.6rem 1.6rem;
  background-color: #0b1c30;
  color: #ffffff;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  align-self: center;
}

.btn-know-more::after {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  transform: skewX(-25deg);
  transition: left 0.4s ease;
}

.btn-know-more:hover::after {
  left: 125%;
}

.btn-know-more:hover {
  background-color: #0b1c30;
  color: #ffffff;
}

.service-img-wrapper {
  width: 100%;
  height: 180px;
  overflow: hidden;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.service-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

@media screen and (max-width: 768px) {
  .services-section {
    padding: 1.5rem 0.5rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .section-subtitle {
    font-size: 0.95rem;
  }

  .service-card p {
    font-size: 1rem;
  }
}


/* Testimonial */
.section-title {
  color: #0b1c30; /* Ensures visibility on dark background */
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  padding-top: 5rem;
  padding-left: 1rem;
  padding-right: 1rem;
  text-align: center;
}

.section-title .highlight {
  color: #e85d04; /* Optional: Highlight part of the title in brand color */
}

.section-subtitle {
  color: #5f5f5f;
  font-size: 1.1rem;
  margin-bottom: 2rem;
  text-align: center;

}

.testimonials-container {
  max-width: 1100px;
  margin: auto;
  color: #ffffff;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: #132c47;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  text-align: left;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.testimonial-text {
  font-style: italic;
  font-size: 1rem;
  color: #e2e6eb;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-author img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #e85d04;
}

.testimonial-author h4 {
  margin: 0;
  font-size: 1rem;
  color: #ffffff;
}

.testimonial-author span {
  font-size: 0.875rem;
  color: #cfd8e2;
}

/* CAll to Action */
.cta-section {
  background-color: #0b1c30;
  padding: 5rem 1rem;
  text-align: center;
}

.cta-container {
  max-width: 800px;
  margin: 0 auto;
  background: #132c47;
  border-radius: 16px;
  padding: 3rem 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.cta-heading {
  color: #ffffff;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-subheading {
  color: #d1dce5;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.cta-button {
  display: inline-block;
  background-color: #e85d04;
  color: #ffffff;
  padding: 0.75rem 2rem;
  font-size: 1rem;
  border-radius: 50px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
  background-color: #ff7600;
  transform: translateY(-2px);
}

.contact-split-modern {
  margin-top: 3rem;
  padding: 6rem 2rem;
  display: flex;
  justify-content: center;
  align-items: center;

  background: 
    linear-gradient(to right, rgba(250, 226, 211, 0.8), rgba(247, 249, 252, 0.8)),
    url('assets/contact.jpg') center center / cover no-repeat;
}


/* Contact Container Box */
.contact-box {
  display: flex;
  width: 100%;
  max-width: 1100px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  background: #ffffff;
}

/* Left Side: Modern Form */
.contact-left {
  flex: 1;
  padding: 3rem;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}

.contact-left h2 {
  font-size: 2.2rem;
  color: #f7944d;
  margin-bottom: 2rem;
  font-weight: 700;
  text-align: left;
  position: relative;
}

.contact-left h2::after {
  content: "";
  display: block;
  width: 50px;
  height: 4px;
  background: #f7944d;
  margin-top: 0.5rem;
  border-radius: 2px;
}

/* Floating Form Modern */
.floating-form {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.floating-form .input-group {
  position: relative;
}

.floating-form input,
.floating-form textarea {
  width: 100%;
  padding: 1.2rem 1rem 0.6rem;
  background-color: #f9f9f9;
  border: 2px solid transparent;
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
  color: #0b1c30;
  box-shadow: inset 0 0 0 1px #ccc;
}

.floating-form input:focus,
.floating-form textarea:focus {
  outline: none;
  box-shadow: inset 0 0 0 2px #f7944d;
  background-color: #fff;
}

.floating-form label {
  position: absolute;
  top: 1.2rem;
  left: 1rem;
  font-size: 1rem;
  color: #999;
  pointer-events: none;
  transition: all 0.3s ease;
  background: transparent;
}

/* Animated Floating Label */
.floating-form input:focus + label,
.floating-form input:not(:placeholder-shown) + label,
.floating-form textarea:focus + label,
.floating-form textarea:not(:placeholder-shown) + label {
  top: -0.6rem;
  left: 0.9rem;
  font-size: 0.75rem;
  background: #fff;
  padding: 0 0.4rem;
  color: #f7944d;
}

/* Modern Submit Button */
.btn-glow {
  background: linear-gradient(to right, #f7944d, #f77062);
  color: #fff;
  border: none;
  padding: 0.9rem 2rem;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(247, 148, 77, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  align-self: flex-start;
}

.btn-glow:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(247, 148, 77, 0.6);
}

/* Right Side: Image */
.contact-right {
  flex: 1;
  background: #fdf5f0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: float 3s ease-in-out infinite;
}

/* Responsive */
@media (max-width: 992px) {
  .contact-box {
    flex-direction: column;
  }

  .contact-left,
  .contact-right {
    flex: unset;
    width: 100%;
  }

  .contact-left {
    padding: 2rem;
  }

  .btn-glow {
    align-self: center;
  }

  .contact-right {
    padding: 2rem 0;
  }
}

/* Footer */
.site-footer {
  background-color: #001b3a;
  color: #ffffff;
  padding: 4rem 2rem 2rem;
  font-size: 0.95rem;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-branding {
  flex: 1 1 300px;
}

.footer-branding img.footer-logo {
  width: 150px;
  margin-bottom: 1rem;
}

.footer-branding p {
  color: #d1dce5;
  line-height: 1.6;
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: #0b1c30; /* Base dark color */
  color: #fff;
  font-size: 1.2rem;
  transition: background-color 0.3s ease, transform 0.3s ease;
  
  text-decoration: none;
  border: none;
  outline: none;
  
}

.social-icon:hover {
  transform: scale(1.1);
}

.social-icon.twitter:hover {
  background-color: #000000;
}

.social-icon.linkedin:hover {
  background-color: #0077b5;
}

.social-icon.facebook:hover {
  background-color: #3b5998;
}

.social-icon.instagram:hover {
  background: linear-gradient(45deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
  color: #fff; /* Ensure icon stays visible */
}

.footer-links,
.footer-contact {
  flex: 1 1 200px;
}

.footer-links h4,
.footer-contact h4 {
  color: #ffffff;
  margin-bottom: 1rem;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 0.5rem;
}

.footer-links ul li a {
  color: #d1dce5;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links ul li a:hover {
  color: #e85d04;
}

.footer-contact {
  color: #d1dce5;
}

.footer-contact h4 {
  margin-bottom: 1rem;
  color: #ffffff;
}

.footer-contact p {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  line-height: 1.5;
}

.footer-contact i {
  background-color: #e85d04;
  color: #fff;
  padding: 0.6rem;
  border-radius: 50%;
  width: 2.2rem;
  height: 2.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.95rem;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1rem;
  color: #aab7c4;
}