/* ============================================================
   style.css — Main Stylesheet
   ============================================================
   Table of Contents:
   ─────────────────────────────────────────────────────────
    1.  Google Fonts          — Import Fonts
    2.  CSS Variables         — Global Variables
    3.  Global Reset          — Global Reset
    4.  Back to Top Button    — Back to Top Button
    5.  Utility Classes       — Utility Classes
    6.  Custom Scrollbar      — Custom Scrollbar
    7.  Sidebar               — Sidebar Panel
    8.  Top Bar               — Fixed Top Bar
    9.  Main Header           — Main Header
   10.  Logo                  — Logo
   11.  Navigation Menu       — Navigation Menu
   12.  Dropdown              — Dropdown Menus
   13.  Toggle Button         — Toggle Button (Sidebar)
   14.  Mobile Menu Button    — Mobile Menu Button
   15.  Hero Section          — Hero Banner Section
   16.  Features Container    — Features Container
   17.  Feature Card          — Feature Card
   18.  About Section         — About Section
   19.  Developing Leaders    — Developing Leaders Section
   20.  Statistics Section    — Statistics Section
   21.  Why Choose Us         — Why Choose Us
   22.  Newsletter & Blog     — Newsletter and Blog
   23.  Projects Section      — Projects Section
   24.  Work Process          — Work Process
   25.  Map Section           — Map Section
   26.  Footer                — Footer
   27.  About Page Hero       — About Page Hero
   28.  Reason Section        — Reason Section (Video)
   29.  Service Details       — Service Details Page
   30.  Portfolio             — Portfolio
   31.  Blog                  — Blog Page
   32.  Contact Us            — Contact Us Page
   33.  Map Wrapper           — Map Wrapper
   34.  Responsive Styles     — Responsive Styles
   ─────────────────────────────────────────────────────────
*/


/* ============================================================
   1. GOOGLE FONTS — Import Fonts
   ============================================================ */
@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');


/* ============================================================
   2. CSS VARIABLES — Global Variables
   ============================================================ */
:root {
  --main-color: #EF7824;
  --main-color-two: #071D37;
  --top-bar-height: 41px;
  --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);
}


/* ============================================================
   3. GLOBAL RESET — Global Reset
   ============================================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  overflow-x: hidden !important;
}

body {
  font-family: "Montserrat", sans-serif;
  overflow-x: hidden;
  padding-top: 120px;
}

@media (max-width: 991px) {
  body {
    padding-top: 0;
  }
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
  padding: 0;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}


/* ============================================================
   4. BACK TO TOP BUTTON — Back to Top Button
   ============================================================ */
.top-btn {
  position: fixed;
  bottom: 30px;
  right: 25px;
  width: 50px;
  height: 50px;
  background: var(--main-color);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 20%;
  cursor: pointer;
  font-size: 22px;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.8);
  transition: 0.4s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  z-index: 999;
  -webkit-border-radius: 20%;
  -moz-border-radius: 20%;
  -ms-border-radius: 20%;
  -o-border-radius: 20%;
}

.top-btn.show {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.top-btn i {
  transform: rotate(-45deg);
  transition: 0.3s;
}

.top-btn:hover {
  transform: translateY(-6px) scale(1.05);
}

.top-btn:hover i {
  transform: rotate(-45deg) translateY(-3px);
}

@media (max-width: 768px) {
  .top-btn {
    width: 45px;
    height: 45px;
    font-size: 18px;
    bottom: 20px;
    right: 20px;
  }
}


/* ============================================================
   5. UTILITY CLASSES — Utility Classes (Buttons, Cards, Texts)
   ============================================================ */

/* --- Buttons --- */
.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);
}

/* --- Cards --- */
.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);
}

/* --- Titles --- */
.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;
}

/* --- Overlays --- */
.overlay-base {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: var(--transition-base);
}

/* --- Text --- */
.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);
}

/* --- Spacing --- */
.section-spacing {
  padding: 80px 0;
}

.section-spacing-sm {
  padding: 60px 0;
}


/* ============================================================
   6. CUSTOM SCROLLBAR — 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: 0;
  border: 2px solid var(--main-color-two);
  transition: var(--transition-base);
}


/* ============================================================
   7. SIDEBAR — Sidebar Panel Popup
   ============================================================ */
.sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999999;
  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: 9999999;
  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);
}


/* ============================================================
   8. TOP BAR — Fixed Top Bar (Contact Info)
   ============================================================ */
.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;
  font-size: 13px;
}


/* ============================================================
   9. MAIN HEADER — Main Header (Fixed Navbar)
   ============================================================ */
.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;
}


/* ============================================================
   10. LOGO — 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;
}


/* ============================================================
   11. NAVIGATION MENU — Navigation Menu Horizontal
   ============================================================ */
.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;
}

/* Underline on hover */
.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;
}


/* ============================================================
   12. DROPDOWN — Dropdown Menus
   ============================================================ */
.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;
}


/* ============================================================
   13. TOGGLE BUTTON — Toggle Button to Open Sidebar
   ============================================================ */
.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;
}


/* ============================================================
   14. MOBILE MENU BUTTON — Mobile Menu Open Button
   ============================================================ */
.navbar-toggler {
  border: 2px solid var(--main-color);
  padding: 0 3px;
  border-radius: 5px;
  font-size: 16px;
}

.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");
}


/* ============================================================
   15. HERO SECTION — Hero Banner Section (Slider)
   ============================================================ */
.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);
}


/* ============================================================
   16. FEATURES CONTAINER — Features Container (Below Hero)
   ============================================================ */
.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;
}


/* ============================================================
   17. FEATURE CARD — Feature Card (Floating Below Hero)
   ============================================================ */
.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: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;
}


/* ============================================================
   18. ABOUT SECTION — About Section (Two images + rotating logo)
   ============================================================ */
.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) 0 5px 20px 0;
  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) 0 5px 20px 0;
  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;
}

/* Rotating Logo */
.about-section .logo_main_img {
  position: absolute;
  left: 0;
  top: 0;
  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);
  }
}

/* Section general title */
.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);
}


/* ============================================================
   19. DEVELOPING LEADERS — Developing Leaders Section (Service cards)
   ============================================================ */
.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);
}

/* Floating image above card */
.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);
}

/* Icon badge */
.developing_leaders .icon-badge {
  position: absolute;
  bottom: 15px;
  right: 0;
  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;
  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;
}

