:root {
  --font-main: "Poppins", sans-serif;
  --bs-secondary: #b0b8bf;
  --bs-secondary-rgb: 176, 184, 191;
}

body {
  font-family: "Poppins", sans-serif;
  color: #333;
}

h1,
h2,
h3,
.site-title {
  font-weight: 700;
}
.btn-custom{
    background-color: #da251a !important;

}

 .justify-text {
    text-align: justify !important;
}

.bg-navy{
  color:#015198 !important;
}
.text-navy{
    color:#015198 !important;
}
.bg-custom {
  background-color: #da251a !important;
}

.text-custom {
  color: #da251a !important;
}

.img-brand {
  height: 85px !important;
}
/* slider */
.ultra-title {
  font-size: 3.5rem;
  line-height: 1.1;
}

.premium-overlay {
  background: rgba(0, 0, 0, 0.6);
}

.glass-quote-box {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(1px);
  border-left: 4px solid #da251a;
}

@media (max-width: 768px) {
  .footer-bg-text {
    font-size: 4rem !important;
    letter-spacing: 10px !important;
    margin-bottom: 100px !important;
  }

  .img-brand {
    height: 65px !important;
  }

  .ultra-content-box {
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }

  .ultra-title {
    font-size: clamp(1.8rem, 8vw, 2.5rem) !important;
    letter-spacing: -1px !important;
    margin-bottom: 1rem !important;
  }

  .vh-100 {
    height: 80vh !important;
  }

  .glass-quote-box {
    border-left: none !important;
    border-top: 3px solid #da251a !important;
    padding: 1rem !important;
    width: 100%;
  }

  .action-btns {
    width: 100%;
    justify-content: center !important;
  }

  .action-btns .btn {
    width: 80%;
    font-size: 0.9rem !important;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.reveal-fade-up {
  animation: fadeInUp 0.8s ease forwards;
}
.ultra-title {
  animation: fadeInUp 0.8s ease 0.2s forwards;
  opacity: 0;
}
.reveal-fade-up-delay {
  animation: fadeInUp 0.8s ease 0.4s forwards;
  opacity: 0;
}
.reveal-fade-up-final {
  animation: fadeInUp 0.8s ease 0.6s forwards;
  opacity: 0;
}

/* footer */
.footer-modern {
  position: relative;
}

.footer-modern ul li a {
  display: inline-block;
  transition: all 0.25s ease-in-out;
}

.footer-modern ul li a:hover {
  color: #da251a !important;
  transform: translateX(5px);
}

.footer-bg-text {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.2);
  letter-spacing: 25px;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}

/* our banches */
.state-card {
  position: relative;
}

.state-overlay {
  background: rgba(0, 0, 0, 0.7);
  /* dark with 0.4 opacity */
}

.state-overlay p {
  letter-spacing: 2px !important;
}

.state-img {
  transition: transform 0.4s ease;
}

.state-card:hover .state-img {
  transform: scale(1.05);
}

/* hero and breadcrumb */
.hero {
  position: relative;
  min-height: 30vh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.breadcrumb {
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

.breadcrumb-item + .breadcrumb-item::before {
  content: ">";
  color: #fff;
}

@media (max-width: 768px) {
  .hero {
    text-align: center;
  }

  .breadcrumb {
    display: flex;
    justify-content: center;
    margin-top: 15px;
  }
}

/* about page */
.about-feature-title {
  letter-spacing: 0.5px;
}
.about-feature-desc {
  color: #222;
}
@media (max-width: 991px) {
  .about-feature-title { font-size: 1.1rem; }
  .about-feature-desc { font-size: 1rem; }
}

/* contacts page */
/* Breadcrumb Hero */
  .contact-hero .breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 10px;
  }

  .contact-hero .breadcrumb-item a {
    color: #2c3e50;
    font-weight: 600;
  }

  .contact-hero .breadcrumb-item.active {
    color: #8b0000;
    font-weight: 700;
  }

  .contact-hero .hero-title {
    font-size: 3rem;
    color: #2c3e50;
    margin-bottom: 10px;
  }

  .contact-hero .hero-subtitle {
    font-size: 1.1rem;
    color: #555;
  }

  /* Contact Info Cards */
  .contact-info-card {
    background: #fff;
    padding: 35px 25px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
  }

  .contact-info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  }

  .info-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #c40000, #8b0000);
    border-radius: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
  }

  .info-icon i {
    font-size: 2rem;
    color: #fff;
  }

  /* Form Wrapper */
  .form-wrapper {
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  }

  .form-left-panel {
    background: linear-gradient(135deg, #c40000, #8b0000);
    padding: 50px 40px;
    color: #fff;
  }

  .panel-content h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 15px;
  }

  .panel-content>p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
  }

  .feature-list {
    margin-bottom: 40px;
  }

  .feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
  }

  .feature-item i {
    color: #f7c600;
    font-size: 1.2rem;
  }

  .social-connect h6 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 15px;
  }

  .social-icons {
    display: flex;
    gap: 12px;
  }

  .social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
    transition: all 0.3s ease;
  }

  .social-icon:hover {
    background: #f7c600;
    color: #2c3e50;
    transform: translateY(-3px);
  }

  .form-right-panel {
    padding: 50px 40px;
  }

  .modern-form .form-group {
    margin-bottom: 20px;
  }

  /* Inputs */
  .input-with-icon {
    position: relative;
  }

  .input-with-icon i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 1.1rem;
  }

  .input-with-icon input,
  .input-with-icon textarea {
    width: 100%;
    padding: 15px 20px 15px 55px;
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    background: #f8f9fa;
    transition: all 0.3s ease;
  }

  .input-with-icon input:focus,
  .input-with-icon textarea:focus {
    outline: none;
    border-color: #f7c600;
    background: #fff;
  }

  .btn-submit-modern {
    width: 100%;
    background: linear-gradient(135deg, #c40000, #8b0000);
    color: #fff;
    border: none;
    padding: 18px 30px;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .btn-submit-modern:hover {
    transform: translateY(-3px);
  }

  /* Responsive */
  @media (max-width: 992px) {
    .contact-hero .hero-title {
      font-size: 2.5rem;
    }

    .form-left-panel,
    .form-right-panel {
      padding: 40px 30px;
    }
  }

  @media (max-width: 768px) {
    .contact-hero .hero-title {
      font-size: 2rem;
    }
  }

  /*condition*/
  .terms-gradient-bg {
  background: linear-gradient(120deg, #f8fafc 60%, #e3e8ef 100%);
}

.text-custom {
  color: #e53935;
}

.terms-section-divider {
  border: none;
  border-top: 2px dashed #e53935;
  margin: 2rem 0 2.5rem 0;
  width: 60px;
}
@media (max-width: 575px) {
  .terms-title-bar { height: 36px; }
  .terms-section-divider { margin: 1.2rem 0 1.5rem 0; width: 40px; }
}

.gallery-section {
    background: #f8f9fa;
  }

  .gallery-item {
    transition: .4s;
  }

  .gallery-image {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    aspect-ratio: 4/3;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .08);
  }

  .gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s;
  }

  .gallery-image:hover img {
    transform: scale(1.15);
  }

  /* Overlay */
  .gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(196, 0, 0, .9), rgba(139, 0, 0, .9));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    opacity: 0;
    transition: .4s;
    padding: 20px;
  }

  .gallery-image:hover .gallery-overlay {
    opacity: 1;
  }

  .gallery-overlay h4 {
    font-weight: 700;
  }

  .gallery-overlay p {
    font-size: .9rem;
  }

  /* View Button */
  .gallery-view-btn {
    width: 50px;
    height: 50px;
    background: #f7c600;
    color: #2c3e50;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    transition: .3s;
    border: none;
  }

  .gallery-view-btn:hover {
    background: #fff;
    transform: scale(1.15);
  }







