/* ===== IMPORT FONTS & VARIABLES ===== */
@import url("https://fonts.googleapis.com/css?family=Montserrat:300,400,500,600,700,800|Roboto:300,400,500,700");

:root {
  --primary-color: #1866a3;
  --secondary-color: #f5e89a;
  --dark-bg: #292d34;
  --light-bg: #f5f5f5;
  --text-dark: #1a1a1a;
  --text-light: #363b44;
  --border-color: #e0e0e0;
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Helvetica Neue", helvetica, sans-serif;
  overflow-x: hidden;
  background-color: #ffffff;
  color: var(--text-dark);
}

/* ===== NAVBAR ===== */
.navbar-custom {
  background-color: rgba(26, 26, 46, 0.95);
  --bs-navbar-padding-y: 15px !important;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-custom .navbar-brand img {
  max-width: 130px;
  transition: var(--transition);
}

.navbar-custom .navbar-brand:hover img {
  transform: scale(1.05);
}

.navbar-custom .nav-link {
  color: rgba(255, 255, 255, 0.9) !important;
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  transition: var(--transition);
  margin-left: 15px;
}

.navbar-custom .nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: var(--secondary-color);
  transition: width 0.3s ease;
}

.navbar-custom .nav-link:hover {
  color: var(--secondary-color) !important;
}

.navbar-custom .nav-link:hover::after {
  width: 100%;
}

/* ===== HERO SECTION ===== */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--dark-bg) 0%, #292d34 100%);
  color: white;
  position: relative;
  overflow: hidden;
 
}

 .highlight-text {
  /* background: linear-gradient(135deg, var(--secondary-color) 0%, #ffd700 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text; */
  margin-right: 50px;
  display: block;
  color: rgba(255, 255, 255, .8);
}

.hero-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 50%, rgba(24, 102, 163, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(245, 232, 154, 0.1) 0%, transparent 50%);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.logo-section {
  position: absolute;
  top: 30px;
  left: 50px;
  z-index: 10;
}

.logo-section img {
  max-width: 150px;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

.hero-title {
  font-size: 5rem;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 30px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  /* text-align: center; */
  margin-left: 50px;
  margin-top: 50px;
  font-family: "pf_dintext_pro", helvetica, sans-serif;
}

.hero-title br:nth-child(1) {
  display: inline;
}

.hero-title br:nth-child(2) {
  display: inline;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  max-width: 500px;
}

/* ===== CTA BUTTONS ===== */
.cta-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color) 0%, #0d4080 100%);
  border: none;
  padding: 14px 40px;
  font-weight: 600;
  border-radius: 8px;
  transition: var(--transition);
  font-size: 1rem;
  cursor: pointer;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(24, 102, 163, 0.4);
  color: #fff;
}

.btn-outline-primary {
  border: 2px solid white;
  color: white;
  background: transparent;
  padding: 12px 38px;
  font-weight: 600;
  border-radius: 8px;
  transition: var(--transition);
}

.btn-outline-primary:hover {
  background: white;
  color: var(--primary-color);
  transform: translateY(-3px);
}

/* ===== HERO IMAGE SECTION ===== */
.hero-image {
  position: relative;
  height: 500px;
  display: none;
}

@media (min-width: 992px) {
  .hero-image {
    display: block;
  }
}

/* ===== CTA SECTION ===== */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.95) 0%, rgba(42, 42, 78, 0.95) 100%);
  color: white;
}

.cta-content h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
}

.cta-content p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  margin: 0 auto;
}

.btn-light {
  background: white;
  color: var(--primary-color);
  border: none;
  padding: 14px 40px;
  font-weight: 600;
  border-radius: 8px;
  transition: var(--transition);
}

