/*--------------------------------------------------------------
# GLOBAL VARIABLES & FONTS
--------------------------------------------------------------*/
:root {
  --default-font: "Roboto", system-ui, sans-serif;
  --heading-font: "Raleway", sans-serif;
  --nav-font: "Poppins", sans-serif;

  --background-color: #ffffff;
  --default-color: #444444;
  --heading-color: #2B70C9;
  --accent-color: #CC0000;
  --surface-color: #ffffff;
  --contrast-color: #ffffff;

  --header-bg-color: #ffffff;
  --nav-color: #333333;
  --nav-hover-color: var(--accent-color);
  --underline-color: var(--accent-color);
  --nav-dropdown-background-color: #fff;
  --nav-dropdown-color: #444;
  --nav-dropdown-hover-color: var(--accent-color);
  --nav-mobile-background-color: #ffffff;

  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# GENERAL STYLES
--------------------------------------------------------------*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--default-font);
  background-color: var(--background-color);
  color: var(--default-color);
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
}

h1, h2, h3, h4, h5, h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/*--------------------------------------------------------------
# PRELOADER
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: rotate 1.5s linear infinite;
}

@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# DISABLE AOS DELAY ON MOBILE
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# GLOBAL SECTION STYLES
--------------------------------------------------------------*/
section, .section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 100px;
  overflow: clip;
}

@media (max-width: 1199px) {
  section, .section {
    scroll-margin-top: 76px;
  }
}

/*--------------------------------------------------------------
# COMPANY SECTION
--------------------------------------------------------------*/
.company {
  padding: 0;
  margin: 0;
}

.company .company-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
  padding: 2px 0;
  background-color: var(--surface-color);
  border-top: 1px solid rgba(0,0,0,0.05);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.company .company-scroll-container {
  display: flex;
  white-space: nowrap;
  animation: scroll-company 30s linear infinite;
}

.company .company-logo {
  flex-shrink: 0;
  width: auto;
  height: 20px;
  padding: 1px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.company .company-logo img {
  max-height: 100%;
  object-fit: contain;
  opacity: 0.8;
  transition: 0.3s ease-in-out;
}
.company .company-logo img:hover {
  opacity: 1;
  transform: scale(1.1);
}

@keyframes scroll-company {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (max-width: 768px) {
  .company .company-logo {
    width: 100px;
    height: 15px;
  }
}
/*--------------------------------------------------------------
# TOPBAR (not fixed - scrolls away)
--------------------------------------------------------------*/
#topbar {
  background: #1c2e4a;
  color: #fff;
  font-size: 14px;
  padding: 8px 15px;
  position: relative;
  z-index: 998;
}

#topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

#topbar .contact-info {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

#topbar .info-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

#topbar .info-item i {
  color: var(--accent-color);
}

#topbar .info-item a {
  color: #fff;
}

#topbar .social-links {
  display: flex;
  gap: 10px;
}

#topbar .social-links a {
  background: #fff;
  color: #1c2e4a;
  width: 28px;
  height: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}

#topbar .social-links a:hover {
  background: var(--accent-color);
  color: #fff;
}

@media (max-width: 768px) {
  #topbar .container {
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }

  #topbar .contact-info,
  #topbar .social-links {
    justify-content: center;
  }
}

/*--------------------------------------------------------------
# HEADER / NAVBAR FIXED (Always visible while scrolling)
--------------------------------------------------------------*/
.header {
  background: #fff;
  padding: 10px 0;
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.header .logo img {
  max-height: 40px;
  margin-right: 10px;
}

.navmenu {
  display: flex;
  align-items: center;
}

.navmenu ul {
  list-style: none;
  display: flex;
  gap: 20px;
  padding: 0;
  margin: 0;
}

.navmenu li a {
  font-family: var(--nav-font);
  font-weight: 500;
  color: var(--nav-color);
  padding: 8px 12px;
  transition: 0.3s;
  position: relative;
  text-transform: capitalize;
}

.navmenu li a.active,
.navmenu li a:hover {
  color: var(--nav-hover-color);
}

/* Mobile navigation hamburger */
.mobile-nav-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: var(--nav-color);
}

