
        /* =======================
   GENERAL STYLING
======================= */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    line-height: 1.6;
}

a {
    text-decoration: none;
    transition: 0.3s ease;
}

a:hover {
    text-decoration: none;
    color: #ffb200;
}

/* =======================
   HERO SECTION
======================= */
.hero-section {
    position: relative;
    height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    filter: brightness(0.7) contrast(1.1);
    transform: scale(1.02);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-btn {
    border-radius: 50px;
    box-shadow: 0 0 18px rgba(13, 110, 253, 0.5);
    transition: 0.3s ease;
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(13, 110, 253, 0.7), 0 0 25px rgba(255,178,0,0.7);
}

/* =======================
   SECTION HEADINGS
======================= */
h2, h3 {
    color: #ffb200;
}

section {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

/* =======================
   FEATURE CARDS
======================= */
.feature-card, .hover-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover, .hover-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 1rem 2rem rgba(0,0,0,0.12);
}

/* =======================
   IMAGE SECTIONS
======================= */
.custom-img {
    height: 380px;
    width: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.custom-img:hover {
    transform: scale(1.05);
}

/* =======================
   CTA SECTION
======================= */
.cta-section {
    background: linear-gradient(90deg,#0d6efd,#ffb200);
}

.cta-section .btn-light {
    font-weight: 600;
    border-radius: 50px;
    padding: 0.75rem 2rem;
    transition: 0.3s ease;
}

.cta-section .btn-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 20px rgba(255,255,255,0.5);
}

/* =======================
   TESTIMONIALS
======================= */
.testimonial-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 1rem 2rem rgba(0,0,0,0.12);
}

.testimonial-card img {
    object-fit: cover;
}

/* =======================
   CONTACT BANNER
======================= */
.contact-banner {
    position: relative;
    background: url('assets/images/stepstarll.jpeg') center/cover no-repeat;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.contact-banner .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.55);
    z-index: 1;
}

.contact-banner h2 {
    font-size: 2.5rem;
    color: #ffb200;
}

.contact-banner p {
    max-width: 700px;
    margin: 0 auto 20px auto;
    color: #ffffff;
    font-size: 1.1rem;
}

.contact-banner .btn-warning {
    background-color: #ffb200;
    border: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.contact-banner .btn-warning:hover {
    background-color: #ffa000;
    transform: translateY(-2px);
}

/* =======================
   ANIMATIONS
======================= */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
