@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/* ========================== CSS Variables ========================== */
:root {
  --main-color: #EF7824;
  --main-color-two: #071D37;
  --top-bar-height: 44px;
  --header-height: 76px;
  --white: #ffffff;
  --text-gray: #666;
  --text-dark: #1a1a2e;
  --border-gray: #e5e7eb;
  --shadow-sm: 0 2px 15px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 20px 40px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 25px 60px rgba(0, 0, 0, 0.2);
  --transition-base: all 0.3s ease;
  --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========================== Global Reset ========================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


.top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, #ff512f, #f09819);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  cursor: pointer;
  font-size: 22px;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.8);
  transition: .4s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, .25);
  z-index: 999;
}

.top-btn.show {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

/* rocket */
.top-btn i {
  transform: rotate(-45deg);
  transition: .3s;
}

/* hover effect */
.top-btn:hover {
  transform: translateY(-6px) scale(1.05);
}

.top-btn:hover i {
  transform: rotate(-45deg) translateY(-3px);
}

/* mobile */
@media(max-width:768px) {
  .top-btn {
    width: 45px;
    height: 45px;
    font-size: 18px;
    bottom: 20px;
    right: 20px;
  }
}

html {
  overflow-x: hidden !important;
}

body {
  font-family: "Montserrat", sans-serif;
  overflow-x: hidden;
  padding-top: 120px;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
  padding: 0;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ========================== Utility Classes ========================== */

/* Buttons Base */
.btn-base {
  display: inline-block;
  padding: 12px 30px;
  border: none;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-base);
  text-align: center;
}

.btn-primary {
  background: var(--main-color);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--main-color-two);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(239, 120, 36, 0.3);
}

.btn-gradient {
  background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

.btn-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(255, 107, 53, 0.4);
}

/* Card Base */
.card-base {
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  transition: var(--transition-smooth);
  overflow: hidden;
}

.card-base:hover {
  box-shadow: var(--shadow-lg);
}

/* Title Base */
.title-base {
  font-weight: 700;
  color: var(--main-color-two);
  line-height: 1.3;
}

.title-lg {
  font-size: 35px;
  margin-bottom: 15px;
}

.title-md {
  font-size: 28px;
  margin-bottom: 15px;
}

.title-sm {
  font-size: 20px;
  margin-bottom: 12px;
}

/* Overlay Base */
.overlay-base {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: var(--transition-base);
}

/* Text Styles */
.text-base {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-gray);
}

.text-sm {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-gray);
}

/* Section Spacing */
.section-spacing {
  padding: 80px 0;
}

.section-spacing-sm {
  padding: 60px 0;
}

/* ========================== Custom Scrollbar ========================== */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: var(--main-color-two);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--main-color) 0%, #ff9054 100%);
  border-radius: 0px;
  border: 2px solid var(--main-color-two);
  transition: var(--transition-base);
}

/* ========================== Sidebar Styles ========================== */
.sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-base);
}

.sidebar-overlay.active {
  opacity: 1;
  visibility: visible;
}

.sidebar-panel {
  position: fixed;
  top: 0;
  right: -400px;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background: var(--white);
  z-index: 9999;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  overflow-x: hidden;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}

.sidebar-panel.active {
  right: 0;
}

body.sidebar-open {
  overflow: hidden !important;
  position: fixed;
  width: 100%;
  height: 100vh;
}

.sidebar-header {
  padding: 30px;
  border-bottom: 1px solid var(--border-gray);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  background: var(--white);
  z-index: 10;
}

.sidebar-logo img {
  max-width: 150px;
}

.sidebar-close {
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-base);
  padding: 0;
}

.sidebar-close:hover {
  background: #f3f4f6;
  transform: rotate(90deg);
}

.sidebar-close img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.sidebar-content {
  padding: 30px;
  padding-bottom: 50px;
}

.sidebar-title {
  font-size: 18px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 10px;
}

.sidebar-subtitle {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 30px;
}

.sidebar-info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  padding: 5px;
  border-radius: 8px;
  transition: var(--transition-base);
}

.sidebar-info-icon {
  width: 20px;
  height: 20px;
  min-width: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 5px;
}

.sidebar-info-icon i {
  color: var(--main-color);
  font-size: 16px;
}

.sidebar-info-content h6 {
  font-size: 14px;
  font-weight: 600;
  color: #374151;
  margin-bottom: 5px;
}

.sidebar-info-content p {
  font-size: 13px;
  color: #6b7280;
  margin: 0;
  line-height: 1.5;
}

.sidebar-newsletter {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid var(--border-gray);
}

.sidebar-newsletter h4 {
  font-size: 18px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 15px;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.newsletter-input {
  padding: 12px 15px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 14px;
  outline: none;
  transition: var(--transition-base);
}

.newsletter-input:focus {
  border-color: var(--main-color);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

/* ========================== Top Bar ========================== */
.top-bar {
  background-color: var(--main-color);
  color: var(--white);
  padding: 10px 0;
  font-size: 0.875rem;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition-base);
}

.top-bar-left,
.top-bar-right {
  display: flex;
  align-items: center;
  gap: 30px;
}

.top-bar-right {
  justify-content: flex-end;
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-bar-item i {
  font-size: 0.9rem;
}

.top-bar-item span {
  font-weight: 400;
}

/* ========================== Main Header ========================== */
.main-header {
  background-color: var(--white);
  box-shadow: var(--shadow-sm);
  padding: 0;
  position: fixed;
  top: var(--top-bar-height);
  left: 0;
  width: 100%;
  z-index: 99999;
  transition: var(--transition-base);
}

.main-header .navbar {
  padding: 8px 0;
}

.main-header.sticky {
  top: 0;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

body.scrolled {
  padding-top: 76px;
}

/* ========================== Logo ========================== */
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--main-color-two) !important;
  transition: var(--transition-base);
}

.navbar-brand img {
  width: 100%;
  height: 35px;
  object-fit: contain;
}

/* ========================== Navigation Menu ========================== */
.navbar-nav {
  gap: 5px;
}

.nav-link {
  color: var(--main-color-two) !important;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 8px 18px !important;
  transition: var(--transition-base);
  position: relative;
  display: flex;
  align-items: center;
  gap: 5px;
}

.nav-link::before {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--main-color);
  transition: width 0.3s ease;
}

.nav-link:hover::before,
.nav-link.active::before {
  width: 60%;
}

.nav-link:hover,
.nav-link.active {
  color: var(--main-color) !important;
}

/* ========================== Dropdown ========================== */
.dropdown-arrow {
  font-size: 0.7rem;
  margin-left: 3px;
  transition: transform 0.3s ease;
}

.nav-item.dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}

.nav-item.dropdown {
  position: relative;
}

.dropdown-menu {
  border: none;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  border-radius: 12px;
  padding: 15px 0;
  margin-top: 15px;
  min-width: 220px;
  display: block;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-15px);
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  background: var(--white);
  border-top: 3px solid var(--main-color);
}

.nav-item.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  padding: 12px 25px;
  color: var(--main-color-two);
  font-size: 0.95rem;
  font-weight: 500;
  transition: var(--transition-base);
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}

.dropdown-item::before {
  content: '\f105';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  color: var(--main-color);
  font-size: 0.9rem;
  opacity: 0;
  transform: translateX(-10px);
  transition: var(--transition-base);
}