/* Hover overlay layer */
.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;
}

/* View more button */
.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;
  transform: translateY(-2px);
}


/* ============================================================
   20. STATISTICS SECTION — 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;
}


/* ============================================================
   21. WHY CHOOSE US — Why Choose Us Section (Dark background + form)
   ============================================================ */
.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 */
.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: #fff;
  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;
}

/* Contact form */
.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;
}


/* ============================================================
   22. NEWSLETTER & BLOG — Newsletter and Blog Slider
   ============================================================ */
.container_main_slider {
  margin-top: 80px;
  background-color: #EBEBEB;
  padding: 0;
  height: 300px;
}

.container_main_slider .container-fluid {
  margin: 0 auto;
  display: flex;
  padding: 0;
  gap: 10px;
}

/* Newsletter section */
.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;
}

.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);
}

/* Blog section */
.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 0 0;
  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 #999;
}

.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);
}


/* ============================================================
   23. PROJECTS SECTION — Projects Section (Card grid)
   ============================================================ */
.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 .card-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
  opacity: 1;
  transition: opacity 0.5s ease;
}

/* Dark overlay on hover */
.Projects .project-card .card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(0, 31, 66);
  opacity: 0;
  z-index: 1;
  transition: opacity 0.5s ease;
}

.Projects .project-card:hover .card-overlay {
  opacity: 1;
}

/* Gradient effect on hover */
.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;
  background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
  z-index: 2;
}

.Projects .project-card:hover::after {
  opacity: 0.9;
}

.Projects .card-content {
  position: relative;
  z-index: 3;
  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: 3;
  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: 0;
  left: 0;
  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: 0;
  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);
}


/* ============================================================
   24. WORK PROCESS — Work Process Section (Numbered steps)
   ============================================================ */
.our_basic_work_process {
  margin-top: 60px;
}

.header_our_basic_work_process {
  padding: 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;
}

/* Step number with side lines */
.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;
}


/* ============================================================
   25. MAP SECTION — Map Section (Map + info card)
   ============================================================ */
.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;
}

/* Address info card */
.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;
}


/* ============================================================
   26. FOOTER — Footer (Links + icons + copyright)
   ============================================================ */
.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;
}

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


/* ============================================================
   27. ABOUT PAGE HERO — About Page Hero
   ============================================================ */
.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;
}

.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%);
}

.hero_content {
  position: relative;
  z-index: 2;
  color: white;
  text-align: start;
  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;
}


/* ============================================================
   28. REASON SECTION — Reason Section (Video + Features List)
   ============================================================ */
.reason-section {
  padding: 60px 0;
  background: #ffffff;
  overflow: hidden;
}

.reason-section .reason-wrapper {
  display: flex;
  align-items: center;
  gap: 0;
  position: relative;
}

.reason-section .reason-content {
  flex: 0 0 50%;
  padding: 40px 60px 40px 0;
  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-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 {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.reason-section .reason-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

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

/* Video section */
.reason-section .video-section {
  flex: 0 0 50%;
  position: relative;
  height: 500px;
  overflow: visible;
  z-index: 2;
}

.reason-section .orange-overlay {
  position: absolute;
  left: -40px;
  bottom: 0;
  width: 170px;
  height: 180px;
  background: #FF6B35;
  z-index: 0;
}

.reason-section .video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background-color: #000;
  overflow: hidden;
  border-radius: 0;
}

.reason-section .video-background video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.reason-section .video-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.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: 3px solid #fff;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.reason-section .play-button i {
  font-size: 28px;
  color: #fff;
  margin-left: 4px;
}

.reason-section .play-button:hover {
  transform: scale(1.1);
  background: rgba(255, 107, 53, 0.8);
}

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

@keyframes fadeInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.reason-section .video-background::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../img/vido.png') center/cover no-repeat;
  z-index: -1;
}


/* ============================================================
   29. SERVICE DETAILS — Service Details Page
   ============================================================ */
.service_details_main .left-section {
  border-radius: 30px;
  padding: 40px 0;
}

.service_details_main .hero-image {
  position: relative;
  margin: 0 auto 50px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  max-width: 100%;
}

.service_details_main .main-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 14px;
}

/* Content grid (icon + text) */
.service_details_main .content {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 40px;
  margin-bottom: 60px;
  align-items: start;
}


@media(max-width:991px) {
  .service_details_main .content {
    grid-template-columns: 1fr;
  }
}

.service_details_main .main_details_tow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.service_details_main .content h2 {
  font-size: 22px;
  line-height: 1.4;
  color: #1a1a2e;
  font-weight: 700;
  text-align: left;
}

.service_details_main .main_details_tow img {
  width: 120px;
  height: 120px;
  object-fit: contain;
}

.service_details_main .main_details {
  flex: 1;
}

.service_details_main .description {
  margin-bottom: 30px;
}

.service_details_main .description p {
  color: #64748b;
  line-height: 1.8;
  margin-bottom: 15px;
  font-size: 14px;
}

.service_details_main .sub-text {
  color: #94a3b8;
  font-size: 13px;
}

