:root {
  --primary: #0d47a1;
  --secondary: #ff6f00;
  --dark: #022d62;
  --light: #f5f9ff;
  --gray: #f8f9fa;
  --text: #333;
  --white: #ffffff;
  --shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text);
  background-color: var(--white);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--dark);
}

a {
  text-decoration: none;
  color: var(--primary);
  transition: all 0.3s ease;
}

a:hover {
  color: var(--dark);
}

.orange {
  color: var(--secondary);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-size: 16px;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background-color: #0b3d91;
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.btn-secondary {
  background-color: var(--secondary);
  color: var(--white);
}

.btn-secondary:hover {
  background-color: #e65a00;
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

.btn-outline:hover {
  background-color: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
}
/* Header */
/* style.css: Navbar, Dropdown & Animations */

/* Header */
header {
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  max-height: 50px;
  width: auto;
  transform: scale(2);
  transform-origin: left center;
  margin-right: 30px;
}

.logo .tagline {
  font-size: 12px;
  color: #666;
  margin-left: 10px;
  font-weight: 500;
}

nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin-left: 30px;
  position: relative;
}

nav ul li a {
  font-weight: 600;
  color: var(--dark);
  padding: 5px 0;
  display: inline-block;
  transition: color 0.2s ease;
}

nav ul li a:hover,
nav ul li a:focus {
  color: var(--secondary);
}

nav ul li a.active:after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--secondary);
}

/* Dropdown Styles & Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.dropdown {
  position: relative;
}

.dropdown .dropbtn {
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: color 0.2s ease;
}

.dropdown .dropbtn i {
  margin-left: 5px;
  transition: transform 0.3s ease, color 0.2s ease;
}

.dropdown:hover .dropbtn i {
  transform: rotate(180deg);
  color: var(--secondary);
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--white);
  min-width: 200px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  overflow: hidden;
  z-index: 1001;
  animation-duration: 0.3s;
  animation-fill-mode: forwards;
}

.dropdown-content a {
  display: block;
  padding: 10px 15px;
  font-weight: 500;
  color: var(--dark);
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.dropdown-content a:hover {
  background-color: var(--secondary-light);
  color: var(--secondary);
}

.dropdown:hover .dropdown-content {
  display: block;
  animation-name: fadeInDown;
}

.mobile-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
  background: none;
  border: none;
  color: var(--dark);
  padding: 5px;
  margin-right: 10px;
}

/* Mobile Navigation Styles */
@media (max-width: 768px) {
  .mobile-toggle {
    display: block;
  }

  nav {
    position: fixed;
    top: 80px;
    right: -100%;
    background-color: var(--white);
    width: 280px;
    height: calc(100vh - 80px);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    z-index: 999;
  }

  nav.active {
    right: 0;
  }

  nav ul {
    flex-direction: column;
    padding: 30px;
    height: 100%;
    overflow-y: auto;
  }

  nav ul li {
    margin: 0 0 20px 0;
    width: 100%;
  }

  nav ul li a {
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
  }

  /* Mobile Dropdown Adjustments */
  .dropdown-content {
    position: static;
    display: none;
    box-shadow: none;
    background-color: rgba(13, 71, 161, 0.05);
    margin-top: 10px;
    border-radius: 4px;
  }

  .dropdown.active .dropdown-content {
    display: block;
  }

  .dropdown .dropbtn {
    width: 100%;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
  }
}

/* Hero Section */
.hero-swiper {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.hero-slide {
  background-size: cover;
  background-position: center;
  height: 100vh;
  position: relative;
}

.hero-overlay {
  background: linear-gradient(rgba(2, 45, 98, 0.8), rgba(2, 45, 98, 0.8));
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 20px 0;
}

.hero-text {
  text-align: center;
  max-width: 700px;
  color: var(--white);
  backdrop-filter: blur(4px);
  padding: 20px;
  border-radius: 12px;
}

.hero-text h1 {
  font-size: 3.2rem;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.3;
  color: var(--white);
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.6);
}

.hero-text p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #f0f0f0;
  line-height: 1.6;
  opacity: 0.95;
}