.dropdown-item:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.dropdown-item:hover {
  background: linear-gradient(90deg, rgba(239, 120, 36, 0.15) 0%, rgba(239, 120, 36, 0.05) 100%);
  color: var(--main-color);
  padding-left: 30px;
  border-radius: 8px;
  margin: 0 10px;
}

/* ========================== Toggle Button ========================== */
.nav-toggle-btn {
  background: none;
  border: none;
  width: 40px;
  height: 35px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0;
  margin-left: 15px;
  transition: var(--transition-base);
}

.nav-toggle-btn img {
  border-radius: 2px;
  transition: var(--transition-base);
  cursor: pointer;
}

.nav-toggle-btn:hover img {
  opacity: 0.8;
}

/* ========================== Mobile Menu Button ========================== */
.navbar-toggler {
  border: 2px solid var(--main-color);
  padding: 8px 12px;
  border-radius: 5px;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23EF7824' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ========================== Hero Section ========================== */
.hero-wrapper {
  position: relative;
  margin-bottom: 130px;
}

.hero-slider {
  height: 80vh;
  min-height: 535px;
  position: relative;
  margin-top: -20px;
}

.hero-slide {
  height: 80vh;
  min-height: 535px;
  position: relative;
  display: flex !important;
  align-items: center;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(31, 36, 77, 0.66);
  z-index: 1;
}

.hero-slide .container {
  position: relative;
  z-index: 2;
}

.hero-title,
.hero-subtitle {
  font-size: 3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.2;
}

.hero-subtitle {
  margin-bottom: 20px;
}

.hero-description {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 30px;
  line-height: 1.6;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-btn {
  background-color: var(--main-color);
  border: none;
  padding: 12px 35px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 12px;
  transition: var(--transition-base);
  text-transform: capitalize;
  position: relative;
  overflow: hidden;
  z-index: 1;
  color: var(--white);
  cursor: pointer;
}

.hero-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--main-color-two);
  transition: left 0.5s ease;
  z-index: -1;
  border-radius: 12px;
}

.hero-btn:hover::before {
  left: 0;
}

.hero-btn:hover {
  transform: translateY(-3px);
  color: var(--white);
}

/* ========================== Features Container ========================== */
.features-container {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  transform: translateY(50%);
  z-index: 20;
  padding: 0 15px;
}

.features-container .row {
  margin: 0 -15px;
}

/* ========================== Feature Card ========================== */
.feature-card,
.feature-card_one,
.feature-card_tow {
  background: var(--white);
  padding: 25px;
  display: flex;
  align-items: flex-start;
  gap: 25px;
  box-shadow: 0 0 48px rgba(0, 0, 0, 0.12);
  position: relative;
  transition: var(--transition-smooth);
  animation: floatCard 4s ease-in-out infinite;
}

.feature-card {
  border-top-right-radius: 44px;
}

.feature-card_tow {
  border-top-left-radius: 44px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  animation-delay: 1s;
}

.feature-card_one {
  animation-delay: 0.5s;
}

.feature-card:hover,
.feature-card_one:hover,
.feature-card_tow:hover {
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.18);
  animation: none;
}

@keyframes floatCard {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }

  100% {
    transform: translateY(0);
  }
}

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.feature-content {
  flex: 1;
}

.feature-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--main-color-two);
  margin-bottom: 12px;
}

.feature-text {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.6;
  margin: 0;
}

/* ========================== About Section ========================== */
.about-section {
  position: relative;
  margin-top: 60px;
}

.about-section .image-block {
  position: relative;
  margin-bottom: 30px;
}

.about-section .image-one {
  position: relative;
  margin-left: 130px;
  box-shadow: rgba(0, 0, 0, 0.27) 0px 5px 20px 0px;
  display: inline-block;
  border-radius: 6px;
}

.about-section .image-one .image-box {
  overflow: hidden;
  border-radius: 6px;
}

.about-section .image-one:hover img {
  transform: scale(1.1);
}

.about-section .image-one img {
  border-radius: 6px;
  transition: transform 1s ease;
  width: 100%;
  height: auto;
}

.about-section .image-two {
  position: relative;
  margin-top: -180px;
  box-shadow: rgba(0, 0, 0, 0.27) 0px 5px 20px 0px;
  display: inline-block;
  border-radius: 6px;
}

.about-section .image-two .image-box {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
}

.about-section .image-two img {
  border-radius: 6px;
  width: 100%;
  height: auto;
}

.about-section .logo_main_img {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 130px;
  height: 180px;
  line-height: 118px;
  text-align: center;
  animation: spin 9s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.sec-title {
  margin-bottom: 30px;
}

.sec-title h2 {
  position: relative;
  display: block;
  font-size: 35px;
  line-height: 1.3em;
  font-weight: 700;
  text-transform: capitalize;
  letter-spacing: -0.5px;
  color: var(--main-color-two);
  margin-bottom: 15px;
}

.sec-title .text-decoration {
  margin-bottom: 20px;
}

.sec-title .text-decoration img {
  max-width: 100px;
}

.about-section .text {
  margin-top: 10px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  color: var(--main-color-two);
  margin-bottom: 30px;
}

.about-section .author-box {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding-top: 10px;
  gap: 20px;
}

.about-section .signature img {
  max-width: 150px;
  height: auto;
}

.about-section .author-info {
  position: relative;
}

.about-section .author-info h4 {
  position: relative;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--main-color-two);
}

.about-section .author-info h5 {
  position: relative;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 0;
  color: var(--main-color-two);
}

/* ========================== Developing Leaders Section ========================== */
.developing_leaders .row {
  margin-top: 120px !important;
}

.developing_leaders .main-title {
  font-size: 32px;
  font-weight: 600;
  color: var(--main-color-two);
  line-height: 1.3;
  margin-bottom: 3rem;
}

.developing_leaders .service-card {
  position: relative;
  background: white;
  border-radius: 15px;
  overflow: visible;
  box-shadow: var(--shadow-md);
  transition: var(--transition-smooth);
  cursor: pointer;
  padding-top: 0;
}

.developing_leaders .service-card:hover {
  box-shadow: var(--shadow-lg);
}

.developing_leaders .card-image {
  position: absolute;
  top: -80px;
  left: 20px;
  right: 20px;
  width: calc(100% - 40px);
  height: 220px;
  overflow: hidden;
  border-radius: 7px;
  z-index: 2;
  transition: all 0.5s ease;
}

