
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: #fff;
  color: #333;
  overflow-x: hidden;
}


.site-header {
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1000;
}

.header-inner {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  height: 95px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-area {
  position: relative;
  display: block;
  width: 220px;
  height: 80px;
}

.logo-img {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 200px;
  width: auto;
}

.main-nav > ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 30px;
}

.main-nav a {
  text-decoration: none;
  color: #000000;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.5px;
  padding-bottom: 6px;
  transition: 0.3s;
  border-bottom: 2px solid transparent;
}

.main-nav a:hover,
.main-nav a.active {
  color: #1a3a5f;
  border-bottom-color: #1a3a5f;
}


.dropdown {
  position: relative;
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  width: 250px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 1000;
  list-style: none;
  padding: 10px 0;
}
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu a {
  display: block;
  padding: 12px 20px;
  font-size: 13px;
  border: none;
}
.dropdown-menu a:hover {
  background: #f0f2f5;
  padding-left: 25px;
}


.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1100;
}
.menu-toggle span {
  width: 100%;
  height: 3px;
  background: #1a3a5f;
  border-radius: 2px;
  transition: 0.3s;
}



.hero-section {
  position: relative;
  width: 100%;
  height: calc(
    100vh - 95px
  );
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: white;
  transition: background-color 0.5s ease;
}


.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: opacity 1s ease;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2;
  transition: background 1s ease;
}


.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: #fff;
  padding: 0 20px;
  transition: color 1s ease;
 
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 10px;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 40px;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

.hero-logo-container {
  position: absolute;
  top: 37%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  text-align: center;
  margin-top: 20px;
  z-index: 4;
}


.hero-bottom-logo {
  height: 300px;
  width: auto;
  filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.5));
  transition: filter 1s ease;
}




.hero-section.video-finished .hero-video {
  opacity: 0;
  visibility: hidden;
}


.hero-section.video-finished {
 
  background-image: url("img/rocker-sta-RSYBi_1fhfM-unsplash.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}


.hero-section.video-finished .video-overlay {
  background: rgba(
    255,
    255,
    255,
    0.2
  );
}


.hero-section.video-finished .hero-content {
  color: #000;
}


.hero-section.video-finished .hero-title,
.hero-section.video-finished .hero-subtitle {
  text-shadow: none;
}



.hero-section.video-finished .hero-bottom-logo {
  filter: none;
  opacity: 1;
}


.hero-section {
  position: relative;
  width: 100%;
  height: calc(
    100vh - 95px
  );
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: white;
  transition: background-color 0.5s ease;
}


.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: opacity 1s ease;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2;
  transition: background 1s ease;
}


.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: #fff;
  padding: 0 20px;
  transition: color 1s ease;
 
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 10px;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 40px;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

.hero-logo-container {
  position: absolute;
  top: 37%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  text-align: center;
  margin-top: 20px;
  z-index: 4;
}


.hero-bottom-logo {
  height: 300px;
  width: auto;
  filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.5));
  transition: filter 1s ease;
}




.hero-section.video-finished .hero-video {
  opacity: 0;
  visibility: hidden;
}


