body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


.navbar {
    width: 95%; 
    margin: 15px auto; 
    background: rgba(0, 0, 0, 0.5) !important; 
    border-radius: 15px; 
    padding: 10px 20px;
    backdrop-filter: blur(2px); 
}


.navbar-brand {
    font-size: 24px;
    font-weight: bold;
}

 
.navbar-nav .nav-link {
    font-size: 18px;
    margin: 0 10px;
}

 
.navbar-nav .btn-primary {
    border-radius: 8px;
    padding: 8px 15px;
}

 
@media (max-width: 991px) {
    .navbar {
        width: 100%;
        border-radius: 0;  
    }
}



 
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    background: url('hero.jpg') center/cover no-repeat fixed;  
    font-family: 'Poppins', sans-serif;
}

 
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

 
.hero h1 {
    font-size: 70px;
    font-weight: 800;
    text-transform: uppercase;
    z-index: 1;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeSlideIn 1.5s ease-out forwards;
}
 
.neon-text {
    display: inline-block;
    color: #ff9900; 
    text-shadow: 0 0 5px #ff9900, 0 0 10px #ff6600, 0 0 20px #cc5500;
    animation: flicker 2s ease-in-out 3, steadyGlow 1.5s forwards 2s;
}

@keyframes flicker {
    0% { opacity: 0.1; text-shadow: none; }
    20% { opacity: 1; text-shadow: 0 0 5px #ff9900, 0 0 10px #ff6600; }
    40% { opacity: 0.3; text-shadow: none; }
    60% { opacity: 1; text-shadow: 0 0 5px #ff9900, 0 0 20px #cc5500; }
    80% { opacity: 0.5; text-shadow: none; }
    100% { opacity: 1; text-shadow: 0 0 10px #ff9900, 0 0 40px #cc5500; }
}


@keyframes steadyGlow {
    100% {
        text-shadow: 0 0 10px #ff9900, 0 0 20px #ff6600, 0 0 40px #cc5500;
    }
}


.hero p {
    font-size: 20px;
    font-weight: 400;
    z-index: 1;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeSlideIn 1.5s ease-out 0.3s forwards;
}


.hero .cta-button {
    font-size: 16px;
    padding: 12px 25px;
    font-weight: bold;
    border-radius: 8px;
    z-index: 1;
    opacity: 0;
    animation: fadeSlideIn 1.5s ease-out 0.5s forwards;
    background: #ff9900;
    border: none;
    color: #000;
    text-transform: uppercase;
    transition: 0.3s ease-in-out;
}

.hero .cta-button:hover {
    background: #cc5500;
    color: white;
}


@keyframes fadeSlideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


@media (max-width: 768px) {
    .hero h1 {
        font-size: 30px; 
    }
    .hero {
        background-attachment: scroll; 
    }
}

.cta-button {
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.reels-section {
    padding: 60px 0;
    background-color: #f8f9fa; 
}

.reel-wrapper {
    overflow-x: auto; 
    white-space: nowrap;
    padding: 10px 0;
    scrollbar-width: thin; 
    scrollbar-color: #ccc transparent;
}


.reel-wrapper::-webkit-scrollbar {
    height: 8px;
}

.reel-wrapper::-webkit-scrollbar-thumb {
    background-color: #aaa;
    border-radius: 10px;
}

.reel-container {
    display: flex;
    gap: 15px;
    padding: 10px;
    width: max-content;
}

.reel {
    width: 250px;
    height: 450px;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    flex: 0 0 auto; 
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.reel:hover {
    transform: scale(1.05); 
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.3);
}

.testimonial-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    background: #f8f9fa;
    padding: 20px 0;
}

.testimonial-track {
    display: flex;
    gap: 30px;
    animation: scrollTestimonials 25s linear infinite;
    width: max-content; 
}

.testimonial-box {
    min-width: 300px;
    background: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    font-size: 18px;
    font-style: italic;
    text-align: center;
    white-space: normal; 
}


@keyframes scrollTestimonials {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-30%);
    }
}

.transformation-section {
    padding: 60px 0;
    text-align: center;
    background-color: #f8f9fa;
}

.transformation-wrapper {
    overflow-x: auto;
    white-space: nowrap;
    padding: 20px 0;
    scrollbar-width: thin;
    scrollbar-color: #ccc transparent;
}


.transformation-wrapper::-webkit-scrollbar {
    height: 8px;
}

.transformation-wrapper::-webkit-scrollbar-thumb {
    background-color: #aaa;
    border-radius: 10px;
}

.transformation-container {
    display: flex;
    gap: 20px;
    padding: 10px;
    width: max-content;
}

.transformation-box {
    flex: 0 0 auto;
    width: 660px; 
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background: white;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

.transformation-box img {
    width: 50%; 
    height: auto;
    border-radius: 10px;
}

.footer {
    background: #222;
    color: white;
    padding: 40px 0;
}

.footer h5 {
    color: #f8f9fa;
}

.footer-link {
    color: #bbb;
    text-decoration: none;
}

.footer-link:hover {
    color: #fff;
}

.social-icon {
    font-size: 24px;
    color: white;
    margin-right: 15px;
    transition: transform 0.3s ease, color 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.2);
    color: #f8f9fa;
}

.footer-bottom {
    background: #111;
    color: #ccc;
    font-size: 14px;
}

.footer-bottom {
    background: #111;
    color: #ccc;
    font-size: 14px;
}

.floating-badge {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 250px;
    height: 100px;
    background-color: #ffcc00;
    color: #333;
    font-weight: bold;
    text-align: center;
    padding: 12px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    animation: popIn 0.5s ease-in-out;
    display: none; 
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    line-height: 1.4;
}

.close-badge {
    position: absolute;
    top: 5px;
    right: 10px;
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
}

.badge-link {
    text-decoration: none;
    color: #000;
}

.badge-link:hover {
    text-decoration: underline;
}

@keyframes popIn {
    0% { transform: scale(0); opacity: 0; }
    80% { transform: scale(1.1); opacity: 1; }
    100% { transform: scale(1); }
}

.about-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.about-img {
    width: 100%;
    max-width: 500px;
    border-radius: 15px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

.cta-section {
    padding: 60px 20px;
    text-align: center;
    background: #f8f9fa;
    border-radius: 15px;
    margin: 50px auto;
    max-width: 800px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(30px); 
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.cta-section.show {
    opacity: 1;
    transform: translateY(0);
}

.btn-primary {
    font-size: 1.2rem;
    padding: 12px 25px;
    border-radius: 8px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

.about-section h2{
    font-weight: 700;
}

.reels-section h2
{
    font-weight: 800;
}

.testimonials h2
{
    font-weight: 800;
}

.transformation-section h2
{
    font-weight: 800;
}
.small-footer {
    background: #222;
    color: white;
    text-align: center;
    padding: 10px;
    font-size: 14px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin-bottom: 5px;
}

.footer-links li {
    display: inline;
    margin: 0 10px;
}

.footer-links a {
    color: #ff9900;
    text-decoration: none;
    font-size: 14px;
}

.footer-links a:hover {
    text-decoration: underline;
}