.developing_leaders .service-card:hover .card-image {
  transform: translateY(-25px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.developing_leaders .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.developing_leaders .service-card:hover .card-image img {
  transform: scale(1.1);
}

.developing_leaders .icon-badge {
  position: absolute;
  bottom: 15px;
  right: 0px;
  width: 70px;
  height: 70px;
  background-image: url("../img/Rectangle.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: var(--transition-base);
  display: flex;
  align-items: center;
  justify-content: center;
}

.developing_leaders .icon-badge img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.developing_leaders .service-card:hover .icon-badge img {
  transform: rotate(90deg) scale(1.1);
}

.developing_leaders .card-content {
  padding: 160px 20px 25px 20px;
  text-align: center;
}

.developing_leaders .service-label {
  color: #ff6b35;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.developing_leaders .service-title {
  color: #1a1a2e;
  font-size: 22px;
  font-weight: 700;
  margin: 0;
}

.developing_leaders .hover-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(31, 36, 77, 0.95), rgba(255, 107, 53, 0.85));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 30px;
  z-index: 9999999;
  border-radius: 15px;
}

.developing_leaders .service-card:hover .hover-overlay {
  opacity: 1;
  visibility: visible;
  backdrop-filter: blur(10px);
}

.developing_leaders .hover-content {
  text-align: center;
  color: white;
  transform: translateY(30px) scale(0.9);
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  opacity: 0;
  position: relative;
}

.developing_leaders .service-card:hover .hover-content {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.developing_leaders .hover-text {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.98);
  font-weight: 400;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.developing_leaders .hover-arrow {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #ff6b35, #ff8c42);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 40px rgba(255, 107, 53, 0.4);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.developing_leaders .hover-arrow::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.developing_leaders .service-card:hover .hover-arrow::before {
  width: 100%;
  height: 100%;
}

.developing_leaders .service-card:hover .hover-arrow {
  transform: scale(1.15) rotate(90deg);
  box-shadow: 0 15px 50px rgba(255, 107, 53, 0.6);
}

.developing_leaders .hover-arrow svg {
  position: relative;
  z-index: 1;
  transition: var(--transition-base);
}

.developing_leaders .service-card:hover .hover-arrow svg {
  transform: translateX(3px);
}

.developing_leaders .hover-content::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #fff, transparent);
  opacity: 0;
  transition: all 0.5s ease;
}

.developing_leaders .service-card:hover .hover-content::before {
  opacity: 1;
  top: -10px;
}

.developing_leaders .view-more-btn {
  padding: 15px 40px;
  background: white;
  color: var(--main-color);
  border: none;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-base);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.developing_leaders .view-more-btn:hover {
  background: linear-gradient(135deg, #ff6b35, #ff8c42);
  color: white;
  border-color: #ff6b35;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

/* ========================== Statistics Section ========================== */
.statistics_section {
  background-image: url(../img/bac.png);
  padding: 30px 0;
}

.statistics_section .stat-card {
  background: var(--white);
  border-radius: 16px;
  padding: 22px;
  box-shadow: var(--shadow-md);
  transition: var(--transition-smooth);
  cursor: pointer;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.statistics_section .stat-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.statistics_section .stat-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 10px;
}

.statistics_section .stat-icon {
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition-base);
}

.statistics_section .stat-icon img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  transition: var(--transition-base);
}

.statistics_section .stat-label {
  font-size: 16px;
  font-weight: 500;
  color: #000;
}

.statistics_section .stat-number {
  font-size: 48px;
  font-weight: 700;
  color: var(--main-color);
  line-height: 1;
  margin: 10px 0;
  letter-spacing: -2px;
}

.statistics_section .stat-description {
  font-size: 14px;
  color: #000;
  margin-top: auto;
  font-weight: 600;
}

/* ========================== Why Choose Us Section ========================== */
.why-choose-us-section {
  background-image: url("../img/lin_main.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 100px 0;
  position: relative;
}

.why-choose-us-section .side-image {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 5;
  max-width: 700px;
}

.why-choose-us-section .side-image img {
  width: 100%;
  height: auto;
  display: block;
}

.why-choose-us-section .container {
  position: relative;
  z-index: 10;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.why-choose-us-section .row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.why-choose-us-section .col-lg-6 {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 0 15px;
}

.why-choose-us-section .col-md-6 {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 0 15px;
}

.why-choose-us-section .order-lg-2 {
  order: 2;
}

.why-choose-us-section .sec-title.light h2 {
  font-size: 36px;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
  line-height: 1.3;
}

.why-choose-us-section .text-decoration {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 40px;
}

.why-choose-us-section .text-decoration .left {
  width: 50px;
}

.why-choose-us-section .text-decoration .right {
  width: 30px;
}

.why-choose-us-section .features-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
  position: relative;
  padding-left: 30px;
}

.why-choose-us-section .features-list li:nth-child(1)::after,
.why-choose-us-section .features-list li:nth-child(2)::after,
.why-choose-us-section .features-list li:nth-child(3)::after {
  content: '';
  position: absolute;
  left: 12px;
  top: 30px;
  width: 2px;
  height: 60px;
  background: rgba(255, 255, 255, 0.3);
  z-index: -1;
}

.single-feature-item {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
}

.single-feature-item::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  background: transparent;
  transition: var(--transition-base);
}

.single-feature-item:hover::before {
  border-color: #ff6b35;
  background: rgba(255, 107, 53, 0.1);
}

.why-choose-us-section .single-feature-item h5 {
  font-size: 20px;
  font-weight: 600;
  color: white;
  margin-bottom: 10px;
}

.why-choose-us-section .single-feature-item .text {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  display: block;
}

.why-choose-us-section .contact-form {
  background: white;
  padding: 45px 40px 35px;
  border-radius: 20px;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 20;
  transform: translateY(250px);
}

.why-choose-us-section .contact-form h2 {
  font-size: 26px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 30px;
  line-height: 1.3;
}

.why-choose-us-section .contact-form .form-control {
  border: none;
  border-bottom: 2px solid #e0e0e0;
  border-radius: 0;
  padding: 12px 0;
  font-size: 14px;
  color: #333;
  background: transparent;
  height: auto;
  transition: border-color 0.3s ease;
  width: 100%;
}

.why-choose-us-section .contact-form .form-control:focus {
  border-bottom-color: #ff6b35;
  box-shadow: none;
  outline: none;
}

.why-choose-us-section .contact-form .form-control::placeholder {
  color: #999;
}

.why-choose-us-section .contact-form select.form-control {
  cursor: pointer;
}

.why-choose-us-section .theme-btn {
  display: inline-block;
  padding: 13px 30px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: var(--transition-base);
}

.why-choose-us-section .btn-style-two {
  background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
  color: white;
  box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
  width: 100%;
}

.why-choose-us-section .btn-style-two:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(255, 107, 53, 0.4);
}

.why-choose-us-section .btn-style-three {
  background: transparent;
  border: 2px solid #e0e0e0;
  color: #666;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 20px;
  border-radius: 50px;
  font-size: 14px;
  cursor: pointer;
  transition: var(--transition-base);
}

.why-choose-us-section .btn-style-three:hover {
  border-color: #ff6b35;
  color: #ff6b35;
}

.why-choose-us-section .btn-style-three i {
  font-size: 16px;
}

.why-choose-us-section .form-group {
  margin-bottom: 20px;
}

/* ========================== Newsletter & Blog Section ========================== */
.container_main_slider {
  margin-top: 80px;
  background-color: #EBEBEB;
  padding: 0;
  height: 300px;
}

.container_main_slider .container-fluid {
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  padding: 0;
  gap: 10px;
}

.container_main_slider .newsletter-section {
  position: relative;
  background-image: url(../img/mn.jpg);
  background-size: contain;
  background-repeat: no-repeat;
  padding: 50px 40px;
  color: white;
  width: 420px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  margin-left: 10px;
}

.container_main_slider .newsletter-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #031a35e0;
  z-index: 1;
}

.container_main_slider .newsletter-section * {
  position: relative;
  z-index: 2;
}

.container_main_slider .newsletter-content h2 {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.3;
}

.container_main_slider .newsletter-content .subtitle {
  font-size: 16px;
  color: #e0e0e0;
}

.container_main_slider .decorative-line img,
.container_main_slider .decorative-line_tow img {
  width: 60px;
  border-radius: 2px;
  display: flex;
  align-items: center;
  margin-bottom: 10%;
}

.container_main_slider .benefits {
  margin-bottom: 20px;
}

.container_main_slider .benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
  font-size: 14px;
}

.container_main_slider .benefit-item .icon img {
  width: 24px;
  height: 24px;
}