.hero-btns {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 28px;
  font-size: 1rem;
  border-radius: 50px;
  text-decoration: none;
  transition: 0.3s ease;
  font-weight: 600;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--light);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--secondary);
  color: var(--white);
  transform: scale(1.05);
}

.btn-outline {
  border: 2px solid var(--white);
  color: var(--white);
  background-color: transparent;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background-color: var(--secondary);
  color: var(--white);
  border-color: var(--secondary);
  transform: scale(1.05);
}

.swiper-button-next,
.swiper-button-prev {
  width: 48px;
  height: 48px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.2),
    rgba(255, 255, 255, 0.05)
  );
  backdrop-filter: blur(6px);
  border-radius: 50%;
  color: var(--white);
  transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: rgba(255, 255, 255, 0.4);
  transform: scale(1.1);
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 1.5rem;
  font-weight: 600;
}

/* Scroll cue animation */
.scroll-down-cue {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.scroll-down-cue span {
  width: 30px;
  height: 50px;
  border: 2px solid #fff;
  border-radius: 25px;
  display: inline-block;
  position: relative;
}

.scroll-down-cue span::after {
  content: "";
  width: 6px;
  height: 6px;
  background: #fff;
  position: absolute;
  left: 50%;
  top: 10px;
  transform: translateX(-50%);
  border-radius: 50%;
  animation: scrollAnim 1.5s infinite ease-in-out;
}

@keyframes scrollAnim {
  0% {
    transform: translate(-50%, 0);
    opacity: 1;
  }

  100% {
    transform: translate(-50%, 20px);
    opacity: 0;
  }
}

/* About Section */
.section {
  padding: 100px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 2.5rem;
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

.section-title h2:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--secondary);
}

.section-title p {
  font-size: 1.2rem;
  color: #666;
  max-width: 700px;
  margin: 20px auto 0;
}

.about-content {
  display: flex;
  align-items: center;
  gap: 50px;
}

.about-text {
  flex: 1;
}

.about-text h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--primary);
}

.about-stats {
  display: flex;
  margin-top: 30px;
  gap: 30px;
}

.stat-box {
  background: var(--white);
  padding: 20px;
  border-radius: 10px;
  box-shadow: var(--shadow);
  text-align: center;
  flex: 1;
}

.stat-box h4 {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 5px;
}

.about-image {
  flex: 1;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Services */
.services {
  background-color: var(--gray);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
  height: 200px;
  background-color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 60px;
}

.service-content {
  padding: 30px;
}

.service-content h3 {
  color: var(--primary);
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.service-content ul {
  list-style: none;
  margin-top: 15px;
}

.service-content ul li {
  padding: 8px 0;
  padding-left: 25px;
  position: relative;
}

.service-content ul li:before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--secondary);
}

/* Values */
.values {
  background: linear-gradient(to right, var(--primary), var(--dark));
  color: var(--white);
}

.values .section-title h2 {
  color: var(--white);
}

.values .section-title p {
  color: rgba(255, 255, 255, 0.8);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.value-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.value-icon {
  font-size: 50px;
  margin-bottom: 20px;
  color: var(--secondary);
}

.value-card h3 {
  color: var(--white);
  margin-bottom: 15px;
}

/* Stats */
.stats {
  background-color: var(--dark);
  color: var(--white);
  padding: 70px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  text-align: center;
}

.stat-item h3 {
  font-size: 3rem;
  color: var(--white);
  margin-bottom: 10px;
}

.stat-item p {
  font-size: 1.1rem;
  opacity: 0.8;
}

/* Testimonials Section */
.testimonials {
  background-color: #f8f9fa;
  padding: 100px 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.testimonial-card {
  background: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow);
  padding: 30px;
  position: relative;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-quote {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 60px;
  color: rgba(13, 71, 161, 0.1);
  opacity: 0.7;
}

.testimonial-content {
  margin-top: 20px;
  margin-bottom: 30px;
  line-height: 1.8;
  color: #555;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding-top: 25px;
}

.author-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 20px;
  border: 3px solid rgba(13, 71, 161, 0.1);
}

.author-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-info h4 {
  font-size: 1.2rem;
  margin-bottom: 5px;
  color: var(--dark);
}

.author-info p {
  color: var(--secondary);
  font-size: 0.9rem;
  margin-bottom: 0;
}

.testimonial-rating {
  color: #ffc107;
  margin-bottom: 15px;
  font-size: 18px;
}

/* Contact Section - Improved Styles */
#contact {
  background-color: var(--light);
}

