* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-red: #E63946;
    --primary-blue: #00A8E8;
    --primary-navy: #1D3557;
    --white: #ffffff;
    --light-bg: #f8f9fa;
    --gray: #6c757d;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--primary-navy);
    line-height: 1.6;
    overflow-x: hidden;
}

.top-bar {
    background: var(--primary-red);
    color: var(--white);
    font-size: 0.85rem;
}

.top-bar a {
    color: var(--white);
    text-decoration: none;
    transition: opacity 0.3s;
}

.top-bar a:hover {
    opacity: 0.8;
}

.navbar {
    background: var(--primary-navy);
    padding: 10px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.navbar-brand img {
    height: 70px;
    transition: transform 0.3s;
}

.navbar-nav .nav-link {
    color: var(--white) !important;
    padding: 10px 15px !important;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
}

.footer-logo {
    height: 80px;
    transition: transform 0.3s;
}

.footer-logo:hover {
    transform: scale(1.05);
}

.footer {
    background: #0f1c2e;
    color: var(--white);
    padding: 80px 0 30px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), var(--primary-blue));
}

.footer h5 {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer h5::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-red);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: 0;
    left: 50%;
    background: var(--primary-red);
    transition: all 0.3s;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
    width: 80%;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-blue) !important;
    transform: translateY(-2px);
}

.dropdown-menu {
    background: var(--white);
    border: none;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    border-radius: 8px;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-item {
    padding: 10px 20px;
    transition: all 0.3s;
    color: var(--primary-navy);
}

.dropdown-item:hover {
    background: var(--primary-blue);
    color: var(--white);
    padding-left: 30px;
}

.btn-enquiry {
    background: var(--primary-red);
    color: var(--white);
    padding: 10px 25px;
    border-radius: 25px;
    border: 2px solid var(--primary-red);
    font-weight: 600;
    transition: all 0.3s;
}

.btn-enquiry:hover {
    background: transparent;
    color: var(--primary-red);
    transform: scale(1.05);
}

.hero-slider {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    background: #000;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 1.2s cubic-bezier(0.7, 0, 0.3, 1);
    transform: scale(1.1);
}

.slide.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4) contrast(1.1);
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(29, 53, 87, 0.4) 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    text-align: left;
    color: var(--white);
    z-index: 2;
    max-width: 800px;
}

.slide-content h1 {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: -1px;
    background: linear-gradient(to right, #fff, #ccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s 0.3s ease-out;
}

.slide.active .slide-content h1 {
    opacity: 1;
    transform: translateX(0);
}

.slide-content p {
    font-size: 1.8rem;
    margin-bottom: 40px;
    font-weight: 300;
    color: rgba(255,255,255,0.9);
    border-left: 4px solid var(--primary-red);
    padding-left: 20px;
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.8s 0.6s ease-out;
}

.slide.active .slide-content p {
    opacity: 1;
    transform: translateX(0);
}

.slide-content .btn-group {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s 0.9s ease-out;
}

.slide.active .slide-content .btn-group {
    opacity: 1;
    transform: translateY(0);
}

.slider-controls {
    position: absolute;
    bottom: 50px;
    right: 10%;
    left: auto;
    transform: none;
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.slider-controls button {
    width: 50px;
    height: 4px;
    border-radius: 2px;
    background: rgba(255,255,255,0.2);
    margin: 0;
    transition: all 0.4s;
}

.slider-controls button.active {
    background: var(--primary-red);
    width: 70px;
}

.slider-controls button::before {
    content: attr(data-index);
    position: absolute;
    left: -30px;
    top: -8px;
    color: rgba(255,255,255,0.5);
    font-size: 0.8rem;
    font-weight: bold;
}

@media (max-width: 991px) {
    .slide-content {
        left: 5%;
        right: 5%;
        text-align: center;
    }
    .slide-content h1 { font-size: 3rem; }
    .slide-content p { font-size: 1.2rem; border-left: none; padding-left: 0; }
    .slider-controls {
        flex-direction: row;
        bottom: 30px;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
    }
}

.info-marquee {
    background: linear-gradient(90deg, var(--primary-red), var(--primary-navy));
    color: white;
    padding: 15px 0;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.marquee-text {
    display: inline-block;
    white-space: nowrap;
    animation: scroll-left 30s linear infinite;
    font-size: 1.1rem;
    font-weight: 500;
    padding-left: 100%;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

.info-marquee:hover .marquee-text {
    animation-play-state: paused;
}

.tv-frame-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--light-bg) 0%, #e3f2fd 100%);
}

.highlight-points {
    margin: 30px 0;
}

.point-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.point-item i {
    color: var(--primary-red);
    font-size: 1.3rem;
    margin-right: 15px;
}

.tv-frame {
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    border-radius: 25px 25px 0 0;
    padding: 30px 30px 20px;
    box-shadow: 
        0 30px 80px rgba(0,0,0,0.8),
        inset 0 2px 5px rgba(255,255,255,0.1),
        0 0 0 8px #1a1a1a,
        0 0 0 12px #333;
    position: relative;
    transform-style: preserve-3d;
    transition: all 0.5s;
    max-width: 600px;
    margin: 0 auto;
}

.tv-frame::before {
    content: 'UDAAN TV';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.3);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
}

.tv-frame::after {
    content: '';
    position: absolute;
    top: 15px;
    right: 20px;
    width: 8px;
    height: 8px;
    background: #ff3333;
    border-radius: 50%;
    box-shadow: 0 0 10px #ff3333;
    animation: blink 2s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.tv-frame:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 40px 100px rgba(0,0,0,0.9),
        inset 0 2px 5px rgba(255,255,255,0.2),
        0 0 0 8px #1a1a1a,
        0 0 0 12px #444;
}

.tv-screen {
    background: #000;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    padding-bottom: 56.25%;
    box-shadow: 
        inset 0 0 30px rgba(0,0,0,0.9),
        inset 0 0 5px rgba(0,100,255,0.3);
    border: 3px solid #0a0a0a;
}

.tv-screen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        transparent 50%,
        rgba(0,0,0,0.1) 50%
    );
    background-size: 100% 4px;
    pointer-events: none;
    z-index: 2;
    opacity: 0.3;
}

