* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Segoe UI", sans-serif;
  background-color: #f5f8fa;
  color: #333;
}
.whi {
  color: white;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  background: linear-gradient(to right, #05161e, #03202a, #000609);
  color: #fff;
  padding: 10px 0;
  z-index: 999;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  width: 100px;
  height: auto;
}

.logo-tagline {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.tagline {
  text-align: center;
  /* display: flex;
  justify-content: center;
  align-items: center; */
  font-size: 1rem;
  font-weight: 300;
  color: #ccc;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 20px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  padding: 5px 10px;
  border-radius: 5px;
  transition: background-color 0.5s ease;
}
.nav-links a:hover {
  background-color: rgb(10, 70, 10);
}

/* .nav-links a.active {
  background-color: rgb(10, 70, 10);
  color: white;
} */

.hamburger {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
}

/* Hero */
.hero {
  /*background: linear-gradient(to right, #05161e, #03202a, #000609);*/
  /*color: white;*/
  /*padding: 80px 0;*/
  /*display: flex;*/
  /*align-items: center;*/
  /*animation: fadeIn 1s ease-in-out;*/

   background: url("https://plus.unsplash.com/premium_photo-1661409100444-5ab608d6e693?w=600&auto=format&fit=crop&q=60&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1pbi1zYW1lLXNlcmllc3w5fHx8ZW58MHx8fHx8") no-repeat center center;
  background-size: cover;
  flex: 1 1 40%;

  animation: slideInRight 1s ease;
  background-position: center;
  background-repeat: no-repeat; 
  position: relative;
  height: 50vh;
}
.hero-dark {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.7);
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.hero-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.hero-text {
  flex: 1 1 50%;
  animation: slideInLeft 1s ease;
}

.hero-text h1 {
  font-size: 3rem;
  margin-bottom: 15px;
}

.hero-text p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.cta-btn {
  background: #ff6f00;
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 25px;
  font-size: 1rem;
  text-decoration: none;
  transition: 0.3s;
}

.cta-btn:hover {
  background: #ff8f00;
}

.hero-image img {
  border-radius: 15px;
  width: 40%;
  height: 250px;
  /* max-width: 400px; */
  animation: slideInRight 1s ease;
}

/* Trust Badges */
.trust-badges {
  padding: 40px 0;
  background-color: #fff;
}

.badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  text-align: center;
  gap: 20px;
}

.badge img {
  width: 50px;
  margin-bottom: 10px;
}

.badge span {
  display: block;
  font-weight: 500;
}

/* Animations */
@keyframes slideInLeft {
  from {
    transform: translateX(-100px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInRight {
  from {
    transform: translateX(100px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background-color: #05161e;
    position: absolute;
    top: 60px;
    right: 20px;
    padding: 10px;
    border-radius: 5px;
  }

  .nav-links.show {
    display: flex;
    margin-top: 30px;
  }

  .hamburger {
    display: block;
    color: #fff;
  }

  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .cta-btn {
    width: 100%;
    max-width: 250px;
  }

  .hero-image img {
    max-width: 80%;
    margin-top: 20px;
  }

  .badges {
    flex-direction: column;
  }
}
.about-section {
  background-color: #f5f8fa;
  padding: 80px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInUp 1s ease-in-out;
}

.about-container {
  display: flex;
  flex-direction: row;
  max-width: 1200px;
  gap: 40px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.about-image-wrapper {
  flex: 1;
  min-width: 300px;
}

.about-image {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
.about-image:hover {
  transform: scale(1.03);
}

.about-text {
  flex: 1;
  min-width: 300px;
}

.about-title {
  font-size: 2.5rem;
  color: #203a43;
  margin-bottom: 20px;
}

.about-description,
.about-mission {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.6;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-title {
    font-size: 2rem;
  }
}
.features-section {
  background-color: #ffffff;
  padding: 100px 20px;
  text-align: center;
  overflow: hidden;
}

.features-header h2 {
  font-size: 2.8rem;
  color: #203a43;
  margin-bottom: 10px;
  animation: fadeInDown 0.8s ease;
}

.features-header p {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 60px;
  animation: fadeInDown 1s ease;
}

.features-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.feature-card {
  background: linear-gradient(135deg, #e0f7fa, #f0f4c3);
  border-radius: 20px;
  padding: 30px;
  width: 280px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: fadeInUp 1s ease forwards;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.feature-card img {
  width: 80px;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 1.4rem;
  color: #0b3c5d;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 1rem;
  color: #444;
}

@media (max-width: 768px) {
  .features-grid {
    flex-direction: column;
    align-items: center;
  }

  .features-header h2 {
    font-size: 2.2rem;
  }
}

/* Animation Keyframes */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 80px 10%;
  background: linear-gradient(135deg, #e1f5fe, #ffe0b2);
  position: relative;
  overflow: hidden;
  flex-wrap: wrap;
}

.hero-content {
  max-width: 550px;
  z-index: 2;
  animation: slideInLeft 1s ease forwards;
}

.hero-content h1 {
  font-size: 3rem;
  color: #ff8f00;
  margin-bottom: 20px;
  animation: fadeInDown 1.2s ease forwards;
}

.hero-content p {
  font-size: 1.2rem;
  color: #37474f;
  margin-bottom: 30px;
  animation: fadeIn 1.4s ease forwards;
}

.cta-button {
  display: inline-block;
  padding: 15px 30px;
  font-size: 1rem;
  background: linear-gradient(45deg, #1976d2, #00acc1);
  color: #fff;
  border: none;
  border-radius: 30px;
  box-shadow: 0 5px 15px rgba(25, 118, 210, 0.3);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  animation: fadeInUp 1.6s ease forwards;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 150, 136, 0.4);
}

.hero-image img {
  width: 100%;
  max-width: 480px;
  animation: slideInRight 1.4s ease forwards;
}

@media (max-width: 900px) {
  .hero-banner {
    flex-direction: column;
    text-align: center;
  }

  .hero-image {
    margin-top: 40px;
  }

  .hero-content h1 {
    font-size: 2.4rem;
  }
}

/* Animations */
@keyframes slideInLeft {
  0% {
    opacity: 0;
    transform: translateX(-60px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  0% {
    opacity: 0;
    transform: translateX(60px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: scale(0.98);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.testimonials-section {
  padding: 80px 10%;
  background: linear-gradient(135deg, #fff3e0, #e1f5fe);
  text-align: center;
  position: relative;
}

.section-title {
  font-size: 2.5rem;
  color: #0d47a1;
  margin-bottom: 50px;
  animation: fadeInDown 1s ease forwards;
}

.testimonial-slider {
  display: flex;
  overflow: hidden;
  justify-content: center;
  position: relative;
  height: 350px;
}

.testimonial-card {
  min-width: 100%;
  max-width: 600px;
  padding: 30px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.6s ease;
  opacity: 0;
  transform: scale(0.95);
  position: absolute;
  top: 0;
  left: 0;
  margin: auto;
  right: 0;
}

.testimonial-card.active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

.client-photo {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin-bottom: 20px;
  border: 3px solid #1976d2;
}

.testimonial-text {
  font-size: 1.1rem;
  color: #37474f;
  margin-bottom: 20px;
  font-style: italic;
}

.client-name {
  font-weight: 600;
  color: #0d47a1;
}

.stars {
  color: #ffc107;
  font-size: 1.2rem;
}

.slider-controls {
  margin-top: 40px;
}

.slider-controls button {
  padding: 10px 20px;
  font-size: 1.5rem;
  background: #1976d2;
  color: #fff;
  border: none;
  border-radius: 10px;
  margin: 0 10px;
  cursor: pointer;
  transition: 0.3s ease;
}

.slider-controls button:hover {
  background: #004ba0;
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.site-footer {
  background: #0a0f3d;
  color: #f0f4ff;
  padding: 60px 10%;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  animation: fadeInUp 1s ease forwards;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-branding {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1 1 220px;
}

.footer-logo {
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: 3px;
  color: #3f51b5;
  margin-bottom: 10px;
}

.footer-tagline {
  font-size: 1.1rem;
  font-style: italic;
  color: #9fa8da;
}

.footer-contact,
.footer-links,
.footer-social {
  flex: 1 1 180px;
}

.footer-contact h3,
.footer-links h3,
.footer-social h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: #7986cb;
}

.footer-contact p,
.footer-links ul li,
.footer-social .social-link {
  font-size: 1rem;
  margin-bottom: 12px;
}

.footer-contact a,
.footer-links a {
  color: #aab6fe;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact a:hover,
.footer-links a:hover {
  color: #3f51b5;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-social .social-icons {
  display: flex;
  gap: 20px;
}

.social-link {
  font-size: 1.8rem;
  color: #aab6fe;
  transition: color 0.3s ease, transform 0.3s ease;
  cursor: pointer;
  user-select: none;
}

.social-link:hover {
  color: #3f51b5;
  transform: scale(1.2);
}

.footer-bottom {
  margin-top: 40px;
  text-align: center;
  font-size: 0.9rem;
  color: #7986cb;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-contact,
  .footer-links,
  .footer-social {
    flex: unset;
    margin-bottom: 30px;
  }
}

/* Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
#footer-map {
  width: 100%;
  max-width: 280px;
  border: 2px solid #3f51b5;
  box-shadow: 0 5px 15px rgba(63, 81, 181, 0.3);
  border-radius: 10px;
  margin-top: 20px;
}

@media (max-width: 768px) {
  #footer-map {
    max-width: 100%;
    margin: 20px auto 0 auto;
  }
}
