* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.top-navbar {
  background: #0e88c7;
  color: #0e88c7;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 500;
  border-bottom: 2px solid #0e88c7;
}

.top-container {
  max-width: 1200px;
  background: #0e88c7;
  margin: 0 auto;
  padding: 6px 20px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.top-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.top-item {
  text-decoration: none;
  color: #000;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.3s ease;
}

.top-item:hover {
  color: #ff6600;
}

.separator {
  color: #0e88c7;
  font-weight: 400;
}

.top-right i {
  color: #ff6600;
  font-size: 14px;
  transform: scaleX(1);
}

span a {
  color: #fff;
  text-decoration: none;
  margin-left: 6px;
  transition: color 0.3s ease;
}

span a:hover {
  color: #fff;
}

span i {
  color: #ffff !important;
  margin-right: 1px !important;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
}

.top-bar {
  background: #0e88c7;
  color: white;
  padding: 6px 0;
  text-align: center;
  font-size: 14px;
}

.top-info span {
  margin: 0 15px;
}

.top-info i {
  margin-right: 6px;
  color: #ff6b00;
}

.main-navbar {
  background: white;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
}

.logo img {
  height: 60px;
}

.nav-links {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 25px;
  transition: all 0.3s ease;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  position: relative;
  display: inline-block;
  text-decoration: none;
  color: #272b67;
  font-weight: 600;
  text-transform: uppercase;
  padding: 10px 15px;
  transition: 0.3s;
  overflow: hidden;
  z-index: 1;
}

.nav-links a::before,
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #0e88c7;
  transform: scaleX(0);
  transition: 0.3s ease;
}

.nav-links a::before {
  top: 0;
  transform-origin: left;
}

.nav-links a::after {
  bottom: 0;
  transform-origin: right;
}

.nav-links a:hover {
  color: white;
}

.nav-links a:hover::before {
  transform: scaleX(1);
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-links a:hover {
  background-color: #0e88c7;
  border-radius: 4px;
}

.book-btn {
  background: #ff6b00;
  color: #fff !important;
  padding: 8px 14px;
  border-radius: 6px;
  font-weight: 600;
}

.book-btn:hover {
  background: #272b67;
}

.dropdown:hover .mega-menu {
  display: flex;
}

.mega-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  padding: 20px;
  min-width: 300px;
  border-top: 3px solid #ff6b00;
  z-index: 999;
  flex-direction: column;
}

.mega-menu.grid-2 {
  display: none;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  min-width: 500px;
}

.dropdown:hover .grid-2 {
  display: grid;
}

.mega-menu a {
  display: block;
  color: #272b67;
  padding: 3px 0;
  transition: 0.3s;
}

.mega-menu a:hover {
  color: #0e88c7;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  position: relative;
  z-index: 1001;
}

.menu-toggle span {
  width: 28px;
  height: 3px;
  background: #272b67;
  transition: 0.4s;
  border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

@media (max-width: 992px) {
  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 85px;
    left: 0;
    background: white;
    width: 100%;
    flex-direction: column;
    border-top: 1px solid #ddd;
    display: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }

  .nav-links.show-menu {
    display: flex;
    max-height: 100vh;
    overflow-y: auto;
  }

  .nav-links li {
    width: 100%;
    text-align: left;
    border-bottom: 1px solid #eee;
    padding: 12px 18px;
  }

  .mega-menu,
  .grid-2 {
    position: static;
    box-shadow: none;
    padding: 0;
    display: none !important;
    border-top: none;
  }

  .dropdown.active .mega-menu,
  .dropdown.active .grid-2 {
    display: flex !important;
    flex-direction: column;
    background: #f9f9f9;
    padding-left: 10px;
  }

  .mega-menu a {
    padding: 8px 0;
    font-size: 15px;
  }

  .nav-links a i {
    float: right;
  }

  .nav-links a:hover {
    background-color: transparent;
    color: #0e88c7;
  }
  .nav-links a::before,
  .nav-links a::after {
    display: none;
  }
}
.mega-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  padding: 15px 20px;
  min-width: 240px;
  border-top: 3px solid #0e88c7;
  z-index: 999;
  flex-direction: column;
  opacity: 0;
  transform: translateY(15px);
  transition: all 0.3s ease-in-out;
}

.dropdown:hover .mega-menu {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}

.mega-menu a {
  display: block;
  color: #272b67;
  font-size: 15px;
  padding: 8px 0;
  text-decoration: none;
  transition: 0.3s ease;
  position: relative;
  z-index: 1;
  background: transparent;
}