.tv-screen iframe,
.tv-screen video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.tv-stand {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 60px;
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    border-radius: 0 0 20px 20px;
    box-shadow: 
        0 10px 30px rgba(0,0,0,0.5),
        inset 0 2px 5px rgba(255,255,255,0.05);
}

.tv-stand::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 20px;
    background: #1a1a1a;
    border-radius: 10px;
}

.tv-stand::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 180px;
    height: 15px;
    background: linear-gradient(145deg, #333, #222);
    border-radius: 0 0 30px 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.4);
}

.tv-buttons {
    position: absolute;
    bottom: 40px;
    right: 30px;
    display: flex;
    gap: 8px;
    z-index: 3;
}

.tv-button {
    width: 12px;
    height: 12px;
    background: linear-gradient(145deg, #444, #222);
    border-radius: 50%;
    box-shadow: 
        inset 0 2px 3px rgba(0,0,0,0.5),
        0 1px 2px rgba(255,255,255,0.1);
    cursor: pointer;
    transition: all 0.3s;
}

.tv-button:hover {
    background: linear-gradient(145deg, #555, #333);
    box-shadow: 
        inset 0 2px 3px rgba(0,0,0,0.3),
        0 0 8px rgba(230,57,70,0.5);
}

.instagram-section,
.youtube-section {
    padding: 80px 0;
}

.instagram-reel,
.youtube-video {
    margin-bottom: 30px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.instagram-reel:hover,
.youtube-video:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.instagram-reel iframe,
.youtube-video iframe {
    width: 100%;
    height: 500px;
    border: none;
}

.promotional-images {
    padding: 60px 0;
}

.promotional-images img {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    margin-bottom: 30px;
}

.promotional-images img:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.section {
    padding: 40px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary-navy);
    font-weight: 700;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), var(--primary-blue));
    border-radius: 2px;
}

.section-title p {
    color: var(--gray);
    font-size: 1.1rem;
    margin-top: 15px;
}

.card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.card img {
    transition: transform 0.5s;
}

.card:hover img {
    transform: scale(1.1);
}

.counter-box {
    text-align: center;
    padding: 40px 20px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.counter-box:hover {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-red));
    color: var(--white);
    transform: scale(1.05);
}

.counter-box h3 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-red);
    margin-bottom: 10px;
}

.counter-box:hover h3 {
    color: var(--white);
}

.counter-box p {
    font-size: 1.1rem;
    margin: 0;
}

.btn-primary-custom {
    background: var(--primary-red);
    color: var(--white);
    padding: 12px 35px;
    border-radius: 30px;
    border: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
    text-decoration: none;
}

.btn-primary-custom:hover {
    background: var(--primary-navy);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(230, 57, 70, 0.3);
}

