@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700&display=swap');



.top-bar{
    background: #A4E102;
    padding: 10px 0;
}

.top-bar .contact-link {
    color: #000;
}


.top-bar .divider {
    color: #000;
    font-weight: 600;
    margin-left: 8px;
}

.top-bar .top-right a {
    color: #000;
    padding: 0 12px;
    border-right: 1px solid #000;
    text-decoration: none;
    height: 100%;
}

.top-right i.fa-question {
    color: yellow;
   font-weight: 900;
}


.sudell-navbar {
    background: linear-gradient(to bottom, #0f0f0f, #2b2b2b);
    padding: 12px 0;
}

/* LOGO */
.sudell-navbar .navbar-brand img {
    height: 55px;
    margin-right: 40px;
}

/* MENU */
.sudell-menu {
    margin-right: 60px;
}

.sudell-menu .nav-link {
    color: #ffffff;
    font-weight: 600;
    font-size: 15px;
    margin: 0 14px;
    display: flex;
    align-items: center;
    transition: 0.2s ease;
}

.sudell-menu .nav-link i {
    margin-right: 6px;
    color: #d9d9d9;
    font-size: 14px;
}

/* HOVER */
.sudell-menu .nav-link:hover,
.sudell-menu .active .nav-link {
    color: #A4E102;
}

.sudell-menu .nav-link:hover i {
    color: #A4E102;
}

/* CALL BUTTON */
.sudell-call-btn {
    background: #A4E102;
    color: #000;
    font-weight: 700;
    padding: 10px 22px;
    border-radius: 6px;
    font-size: 15px;
    margin-left: 10px;
    transition: 0.2s ease;
}

.sudell-call-btn:hover {
    background: #a4e102d6;
    color: #fff;
}

/* MOBILE */
.navbar-toggler {
    border-color: rgba(255,255,255,0.3);
}

.navbar-toggler-icon {
    filter: invert(1);
}


.hero-video-section {
    position: relative;
    height: 80vh;
    overflow: hidden;
}

/* VIDEO BACKGROUND */
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
}

/* DARK OVERLAY */
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
}

/* HERO TEXT */
.hero-content {
    position: relative;
    z-index: 2;
    top: 50%;
    transform: translateY(-50%);
    color: white;
}

.hero-content h1 {
    display: inline-block;
    background: rgba(0, 0, 0, 0.15); /* dark transparent */
    padding: 12px 22px;
    border-radius: 4px;
    font-size: 40px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}


/* SUBTITLE */
.hero-content p {
    font-size: 20px;
    margin-top: 14px;
    font-weight: 700;
    color: #e6e6e6;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 28px;
    }
}

.sudell-feature-bar {
    background: #A4E102;
    color: #000;
    padding: 20px 0;
    font-family: 'Inter', sans-serif;
}

.sudell-box {
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-left {
    font-size: 24px;
    margin-top: -10px;
}

.text-content h5 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
}

.text-content p {
    font-size: 13px;
    opacity: 0.9;
    line-height: 1.3;
}

.middle {
    flex-direction: column;
    border-left: 1px solid rgba(255,255,255,0.35);
    border-right: 1px solid rgba(255,255,255,0.35);
}

.middle h5 {
    margin-top: 6px;
    font-weight:700;
}

.stars {
    font-size: 20px;
    letter-spacing: 2px;
}
.fa-arrow-down:before {
    margin-right:5px;
}

.fa-trophy:before{
    margin-right:5px;
}

/* About Section Styling */
.about-section {
  background-color: #fff;
  text-align: center;
  padding: 60px 20px;
  font-family: Arial, sans-serif;
  color: #111;
}

.about-section h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 20px;
}

.about-section p {
  font-size: 16px;
  line-height: 1.8;
  text-align: left;
  margin: 0 auto 30px auto;
}

.about-section a.btn-primary {
  display: inline-block;
  background-color: #A4E102;
  color: #000;
  font-weight: 600;
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s;
}

.about-section a.btn-primary:hover {
  background-color: #a4e102e0;
}

.about-section a.btn-primary i {
  margin-right: 8px;
}