.mega-menu a:hover {
  color: #0e88c7;
  background: transparent !important;
}

.book-btn {
  background: #ff6b00;
  color: #fff !important;
  padding: 8px 16px;
  border-radius: 6px;
  font-weight: 600;
  animation: blinkButton 1s infinite;
}

@keyframes blinkButton {
  0%,
  100% {
    background-color: #ff6b00;
    box-shadow: 0 0 10px #ff6b00;
  }
  50% {
    background-color: #0e88c7;
    box-shadow: 0 0 15px #0e88c7;
  }
}

.book-btn:hover {
  background: #0e88c7;
}

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  z-index: 1;
}

.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
}

.slide.active {
  opacity: 1;
  visibility: visible;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff;
  text-align: center;
  z-index: 1000;
  width: 90%;
  max-width: 800px;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.9);
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease, transform 1s ease;
}

.hero-content.active {
  opacity: 1;
  transform: translateY(0);
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 10px;
  color: #fff;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 1);
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 25px;
  color: #f0f0f0;
  font-weight: 500;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.hero-btn {
  display: inline-block;
  background: #ff6600;
  color: #fff;
  padding: 12px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  z-index: 10000;
}

.hero-btn:hover {
  background: #003366;
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .hero {
    height: 80vh;
  }
  .bg-video {
    display: none;
  }
  .hero-content h1 {
    font-size: 2rem;
  }
  .hero-content p {
    font-size: 1rem;
  }
}

.nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2.5rem;
  color: #fff;
  background: rgba(0, 0, 0, 0.4);
  border: none;
  cursor: pointer;
  z-index: 5;
  padding: 8px 16px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.nav-arrow:hover {
  background: rgba(255, 102, 0, 0.8);
  color: #fff;
}

.nav-arrow.left {
  left: 25px;
}

.nav-arrow.right {
  right: 25px;
}

.slider-dots {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 5;
}

.slider-dots .dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: background 0.3s ease;
}

.slider-dots .dot.active {
  background: #ff6b00;
}

.slide.active .hero-content {
  animation: fadeInUp 1s ease forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate(-50%, -40%);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

.hero .slide {
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 1s ease-in-out;
  opacity: 0.5;
  z-index: 99;
}

.hero .slide.active {
  opacity: 0.5;
  z-index: 99;
}

.about-section {
  padding: 100px 8%;
  background-color: #f8faff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
}

.about-image {
  flex: 1 1 45%;
}

.about-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.about-content {
  flex: 1 1 50%;
}

.about-content h2 {
  color: #003366;
  font-size: 2rem;
  margin-bottom: 20px;
  font-weight: 700;
  text-transform: capitalize;
}

.about-content p {
  color: #333;
  line-height: 1.7;
  margin-bottom: 15px;
  font-size: 1.05rem;
}

.reveal-left,
.reveal-right {
  opacity: 0;
  transform: translateY(60px);
  transition: all 1s ease;
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
  animation: slideInLeft 1s ease forwards;
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
  animation: slideInRight 1s ease forwards;
}

@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;
  }
}

@media (max-width: 992px) {
  .about-container {
    flex-direction: column;
  }
  .about-content {
    text-align: center;
  }
}
.reveal-left,
.reveal-right {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.9s ease, transform 1s ease;
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
  animation: slideInLeft 1s ease forwards;
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
  animation: slideInRight 1s ease forwards;
}
.more-text {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s ease, opacity 0.5s ease;
  opacity: 0;
}

.more-text.open {
  max-height: 1000px;
  opacity: 1;
}

.read-more-btn {
  background-color: #003366;
  color: #fff;
  border: none;
  padding: 10px 25px;
  font-size: 1rem;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 15px;
  transition: background 0.3s ease;
}

.read-more-btn:hover {
  background-color: #0055aa;
}

.about-content p {
  text-align: justify;
  text-justify: inter-word;
  line-height: 1.8;
  letter-spacing: 0.2px;
  word-spacing: 1px;
  margin-bottom: 20px;
  color: #333;
}

.expertise-section {
  background-color: #ffffff;
  padding: 100px 8%;
  text-align: center;
}