.btn-secondary-custom {
    background: transparent;
    color: var(--primary-blue);
    padding: 12px 35px;
    border-radius: 30px;
    border: 2px solid var(--primary-blue);
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
    text-decoration: none;
}

.btn-secondary-custom:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-3px);
}

.flying-plane {
    position: fixed;
    font-size: 30px;
    z-index: 9999;
    pointer-events: none;
    opacity: 0.9;
    color: var(--primary-navy);
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.3));
    transition: all 0.5s ease-out;
}

@keyframes cinematicFly {
    0% {
        transform: translate(-100px, 100vh) rotate(-45deg) scale(0.5);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    50% {
        transform: translate(50vw, 50vh) rotate(-15deg) scale(1.2);
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translate(110vw, -100px) rotate(10deg) scale(0.8);
        opacity: 0;
    }
}

@keyframes barrelRoll {
    0% {
        transform: translate(110vw, 20vh) rotate(0deg) scale(1);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    40% {
        transform: translate(60vw, 40vh) rotate(-360deg) scale(1.5);
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translate(-100px, 80vh) rotate(-720deg) scale(1);
        opacity: 0;
    }
}

.plane-animation-1 {
    animation: cinematicFly 25s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.plane-animation-2 {
    animation: barrelRoll 30s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    animation-delay: 10s;
}


.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 35px;
    box-shadow: 2px 2px 15px rgba(0,0,0,0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #128c7e;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
}

.marquee-container {
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-navy), var(--primary-blue));
    padding: 40px 0;
    position: relative;
}

.marquee-content {
    display: flex;
    animation: marquee 30s linear infinite;
    gap: 30px;
}

.marquee-content:hover {
    animation-play-state: paused;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.marquee-item {
    flex-shrink: 0;
    width: 300px;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: transform 0.3s;
}

.marquee-item:hover {
    transform: translateY(-10px) scale(1.05);
}

.marquee-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.marquee-item .content {
    padding: 15px;
    text-align: center;
}

.marquee-item h5 {
    color: var(--primary-navy);
    font-weight: 600;
    margin-bottom: 5px;
}

.marquee-item .badge {
    background: var(--primary-red);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
}

.result-card {
    text-align: center;
    padding: 20px;
    background: var(--white);
    border-radius: 15px;
    transition: all 0.4s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.result-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
    transition: transform 0.3s;
}

.result-card:hover {
    transform: translateY(-10px) rotate(2deg);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

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

.result-card h5 {
    color: var(--primary-navy);
    font-weight: 600;
    margin-top: 10px;
}

.footer {
    background: var(--primary-navy);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer h5 {
    color: var(--primary-red);
    margin-bottom: 20px;
    font-weight: 600;
}

.footer a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: all 0.3s;
    display: block;
    margin-bottom: 10px;
}

.footer a:hover {
    color: var(--primary-blue);
    padding-left: 10px;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: var(--primary-red);
    color: var(--white);
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--primary-blue);
    transform: translateY(-5px) rotate(360deg);
}

.form-control {
    border-radius: 8px;
    border: 2px solid #ddd;
    padding: 12px;
    transition: all 0.3s;
}

.form-control:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 0.2rem rgba(0, 168, 232, 0.25);
}

@media (max-width: 991px) {
    .navbar-nav {
        text-align: center;
    }
    
    .navbar-nav .nav-link {
        font-size: 0.95rem;
        padding: 10px 15px !important;
    }
}

@media (max-width: 768px) {
    .hero-slider {
        height: 400px;
    }
    
    .slide-content h1 {
        font-size: 2rem;
    }
    
    .slide-content p {
        font-size: 1rem;
    }
    
    .section {
        padding: 50px 0;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .counter-box h3 {
        font-size: 2rem;
    }
    
    .instagram-reel iframe,
    .youtube-video iframe {
        height: 400px;
    }
}

/* Enquiry Popup Styles */
#enquiryPopup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
}

.popup-content {
    background: white;
    padding: 0;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    position: relative;
    overflow: hidden;
    animation: popupScale 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes popupScale {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.popup-header {
    background: linear-gradient(135deg, var(--primary-navy), var(--primary-red));
    color: white;
    padding: 25px;
    text-align: center;
}

.popup-header h3 {
    margin: 0;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.popup-body {
    padding: 30px;
}

.close-popup {
    position: absolute;
    top: 15px;
    right: 15px;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    transition: transform 0.3s;
}

.close-popup:hover {
    transform: rotate(90deg);
}

.popup-form .form-control {
    margin-bottom: 15px;
    border-radius: 10px;
    padding: 12px;
}

.popup-form .btn-submit {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    background: var(--primary-red);
    color: white;
    border: none;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.3s;
}

.popup-form .btn-submit:hover {
    background: var(--primary-navy);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Success Message Overlay */
#popupSuccess {
    display: none;
    text-align: center;
    padding: 20px;
}

#popupSuccess i {
    font-size: 4rem;
    color: #28a745;
    margin-bottom: 15px;
}

.process-step-card {
    text-align: center;
    padding: 40px 20px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    position: relative;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-bottom: 5px solid transparent;
    z-index: 1;
}

.process-step-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.step-1 { border-bottom-color: var(--primary-red); }
.step-2 { border-bottom-color: var(--primary-blue); }
.step-3 { border-bottom-color: var(--primary-red); }
.step-4 { border-bottom-color: var(--primary-navy); }

.step-icon {
    width: 90px;
    height: 90px;
    background: #f0f0f0;
    border-radius: 50%;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--primary-navy);
    position: relative;
    transition: all 0.4s;
}

.process-step-card:hover .step-icon {
    background: var(--primary-navy);
    color: #fff;
}

.step-number {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 35px;
    height: 35px;
    background: var(--primary-red);
    color: #fff;
    border-radius: 50%;
    font-size: 0.9rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(230, 57, 70, 0.3);
}

.step-body h5 {
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-navy);
}

.step-body p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 0;
}