.hero-section.video-finished {
 
  background-image: url("img/rocker-sta-RSYBi_1fhfM-unsplash.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}


.hero-section.video-finished .video-overlay {
  background: rgba(
    255,
    255,
    255,
    0.2
  );
}


.hero-section.video-finished .hero-content {
  color: #000;
}


.hero-section.video-finished .hero-title,
.hero-section.video-finished .hero-subtitle {
  text-shadow: none;
}



.hero-section.video-finished .hero-bottom-logo {
  filter: none;
  opacity: 1;
}


@media (max-width: 992px) {
 
  .menu-toggle {
    display: flex;
  }
  .main-nav {
    display: none;
  }

 
  .hero-title {
    font-size: 2.5rem;
    line-height: 1.2;
  }
  .hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 10px;
  }

 
 
  .hero-content {
    padding-bottom: 120px;
    position: relative;
    z-index: 5;
  }

 
  .hero-logo-container {
   
    top: auto !important;

   
    bottom: -40px;

    left: 48%;
    transform: translateX(-50%);
    margin-top: 0;
    width: 100%;
    position: absolute;
  }

 
  .hero-bottom-logo {
    height: 190px !important;
    width: auto;
  }
}

.side-menu {
  position: fixed;
  top: 0;
  right: -300px;
  width: 280px;
  height: 100%;
  background: white;
  z-index: 2000;
  transition: 0.3s ease;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  padding: 20px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.side-menu.open {
  right: 0;
}
.side-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1500;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
.side-menu-overlay.open {
  opacity: 1;
  visibility: visible;
}

.side-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}
.side-menu-logo {
  height: 100px;
}
.side-menu-close {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
}
.side-menu-list {
  list-style: none;
  padding: 0;
    margin: 0;
    
   
    flex-grow: 1;
    padding-bottom: 50px;
}
.side-menu-list li {
  border-bottom: 1px solid #eee;
}
.side-menu-list a {
  display: block;
  padding: 15px 0;
  text-decoration: none;
  color: #333;
  font-weight: 500;
}
.sm-dropdown-toggle {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  padding: 15px 0;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
}
.sm-dropdown-menu {
  display: none;
  list-style: none;
  padding-left: 20px;
  background: #f9f9f9;
}
.sm-dropdown.active .sm-dropdown-menu {
  display: block;
}


.mini-about-section {
  padding: 100px 0;
  background-color: #fff;
  text-align: center;
}


.mini-about-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}


.sub-heading {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #999;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
}


.main-heading {
  font-size: 36px;
  color: #1a3a5f;
  font-weight: 800;
  margin-bottom: 25px;
  line-height: 1.3;
}


.description {
  font-size: 17px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 40px;
}


.read-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #1a3a5f;
  font-weight: 700;
  font-size: 16px;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
  padding-bottom: 5px;
}

.read-more-btn i {
  font-size: 14px;
  transition: transform 0.3s ease;
}


.read-more-btn:hover {
  color: #d93025;
  border-bottom-color: #d93025;
}

.read-more-btn:hover i {
  transform: translateX(5px);
}


@media (max-width: 768px) {
  .mini-about-section {
    padding: 60px 0;
  }
  .main-heading {
    font-size: 28px;
  }
  .description {
    font-size: 15px;
  }
}


.horizontal-services {
  padding: 80px 0;
  background-color: #ffffff;
  overflow: hidden;
}


.horizontal-services .section-header {
  display: block;
  text-align: center;
  margin-bottom: 50px;
  padding: 0 20px;
}


.sub-heading {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #999;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}


.horizontal-services .main-heading {
  margin: 0;
  font-size: 36px;
  color: #1a3a5f;
  font-weight: 800;
}


.services-track {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 20px 20px 50px 20px;

 
  scrollbar-width: none;
  -ms-overflow-style: none;

 
  scroll-snap-type: x mandatory;
  scroll-padding: 0 24px;
}

.services-track::-webkit-scrollbar {
  display: none;
}


.slider-controls-bottom {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 10px;
}

.slider-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid #1a3a5f;
  background: transparent;
  color: #1a3a5f;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-btn:hover {
  background: #1a3a5f;
  color: #fff;
  transform: scale(1.1);
}


.h-card {
  flex: 0 0 340px;
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  border: 1px solid #f0f0f0;

 
  scroll-snap-align: center;
  scroll-snap-stop: always;
}

.h-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.h-card-img {
  height: 220px;
  width: 100%;
  overflow: hidden;
}

.h-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
 
  image-rendering: -webkit-optimize-contrast;

 
  filter: contrast(1.02) saturate(1.05);

 
  transform: translateZ(0);
  backface-visibility: hidden;

 
  -webkit-font-smoothing: antialiased;
}

.h-card:hover .h-card-img img {
  transform: scale(1.1);
}