.service_details_main .features {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service_details_main .feature-item {
  color: #64748b;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.service_details_main .feature-item::before {
  content: '✓';
  color: var(--main-color);
  font-weight: bold;
  font-size: 16px;
}

/* Workflow steps list */
.service_details_main .workflow-container {
  margin-top: 60px;
  margin-bottom: 40px;
}

.service_details_main .left-content {
  padding-right: 20px;
}

.service_details_main .size-badge {
  background: #0ea5e9;
  color: white;
  padding: 6px 16px;
  border-radius: 6px;
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 25px;
}

.service_details_main .main-title {
  font-size: 36px;
  color: #1a1a2e;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.service_details_main .subtitle {
  color: #64748b;
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.service_details_main .workflow-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.service_details_main .workflow-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: #f8f9fa;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
}

.service_details_main .workflow-item .arrow {
  font-size: 18px;
  color: white;
  margin-left: auto;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service_details_main .workflow-item:hover {
  background: linear-gradient(135deg, #f97316 0%, #fb923c 100%);
  border-color: #f97316;
  color: #fff;
  transform: translateX(5px);
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}

.service_details_main .workflow-item:hover .arrow {
  opacity: 1;
}

.service_details_main .workflow-item:hover .number,
.service_details_main .workflow-item:hover .text {
  color: white;
}

.service_details_main .workflow-item.active .arrow {
  opacity: 1;
}

.service_details_main .workflow-item .number {
  font-size: 16px;
  color: #94a3b8;
  font-weight: 600;
  min-width: 35px;
  transition: color 0.3s ease;
}

.service_details_main .workflow-item .text {
  font-size: 14px;
  color: #1a1a2e;
  font-weight: 500;
  flex: 1;
  transition: color 0.3s ease;
}

/* Right content box */
.service_details_main .right-content {
  padding-left: 20px;
}

.service_details_main .content-box {
  border-radius: 15px;
  overflow: hidden;
}

.service_details_main .section-title {
  font-size: 26px;
  color: #1a1a2e;
  line-height: 1.3;
  margin-bottom: 20px;
  font-weight: 700;
  padding: 30px 30px 0;
}

.service_details_main .section-description {
  color: #64748b;
  font-size: 13px;
  line-height: 1.7;
  margin-bottom: 25px;
  padding: 0 30px;
}

.service_details_main .team-image {
  width: 100%;
  height: 280px;
  overflow: hidden;
}

.service_details_main .team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Right sidebar */
.service_details_main .right-section {
  display: flex;
  flex-direction: column;
  padding: 40px 0;
  gap: 25px;
}

.service_details_main .services-list {
  background: white;
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.service_details_main .service-item {
  padding: 16px 15px;
  margin-bottom: 12px;
  border: 1px solid #f0f0f0;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: #1a1a2e;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  background: #fafafa;
}

.service_details_main .service-item:last-child {
  margin-bottom: 0;
}

.service_details_main .service-item:hover {
  background: white;
  border-color: #e5e7eb;
  transform: translateX(5px);
}

.service_details_main .service-item .arrow {
  display: flex;
  align-items: center;
  justify-content: center;
}

.service_details_main .service-item .arrow img {
  width: 20px;
  height: 20px;
}

/* Contact card */
.service_details_main .contact-card {
  background-image: url(../img/lingo.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 15px;
  padding: 40px 25px;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 380px;
}

.service_details_main .help-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service_details_main .help-icon img {
  width: 35px;
  height: 35px;
  object-fit: contain;
}

.service_details_main .contact-card h3 {
  color: white;
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: 600;
}

.service_details_main .contact-info {
  margin-bottom: 20px;
}

.service_details_main .phone {
  color: white;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

.service_details_main .email {
  color: #cbd5e0;
  font-size: 13px;
}

.service_details_main .appointment-btn {
  background: linear-gradient(135deg, #f97316 0%, #fb923c 100%);
  color: white;
  border: none;
  padding: 12px 35px;
  border-radius: 25px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.service_details_main .appointment-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.4);
}


/* ============================================================
   30. PORTFOLIO — Portfolio (Tabs + projects grid)
   ============================================================ */
.alin_project {
  margin-top: 40px !important;
}

/* Tab buttons */
.tabs-header {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 30px;
  border-bottom: 2px solid #e0e0e0;
  padding-bottom: 15px;
  width: max-content;
  margin: 40px auto;
}

.tab-button {
  background: none;
  border: none;
  font-size: 18px;
  font-weight: 600;
  color: #888;
  cursor: pointer;
  padding: 10px 20px;
  position: relative;
  transition: all 0.3s ease;
}

.tab-button:hover {
  color: #333;
}

.tab-button.active {
  color: var(--main-color-two);
}

/* Active tab underline */
.tab-button.active::after {
  content: '';
  position: absolute;
  bottom: -17px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #ff6b35, #f7931e);
  border-radius: 3px;
}

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

.title-section h1 {
  font-size: 32px;
  color: #1a237e;
  margin-bottom: 10px;
}

/* Grid fade-in animation */
.projects-grid {
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.project-card {
  background: #f5f5f5;
  border-radius: 15px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 250px;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.project-card.featured {
  background: linear-gradient(135deg, #ff6b35 0%, #1a237e 100%);
  color: white;
}

.project-card.featured .card-icon {
  background: white;
  color: #ff6b35;
  width: 60px;
  height: 60px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin-bottom: 20px;
}

.project-card.featured .business-name {
  font-size: 18px;
  font-weight: 600;
}

.project-card.featured .corner-circle {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
}

/* Monitor display */
.monitor {
  width: 100%;
  max-width: 280px;
}

.monitor-screen {
  background: white;
  border: 8px solid #333;
  border-radius: 10px 10px 0 0;
  padding: 20px;
  min-height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.1);
}

.monitor-stand {
  width: 80px;
  height: 8px;
  background: linear-gradient(to bottom, #999, #666);
  margin: 0 auto;
  border-radius: 0 0 5px 5px;
}

.monitor-base {
  width: 120px;
  height: 15px;
  background: linear-gradient(to bottom, #888, #555);
  margin: 0 auto;
  border-radius: 8px;
  margin-top: 2px;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}


/* ============================================================
   31. BLOG — Blog Page (Floating article cards)
   ============================================================ */
.blog {
  margin-top: 40px;
}

.blog .card-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 80px;
  margin-bottom: 10px;
}

.blog .card-image {
  width: 100%;
  height: 220px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

.blog .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Card floating above image */
.blog .card-box {
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  border-radius: 14px;
  padding: 22px;
  background: #ffffff;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.13);
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-sizing: border-box;
}

.blog .card-date {
  color: #e07c2a;
  font-size: 0.70rem;
  font-weight: 600;
  margin: 0;
}

.blog .card-title {
  font-size: 0.92rem;
  font-weight: 700;
  color: #1c1c1c;
  line-height: 1.4;
  margin: 0;
}

.blog .card-divider {
  border: none;
  border-top: 1.8px dashed #00152E66;
  margin: 0;
  padding: 0;
}

.blog .card-read-more {
  color: #e07c2a;
  font-size: 0.74rem;
  font-weight: 600;
  text-decoration: none;
}

.blog .card-read-more:hover {
  color: #c05a10;
}

.blog .cards-col {
  width: 100%;
  padding: 0 10px;
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .blog .cards-col {
    width: 33.333%;
  }
}


/* ============================================================
   32. CONTACT US — Contact Us Page
   ============================================================ */
.contact {
  margin-top: 40px;
}

/* Contact info cards */
.contact .info-card {
  background: #fff;
  border-radius: 18px;
  padding: 24px 20px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
  height: 100%;
  transition: transform .25s, box-shadow .25s;
  position: relative;
  overflow: hidden;
}

/* Colored left border */
.contact .info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #f47b20, #ffc26e);
  border-radius: 0 4px 4px 0;
}

.contact .info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(244, 123, 32, 0.15);
}

.contact .icon-circle {
  width: 52px;
  height: 52px;
  background: var(--border-gray);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 20px;
  color: var(--main-color-two);
}

.contact .info-label {
  font-size: 13px;
  font-weight: 600;
  color: #f47b20;
  letter-spacing: .5px;
}

.contact .info-sublabel {
  font-size: 11px;
  color: #aab;
  font-weight: 600;
  margin-bottom: 6px;
}

.contact .info-detail {
  font-size: 13.5px;
  color: #333;
  font-weight: 600;
  line-height: 1.8;
}

/* Bottom section (chat + form) */
.contact .bottom-section {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 6px 40px rgba(0, 0, 0, 0.08);
  display: flex;
  min-height: 440px;
}

/* Chat panel */
.contact .chat-panel {
  width: 260px;
  flex-shrink: 0;
  border-radius: 24px 0 0 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 24px;
  overflow: hidden;
}

.contact .chat-panel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.contact .chat-panel::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(10, 20, 60, 0.92) 0%,
      rgba(10, 20, 60, 0.50) 50%,
      rgba(10, 20, 60, 0.10) 100%);
  z-index: 1;
}

.contact .chat-text {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
}

.contact .chat-text h5 {
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 8px;
}

.contact .chat-text p {
  font-size: 11.5px;
  color: rgba(255, 255, 255, .8);
  line-height: 1.6;
  margin-bottom: 18px;
}

.contact .btn-live {
  background: var(--main-color);
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: 11px 28px;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  box-shadow: 0 6px 20px rgba(244, 123, 32, 0.5);
  transition: transform .2s, box-shadow .2s;
  cursor: pointer;
}

.contact .btn-live:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(244, 123, 32, 0.6);
}

/* Form panel */
.contact .form-panel {
  flex: 1;
  padding: 44px 48px 44px 44px;
}

.contact .form-panel h2 {
  font-size: 26px;
  font-weight: 900;
  color: #0f172a;
  line-height: 1.3;
  margin-bottom: 28px;
}

.contact .form-panel h2 span {
  color: #f47b20;
}

.contact .form-control {
  border-radius: 10px;
  padding: 13px 18px;
  font-family: 'Nunito', sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  color: #333;
  background: #fff;
  transition: border-color .2s, box-shadow .2s, background .2s;
}

.contact .form-control:focus {
  border-color: #f47b20;
  box-shadow: 0 0 0 4px rgba(244, 123, 32, 0.12);
  background: #fff;
  outline: none;
}

.contact .form-control::placeholder {
  color: #b0b8cc;
  font-weight: 600;
}

.contact .input-icon-wrap {
  position: relative;
}

.contact .input-icon-wrap .fi {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #c0c8dc;
  font-size: 14px;
  pointer-events: none;
}

.contact .input-icon-wrap .form-control {
  padding-left: 42px;
}

/* Custom select dropdown */
.contact .cs-wrap {
  position: relative;
  user-select: none;
}

.contact .cs-trigger {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1.5px solid #F4F4F4;
  border-radius: 10px;
  padding: 11px 16px;
  background: none;
  cursor: pointer;
  min-height: 50px;
  transition: border-color .2s, box-shadow .2s, background .2s;
}

.contact .cs-trigger:hover,
.contact .cs-wrap.open .cs-trigger {
  border-color: #f47b20;
  box-shadow: 0 0 0 4px rgba(244, 123, 32, 0.12);
  background: #fff;
}

.contact .cs-lead-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
  background: linear-gradient(135deg, #fff4ea, #ffe5c8);
  color: var(--main-color);
  transition: background .3s, color .3s;
}

.contact .cs-label {
  flex: 1;
  font-size: 13.5px;
  font-weight: 700;
  color: #b0b8cc;
}

.contact .cs-label.selected {
  color: #1e293b;
}

.contact .cs-arrow {
  color: #c0c8dc;
  font-size: 11px;
  transition: transform .3s;
}

.contact .cs-wrap.open .cs-arrow {
  transform: rotate(180deg);
  color: var(--main-color);
}

/* Dropdown */
.contact .cs-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  z-index: 9999;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.14);
  padding: 10px;
  display: none;
  border: 1px solid #f0f4ff;
}

.contact .cs-wrap.open .cs-dropdown {
  display: block;
  animation: dropIn .2s ease;
}

@keyframes dropIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.contact .cs-option {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 14px;
  border-radius: 12px;
  cursor: pointer;
  transition: background .15s, transform .15s;
}

.contact .cs-option:hover {
  background: #f8faff;
  transform: translateX(4px);
}

.contact .cs-option.active {
  background: linear-gradient(90deg, #fff7f0, #fff4ea);
}

.contact .cs-opt-icon {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  flex-shrink: 0;
  transition: transform .2s;
}

.contact .cs-option:hover .cs-opt-icon {
  transform: scale(1.12) rotate(-5deg);
}

.contact .cs-opt-text {
  flex: 1;
}

.contact .cs-opt-text strong {
  display: block;
  font-size: 14px;
  font-weight: 800;
  color: #1e293b;
}

.contact .cs-opt-text small {
  font-size: 11.5px;
  color: #94a3b8;
  font-weight: 600;
}

.contact .cs-opt-check {
  font-size: 16px;
  color: var(--main-color);
  opacity: 0;
  transition: opacity .2s;
  margin-left: 4px;
}

.contact .cs-option.active .cs-opt-check {
  opacity: 1;
}

.contact .cs-divider {
  height: 1px;
  background: #f1f5f9;
  margin: 4px 10px;
}

/* Send button */
.contact .btn-send {
  background: var(--main-color);
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: 14px 44px;
  font-weight: 800;
  font-size: 14px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: transform .2s, box-shadow .2s;
}

.contact .btn-send:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  color: #fff;
}


/* ============================================================
   33. MAP WRAPPER — Map Wrapper (Contact Us Page)
   ============================================================ */
.kimi-map-wrapper {
  margin: 40px 0;
}

.kimi-map-frame {
  position: relative;
  overflow: hidden;
}

.kimi-map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 450px;
  border: none;
  filter: grayscale(20%) contrast(1.1);
  -webkit-filter: grayscale(20%) contrast(1.1);
  transition: filter 0.3s ease;
}

.kimi-map-frame:hover iframe {
  filter: grayscale(0%) contrast(1);
}


/* ============================================================
   34. RESPONSIVE STYLES — Responsive Styles
   ============================================================ */

/* ---- Extra large screens (1600px+) ---- */
@media (min-width: 1600px) {
  .newsletter-section {
    width: 550px !important;
  }

  .container {
    max-width: 1400px;
  }
}

/* ---- Large screens (1200px - 1599px) ---- */
@media (max-width: 1599px) and (min-width: 1200px) {
  .hero-wrapper {
    margin-bottom: 150px;
  }
}

/* ---- Desktop and large tablet (992px - 1199px) ---- */
@media (max-width: 1199px) {
  .why-choose-us-section .contact-form {
    margin-left: -50px;
  }

  .container_main_slider .newsletter-section {
    width: 380px;
  }

  .developing_leaders .card-image {
    height: 200px;
  }
}

/* ---- Tablet and below (768px - 991px) ---- */
@media (max-width: 991px) {
  .top-bar {
    display: none !important;
  }

  .main-header {
    top: 0;
  }

  body.scrolled {
    padding-top: 60px;
  }

  .sidebar-panel {
    right: -500px !important;
  }

  /* Sliding mobile menu */
  .navbar-collapse {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    max-width: 85%;
    height: 100vh;
    background: var(--white);
    padding: 80px 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;
  }

  /* Mobile menu close button */
  .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);
  }

  .hero-title, .hero-subtitle {
    font-size: 20px;
  }

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

  .sec-title {
    text-align: center;
  }

  .sec-title .text-decoration img {
    margin: 0 auto;
  }

  .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: -44px;
    margin-bottom: 30px;
    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_section {
    padding: 50px 0;
  }

  .statistics_section .stat-card {
    margin-bottom: 20px;
  }

  .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-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .Projects {
    margin-top: 100px !important;
  }

  .grid_main_process {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .our_basic_work_process {
    margin-top: 40px;
  }

  .map_main {
    margin-top: 150px;
  }

  .reason-section {
    padding: 50px 0;
  }

  .reason-section .title-underline {
    margin: 0 auto;
  }

  .reason-section .reason-content {
    margin: 0 auto;
    text-align: center;
  }

  .reason-section .reason-wrapper {
    flex-direction: column;
    gap: 0;
  }

  .reason-section .reason-content {
    flex: 0 0 100%;
    width: 100%;
    padding: 40px 30px;
  }

  .reason-section .video-section {
    flex: 0 0 100%;
    width: 100%;
    height: 400px;
    margin-top: 30px;
  }

  .reason-section .orange-overlay {
    width: 180px;
    height: 140px;
    left: -50px;
    bottom: -50px;
  }

  .reason-section .reason-title {
    font-size: 28px;
  }

  /* Service Details */
  .service_details_main .workflow-container {
    margin-top: 40px;
  }

  .service_details_main .left-content,
  .service_details_main .right-content {
    padding: 0;
  }

  .service_details_main .section-title {
    font-size: 22px;
    padding: 25px 25px 0;
  }

  .service_details_main .section-description {
    padding: 0 25px;
  }

  .header_our_basic_work_process .divider img {
    margin: 0 auto;
    text-align: center;
  }
}

/* ---- Mobile (576px - 767px) ---- */
@media (max-width: 767px) {
  .top-bar {
    display: none;
  }

  .main-header {
    top: 0;
  }

  .navbar-brand {
    font-size: 1.3rem;
  }

  .navbar-brand img {
    height: 30px;
  }

  .hero-title, .hero-subtitle {
    font-size: 20px;
    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;
  }

  /* Horizontal scroll for feature cards */
  .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%;
  }

  .feature-icon img {
    width: 50px;
    height: 50px;
  }

  .feature-title {
    font-size: 1.1rem;
  }

  .feature-text {
    font-size: 0.9rem;
  }

  .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_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 .main-title {
    font-size: 1.8rem;
  }

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

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

  .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;
    text-align: center;
  }

  .grid_main_process {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .title_card_grid h3 {
    font-size: 18px;
  }

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

  .reason-section {
    padding: 40px 0;
  }

  .reason-section .reason-content {
    padding: 30px 20px;
  }

  .reason-section .reason-title {
    font-size: 26px;
    line-height: 1.2;
  }

  .reason-section .title-underline {
    width: 50px;
    height: 2px;
    margin-bottom: 30px;
  }

  .reason-section .reason-list {
    gap: 25px;
  }

  .reason-section .reason-item {
    gap: 15px;
  }

  .reason-section .reason-icon {
    width: 80px;
    height: 60px;
    min-width: 80px;
  }

  .reason-section .reason-text h3 {
    font-size: 16px;
    margin-bottom: 6px;
  }

  .reason-section .reason-text p {
    font-size: 13px;
    line-height: 1.5;
  }

  .reason-section .video-section {
    height: 350px;
    margin-top: 25px;
  }

  .reason-section .orange-overlay {
    width: 150px;
    height: 120px;
    left: -40px;
    bottom: -40px;
  }

  .reason-section .play-button {
    width: 70px;
    height: 70px;
    border-width: 2px;
  }

  .reason-section .play-button i {
    font-size: 24px;
  }

  /* Service Details */
  .service_details_main .left-section {
    padding: 20px 10px;
  }

  .service_details_main .content {
    gap: 25px;
  }

  .service_details_main .content h2 {
    font-size: 18px;
  }

  .service_details_main .main_details_tow img {
    width: 100px;
    height: 100px;
  }

  .service_details_main .hero-image {
    margin-bottom: 30px;
  }

  .service_details_main .workflow-item {
    padding: 14px 16px;
  }

  .service_details_main .main-title {
    font-size: 28px;
  }

  .service_details_main .section-title {
    font-size: 20px;
    padding: 20px 20px 0;
  }

  .service_details_main .section-description {
    padding: 0 20px;
    font-size: 12px;
  }

  .service_details_main .team-image {
    height: 220px;
  }

  .service_details_main .right-section {
    padding: 20px 0;
  }

  .service_details_main .services-list {
    padding: 20px;
  }

  .service_details_main .service-item {
    padding: 14px 12px;
    font-size: 12px;
  }

  .service_details_main .contact-card {
    min-height: 350px;
    padding: 35px 20px;
  }

  /* Contact */
  .contact .bottom-section {
    flex-direction: column;
  }

  .contact .chat-panel {
    width: 100%;
    border-radius: 24px 24px 0 0;
    min-height: 280px;
    padding-top: 180px;
  }

  .contact .form-panel {
    padding: 32px 20px;
  }

  /* Portfolio */
  .title-section h1 {
    font-size: 24px;
  }

  .projects-grid {
    grid-template-columns: 1fr;
  }
}