.newsletter-form {
  display: flex;
  gap: 10px;
}

.input-wrapper {
  position: relative;
  flex: 1;
}

.input-wrapper input {
  width: 100%;
  padding: 10px 10px 10px 40px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 14px;
}

.input-wrapper .input-icon {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  z-index: 99;
}

.newsletter-form button {
  padding: 10px 20px;
  background-color: var(--main-color);
  border: none;
  border-radius: 50px;
  color: white;
  font-weight: bold;
  cursor: pointer;
  transition: var(--transition-base);
  width: 100%;
  max-width: 50%;
  margin-top: 10px;
}

.newsletter-form button:hover {
  background-color: var(--main-color-two);
}

.container_main_slider .blog-posts-section {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.container_main_slider .section-header {
  margin-bottom: 10px;
  margin-left: 25px;
  padding-top: 30px;
  height: 100px;
}

.container_main_slider .section-header h2 {
  font-size: 28px;
  font-weight: 700;
  color: #0a2540;
  margin-bottom: 10px;
}

.container_main_slider .blog-slider {
  background-color: var(--white);
  box-shadow: var(--shadow-md);
  padding: 17px 0px 0 0px;
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
  overflow: hidden;
  margin-left: 20px;
  margin-top: 22px;
}

.container_main_slider .blog-slider .slick-list {
  margin: 0 -8.5px;
}

.container_main_slider .blog-slider .slick-track {
  display: flex !important;
  gap: 20px;
}

.container_main_slider .blog-slider .slick-slide {
  height: auto;
  display: flex !important;
  margin: 0 8.5px;
}

.container_main_slider .blog-card {
  outline: none;
  position: relative;
}

.container_main_slider .blog-card::before {
  content: '';
  position: absolute;
  right: -20.5px;
  top: 7px;
  bottom: 28px;
  width: 1px;
  background: #E1E1E1;
  z-index: 1;
}

.container_main_slider .blog-card:last-child::before {
  display: none;
}

.container_main_slider .blog-card-inner {
  height: 280px;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.container_main_slider .blog-image {
  position: relative;
  width: 100%;
  height: 160px;
  overflow: hidden;
  flex-shrink: 0;
}

.container_main_slider .blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  border-radius: 16px;
}

.container_main_slider .blog-category {
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgba(59, 130, 246, 0.9);
  color: white;
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.container_main_slider .blog-content {
  padding: 20px 10px;
}

.container_main_slider .blog-title {
  font-size: 13px;
  font-weight: 600;
  color: #0a2540;
  line-height: 1.4;
  padding-bottom: 10px;
  overflow: hidden;
  border-bottom: 1.5px dashed #999999;
}

.container_main_slider .blog-link {
  color: #0a2540;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: color 0.3s ease;
  margin-top: auto;
}

.container_main_slider .blog-link:hover {
  color: #ff6b35;
}

.container_main_slider .blog-link::after {
  content: '→';
  transition: transform 0.3s ease;
}

.container_main_slider .blog-link:hover::after {
  transform: translateX(3px);
}

/* ========================== Projects Section ========================== */
.Projects {
  margin-top: 140px !important;
}

.Projects .header {
  text-align: center;
  margin-bottom: 23px;
}

.Projects .header h1 {
  color: #1a3b5c;
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 10px;
}

.Projects .header .subtitle {
  color: #1a3b5c;
  font-size: 20px;
  margin-bottom: 15px;
}

.Projects .header .divider {
  display: flex;
  align-items: center;
  justify-content: center;
}

.Projects .projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.Projects .project-card {
  position: relative;
  background: linear-gradient(192.04deg, #BEBEBE 0%, #F4F4F4 100%);
  border-radius: 20px;
  padding: 30px;
  cursor: pointer;
  transition: var(--transition-smooth);
  overflow: hidden;
  aspect-ratio: 1.2;
}

.Projects .project-card::after {
  position: absolute;
  content: "";
  opacity: 0;
  right: 50%;
  bottom: 80px;
  width: 100%;
  height: 100%;
  transform: rotate(-30deg) scale(0.8);
  border-radius: 25px;
  transition: all 0.5s ease 0s;
  background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
  z-index: 3;
}

.Projects .project-card::before {
  position: absolute;
  content: "";
  opacity: 0;
  left: 0px;
  right: 0px;
  bottom: 0px;
  top: 0px;
  background: #001F42F2;
  transition: all 0.5s ease 0s;
  z-index: 1;
}

.Projects .project-card:hover::after,
.Projects .project-card:hover::before {
  opacity: 0.9;
}

.Projects .card-content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.Projects .monitor-wrapper {
  width: 100%;
  max-width: 200px;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  position: relative;
}

.Projects .monitor-wrapper img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.Projects .project-card:hover .monitor-wrapper {
  opacity: 0;
  transform: scale(0.8);
}

.Projects .business-card {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 85%;
  height: 70%;
  background-color: transparent;
  border-radius: 15px;
  opacity: 0;
  transition: var(--transition-smooth);
  overflow: visible;
  z-index: 4;
  pointer-events: none;
}

.Projects .project-card:hover .business-card {
  opacity: 1;
  pointer-events: auto;
}

.Projects .card-logo {
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 8px;
}

.Projects .card-logo img {
  width: 120px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.Projects .logo-text {
  font-size: 16px;
  font-weight: 600;
  color: white;
}

.Projects .card-circle {
  position: absolute;
  top: 0px;
  right: -10px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition-base);
  z-index: 5;
  background-color: var(--white);
}

.Projects .card-circle img {
  width: 20px;
  height: 20px;
}

.Projects .card-company {
  position: absolute;
  bottom: 20px;
  right: 20px;
  font-size: 17px;
  font-weight: 500;
  z-index: 5;
  color: white;
}

.Projects .project-card.special-card {
  background: #1a3b5c;
}

.Projects .check-more-btn {
  width: 150px;
  height: 150px;
  background-color: #ff6b35;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  line-height: 1.4;
  transition: var(--transition-base);
}

.Projects .project-card.special-card:hover .check-more-btn {
  transform: scale(1.1);
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.5);
}

/* ========================== Work Process Section ========================== */
.our_basic_work_process {
  margin-top: 60px;
}

.header_our_basic_work_process {
  padding: 20px 20px;
}

.header_our_basic_work_process h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #222;
}

.header_our_basic_work_process .divider {
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.header_our_basic_work_process .divider img {
  width: 50px;
  height: auto;
}

.header_our_basic_work_process p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
}

.grid_main_process {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.card_grid_img_lin {
  background-color: var(--white);
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s, box-shadow 0.3s;
}

.img_grid {
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  margin: 0 auto;
  text-align: center;
}

.img_grid img {
  width: 120px;
  margin: 0 auto;
}

.title_card_grid .step {
  color: var(--main-color);
  font-weight: 700;
  font-size: 19px;
  display: inline-block;
  position: relative;
  padding: 0 15px;
}

.title_card_grid .step::before,
.title_card_grid .step::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 60px;
  height: 1px;
  background-color: #E1E1E1;
  transform: translateY(-50%);
}

.title_card_grid .step::before {
  left: -60px;
}

.title_card_grid .step::after {
  right: -60px;
}

.title_card_grid h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #222;
}

.title_card_grid p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

/* ========================== Map Section ========================== */
.map_main {
  margin-top: 220px;
}

.map_main .location-container {
  position: relative;
  width: 100%;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  display: flex;
  height: 400px;
}