@media (max-width: 991px) {
  .navmenu {
    width: 100%;
  }

  .navmenu ul {
    position: fixed;
    top: 65px;
    left: 0;
    right: 0;
    background-color: #fff;
    flex-direction: column;
    padding: 10px 20px;
    display: none;
    z-index: 9999;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  }

 /* REQUIRED: Show nav menu when class is toggled */
body.mobile-nav-active .navmenu ul {
  display: flex !important;
  flex-direction: column;
}

  .navmenu li {
    margin: 0;
  }

  .navmenu li a {
    font-size: 15px;
    padding: 10px 12px;
    line-height: 1.3;
    text-align: left;
    color: #333;
  }

  .mobile-nav-toggle {
    display: block !important;
    font-size: 24px;
    color: #000;
    padding: 5px;
    cursor: pointer;
    z-index: 10001;
  }
}

/*--------------------------------------------------------------
# BANNER SECTION
--------------------------------------------------------------*/
.banner {
  position: relative;
  margin-top: 0;
  padding-top: 0;
  background: #fff;
  overflow: hidden;
}

.banner .swiper-slide {
  width: 100%;
  min-height: 85vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.banner .banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
}

.banner .swiper-slide .container {
  position: relative;
  z-index: 2;
  padding: 20px;
  border-radius: 8px;
}

/* Headings */
.banner h3 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  max-width: 90%;
  margin-inline: auto;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  color: #fff;
}

.banner p {
  font-size: 28px;
  line-height: 1.5;
  max-width: 80%;
  font-weight: 400;
  margin-inline: auto;
  margin-bottom: 25px;
  color: #f0f0f0;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.banner h4 {
  color: var(--accent-color);
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 30px;
  max-width: 70%;
  margin-inline: auto;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

/* Call to Action Button */
.banner .btn-get-started {
  background-color: var(--accent-color);
  color: #fff;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 700;
  border: 2px solid var(--accent-color);
  transition: all 0.3s ease-in-out;
  display: inline-block;
  margin: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.banner .btn-get-started:hover {
  background-color: transparent;
  color: var(--accent-color);
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Swiper pagination */
.banner .swiper-pagination {
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  z-index: 3;
  text-align: center;
}

.banner .swiper-pagination-bullet {
  background: #999;
  opacity: 1;
  margin: 0 4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  transition: 0.3s;
}

.banner .swiper-pagination-bullet-active {
  background: #00bcd4;
  width: 24px;
  border-radius: 4px;
}

/* Swiper navigation */
.banner .swiper-button-prev,
.banner .swiper-button-next {
  color: #fff;
  width: 45px;
  height: 45px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.3s ease;
}

.banner .swiper-button-prev::after,
.banner .swiper-button-next::after {
  content: none !important;
}

.banner .swiper-button-prev:hover,
.banner .swiper-button-next:hover {
  background: rgba(0, 0, 0, 0.7);
  transform: translateY(-50%) scale(1.1);
}

.banner .swiper-button-next:active,
.banner .swiper-button-prev:active {
  transform: translateY(-50%) scale(0.9);
  background: rgba(0, 0, 0, 0.9);
}

.banner .swiper-button-next .arrow-icon,
.banner .swiper-button-prev .arrow-icon {
  width: 20px;
  height: 20px;
}

/*--------------------------------------------------------------
# RESPONSIVE - Banner
--------------------------------------------------------------*/
@media (max-width: 1200px) {
  .banner h3 { font-size: 42px; }
  .banner p { font-size: 26px; }
  .banner h4 { font-size: 22px; }
}

@media (max-width: 992px) {
  .banner h3 { font-size: 36px; }
  .banner p { font-size: 22px; }
  .banner h4 { font-size: 20px; }
  .banner .btn-get-started {
    padding: 10px 25px;
    font-size: 16px;
  }
  .banner .swiper-slide {
    min-height: 65vh;
  }
}

@media (max-width: 768px) {
  .banner .swiper-slide {
    min-height: 55vh;
    padding: 20px 0;
  }
  .banner h3 { font-size: 28px; }
  .banner p { font-size: 18px; }
  .banner h4 { font-size: 18px; }
  .banner .btn-get-started {
    padding: 8px 20px;
    font-size: 14px;
  }
  .banner .swiper-pagination {
    bottom: 15px;
  }
  .banner .swiper-button-next,
  .banner .swiper-button-prev {
    display: none;
  }
}

@media (max-width: 576px) {
  .banner .swiper-slide {
    min-height: 45vh;
  }
  .banner h3 {
    font-size: 24px;
    line-height: 1.3;
    max-width: 95%;
  }
  .banner p {
    font-size: 15px;
    line-height: 1.4;
    max-width: 90%;
  }
  .banner h4 { font-size: 16px; }
  .banner .btn-get-started {
    padding: 8px 15px;
    font-size: 13px;
  }
}

/*--------------------------------------------------------------
# SERVICES SECTION
--------------------------------------------------------------*/
.services {
  padding: 80px 0;
  margin: 0;
}

.services .section-title {
  padding-bottom: 40px;
}

.services .service-item {
  background: radial-gradient(circle at top left, var(--surface-color) 0%, color-mix(in srgb, var(--surface-color), var(--default-color) 3%) 100%);
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  overflow: hidden;
  padding: 30px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  z-index: 1;
  transition: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.services .service-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, rgba(204, 0, 0, 0.1), rgba(43, 112, 201, 0.1));
  opacity: 0;
  transition: 0.5s;
  z-index: -1;
  border-radius: inherit;
}

.services .service-item:hover::before {
  opacity: 1;
}

.services .service-item:hover {
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4);
  transform: translateY(-15px) rotateZ(0.5deg) scale(1.01);
}

.services .icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: 0.4s ease;
}