/* ---- Small mobile (320px - 575px) ---- */
@media (max-width: 575px) {
  .top-bar {
    display: none;
  }

  .container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .hero-title, .hero-subtitle {
    font-size: 20px;
    line-height: 1.2;
    padding: 0 10px;
  }

  .hero-description {
    font-size: 14px;
    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: 160px;
  }

  .hero-slider, .hero-slide {
    min-height: 400px;
    height: 60vh;
  }

  .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-panel {
    max-width: 100%;
  }

  .about-section {
    padding: 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_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 .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;
  }

  .developing_leaders .card-image {
    height: 160px;
    top: -60px;
  }

  .developing_leaders .hover-text {
    font-size: 0.95rem;
    line-height: 1.6;
  }

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

  .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 {
    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;
  }

  .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_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;
  }

  .reason-section {
    padding: 35px 0;
  }

  .reason-section .reason-content {
    padding: 25px 15px;
  }

  .reason-section .reason-title {
    font-size: 24px;
  }

  .reason-section .title-underline {
    width: 45px;
    margin-bottom: 25px;
  }

  .reason-section .reason-list {
    gap: 20px;
  }

  .reason-section .reason-item {
    gap: 12px;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .reason-section .reason-icon {
    width: 70px;
    height: 50px;
    min-width: 70px;
  }

  .reason-section .reason-text h3 {
    font-size: 15px;
  }

  .reason-section .reason-text p {
    font-size: 12px;
  }

  .reason-section .video-section {
    height: 300px;
    margin-top: 20px;
    border-radius: 8px;
    overflow: visible;
  }

  .reason-section .video-background {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 8px;
  }

  .reason-section .video-background video,
  .reason-section .video-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .reason-section .orange-overlay {
    width: 130px;
    height: 100px;
    left: -35px;
    bottom: -35px;
  }

  .reason-section .play-button {
    width: 65px;
    height: 65px;
  }

  .reason-section .play-button i {
    font-size: 22px;
  }

  /* Service Details */
  .service_details_main .main_details_tow {
    flex-direction: column;
    align-items: flex-start;
  }

  .service_details_main .workflow-item .text {
    font-size: 13px;
  }

  .service_details_main .section-title {
    font-size: 18px;
  }

  .service_details_main .team-image {
    height: 200px;
  }
}