.h-card-body {
  padding: 30px;
  position: relative;
  text-align: left;
}

.h-card-body .icon {
  font-size: 28px;
  color: #d93025;
  margin-bottom: 20px;
  display: block;
}

.h-card-body h3 {
  font-size: 22px;
  color: #1a3a5f;
  margin-bottom: 15px;
  font-weight: 700;
}

.h-card-body p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
}


@media (max-width: 768px) {
  .h-card {
    flex: 0 0 300px;
  }
  .slider-controls-bottom {
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .h-card {
    flex: 0 0 85vw;
    scroll-snap-align: center;
  }
}


.stats-section {
  position: relative;
  width: 100%;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #fff;
  margin-top: 0;
}


.stats-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}


.stats-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 2;
}


.relative-z {
  position: relative;
  z-index: 3;
  width: 100%;
}


.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}


.stat-item {
  padding: 20px;
}


.stat-icon {
  font-size: 40px;
  color: #fff;
  margin-bottom: 15px;
  display: block;
}


.counter {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 10px;
  color: #fff;
  font-family: "Segoe UI", sans-serif;
}


.stat-label {
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.9;
}


@media (max-width: 992px) {
  .stats-section {
    height: auto;
    padding: 60px 0;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media (max-width: 576px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
}


.site-footer {
  background-color: #050e17;
  color: #b0b8c1;
  padding-top: 70px;
  font-size: 15px;
  margin-top: 5px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 50px;
}


.footer-brand {
  color: #fff;
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: 1px;
}


.footer-col h4 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 25px;
  font-weight: 700;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 3px;
  background-color: #d93025;
  border-radius: 2px;
}

.footer-desc {
  line-height: 1.6;
  margin-bottom: 25px;
  max-width: 300px;
}


.social-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
  color: white;
  padding: 10px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: transform 0.3s;
}

.social-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(220, 39, 67, 0.4);
}

.social-link i {
  font-size: 18px;
}


.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #b0b8c1;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-block;
}

.footer-links a:hover {
  color: #fff;
  transform: translateX(5px);
  text-decoration: underline;
}


.footer-contact {
  list-style: none;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

.footer-contact i {
  color: #d93025;
  font-size: 18px;
  margin-top: 3px;
}

.footer-contact a {
  color: #b0b8c1;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-contact a:hover {
  color: #fff;
}


.footer-bottom {
  background-color: #02060a;
  padding: 20px 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
  font-size: 14px;
  opacity: 0.7;
}


@media (max-width: 992px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 576px) {
  .footer-top {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-col h4::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-contact li {
    justify-content: center;
  }
}



.footer-top .footer-col:first-child {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}


.footer-top .footer-col:first-child h4::after {
  left: 50%;
  transform: translateX(-50%);
}


@media (max-width: 576px) {
  .footer-top .footer-col:first-child {
    align-items: center;
    text-align: center;
  }
}


.h-card,
.h-card-img img,
.service-card,
.stats-section,
.hero-section {
 
  will-change: transform, opacity;

 
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;
}


.lang-switch {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-left: 15px;
  padding-left: 15px;
  border-left: 1px solid #eee;
  height: 30px;
}

.lang-switch a {
  font-size: 13px !important;
  font-weight: 700 !important;
  padding: 0 !important;
  border: none !important;
  color: #999 !important;
}


.lang-switch a.lang-active {
  color: #1a3a5f !important;
}


.lang-switch a:hover {
  color: #d93025 !important;
}

.lang-switch .divider {
  font-size: 12px;
  color: #ccc;
  margin-top: -2px;
}


.mobile-lang {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
  padding-top: 20px !important;
  border-top: 1px solid #eee;
  border-bottom: none !important;
}

.mobile-lang a {
  font-size: 16px;
  font-weight: 700;
  color: #999;
}

.mobile-lang .m-lang-active {
  color: #1a3a5f;
  text-decoration: underline;
}

.mobile-lang .m-divider {
  color: #ccc;
}