.expertise-section {
  background-color: #ffffff;
  padding: 100px 8%;
  text-align: center;
}
.expertise-header {
  background: linear-gradient(90de#000000, #ffffff);
  color: #fff;
  padding: 70px 20px;
  border-radius: 10px;
  margin-bottom: 60px;
}
.expertise-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 10px;
}
.expertise-header p {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}
.expertise-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 35px;
}
.expertise-card {
  background: linear-gradient(180deg, #f2f6ff 0%, #5957e2 100%);
  border-radius: 15px;
  padding: 40px 25px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  text-align: center;
  border-top: 5px solid transparent;
}
.expertise-card:hover {
  transform: translateY(-8px);
  border-top: 5px solid #ff6b00;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}
.expertise-card .icon {
  font-size: 40px;
  color: #003366;
  margin-bottom: 20px;
}
.expertise-card h3 {
  color: #003366;
  font-size: 1.3rem;
  margin-bottom: 12px;
  font-weight: 700;
}
.expertise-card p {
  color: #444;
  font-size: 1rem;
  line-height: 1.6;
}
.reveal-left,
.reveal-right {
  opacity: 0;
  transform: translateY(60px);
  transition: all 1s ease;
}
.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
  animation: slideInLeft 0.9s ease forwards;
}
.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
  animation: slideInRight 0.9s ease forwards;
}
@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;
  }
}
@media (max-width: 992px) {
  .expertise-header h2 {
    font-size: 2rem;
  }
  .expertise-container {
    gap: 25px;
  }
}
.expertise-section {
  background: #fff;
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
}
.expertise-header {
  background: linear-gradient(135deg, #2663eb, #ff7a00);
  color: #fff;
  text-align: center;
  padding: 80px 20px 60px;
}

.blinking-arrow {
  margin-top: 20px;
  font-size: 28px;
  color: #fff;
  animation: blink 1.2s infinite ease-in-out;
}

@keyframes blink {
  0%,
  100% {
    opacity: 0.2;
    transform: translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateY(8px);
  }
}

.expertise-header h2 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: 1px;
}
.expertise-header p {
  font-size: 1.1rem;
  opacity: 0.9;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}
.expertise-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 35px;
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
}
.expertise-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  padding: 30px 25px;
  text-align: center;
  transition: all 0.4s ease;
  border-bottom: 4px solid transparent;
  opacity: 0;
  transform: translateY(50px);
}
.expertise-card:hover {
  transform: translateY(-12px);
  border-bottom: 4px solid #ff7a00;
  box-shadow: 0 10px 25px rgba(255, 122, 0, 0.3);
}
.expertise-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  border-radius: 15px;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}

.expertise-image img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  display: block;
}

.expertise-card h3 {
  color: #0a3d62;
  margin-bottom: 15px;
  font-size: 1.25rem;
  font-weight: 600;
}
.expertise-card p {
  color: #555;
  font-size: 0.95rem;
  margin-bottom: 20px;
  line-height: 1.5;
}
.read-more {
  display: inline-block;
  padding: 8px 18px;
  color: #fff;
  background: #ff7a00;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}
.read-more:hover {
  background: #2663eb;
  transform: translateY(-2px);
}
[data-animate] {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}
[data-animate].show {
  opacity: 1;
  transform: translateY(0);
}

.stats-section {
  position: relative;
  background: none;
  color: #fff;
  text-align: center;
  padding: 80px 20px;
  overflow: hidden;
}

.stats-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(6, 9, 24, 0.85);
  z-index: 1;
}