/* ---- Extra small screens (320px - 400px) ---- */
@media (max-width: 400px) {
  .hero-title, .hero-subtitle {
    font-size: 20px;
  }

  .hero-description {
    font-size: 14px;
  }

  .hero-btn {
    font-size: 0.85rem;
    padding: 10px 20px;
  }

  .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-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_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 .main-title {
    font-size: 1.3rem;
  }

  .developing_leaders .service-title {
    font-size: 1rem;
  }

  .developing_leaders .card-image {
    height: 140px;
  }

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

  .container_main_slider .newsletter-content h2 {
    font-size: 20px;
  }

  .container_main_slider .section-header h2 {
    font-size: 20px;
  }

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

  .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_main {
    margin-top: 80px;
  }

  .map_main .info-section h2 {
    font-size: 22px;
  }

  .map_main .info-item {
    font-size: 12px;
  }

  .reason-section {
    padding: 30px 0;
  }

  .reason-section .reason-content {
    padding: 20px 15px;
  }

  .reason-section .reason-title {
    font-size: 22px;
  }

  .reason-section .title-underline {
    width: 40px;
    margin-bottom: 20px;
  }

  .reason-section .reason-list {
    gap: 18px;
  }

  .reason-section .reason-icon {
    width: 60px;
    height: 45px;
    min-width: 60px;
  }

  .reason-section .reason-text h3 {
    font-size: 14px;
  }

  .reason-section .reason-text p {
    font-size: 12px;
    line-height: 1.4;
  }

  .reason-section .video-section {
    height: 250px;
    margin-top: 20px;
    border-radius: 6px;
    overflow: visible;
  }

  .reason-section .orange-overlay {
    width: 120px;
    height: 90px;
    left: -30px;
    bottom: -30px;
  }

  .reason-section .play-button {
    width: 60px;
    height: 60px;
  }

  .reason-section .play-button i {
    font-size: 20px;
    margin-left: 3px;
  }

  .reason-section .play-button::before {
    border-width: 1px;
  }
}