.map_main .map-section {
  flex: 1;
  position: relative;
  background: #e8f0f5;
}

.map_main #map {
  width: 100%;
  height: 100%;
}

.map_main .map-header {
  position: absolute;
  top: 20px;
  right: 20px;
  background: white;
  padding: 12px 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  cursor: pointer;
  transition: var(--transition-base);
}

.map_main .map-header:hover {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}

.map_main .map-header h3 {
  font-size: 16px;
  color: #333;
  margin-bottom: 4px;
  font-weight: 600;
}

.map_main .map-header p {
  font-size: 13px;
  color: #666;
  display: flex;
  align-items: center;
  gap: 6px;
}

.map_main .map-header p::before {
  content: "→";
  font-size: 14px;
  color: #4285f4;
}

.map_main .info-section {
  position: absolute;
  right: 10%;
  top: 0;
  transform: translate(-50%, -50%);
  width: 320px;
  background: linear-gradient(135deg, #ff8c42 0%, #ff6b35 100%);
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: white;
  z-index: 10;
}

.map_main .info-section h2 {
  font-size: 28px;
  margin-bottom: 8px;
  font-weight: 600;
}

.map_main .info-section .location {
  font-size: 16px;
  margin-bottom: 35px;
  opacity: 0.95;
}

.map_main .info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 25px;
  font-size: 14px;
}

.map_main .info-item svg {
  width: 20px;
  height: 20px;
  fill: white;
  flex-shrink: 0;
}

.map_main .info-item .text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.info-item .label {
  font-size: 12px;
  opacity: 0.9;
}

.map_main .info-item .value {
  font-size: 14px;
  font-weight: 500;
}

.map_main .get-directions {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 24px;
  border-radius: 6px;
  color: white;
  text-decoration: underline;
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition-base);
  cursor: pointer;
}

/* ========================== Responsive Styles ========================== */

/* Extra Large Desktops (1600px+) */
@media (min-width: 1600px) {
  .newsletter-section {
    width: 550px !important;
  }

  .container {
    max-width: 1400px;
  }
}

/* Large Desktops (1200px - 1599px) */
@media (max-width: 1599px) and (min-width: 1200px) {
  .hero-wrapper {
    margin-bottom: 150px;
  }
}

/* Desktops and Large Tablets (992px - 1199px) */
@media (max-width: 1199px) {
  .hero-wrapper {
    margin-bottom: 200px;
  }

  .why-choose-us-section .contact-form {
    margin-left: -50px;
  }

  .container_main_slider .newsletter-section {
    width: 380px;
  }

  .developing_leaders .card-image {
    height: 200px;
  }
}

/* Tablets and below (768px - 991px) */
@media (max-width: 991px) {

  /* Hide top bar on mobile */
  .top-bar {
    display: none !important;
  }

  .main-header {
    top: 0;
  }

  body.scrolled {
    padding-top: 60px;
  }

  .sidebar-panel {
    right: -500px !important;
  }

  /* Mobile menu */
  .navbar-collapse {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    max-width: 85%;
    height: 100vh;
    background: var(--white);
    padding: 80px 20px 20px 20px;
    margin: 0;
    border-radius: 0;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.2);
    transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    overflow-y: auto;
    z-index: 999;
  }

  .navbar-collapse.show {
    right: 0;
  }

  .navbar-collapse.collapsing {
    right: 0;
    transition: none;
  }

  .navbar-nav {
    gap: 0;
  }

  .nav-link {
    padding: 12px 15px !important;
    justify-content: space-between;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }

  .nav-toggle-btn {
    display: none;
  }

  .dropdown-menu {
    position: static !important;
    transform: none !important;
    box-shadow: none;
    background-color: rgba(239, 120, 36, 0.05);
    margin: 5px 0;
    padding: 5px 0;
    border: none;
    display: none;
  }

  .nav-item.dropdown:hover .dropdown-menu {
    display: none;
    opacity: 1;
    visibility: visible;
  }

  .nav-item.dropdown.show .dropdown-menu {
    display: block !important;
  }

  .dropdown-item {
    padding: 10px 20px;
  }

  .navbar-collapse::after {
    content: '\f00d';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: var(--main-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition-base);
  }

  .navbar-collapse::after:hover {
    transform: rotate(90deg);
    background: var(--main-color-two);
  }

  /* Hero section */
  .hero-wrapper {
    margin-bottom: 250px;
  }

  .hero-title,
  .hero-subtitle {
    font-size: 2.5rem;
  }

  .hero-slider,
  .hero-slide {
    min-height: 500px;
    height: 70vh;
  }

  .hero-description {
    font-size: 0.9rem;
    max-width: 600px;
  }

  .feature-card,
  .feature-card_one,
  .feature-card_tow {
    margin-bottom: 25px;
  }

  /* About section */
  .about-section .image-block {
    margin-bottom: 40px;
  }

  .about-section .image-one {
    margin-left: 80px;
  }

  .about-section .image-two {
    margin-top: -120px;
  }

  .about-section .logo_main_img {
    width: 100px;
    height: 140px;
  }

  .sec-title h2 {
    font-size: 28px;
  }

  /* Why choose us */
  .why-choose-us-section {
    padding: 60px 0;
  }

  .why-choose-us-section .side-image {
    position: relative;
    max-width: 300px;
    margin: 0 auto 40px;
  }

  .why-choose-us-section .contact-form {
    margin-left: 0;
    margin-top: 40px;
    transform: translateY(0);
  }

  .why-choose-us-section .sec-title.light h2 {
    font-size: 28px;
  }

  .why-choose-us-section .col-lg-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  /* Statistics */
  .statistics_section {
    padding: 50px 0;
  }

  .statistics_section .stat-card {
    margin-bottom: 20px;
  }

  /* Newsletter */
  .container_main_slider {
    height: auto;
    min-height: 300px;
  }

  .container_main_slider .container-fluid {
    flex-direction: column;
    gap: 20px;
  }

  .container_main_slider .newsletter-section {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
  }

  /* Projects */
  .Projects .projects-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .Projects {
    margin-top: 100px !important;
  }

  /* Work Process */
  .grid_main_process {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .our_basic_work_process {
    margin-top: 40px;
  }

  /* Map */
  .map_main {
    margin-top: 150px;
  }
}