.services .icon img {
  width: 90%;
  height: 90%;
  object-fit: contain;
  transition: 0.4s ease;
}

.services .service-item:hover .icon img {
  filter: brightness(1.2) saturate(1.5) drop-shadow(0 0 8px rgba(0, 0, 0, 0.3));
  transform: scale(1.08);
}

.services .service-item h3 {
  font-size: 25px;
  font-weight: 700;
  margin: 10px 0;
  color: var(--heading-color);
  transition: 0.4s ease;
}

.services .service-item:hover h3 {
  color: var(--accent-color);
  letter-spacing: 0.5px;
}

.services .service-item p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--default-color);
  flex-grow: 1;
}

/*--------------------------------------------------------------
# ABOUT SECTION
--------------------------------------------------------------*/
.about {
  padding: 80px 0;
  background: var(--background-color);
}

.about .section-title {
  margin-bottom: 50px;
}

.about .section-title p {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 15px;
}

.about .expertise-heading {
  font-size: 26px;
  font-weight: 700;
  color: var(--heading-color);
  text-align: center;
  margin-bottom: 35px;
  position: relative;
}

.about .expertise-heading::after {
  content: "";
  width: 60px;
  height: 3px;
  background: var(--accent-color);
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  border-radius: 5px;
}

.about .expertise-card {
  background: var(--surface-color);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.12);
  transition: 0.5s;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.about .expertise-card:hover {
  transform: translateY(-10px);
  box-shadow: 0px 20px 45px rgba(0, 0, 0, 0.2);
  border-color: var(--accent-color);
}

.about ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about ul li {
  padding: 12px 0;
  display: flex;
  align-items: flex-start;
  font-size: 16px;
  color: var(--default-color);
  line-height: 1.6;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.08);
}

.about ul li:last-child {
  border-bottom: none;
}

.about ul i {
  font-size: 22px;
  color: var(--accent-color);
  margin-right: 15px;
  flex-shrink: 0;
}

.about ul li span {
  display: block;
}

/*--------------------------------------------------------------
# FAQ SECTION
--------------------------------------------------------------*/
.faq {
  padding: 80px 0;
  background: var(--background-color);
}

.faq .section-title {
  margin-bottom: 50px;
}

.faq .faq-container {
  max-width: 900px;
  margin: auto;
}

.faq .faq-item {
  background: var(--surface-color);
  position: relative;
  padding: 25px 30px;
  margin-bottom: 20px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: 0.4s ease;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.faq .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.18);
  border-color: var(--accent-color);
}

.faq .faq-item h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 0 40px 0 0;
  display: flex;
  align-items: center;
  color: var(--heading-color);
  cursor: pointer;
  transition: 0.3s ease;
}

.faq .faq-item h3:hover {
  color: var(--accent-color);
}

.faq .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.4s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-content p {
  margin-bottom: 0;
  padding-left: 35px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--default-color);
}