/* ---- 375px ---- */
@media (max-width: 375px) {
  .reason-section .reason-title {
    font-size: 20px;
  }

  .reason-section .reason-content {
    padding: 18px 12px;
  }

  .reason-section .video-section {
    height: 220px;
    margin-top: 15px;
  }

  .reason-section .play-button {
    width: 55px;
    height: 55px;
  }

  .reason-section .play-button i {
    font-size: 18px;
  }

  .reason-section .orange-overlay {
    width: 100px;
    height: 80px;
    left: -25px;
    bottom: -25px;
  }

  .reason-section .reason-icon {
    width: 50px;
    height: 40px;
    min-width: 50px;
  }
}

/* ---- Mobile landscape mode ---- */
@media (max-height: 500px) and (orientation: landscape) {
  .hero-slider, .hero-slide {
    min-height: 100vh;
    height: 100vh;
  }

  .navbar-collapse {
    height: 100vh;
    overflow-y: scroll;
  }
}

/* ---- Touch devices ---- */
@media (hover: none) and (pointer: coarse) {
  .nav-link {
    padding: 15px 18px !important;
  }

  .dropdown-item {
    padding: 15px 25px;
  }

  .hero-btn, .btn-base {
    padding: 14px 32px;
    min-height: 44px;
  }

  .developing_leaders .service-card {
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }
}

/* ---- Footer Responsive ---- */
@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;
  }
}