/* Mobile devices (576px - 767px) */
@media (max-width: 767px) {
  .top-bar {
    display: none;
  }

  .main-header {
    top: 0;
  }

  body {
    padding-top: 60px;
  }

  .navbar-brand {
    font-size: 1.3rem;
  }

  .navbar-brand img {
    height: 30px;
  }

  /* Hero */
  .hero-title,
  .hero-subtitle {
    font-size: 2rem;
    line-height: 1.1;
  }

  .hero-description {
    font-size: 0.9rem;
    padding: 0 15px;
  }

  .hero-btn {
    padding: 10px 28px;
    font-size: 0.9rem;
  }

  .hero-slider,
  .hero-slide {
    min-height: 450px;
    height: 65vh;
  }

  .hero-wrapper {
    margin-bottom: 220px;
  }

  /* Features horizontal scroll */
  .features-container {
    padding: 0;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-snap-type: x mandatory;
    scroll-padding: 0 15px;
  }

  .features-container::-webkit-scrollbar {
    display: none;
  }

  .features-container .container {
    max-width: 100%;
    padding: 0;
  }

  .features-container .row {
    flex-wrap: nowrap;
    margin: 0;
    padding: 0 15px;
    gap: 15px;
  }

  .features-container .col-lg-4,
  .features-container .col-md-6 {
    flex: 0 0 85%;
    max-width: 85%;
    margin-bottom: 0;
    scroll-snap-align: start;
  }

  .feature-card,
  .feature-card_one,
  .feature-card_tow {
    padding: 30px 20px;
    margin-bottom: 0;
    height: 100%;
    min-height: 160px;
  }

  .feature-icon img {
    width: 50px;
    height: 50px;
  }

  .feature-title {
    font-size: 1.1rem;
  }

  .feature-text {
    font-size: 0.9rem;
  }

  /* About */
  .about-section .image-block {
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    min-height: 320px;
  }

  .about-section .image-one {
    margin-left: 60px;
    margin-bottom: 0;
    max-width: 300px;
  }

  .about-section .image-two {
    margin-top: -100px;
    max-width: 260px;
  }

  .about-section .logo_main_img {
    width: 80px;
    height: 100px;
    position: absolute;
    left: 0;
    top: 0;
  }

  .sec-title h2 {
    font-size: 24px;
  }

  .about-section .text {
    font-size: 15px;
  }

  .about-section .author-box {
    justify-content: center;
    text-align: center;
  }

  /* Statistics */
  .statistics_section {
    padding: 50px 0;
  }

  .statistics_section .stat-card {
    margin-bottom: 20px;
  }

  .statistics_section .stat-number {
    font-size: 42px;
  }

  .statistics_section .stat-header {
    gap: 12px;
  }

  /* Developing leaders */
  .developing_leaders .main-title {
    font-size: 1.8rem;
  }

  .developing_leaders .service-card {
    margin-bottom: 100px;
  }

  .developing_leaders .card-image {
    height: 180px;
  }

  .developing_leaders .hover-text {
    font-size: 1rem;
    margin-bottom: 20px;
  }

  .developing_leaders .hover-arrow {
    width: 45px;
    height: 45px;
  }

  .developing_leaders .row {
    margin-top: 80px !important;
  }

  /* Why choose us */
  .why-choose-us-section .sec-title.light h2 {
    font-size: 24px;
  }

  .why-choose-us-section .contact-form {
    padding: 35px 25px;
    transform: translateY(0);
  }

  .why-choose-us-section .contact-form h2 {
    font-size: 22px;
  }

  .why-choose-us-section .single-feature-item h5 {
    font-size: 18px;
  }

  /* Newsletter */
  .container_main_slider {
    margin-top: 60px;
  }

  .container_main_slider .container-fluid {
    flex-direction: column;
  }

  .container_main_slider .newsletter-section {
    width: 100%;
    max-width: 100%;
    padding: 30px 25px;
  }

  .container_main_slider .section-header h2,
  .container_main_slider .newsletter-content h2 {
    font-size: 24px;
  }

  .container_main_slider .blog-slider {
    padding: 20px 10px;
    margin-left: 0;
  }

  .container_main_slider .blog-card::before {
    display: none;
  }

  /* Projects */
  .Projects .projects-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .Projects .header h1 {
    font-size: 24px;
  }

  .Projects .header .subtitle {
    font-size: 16px;
  }

  .Projects {
    margin-top: 80px !important;
  }

  .Projects .project-card {
    aspect-ratio: 1.3;
  }

  /* Work process */
  .header_our_basic_work_process h2 {
    font-size: 24px;
  }

  .header_our_basic_work_process p {
    font-size: 15px;
  }

  .header_our_basic_work_process .row {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .grid_main_process {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .title_card_grid h3 {
    font-size: 18px;
  }

  /* Map */
  .map_main {
    margin-top: 120px;
  }

  .map_main .location-container {
    flex-direction: column;
    height: auto;
    min-height: 600px;
  }

  .map_main .map-section {
    height: 300px;
  }

  .map_main .info-section {
    position: relative;
    left: auto;
    top: auto;
    right: auto;
    transform: none;
    width: 100%;
    padding: 30px 25px;
  }
}

/* Small mobile devices (320px - 575px) */
@media (max-width: 575px) {
  body {
    padding-top: 60px;
  }

  .top-bar {
    display: none;
  }

  /* Container padding */
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Hero */
  .hero-title,
  .hero-subtitle {
    font-size: 1.6rem;
    line-height: 1.2;
    padding: 0 10px;
  }

  .hero-description {
    font-size: 0.85rem;
    padding: 0 10px;
    margin-bottom: 25px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .hero-btn {
    width: 100%;
    max-width: 250px;
    padding: 12px 25px;
  }

  .hero-wrapper {
    margin-bottom: 200px;
  }

  .hero-slider,
  .hero-slide {
    min-height: 400px;
    height: 60vh;
  }

  /* Features */
  .features-container .col-lg-4,
  .features-container .col-md-6 {
    flex: 0 0 90%;
    max-width: 90%;
  }

  .feature-card,
  .feature-card_one,
  .feature-card_tow {
    padding: 25px 15px;
    min-height: 150px;
  }

  .feature-title {
    font-size: 1rem;
  }

  .feature-text {
    font-size: 0.85rem;
  }

  /* Sidebar */
  .sidebar-panel {
    max-width: 100%;
  }

  /* About */
  .about-section {
    padding: 40px 0;
  }

  .about-section .image-block {
    margin-bottom: 40px;
    position: relative;
    min-height: 300px;
  }

  .about-section .image-one {
    margin-left: 40px;
    margin-bottom: 0;
    max-width: 280px;
  }

  .about-section .image-two {
    margin-top: -120px;
    max-width: 240px;
  }

  .about-section .logo_main_img {
    position: absolute;
    left: 0;
    top: 0;
    width: 70px;
    height: 90px;
  }

  .sec-title h2 {
    font-size: 22px;
  }

  .about-section .text {
    font-size: 14px;
    line-height: 1.7;
  }

  .about-section .author-box {
    flex-direction: column;
    gap: 15px;
  }

  .about-section .signature img {
    max-width: 120px;
  }

  /* Statistics */
  .statistics_section {
    padding: 40px 0;
  }

  .statistics_section .stat-number {
    font-size: 38px;
    letter-spacing: -1px;
  }

  .statistics_section .stat-header {
    gap: 10px;
  }

  .statistics_section .stat-label {
    font-size: 14px;
  }

  .statistics_section .stat-description {
    font-size: 13px;
  }

  /* Developing leaders */
  .developing_leaders .main-title {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }

  .developing_leaders .service-title {
    font-size: 1.1rem;
  }

  .developing_leaders .service-label {
    font-size: 0.8rem;
  }

  .developing_leaders .card-content {
    padding: 140px 15px 20px 15px;
  }

  .developing_leaders .card-image {
    height: 160px;
    top: -60px;
  }

  .developing_leaders .hover-text {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  /* Why choose us */
  .why-choose-us-section {
    padding: 50px 0;
  }

  .why-choose-us-section .side-image {
    max-width: 250px;
  }

  .why-choose-us-section .sec-title.light h2 {
    font-size: 22px;
  }

  .why-choose-us-section .contact-form {
    padding: 30px 20px;
  }

  .why-choose-us-section .contact-form h2 {
    font-size: 20px;
    margin-bottom: 25px;
  }

  .why-choose-us-section .single-feature-item h5 {
    font-size: 17px;
  }

  .why-choose-us-section .single-feature-item .text {
    font-size: 14px;
  }

  /* Newsletter */
  .container_main_slider {
    margin-top: 50px;
  }

  .container_main_slider .newsletter-section {
    padding: 25px 20px;
  }

  .container_main_slider .newsletter-content h2 {
    font-size: 22px;
  }

  .container_main_slider .benefit-item {
    font-size: 13px;
  }

  .container_main_slider .newsletter-form {
    flex-direction: column;
  }

  .container_main_slider .newsletter-form button {
    max-width: 100%;
  }

  .container_main_slider .section-header {
    margin-left: 15px;
    padding-top: 20px;
  }

  .container_main_slider .section-header h2 {
    font-size: 22px;
  }

  .container_main_slider .blog-slider {
    margin-left: 0;
  }

  /* Projects */
  .Projects {
    margin-top: 60px !important;
  }

  .Projects .header h1 {
    font-size: 22px;
  }

  .Projects .header .subtitle {
    font-size: 15px;
  }

  .Projects .projects-grid {
    gap: 20px;
  }

  .Projects .project-card {
    padding: 25px;
    aspect-ratio: 1.1;
  }

  .Projects .monitor-wrapper {
    max-width: 150px;
  }

  .Projects .card-logo img {
    width: 70px;
    height: 60px;
  }

  .Projects .logo-text {
    font-size: 14px;
  }

  .Projects .card-company {
    font-size: 15px;
    bottom: 15px;
    right: 15px;
  }

  .Projects .check-more-btn {
    width: 120px;
    height: 120px;
    font-size: 14px;
  }

  /* Work process */
  .our_basic_work_process {
    margin-top: 30px;
  }

  .header_our_basic_work_process {
    padding: 15px;
  }

  .header_our_basic_work_process h2 {
    font-size: 22px;
  }

  .header_our_basic_work_process p {
    font-size: 14px;
  }

  .grid_main_process {
    gap: 15px;
  }

  .card_grid_img_lin {
    padding: 25px 15px;
  }

  .img_grid img {
    width: 100px;
  }

  .title_card_grid .step {
    font-size: 17px;
  }

  .title_card_grid h3 {
    font-size: 17px;
  }

  .title_card_grid p {
    font-size: 13px;
  }

  /* Map */
  .map_main {
    margin-top: 100px;
  }

  .map_main .location-container {
    min-height: 550px;
  }

  .map_main .map-section {
    height: 250px;
  }

  .map_main .map-header {
    top: 15px;
    right: 15px;
    padding: 10px 15px;
  }

  .map_main .map-header h3 {
    font-size: 14px;
  }

  .map_main .map-header p {
    font-size: 12px;
  }

  .map_main .info-section {
    padding: 25px 20px;
  }

  .map_main .info-section h2 {
    font-size: 24px;
  }

  .map_main .info-section .location {
    font-size: 14px;
    margin-bottom: 25px;
  }

  .map_main .info-item {
    margin-bottom: 20px;
    font-size: 13px;
  }

  .map_main .info-item svg {
    width: 18px;
    height: 18px;
  }
}

/* Extra small devices (320px - 400px) */
@media (max-width: 400px) {

  /* Hero */
  .hero-title,
  .hero-subtitle {
    font-size: 1.4rem;
  }

  .hero-description {
    font-size: 0.8rem;
  }

  .hero-btn {
    font-size: 0.85rem;
    padding: 10px 20px;
  }

  .hero-wrapper {
    margin-bottom: 180px;
  }

  /* Features */
  .features-container .col-lg-4,
  .features-container .col-md-6 {
    flex: 0 0 95%;
    max-width: 95%;
  }

  .feature-card,
  .feature-card_one,
  .feature-card_tow {
    padding: 20px 12px;
  }

  /* About */
  .about-section .image-block {
    min-height: 280px;
  }

  .about-section .image-one {
    margin-left: 30px;
    max-width: 250px;
  }

  .about-section .image-two {
    margin-top: -100px;
    max-width: 210px;
  }

  .about-section .logo_main_img {
    width: 60px;
    height: 80px;
  }

  .sec-title h2 {
    font-size: 20px;
  }

  .about-section .text {
    font-size: 13px;
  }

  /* Statistics */
  .statistics_section .stat-card {
    padding: 18px;
  }

  .statistics_section .stat-number {
    font-size: 34px;
  }

  .statistics_section .stat-label {
    font-size: 13px;
  }

  .statistics_section .stat-description {
    font-size: 12px;
  }

  /* Developing leaders */
  .developing_leaders .main-title {
    font-size: 1.3rem;
  }

  .developing_leaders .service-title {
    font-size: 1rem;
  }

  .developing_leaders .card-image {
    height: 140px;
  }

  /* Why choose us */
  .why-choose-us-section .sec-title.light h2 {
    font-size: 20px;
  }

  .why-choose-us-section .contact-form {
    padding: 25px 15px;
  }

  .why-choose-us-section .contact-form h2 {
    font-size: 18px;
  }

  .why-choose-us-section .single-feature-item h5 {
    font-size: 16px;
  }

  .why-choose-us-section .single-feature-item .text {
    font-size: 13px;
  }

  /* Newsletter */
  .container_main_slider .newsletter-content h2 {
    font-size: 20px;
  }

  .container_main_slider .section-header h2 {
    font-size: 20px;
  }

  /* Projects */
  .Projects .header h1 {
    font-size: 20px;
  }

  .Projects .header .subtitle {
    font-size: 14px;
  }

  .Projects .project-card {
    padding: 20px;
  }

  .Projects .monitor-wrapper {
    max-width: 130px;
  }

  .Projects .check-more-btn {
    width: 100px;
    height: 100px;
    font-size: 13px;
  }

  /* Work Process */
  .header_our_basic_work_process h2 {
    font-size: 20px;
  }

  .card_grid_img_lin {
    padding: 20px 12px;
  }

  .img_grid img {
    width: 90px;
  }

  .title_card_grid h3 {
    font-size: 16px;
  }

  /* Map */
  .map_main {
    margin-top: 80px;
  }

  .map_main .info-section h2 {
    font-size: 22px;
  }

  .map_main .info-item {
    font-size: 12px;
  }
}

/* Landscape orientation fixes for mobile */
@media (max-height: 500px) and (orientation: landscape) {

  .hero-slider,
  .hero-slide {
    min-height: 100vh;
    height: 100vh;
  }

  .hero-wrapper {
    margin-bottom: 150px;
  }

  .navbar-collapse {
    height: 100vh;
    overflow-y: scroll;
  }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {

  /* Increase touch targets */
  .nav-link {
    padding: 15px 18px !important;
  }

  .dropdown-item {
    padding: 15px 25px;
  }

  .hero-btn,
  .btn-base {
    padding: 14px 32px;
    min-height: 44px;
  }

  /* Disable hover effects on touch devices */
  .feature-card:hover,
  .feature-card_one:hover,
  .feature-card_tow:hover {
    animation: floatCard 4s ease-in-out infinite;
  }

  .developing_leaders .service-card:hover .hover-overlay {
    opacity: 0;
    visibility: hidden;
  }

  /* Make cards tappable */
  .developing_leaders .service-card {
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }
}


/* footer */

.footer {
  background: #0a1628;
  padding: 60px 80px 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 40px;
}

.footer .footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 60px;
  gap: 40px;
}

.footer .footer-left {
  flex: 1;
  /* max-width: 300px; */
}


.footer .logo img {
  height: 60px;
  margin-bottom: 10%;
}

.footer .logo-text {
  display: flex;
  flex-direction: column;
}

.footer .logo-name {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.footer .logo-tagline {
  font-size: 11px;
  color: #8b95a8;
  letter-spacing: 0.3px;
}

.footer .cta-text {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 8px;
  line-height: 1.4;
}

.footer .cta-link {
  color: #ff6b35;
  text-decoration: none;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: gap 0.3s ease;
}

.footer .cta-link:hover {
  gap: 10px;
}

.footer .cta-link::before {
  content: '→';
}

.footer .footer-columns {
  display: flex;
  gap: 80px;
  flex: 2;
}

.footer .footer-column {
  flex: 1;
}

.footer .column-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #8b95a8;
  text-transform: capitalize;
}

.footer .column-links {
  list-style: none;
}

.footer .column-links li {
  margin-bottom: 12px;
}

.footer .column-links a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer .column-links a:hover {
  color: #ff6b35;
}

.footer .footer-right {
  flex: 1;
  max-width: 300px;
}

.footer .projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.footer .project-item {
  aspect-ratio: 1;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.footer .project-item:hover {
  transform: scale(1.05);
}

.footer .project-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer .footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer .footer-links {
  display: flex;
  gap: 15px;
}

.footer .footer-links a {
  color: #8b95a8;
  text-decoration: none;
  font-size: 12px;
  transition: color 0.3s ease;
}

.footer .footer-links a:hover {
  color: #fff;
}

.footer .social-icons {
  display: flex;
  gap: 15px;
  align-items: center;
  justify-content: center;
}

.footer .social-icon {
  width: 35px;
  height: 35px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8b95a8;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer .social-icon:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.footer .copyright {
  text-align: center;
  color: #8b95a8;
  font-size: 12px;
  margin-top: 20px;
}

.footer .back-to-home {
  color: #8b95a8;
  text-decoration: none;
  font-size: 12px;
  transition: color 0.3s ease;
}

.footer .back-to-home:hover {
  color: #fff;
}

@media (max-width: 1024px) {
  .footer {
    padding: 40px 40px 20px;
  }

  .footer .footer-top {
    flex-wrap: wrap;
  }

  .footer .footer-columns {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 30px 20px 20px;
  }

  .footer-top {
    flex-direction: column;
  }

  .footer-left,
  .footer-right {
    max-width: 100%;
  }

  .footer-columns {
    flex-direction: column;
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .footer-links {
    flex-direction: column;
    align-items: center;
  }
}




/* ============================ about page ============================= */


.hero_about_main {
  background-image: url(../img/banner_about.svg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  margin-top: -20px;
}

/* overlay */
.hero_about_main::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .4);
}

.hero_content {
  position: relative;
  z-index: 2;
  color: white;
  text-align: left;
  border-left: 1px solid var(--main-color);
  padding-left: 20px;

}

.hero_content h1 {
  font-size: 48px;
  margin-bottom: 10px;
}

.breadcrumb {
  font-size: 16px;
}

.breadcrumb a {
  color: #fff;
  text-decoration: none;
}

.breadcrumb i {
  margin: 0 8px;
  color: #fff;
  font-size: 14px;
  padding-top: 5px;
}


.hero_about_main::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 12, 26, 0.93) 0%, rgba(0, 59, 128, 0) 100%);

}


/* ========================== Reason Section ========================== */
.reason-section {
  padding: 60px 0;
  background: #ffffff;
}

.reason-section .reason-wrapper {
  display: flex;
  align-items: center;
  gap: 0;
  position: relative;
}

/* ========================== Left Side - Content ========================== */
.reason-section .reason-content {
  flex: 0 0 50%;
  padding: 40px 60px 40px 0px;
  background: #ffffff;
  position: relative;
  z-index: 2;
}

.reason-section .reason-title {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a2e;
  line-height: 1.3;
  margin-bottom: 15px;
}

.reason-section .title-underline {
  width: 60px;
  height: 3px;
  background: #FF6B35;
  margin-bottom: 40px;
}

.reason-section .reason-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* ========================== Reason Items ========================== */
.reason-section .reason-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  opacity: 0;
  transform: translateX(-20px);
  animation: fadeInLeft 0.6s ease forwards;
}

.reason-section .reason-item:nth-child(1) {
  animation-delay: 0.2s;
}

.reason-section .reason-item:nth-child(2) {
  animation-delay: 0.4s;
}

.reason-section .reason-icon {
  width: 150px;
  height: 100px;
  min-width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 20px;
  transition: all 0.3s ease;
}

.reason-section .reason-item:hover .reason-icon {
  transform: scale(1.1);
}

.reason-section .reason-text h3 {
  font-size: 18px;
  font-weight: 600;
  color: #1a1a2e;
  margin-bottom: 8px;
  line-height: 1.4;
}

.reason-section .reason-text p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* ========================== Right Side - Video Section ========================== */
.reason-section .video-section {
  flex: 0 0 50%;
  position: relative;
  height: 400px;
  overflow: visible;
  z-index: 999;
}

.reason-section .orange-overlay {
  position: absolute;
  left: -34px;
  bottom: 0px;
  width: 8%;
  height: 180px;
  background: #FF6B35;
  z-index: 1;
}

.reason-section .video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.reason-section .video-background video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


/* ========================== Play Button ========================== */
.reason-section .play-button-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}

.reason-section .play-button {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  background: none;
  border: 3px solid #fff;
}

.reason-section .play-button i {
  font-size: 28px;
  color: #fff;
}

.reason-section .play-button:hover {
  transform: scale(1.1);
}

.reason-section .play-button:hover i {
  color: #ffffff;
}

/* Pulse Animation for Play Button */
.reason-section .play-button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.8);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }

  100% {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0;
  }
}

