/* TOP BAR */
.top-bar {
    background-color: #000080;
    font-size: 13px;
}

/* LOGO */
.logo-img {
    height: 55px;
    width: auto;
    object-fit: contain;
}

@media (min-width: 992px) {
    .logo-img { height: 65px; }
}

@media (max-width: 576px) {
    .logo-img { height: 45px; }
}

/* NAVBAR */
.navbar {
    min-height: 80px;
}

.nav-link {
    font-weight: 500;
    color: #333 !important;
}

/* Hover Effect */
.nav-link:hover {
    color: #000080 !important;
}

/* Button */
.btn-custom {
    background-color: #D4B06A;
    color: #fff;
    font-weight: 600;
}

.btn-custom:hover {
    background-color: #b89656;
    color: #fff;
}

/* Mobile Fix */
@media (max-width: 991px) {
    .navbar-collapse {
        background: #fff;
        padding: 15px;
    }
}
.animate-left {
    opacity: 0;
    transform: translateX(-100px);
    transition: all 0.8s ease;
}

/* Active class */
.animate-left.show {
    opacity: 1;
    transform: translateX(0);
}
.step-number {
    font-size: 60px;
    font-weight: 500;
    color: #2B4189;
    min-width: 90px;
    line-height: 1;
}

.step-content h6 {
    color: #2B4189;
    font-weight: 500;
}

.step-content p {
    font-size: 14px;
    color: #333;
    line-height: 1.7;
}
.slide-up {
    opacity: 0;
    transform: translateY(120px);
    transition: all 1s ease;
}

.slide-up.show {
    opacity: 1;
    transform: translateY(0);
}
@media (min-width:768px)
{
.border-md-start
{
border-left:1px solid rgba(255,255,255,0.4);
}
}
/* Top Bar */
.announcement-bar {
  position: sticky;
  top: 0;
  z-index: 9999;
  background: #D4B06A;
  color: #fff;
  overflow: hidden;
  height: 45px;
  display: flex;
  align-items: center;
}

/* Scrolling wrapper */
.announcement-track {
  display: flex;
  width: max-content;
  animation: scrollText 25s linear infinite;
}

/* Text style */
.announcement-text {
  white-space: nowrap;
  padding-right: 80px;
  font-weight: 500;
  letter-spacing: 5px;
}

/* Animation */
@keyframes scrollText {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ================= RESPONSIVE IMPROVEMENTS ================= */

/* Small Devices (Mobile) */
@media (max-width: 576px) {

  .announcement-bar {
    height: 35px;
  }

  .announcement-text {
    font-size: 12px;
    letter-spacing: 2px;
    padding-right: 40px;
  }

  .announcement-track {
    animation: scrollText 15s linear infinite;
  }

  .top-bar {
    font-size: 11px;
    text-align: center;
  }

  .navbar {
    min-height: auto;
  }

  .nav-link {
    padding: 10px 0;
  }

  .step-number {
    font-size: 40px;
    min-width: 60px;
  }

  .step-content p {
    font-size: 13px;
  }
}

/* Medium Devices (Tablet) */
@media (min-width: 577px) and (max-width: 991px) {

  .announcement-bar {
    height: 40px;
  }

  .announcement-text {
    font-size: 13px;
    letter-spacing: 3px;
  }

  .announcement-track {
    animation: scrollText 20s linear infinite;
  }

  .step-number {
    font-size: 50px;
  }
}

/* Large Screens Optimization */
@media (min-width: 1200px) {

  .announcement-text {
    font-size: 15px;
  }

  .announcement-track {
    animation: scrollText 30s linear infinite;
  }
}
/* ================= GLOBAL RESPONSIVE FIX ================= */

/* Hero Section */
@media (max-width: 576px) {
  section[style*="height:600px"] {
    height: 420px !important;
    padding: 20px 10px;
  }

  h1.display-4 {
    font-size: 26px;
  }

  .lead {
    font-size: 14px;
  }

  .btn {
    padding: 8px 16px;
    font-size: 13px;
  }
}

/* Announcement Bar */
@media (max-width: 576px) {
  .announcement-bar {
    height: 35px;
  }

  .announcement-text {
    font-size: 11px;
    letter-spacing: 2px;
  }

  .announcement-track {
    animation: scrollText 18s linear infinite;
  }
}

/* Stats Section */
@media (max-width: 576px) {
  .stats-box h3 {
    font-size: 18px;
  }

  .stats-box p {
    font-size: 12px;
  }
}

/* Our Process */
@media (max-width: 991px) {
  .step-number {
    font-size: 40px;
    min-width: 60px;
  }

  .step-content p {
    font-size: 13px;
  }
}

/* Center Image Fix */
@media (max-width: 991px) {
  .col-lg-3.p-0 img {
    min-height: 250px !important;
  }
}

/* Services Section */
@media (max-width: 576px) {
  .col-12.col-sm-6.col-lg-3 img {
    height: 180px;
    object-fit: cover;
  }
}

/* Slider Images */
@media (max-width: 576px) {
  .slider img {
    height: 160px;
  }
}

@media (min-width: 577px) and (max-width: 991px) {
  .slider img {
    height: 220px;
  }
}

/* Testimonials */
@media (max-width: 576px) {
  .bg-white.p-4.shadow-sm {
    padding: 20px !important;
  }
}

/* Contact Section */
@media (max-width: 576px) {
  .p-5 {
    padding: 20px !important;
  }

  iframe {
    min-height: 220px !important;
  }
}

/* Fix Long Text Overflow */
p, h1, h2, h3, h4, h5, h6 {
  word-break: break-word;
}