/* ---- Why Choose Us Responsive ---- */
@media (max-width: 991px) {
  .why-choose-us-section .btn-style-three i {
    font-size: 12px;
  }

  .why-choose-us-section .btn-style-three {
    font-size: 8px;
  }

  .why-choose-us-section .theme-btn {
    font-size: 12px;
  }
}

/* ===== SHARED FLOAT BTN ===== */
.float-btn {
  width: 40px;
  height: 40px;
  border-bottom-right-radius: 10px;
  border-top-right-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  position: relative;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}

.floating-right .float-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 23px;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  position: relative;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}


.floating-left .float-btn::after {
  content: attr(data-tooltip);
  position: absolute;
  left: calc(100% + 10px);
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
  font-size: 0.72rem;
  padding: 4px 10px;
  border-radius: 20px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
  font-family: 'Segoe UI', sans-serif;
}

.float-btn:hover::after {
  opacity: 1;
}

.floating-right {
  position: fixed;
  bottom: 30px;
  right: 25px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.floating-left {
  position: fixed;
  bottom: 90px;
  left: -12px;
  display: flex;
  flex-direction: column;
  z-index: 999;
  background: var(--main-color);
  border-radius: 0 14px 14px 0;
  overflow: hidden;
}

.floating-left .float-btn {
  width: 54px;
  height: 54px;
  border-radius: 0;
  font-size: 1.15rem;
  background: transparent !important;
  box-shadow: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
}

.floating-left .float-btn:last-child {
  border-bottom: none;
}

.floating-left .float-btn:hover {
  transform: none;
  background: rgba(255, 255, 255, 0.13) !important;
  box-shadow: none;
  color: #fff;
}

.floating-left .float-btn::after {
  left: calc(100% + 10px);
  right: auto;
}

/* ===== COLORS: RIGHT SIDE ===== */
.btn-whatsapp {
  background: #25D366;
}

.btn-call {
  background: var(--main-color);
}



/* detels blog */

:root {
    --ink: #0d0d0d;
    --paper: #f7f3ee;
    --accent: #c0392b;
    --accent2: #e67e22;
    --muted: #7a7168;
    --border: #d6cfc6;
    --card-bg: #ffffff;
}

/* ─── HERO ─── */
.main-layout_blog .article-hero {
    position: relative;
    height: 500px;
    margin-top: -20px;
    overflow: hidden;
}

.main-layout_blog .article-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(.55);
    transition: transform 8s ease;
}

.main-layout_blog .article-hero:hover img {
    transform: scale(1.04);
}

.main-layout_blog .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.85) 30%, transparent 70%);
}

.main-layout_blog .hero-content {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    padding: 2.5rem 3rem;
    z-index: 999;
}

.main-layout_blog .category-badge {
    display: inline-block;
    background: var(--main-color);
    color: #fff;
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: .06em;
    padding: 4px 14px;
    border-radius: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.main-layout_blog .article-title {
    font-weight: 900;
    font-size: clamp(1.6rem, 4vw, 2.8rem);
    color: #fff;
    line-height: 1.3;
    max-width: 800px;
    text-shadow: 0 2px 12px rgba(0,0,0,.4);
    margin-bottom: 1rem;
}

.main-layout_blog .article-meta-hero {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    color: rgba(255,255,255,.85);
    font-size: 0.88rem;
}

.main-layout_blog .article-meta-hero .author-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #fff;
    object-fit: cover;
}

/* ─── LAYOUT ─── */
.main-layout_blog .main-layout {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 20px;
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 50px;
}

@media (max-width: 900px) {
    .main-layout_blog .main-layout {
        grid-template-columns: 1fr;
    }
}

/* ─── ARTICLE BODY ─── */
.main-layout_blog .article-body {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 2.5rem 3rem;
    box-shadow: 0 20px 40px rgba(0,0,0,.05);
}

@media (max-width: 600px) {
    .main-layout_blog .article-body {
        padding: 1.5rem;
    }

    .main-layout_blog .hero-content {
        padding: 1.5rem;
    }
}

.main-layout_blog .share-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 1.5rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid var(--border);
    flex-wrap: wrap;
}

.main-layout_blog .share-bar span {
    font-weight: 700;
    font-size: .9rem;
}

.main-layout_blog .share-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
    text-decoration: none;
    transition: transform .2s, opacity .2s;
}

.main-layout_blog .share-btn:hover {
    transform: scale(1.12);
    opacity: .9;
}

.main-layout_blog .share-btn.fb { background: #1877f2; }
.main-layout_blog .share-btn.tw { background: #1da1f2; }
.main-layout_blog .share-btn.wa { background: #25d366; }
.main-layout_blog .share-btn.li { background: #0a66c2; }

.main-layout_blog .read-time {
    margin-left: auto;
    color: var(--muted);
    font-size: .85rem;
}

.main-layout_blog .article-lead {
    font-size: 1.2rem;
    font-weight: 500;
    color: #2c2c2c;
    border-left: 4px solid var(--accent2);
    padding-left: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.9;
}

.main-layout_blog .article-content p {
    margin-bottom: 1.4rem;
    color: #2a2520;
}

.main-layout_blog .article-content h2 {
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--ink);
    margin: 2.5rem 0 1rem;
    position: relative;
    padding-left: 1rem;
}

.main-layout_blog .article-content h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 70%;
    background: var(--main-color);
    border-radius: 2px;
}

.main-layout_blog .article-content blockquote {
    background: #fdf6f0;
    border-left: 5px solid var(--accent2);
    margin: 2rem 0;
    padding: 1.4rem 1.8rem;
    border-radius: 4px 0 0 4px;
    font-size: 1.12rem;
    color: #3a3028;
    font-style: italic;
    position: relative;
}

.main-layout_blog .article-content blockquote::before {
    content: '\201C';
    font-size: 4rem;
    color: var(--accent2);
    opacity: .25;
    position: absolute;
    top: -10px;
    left: 10px;
    font-family: Georgia, serif;
    line-height: 1;
}

.main-layout_blog .article-content figure {
    margin: 2rem 0;
}

.main-layout_blog .article-content figure img {
    width: 100%;
    border-radius: 4px;
    display: block;
}

.main-layout_blog .article-content figcaption {
    text-align: center;
    color: var(--muted);
    font-size: .85rem;
    margin-top: .6rem;
}

/* Tags */
.main-layout_blog .tags-section {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--border);
}

.main-layout_blog .tags-section h5 {
    font-weight: 700;
    margin-bottom: 1rem;
}

.main-layout_blog .tag {
    display: inline-block;
    background: #fff;
    border: 1px solid #fff;
    color: var(--ink);
    padding: 4px 14px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,.05);
    font-size: .82rem;
    margin: 4px 4px 4px 0;
    text-decoration: none;
    transition: background .2s, border-color .2s;
}