.stats-section .container {
  position: relative;
  z-index: 2;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  justify-items: center;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.stat-box {
  background: linear-gradient(135deg, #2663eb, #ff7a00);
  width: 320px;
  height: 180px;
  padding: 30px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(255, 122, 0, 0.3);
}

.stat-box .icon {
  font-size: 40px;
  margin-bottom: 10px;
  color: #fff;
}

.stat-box h2 {
  font-size: 36px;
  font-weight: 700;
  margin: 5px 0;
  color: #fff;
}

.stat-box p {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (max-width: 1024px) {
  .stat-box {
    width: 280px;
    height: 160px;
  }
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .stat-box {
    width: 240px;
    height: 150px;
  }

  .stat-box h2 {
    font-size: 28px;
  }

  .stat-box p {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stat-box {
    width: 90%;
    height: 140px;
  }
}

.google-reviews-section {
  background: linear-gradient(to right, #001a33, #002147);
  padding: 100px 0;
  text-align: center;
  color: #fff;
}

.google-reviews-section .container {
  width: 85%;
  margin: 0 auto;
}

.google-reviews-section h2 {
  font-size: 2.4rem;
  color: #fff;
  margin-bottom: 15px;
  font-weight: 700;
}

.google-reviews-section .review-subtitle {
  font-size: 1.1rem;
  color: #d1e4ff;
  margin-bottom: 40px;
}

.google-reviews-section .review-subtitle span {
  color: #f36b21;
  font-weight: 600;
}

.reviews-widget {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  background: transparent;
  border-radius: 16px;
  padding: 20px 0;
}

.reviews-widget .elfsight-app {
  background: transparent !important;
  box-shadow: none !important;
}

.reviews-widget iframe {
  border: none !important;
  width: 100% !important;
}

.elfsight-app .eapps-google-reviews-widget {
  padding: 20px 0 !important;
}

.elfsight-app .eapps-widget-toolbar {
  bottom: -10px !important;
}

@media (max-width: 768px) {
  .google-reviews-section h2 {
    font-size: 2rem;
  }
  .reviews-widget {
    width: 95%;
  }
}

.why-choose-us {
  background: linear-gradient(180deg, #f2f6ff 0%, #ffffff 100%);
  padding: 80px 0;
  text-align: center;
}

.why-choose-us h2 {
  font-size: 2.6rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 60px;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.why-choose-us h2::after {
  content: "";
  width: 90px;
  height: 4px;
  background: #ff6b00;
  display: block;
  margin: 12px auto 0;
  border-radius: 2px;
}

.choose-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.choose-box {
  background: #ffffff;
  padding: 35px 25px;
  border-radius: 14px;
  border-top: 5px solid #004aad;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.35s ease;
  opacity: 0;
  transform: translateY(30px);
}

.choose-box h3 {
  color: #000000;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.choose-box p {
  color: #333;
  font-size: 0.96rem;
  line-height: 1.6;
}

.choose-box:hover {
  transform: translateY(-8px);
  border-top-color: #ff6b00;
  box-shadow: 0 10px 25px rgba(255, 107, 0, 0.25);
}

.choose-box.visible {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.6s ease-out;
}

@media (max-width: 1024px) {
  .choose-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .choose-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .choose-grid {
    grid-template-columns: 1fr;
  }
}

.clients-section {
  text-align: center;
  padding: 80px 0;
  background: #fff;
  overflow: hidden;
}

.subheading {
  color: #ff6b35;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.heading {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: #000000;
}

.description {
  color: #555;
  margin-bottom: 50px;
}

.client-scroll {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.scroll-track {
  display: flex;
  gap: 50px;
  animation: scroll-left 15s linear infinite;
}

.client-scroll:hover .scroll-track {
  animation-play-state: paused;
}

.client-box {
  flex: 0 0 auto;
  background: white;
  border-radius: 0;
  box-shadow: none;
  padding: 10px 20px;
  transition: transform 0.3s ease;
}

.client-box:hover {
  transform: scale(1.05);
}

.client-box img {
  width: auto;
  height: auto;
  opacity: 0.9;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .scroll-track {
    gap: 30px;
    animation: scroll-left 18s linear infinite;
  }
}

.blogs {
  padding: 100px 0;
  text-align: center;
  background: #fff;
}

.blogs .section-subtitle {
  color: #f15a24;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.blogs .section-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-top: 10px;
  color: #1a1a1a;
}

.blogs .section-desc {
  max-width: 700px;
  margin: 10px auto 50px;
  color: #555;
}

.blogs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
  gap: 2rem;
  justify-content: center;
  align-items: stretch;
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 20px;
}

.blog-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all 0.3s ease;
  border-top: 4px solid transparent;
}

.blog-card:hover {
  transform: translateY(-10px);
  border-top: 4px solid #f15a24;
  box-shadow: 0 10px 25px rgba(255, 107, 0, 0.25);
}

.blog-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.blog-content {
  padding: 35px;
}

.blog-content h3 {
  font-size: 1.2rem;
  color: #000;
  font-weight: 700;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.blog-card:hover .blog-content h3 {
  color: #002b5b;
}

.blog-content p {
  color: #000;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 15px;
}

.read-more {
  color: #000000;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.read-more:hover {
  background: #0056ff;
  color: #fff;
}
.read-more-btn-container {
  text-align: center;
  margin-top: 40px;
}

.read-more-btn {
  display: inline-block;
  background: #ff6600;
  color: #000;
  padding: 12px 35px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.read-more-btn:hover {
  background: #0056ff;
  color: #fff;
  transform: translateY(-3px);
}
.contact-section {
  background-color: #f8fafc;
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header .sub-title {
  color: #ff6600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.section-header .main-title {
  font-size: 36px;
  font-weight: 700;
  margin: 10px 0;
  color: #111;
}

.section-header p {
  color: #555;
  font-size: 16px;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.contact-form,
.contact-info {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  flex: 1 1 45%;
}

.contact-form h3,
.contact-info h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-row {
  display: flex;
  gap: 20px;
}

.form-row .form-group {
  flex: 1;
}

input,
textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  outline: none;
  font-size: 15px;
}

input:focus,
textarea:focus {
  border-color: #ff6600;
  box-shadow: 0 0 5px rgba(255, 102, 0, 0.3);
}

.contact-btn {
  background-color: #ff6600;
  color: #fff;
  border: none;
  padding: 12px 25px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
}

.contact-btn:hover {
  background-color: #0056ff;
}

.contact-info {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.contact-info h3 {
  font-size: 22px;
  margin-bottom: 25px;
  color: #002b5b;
  font-weight: 700;
}

.info-box {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.info-box .icon {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  background-color: #e6f2ff;
  color: #ff6600;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-right: 15px;
  transition: all 0.3s ease;
}

.info-box:hover .icon {
  color: #fff;
  transform: scale(1.1);
}

.info-box .details strong {
  font-size: 16px;
  color: #002b5b;
  display: block;
  margin-bottom: 3px;
}

.info-box .details p {
  font-size: 15px;
  color: #555;
  margin: 0;
}

.map-container {
  margin-top: 15px;
  border-radius: 10px;
  overflow: hidden;
}
.footer {
  background-color: #0d3c66;
  color: #f1f1f1;
  padding: 60px 8%;
  font-family: "Poppins", sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
}

.footer-logo {
  width: 250px;
  margin-bottom: 15px;
}

.footer-about p {
  color: #cbd3e1;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.social-icons a {
  color: #fff;
  background-color: #1f2e4c;
  width: 35px;
  height: 35px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 8px;
  transition: all 0.3s ease;
}

.footer-contact .fa-phone-alt {
  transform: scaleX(-1);
  display: inline-block;
}

.social-icons a:hover {
  background-color: #ff6600;
  color: #fff;
}

.footer h4 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #fff;
  position: relative;
}

.footer h4::after {
  content: "";
  width: 40px;
  height: 2px;
  background: #ff6600;
  position: absolute;
  left: 0;
  bottom: -5px;
}

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

.footer ul li {
  margin-bottom: 10px;
  font-size: 15px;
}

.footer a {
  color: #cbd3e1;
  text-decoration: none;
  transition: color 0.3s;
}

.footer a:hover {
  color: #4ac4ff;
}

.footer-contact i {
  color: #ff6600;
  margin-right: 10px;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  font-size: 14px;
  color: #cbd3e1;
}

.footer-services ul li {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
  }
  .footer {
    text-align: center;
  }
  .social-icons a {
    margin: 5px;
  }
}
html,
body {
  margin: 0;
  padding: 0;
  background-color: #0b1a33;
}

footer {
  margin: 0;
  padding-bottom: 0;
}
body > *:last-child {
  margin-bottom: 0 !important;
}
.section-heading {
  font-size: 2.6rem;
  font-weight: 700;
  color: #000;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  letter-spacing: 0.5px;
}

.section-heading::after {
  content: "";
  width: 90px;
  height: 4px;
  background: #ff6600;
  display: block;
  margin: 12px auto 0;
  border-radius: 2px;
}
body,
html {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

footer {
  margin-bottom: 0;
  padding-bottom: 0;
}

.contact-section {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}
.whatsapp-float {
  position: fixed;
  width: 55px;
  height: 55px;
  bottom: 25px;
  right: 25px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  transition: all 0.3s ease;
}

.whatsapp-float img {
  width: 32px;
  margin-top: 11px;
}

.whatsapp-float:hover {
  background-color: #128c7e;
  transform: scale(1.1);
}
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader img {
  width: 120px;
  height: auto;
  animation: popup 1.4s ease-in-out infinite;
}

@keyframes popup {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-20px) scale(1.08);
  }
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
}
.hero-content h1,
.hero-content p {
  color: #ffffff !important;
  text-shadow: 0 0 12px rgba(0, 0, 0, 1), 0 0 20px rgba(0, 0, 0, 0.9),
    0 2px 10px rgba(0, 0, 0, 1) !important;
}

.hero-content {
  filter: brightness(1.2);
}

.overlay {
  background: rgba(0, 0, 0, 0.55) !important;
}

.hero .slide,
.slide {
  opacity: 1 !important;
}

.slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55) !important;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 5 !important;
}

.hero-content h1,
.hero-content p {
  color: #ffffff !important;
  text-shadow: 0 0 10px rgba(0, 0, 0, 1), 0 0 18px rgba(0, 0, 0, 0.9),
    0 2px 8px rgba(0, 0, 0, 1) !important;
}