.btn-light:hover {
  background: var(--secondary-color);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* ===== FOOTER ===== */
.footer {
  background-color: var(--text-dark);
  color: white;
  padding: 40px 0;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.country-selector span {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

/* ===== RESPONSIVE DESIGN ===== */
/* Tablet/Medium Devices */
@media (max-width: 1024px) {
  .logo-section img {
    max-width: 120px;
  }

  .hero-title {
    font-size: 3.2rem;
    margin-left: 0px;
  }

  .highlight-text {
    margin-right: 30px;
  }

  .section-title {
    font-size: 2.3rem;
  }

  .service-card.featured {
    transform: scale(1.02);
  }
}

/* Tablet Devices */
@media (max-width: 768px) {
  .logo-section {
    top: 20px;
    left: 20px;
  }

  .logo-section img {
    max-width: 100px;
  }

  .hero-title {
    font-size: 2.5rem;
    line-height: 1.3;
    margin-bottom: 20px;
  }

  .highlight-text {
    margin-right: 20px;
    margin-bottom: 8px;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .btn-primary,
  .btn-outline-primary {
    width: 100%;
  }

  .section-title {
    font-size: 2rem;
  }

  .service-card.featured {
    transform: scale(1);
  }

  .features-title {
    font-size: 1.8rem;
  }

  .cta-content h2 {
    font-size: 1.8rem;
  }

  .footer-bottom {
    justify-content: center;
    text-align: center;
    flex-direction: column;
  }

 
}

/* Small Tablet/Large Mobile */
@media (max-width: 640px) {
  .logo-section {
    top: 15px;
    left: 15px;
  }

  .logo-section img {
    max-width: 90px;
  }

  .hero-title {
    font-size: 2rem;
    line-height: 1.3;
    margin-bottom: 15px;
  }

  .highlight-text {
    margin-right: 15px;
    margin-bottom: 5px;
    font-size: 1.9rem;
  }

  .hero-section {
    min-height: 85vh;
    padding: 20px;
  }

  .hero-content {
    /* text-align: center; */
  }

  .container {
    padding: 0 15px;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .stat-number {
    font-size: 2.2rem;
  }

  .services-section,
  .features-section,
  .stats-section,
  .cta-section {
    padding: 40px 15px;
  }

  .service-card {
    padding: 20px 15px;
  }

  .features-list li {
    gap: 12px;
    margin-bottom: 15px;
    padding: 12px;
  }

  .features-title {
    font-size: 1.5rem;
  }

  .cta-content h2 {
    font-size: 1.5rem;
  }

  .cta-content p {
    font-size: 0.95rem;
  }
}

/* Mobile Devices */
@media (max-width: 480px) {
  .logo-section {
    top: 12px;
    left: 12px;
  }

  .logo-section img {
    max-width: 80px;
  }

  .hero-section {
    min-height: 90vh;
    padding: 15px;
  }

  .hero-title {
    font-size: 1.6rem;
    line-height: 1.25;
    margin-bottom: 20px;
  }

  .highlight-text {
    margin-right: 10px;
    margin-bottom: 3px;
    font-size: 1.5rem;
  }

  .hero-subtitle {
    font-size: 0.9rem;
  }

  .container {
    padding: 0 12px;
  }

  .section-title {
    font-size: 1.3rem;
  }

  .service-card {
    padding: 15px 10px;
  }

  .service-card h4 {
    font-size: 1.2rem;
  }

  .service-card p {
    font-size: 0.85rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .stat-item p {
    font-size: 0.9rem;
  }

  .features-title {
    font-size: 1.3rem;
  }

  .features-list li {
    gap: 10px;
    margin-bottom: 12px;
    padding: 10px;
  }

  .features-list h5 {
    font-size: 0.95rem;
  }

  .features-list p {
    font-size: 0.85rem;
  }

  .cta-content h2 {
    font-size: 1.3rem;
  }

  .cta-content p {
    font-size: 0.85rem;
  }

  .btn-primary,
  .btn-outline-primary {
    padding: 10px 20px;
    font-size: 0.85rem;
  }

  .country-selector span {
    font-size: 0.8rem;
  }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.aos-animate {
  animation-fill-mode: both;
}