/* Author card */
.main-layout_blog .author-card {
    margin-top: 2.5rem;
    padding: 1.8rem;
    background: #fdf6f0;
    border: 1px solid var(--border);
    border-radius: 4px;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.main-layout_blog .author-card img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 3px solid var(--accent);
}

.main-layout_blog .author-card h4 {
    font-weight: 800;
    margin-bottom: .3rem;
}

.main-layout_blog .author-card .role {
    color: var(--accent);
    font-size: .85rem;
    font-weight: 600;
    margin-bottom: .6rem;
}

.main-layout_blog .author-card p {
    color: var(--muted);
    font-size: .9rem;
    margin: 0;
}

/* Comments */
.main-layout_blog .comments-section {
    margin-top: 3rem;
}

.main-layout_blog .comments-section h3 {
    font-weight: 800;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.main-layout_blog .comment-card {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
}

.main-layout_blog .comment-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.main-layout_blog .comment-meta {
    font-size: .82rem;
    color: var(--muted);
    margin-bottom: .4rem;
}

.main-layout_blog .comment-meta strong {
    color: var(--ink);
    font-weight: 700;
    margin-right: 8px;
}

.main-layout_blog .comment-body {
    font-size: .93rem;
    color: #2a2520;
}

.main-layout_blog .comment-reply {
    background: none;
    border: none;
    color: var(--accent);
    font-size: .82rem;
    font-weight: 700;
    cursor: pointer;
    padding: 4px 0;
}

.main-layout_blog .comment-form {
    margin-top: 2rem;
}

.main-layout_blog .comment-form h5 {
    font-weight: 700;
    margin-bottom: 1rem;
}

.main-layout_blog .comment-form .form-control {
    border: 1px solid var(--border);
    border-radius: 3px;
    background: var(--paper);
    font-family: 'Tajawal', sans-serif;
}

.main-layout_blog .comment-form .form-control:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(192,57,43,.12);
}

.main-layout_blog .btn-submit {
    background: var(--accent);
    color: #fff;
    font-weight: 700;
    border: none;
    padding: 10px 30px;
    border-radius: 3px;
    transition: background .2s;
    cursor: pointer;
}

.main-layout_blog .btn-submit:hover {
    background: #a93226;
}

/* ─── SIDEBAR ─── */
.main-layout_blog .sidebar-widget {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 20px 40px rgba(0,0,0,.05);
}

.main-layout_blog .widget-title {
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: .02em;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
    padding-bottom: .8rem;
    border-bottom: 2px solid var(--ink);
    position: relative;
}

.main-layout_blog .widget-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent);
}

/* Related articles */
.main-layout_blog .related-item {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    text-decoration: none;
    color: inherit;
}

.main-layout_blog .related-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.main-layout_blog .related-item img {
    width: 80px;
    height: 65px;
    border-radius: 3px;
    object-fit: cover;
    flex-shrink: 0;
}

.main-layout_blog .related-item h6 {
    font-weight: 700;
    font-size: .9rem;
    line-height: 1.4;
    margin-bottom: .3rem;
    color: var(--ink);
    transition: color .2s;
}

.main-layout_blog .related-item .date {
    color: var(--muted);
    font-size: .78rem;
}

/* Newsletter widget */
.main-layout_blog .newsletter-widget {
    background: var(--ink);
    color: #fff;
}

.main-layout_blog .newsletter-widget .widget-title {
    color: #fff;
    border-bottom-color: rgba(255,255,255,.2);
}

.main-layout_blog .newsletter-widget .widget-title::after {
    background: var(--accent2);
}

.main-layout_blog .newsletter-widget p {
    font-size: .88rem;
    color: rgba(255,255,255,.75);
    margin-bottom: 1rem;
}

.main-layout_blog .newsletter-widget .form-control {
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.2);
    color: #fff;
}

.main-layout_blog .newsletter-widget .form-control::placeholder {
    color: rgba(255,255,255,.5);
}

.main-layout_blog .newsletter-widget .form-control:focus {
    border-color: var(--accent2);
    box-shadow: none;
}

.main-layout_blog .btn-newsletter {
    background: var(--accent2);
    color: #fff;
    border: none;
    width: 100%;
    padding: 10px;
    border-radius: 3px;
    font-weight: 700;
    transition: opacity .2s;
    margin-top: 8px;
    cursor: pointer;
}

.main-layout_blog .btn-newsletter:hover {
    opacity: .85;
}

/* Popular list */
.main-layout_blog .popular-item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
}

.main-layout_blog .popular-item:last-child {
    border-bottom: none;
}

.main-layout_blog .popular-num {
    font-weight: 900;
    font-size: 1.6rem;
    color: var(--border);
    line-height: 1;
    min-width: 32px;
}

.main-layout_blog .popular-item h6 {
    font-weight: 700;
    font-size: .88rem;
    margin-bottom: 3px;
    color: var(--ink);
    cursor: pointer;
    transition: color .2s;
}

.main-layout_blog .popular-item h6:hover {
    color: var(--accent);
}

.main-layout_blog .popular-item .meta {
    font-size: .76rem;
    color: var(--muted);
}

/* ─── FOOTER ─── */
.main-layout_blog footer {
    background: var(--ink);
    color: rgba(255,255,255,.7);
    text-align: center;
    font-size: .85rem;
    padding: 2rem 1rem;
    margin-top: 60px;
}

.main-layout_blog footer a {
    color: var(--accent);
    text-decoration: none;
}

/* Progress bar */
.main-layout_blog .reading-progress {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    height: 3px;
    background: var(--accent);
    transform-origin: left;
    transform: scaleX(0);
    z-index: 9999;
    transition: transform .1s linear;
}

/* Scroll to top */
.main-layout_blog .scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 44px;
    height: 44px;
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 1.1rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,.2);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
    transition: opacity .3s;
}

.main-layout_blog .scroll-top:hover {
    opacity: .85;
}

.statistics_section {
    padding-bottom: 80px;
}

.why-choose-us-section {
    margin-top: 0;
}
.Projects {
    padding-top: 80px;
}