.step-connector {
    position: absolute;
    top: 50%;
    right: -15px;
    width: 30px;
    height: 2px;
    background: #eee;
    z-index: -1;
}

@media (max-width: 991px) {
    .step-connector {
        display: none;
    }
    .process-step-card {
        margin-bottom: 30px;
    }
}

.page-header {
    position: relative;
    overflow: hidden;
}

.page-header::after {
    content: '';
    position: absolute;
    /* bottom: -50px; */
    left: 0;
    width: 100%;
    height: 100px;
    /* background: #fff; */
    transform: skewY(-2deg);
    z-index: 1;
}

.card-title {
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 25px;
}

.card-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-red);
}

.book-page {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    transform-origin: left;
    transition: transform 1s cubic-bezier(0.645, 0.045, 0.355, 1);
    backface-visibility: hidden;
    user-select: none;
}

.book-cover {
    background: linear-gradient(135deg, var(--primary-navy) 0%, #1a2a44 100%);
    z-index: 10;
    box-shadow: 10px 10px 30px rgba(0,0,0,0.3);
    border-radius: 0 15px 15px 0;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.book-inner-page {
    background: white;
    z-index: 5;
    box-shadow: 5px 5px 15px rgba(0,0,0,0.1);
    border-radius: 0 15px 15px 0;
    display: none;
    padding: 40px;
    flex-direction: column;
}

.book-flip-btn {
    border: none;
    background: none;
    cursor: pointer;
    font-weight: 700;
    padding: 10px 0;
    transition: color 0.3s;
}

.book-flip-btn.next { color: var(--primary-red); }
.book-flip-btn.back { color: var(--gray); }

.book-flip-btn:hover { opacity: 0.8; }


.breadcrumb {
    background: var(--light-bg);
    padding: 15px 0;
}

.breadcrumb-item a {
    color: var(--primary-blue);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: var(--primary-navy);
}

mark, .highlight {
    background-color: #fff3cd;
    padding: 2px 5px;
    border-radius: 3px;
    font-weight: 600;
    color: var(--primary-navy);
}

.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
}

.lightbox-content {
    position: relative;
    margin: auto;
    max-width: 90%;
    max-height: 90%;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-content img {
    width: 100%;
    height: auto;
}

.close-lightbox {
    position: absolute;
    top: 20px;
    right: 40px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

.google-reviews-container {
    animation: fadeInUp 0.8s;
}

.rating-display {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    display: inline-block;
}

.review-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.4s;
    height: 100%;
    border-left: 4px solid var(--primary-red);
}

.review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.reviewer-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-blue);
}

.review-stars i {
    font-size: 1.2rem;
}

.review-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 15px;
    font-style: italic;
}

.instagram-reel,
.youtube-video {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: all 0.4s;
    background: #000;
}

.instagram-reel:hover,
.youtube-video:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}

.instagram-reel iframe {
    width: 100%;
    height: 600px;
    border: none;
}

.youtube-video iframe {
    width: 100%;
    height: 350px;
    border: none;
}

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