/* ========================== Animations ========================== */
@keyframes fadeInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ========================== Responsive ========================== */
@media (max-width: 992px) {
  .reason-section .reason-wrapper {
    flex-direction: column;
  }

  .reason-section .reason-content,
  .video-section {
    flex: 0 0 100%;
    width: 100%;
  }

  .reason-section .reason-content {
    padding: 30px;
  }

  .reason-section .video-section {
    height: 350px;
  }

  .reason-section .orange-overlay {
    width: 30%;
    height: 80px;
    bottom: -20px;
  }
}

@media (max-width: 768px) {
  .reason-section .reason-title {
    font-size: 26px;
  }

  .reason-section .reason-content {
    padding: 25px 20px;
  }

  .reason-section .reason-item {
    gap: 15px;
  }

  .reason-section .reason-icon {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }

  .reason-section .reason-text h3 {
    font-size: 16px;
  }

  .reason-section .reason-text p {
    font-size: 13px;
  }

  .reason-section .video-section {
    height: 300px;
  }

  .reason-section .play-button {
    width: 70px;
    height: 70px;
  }

  .reason-section .play-button i {
    font-size: 24px;
  }

  .reason-section .orange-overlay {
    width: 25%;
    height: 80px;
    bottom: -20px;
  }
}

@media (max-width: 480px) {
  .reason-section .reason-title {
    font-size: 22px;
  }

  .reason-section .reason-list {
    gap: 20px;
  }

  .reason-section .reason-icon {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .reason-section .video-section {
    height: 250px;
  }

  .reason-section .play-button {
    width: 60px;
    height: 60px;
  }

  .reason-section .play-button i {
    font-size: 20px;
  }

  .reason-section .orange-overlay {
    width: 20%;
    height: 60px;
    bottom: -15px;
  }
}