.contact-container {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.contact-info {
  flex: 1;
  background: var(--white);
  padding: 40px;
  border-radius: 10px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.contact-info:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: var(--secondary);
}

.contact-info h3 {
  color: var(--primary);
  margin-bottom: 25px;
  font-size: 1.8rem;
  position: relative;
  padding-bottom: 15px;
}

.contact-info h3:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--primary);
}

.contact-info p {
  margin-bottom: 25px;
  color: #555;
  line-height: 1.8;
}

.contact-details {
  margin-bottom: 30px;
}

.contact-details div {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  padding: 15px;
  background: rgba(13, 71, 161, 0.05);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.contact-details div:hover {
  background: rgba(13, 71, 161, 0.1);
  transform: translateX(5px);
}

.contact-details i {
  font-size: 22px;
  color: var(--primary);
  margin-right: 15px;
  min-width: 30px;
  text-align: center;
  padding-top: 5px;
}

.contact-details p {
  margin: 0;
  font-size: 1.05rem;
  color: var(--text);
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(13, 71, 161, 0.1);
  color: var(--primary);
  font-size: 22px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.social-links a:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(13, 71, 161, 0.2);
}

.contact-form {
  flex: 1;
  background: var(--white);
  padding: 40px;
  border-radius: 10px;
  box-shadow: var(--shadow);
  position: relative;
}

.contact-form:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: var(--primary);
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
  color: #444;
  font-size: 1.05rem;
}

.form-control {
  width: 100%;
  padding: 15px;
  border: 2px solid #e1e5eb;
  border-radius: 8px;
  font-size: 16px;
  transition: all 0.3s ease;
  background: #fcfcfc;
}

.form-control:focus {
  border-color: var(--primary);
  outline: none;
  box-shadow: 0 0 0 4px rgba(13, 71, 161, 0.1);
  background: var(--white);
}

textarea.form-control {
  min-height: 180px;
  resize: vertical;
}

.contact-form .btn {
  padding: 15px 30px;
  font-size: 18px;
  border-radius: 8px;
  font-weight: 700;
  width: 100%;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(13, 71, 161, 0.2);
}

.contact-form .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(13, 71, 161, 0.3);
}

/* Contact Section Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.contact-info,
.contact-form {
  animation: fadeInUp 0.6s ease-out;
}

.contact-info {
  animation-delay: 0.2s;
}

.contact-form {
  animation-delay: 0.4s;
}

/* Footer */
footer {
  background-color: var(--dark);
  color: var(--white);
  padding: 70px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 50px;
}

.footer-col h4 {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: var(--secondary);
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
}

.footer-col ul li a:hover {
  color: var(--secondary);
  padding-left: 5px;
}

.social-links-footer {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-links-footer a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
  transition: all 0.3s ease;
}

.social-links-footer a:hover {
  background-color: var(--secondary);
  transform: translateY(-3px);
}

.copyright {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 992px) {
  .hero h1 {
    font-size: 2.8rem;
  }

  .about-content {
    flex-direction: column;
  }

  .contact-container {
    flex-direction: column;
  }

  .contact-info,
  .contact-form {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .mobile-toggle {
    display: block;
  }

  nav {
    position: fixed;
    top: 80px;
    right: -100%;
    background-color: var(--white);
    width: 280px;
    height: calc(100vh - 80px);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
  }

  nav.active {
    right: 0;
  }

  nav ul {
    flex-direction: column;
    padding: 30px;
  }

  nav ul li {
    margin: 0 0 20px 0;
  }

  .hero h1 {
    font-size: 2.3rem;
  }

  .hero-btns {
    flex-direction: column;
  }

  .section {
    padding: 70px 0;
  }

  .section-title h2 {
    font-size: 2rem;
  }

  .about-stats {
    flex-direction: column;
  }

  .social-links {
    justify-content: center;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .section-title h2 {
    font-size: 1.8rem;
  }

  .contact-info,
  .contact-form {
    padding: 25px;
  }
}