.faq .faq-toggle {
  position: absolute;
  top: 25px;
  right: 25px;
  font-size: 20px;
  cursor: pointer;
  color: var(--default-color);
  transition: 0.3s ease;
}

.faq .faq-toggle:hover {
  color: var(--accent-color);
}

/* FAQ Active State */
.faq .faq-active {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: #fff;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  transform: translateY(-5px);
}

.faq .faq-active h3,
.faq .faq-active .faq-toggle {
  color: #fff;
}

.faq .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 15px;
}

.faq .faq-active .faq-content p {
  color: #fff;
}

.faq .faq-active .faq-toggle {
  transform: rotate(90deg);
}

/*--------------------------------------------------------------
# LOCATION SECTION
--------------------------------------------------------------*/
.location {
  padding: 50px 0;
  background-color: var(--background-color);
}

.location .section-title {
  margin-bottom: 10px;
}

.location .map-container {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  margin-top: 50px;
  margin-bottom: 30px;
}

.location .map-container:hover {
  transform: translateY(-10px) scale(1.008);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
}

.location .map-container iframe {
  width: 100%;
  height: 400px;
  border: 0;
}

/* Info Cards */
.location .info-item {
  background-color: var(--surface-color);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 5px;
  transition: 0.5s ease;
  display: flex;
  align-items: flex-start;
  border: 1px solid rgba(0, 0, 0, 0.05);
  height: 100%;
  position: relative;
}

.location .info-item:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  border-color: var(--accent-color);
}

.location .info-link {
  background: var(--accent-color);
  color: var(--contrast-color);
  width: 55px;
  height: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  margin-right: 20px;
  font-size: 22px;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  border: 2px solid transparent;
}

.location .info-link:hover {
  background: var(--heading-color);
  transform: scale(1.1) rotate(8deg);
  border-color: var(--accent-color);
}

.location .info-item h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--heading-color);
}

.location .info-item p {
  font-size: 16px;
  color: var(--default-color);
}

.location .info-item a {
  color: var(--heading-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.location .info-item a:hover {
  color: var(--accent-color);
  text-decoration: underline;
}

/* Media Adjustments */
@media (max-width: 768px) {
  .location .info-item {
    padding: 18px;
    gap: 15px;
  }

  .location .info-item h3 {
    font-size: 18px;
  }

  .location .info-item p {
    font-size: 15px;
  }

  .location .info-link {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
}

/*--------------------------------------------------------------
# FOOTER SECTION
--------------------------------------------------------------*/
.footer {
  background: var(--background-color);
  color: var(--default-color);
  padding-bottom: 20px;
  border-top: 1px solid rgba(204, 0, 0, 0.2);
  font-size: 14px;
}

.footer .footer-top {
  padding-top: 20px;
}

.footer .logo {
  margin-bottom: 25px;
  line-height: 1;
}

.footer .logo span {
  font-family: var(--heading-font);
  color: var(--heading-color);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
}

.footer .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about p {
  font-size: 14px;
  margin-bottom: 10px;
}

.footer .social-links {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.footer .social-links a {
  font-size: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  color: var(--accent-color);
  border: 1px solid rgba(204, 0, 0, 0.4);
  border-radius: 4px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
}

.footer .footer-links ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer .footer-links ul li {
  padding: 10px 0;
}

.footer .footer-links a {
  color: rgba(0, 0, 0, 0.6);
  transition: 0.3s;
}

.footer .footer-links a:hover {
  color: var(--accent-color);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  padding: 25px 0;
  text-align: center;
  background: var(--accent-color);
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# WHATSAPP FLOATING BUTTON
--------------------------------------------------------------*/
.whatsapp-chat-button {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: #fff;
  font-size: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  z-index: 999;
  transition: 0.3s ease;
  text-decoration: none;
}

.whatsapp-chat-button:hover {
  transform: translateY(-5px);
  background: #1DA851;
}

@media (max-width: 768px) {
  .whatsapp-chat-button {
    width: 55px;
    height: 55px;
    bottom: 80px;
    right: 20px;
    font-size: 26px;
  }

  #scroll-top {
    bottom: 20px;
    right: 20px;
  }
}

/*--------------------------------------------------------------
# SCROLL TOP BUTTON CLEAN RESET
--------------------------------------------------------------*/
#scroll-top {
  display: none !important;
}

