/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&family=Volkhov:wght@700&display=swap');
/* Header */
:root {
    --primary-orange: #DF6951; /* Jadoo's exact orange color */
    --accent-yellow: #F1A501;
    --text-dark: #1E1D4C; /* Dark elegant blue/black */
    --text-muted: #5E6282;
    --bg-light: #FFFFFF;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-light);
    overflow-x: hidden;
}

/* 1. Transparent Navbar with Jadoo feel */
.navbar {
    transition: all 0.4s ease;
    padding: 15px 0;
}

.navbar.scrolled {
    background-color: #ffffff !important; /* White background */
    box-shadow: 0 2px 10px rgba(0,0,0,0.1); /* Chinna shadow premium-ah iruka */
    padding: 10px 0; /* Scroll panna header size konjam kuraiyum */
}

.navbar.scrolled .nav-link {
    color: #333 !important;
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark) !important;
}

.nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    font-size: 0.95rem;
    margin: 0 10px;
}

/* Stylish Sign Up Button */
.btn-outline-dark {
    color: var(--text-dark);
    border-color: var(--text-dark);
    border-radius: 5px;
    padding: 7px 22px;
    font-size: 0.9rem;
    font-weight: 500;
}

.btn-outline-dark:hover {
    background-color: var(--text-dark);
    color: white;
}

/* Dropdown menu-la orange color hover effect */
.dropdown-item:hover {
    background-color: var(--primary-orange) !important;
    color: white !important;
}

/* Nav links gap-ah adjust panna */
@media (min-width: 992px) {
    .navbar-nav .nav-item {
        margin: 0 5px;
    }
    .navbar-nav .nav-link {
        font-size: 14px; /* Space pathalana size-ah konjam koraikalaam */
    }
}

/* Mouse-ah mela kondu ponale open aaga (Optional) */
@media (min-width: 992px) {
    .dropdown:hover > .dropdown-menu {
        display: block;
        margin-top: 0;
    }
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        background-color: #ffffff; /* Mobile menu-ku white background */
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        margin-top: 15px;
    }

    .nav-link {
        color: #333 !important; /* Text color-ah dark-ah mathum */
        border-bottom: 1px solid #f8f9fa; /* Ovvoru link-kum separation */
        padding: 10px 0;
    }
    
    /* Dropdown menu mobile-la sariya therya */
    .dropdown-menu {
        border: none;
        padding-left: 20px;
        background-color: #f8f9fa;
    }
}
/* Hero Section */
.hero-section {
    position: relative;
    padding: 100px 0;
    overflow: visible; 
    padding-top: 215px;
}

.hero-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: var(--primary-orange);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    display: inline-block;
}

.hero-title {
    font-family: 'Volkhov', serif;
    font-size: 4.5rem;
    line-height: 1.1;
    color: var(--text-dark);
    margin-bottom: 30px;
}

/* Underline effect for 'enjoy' */
.hero-title .enjoy {
    position: relative;
}

.hero-title .enjoy::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 12px;
    background-image: url('assets/hero-enjoy-underline.svg'); /* Need this image */
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.hero-desc {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.8;
    max-width: 500px;
    margin-bottom: 40px;
}

/* 3. Modern Call-to-Action Buttons */
.btn-primary-orange {
    background-color: var(--primary-orange);
    color: white;
    font-weight: 500;
    padding: 5px 25px;
    border-radius: 10px;
    border: none;
    box-shadow: 0 10px 20px rgba(223, 105, 81, 0.15);
    transition: all 0.3s ease;
}

.btn-primary-orange:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(223, 105, 81, 0.25);
    background-color: #c95c47;
    color: white;
}

.play-demo-btn {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-dark);
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.play-demo-btn:hover {
    color: var(--primary-orange);
}

.play-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

/* Right-side image positioning */

.hero-img-container {
    position: relative;
}

.hero-img-container img {
    position: absolute;
    top: -350px; /* Intha value-ah adjust panni image-ah mela yethunga */
    right: 25px; /* Right side corner-ku push panna */
    width: 110%;  /* Image konjam perusa theriyanum na */
    z-index: 1;   /* Text-ku pinna pogaama iruka */
}

@media (max-width: 991px) {
    .hero-img-container img {
        position: relative;
        top: 0;
        right: 0;
        width: 100%;
        margin-top: 30px;
    }
}

/* Service Box Styling */
.service-box {
 transition: all 0.4s ease-in-out;
    background: white;
    position: relative;
    z-index: 2; /* Main card mela irukanum */
    overflow: visible; /* Shape veliya theriya ithu mukkiyam */
    border-radius: 30px;
}

.service-box::before {
    content: "";
    position: absolute;
    bottom: -15px; /* Box-ku konjam veliya keela */
    left: -15px;   /* Box-ku konjam veliya idathu pakkam */
    width: 100px;
    height: 100px;
    background: #DF6951; /* Antha Jadoo Orange */
    border-radius: 30px 0 30px 0;
    z-index: -1; /* Card-ku pinna poidum */
    opacity: 0;  /* Modal-ah hidden-ah veikurom */
    transition: all 0.4s ease-in-out;
    transform: scale(0.5); /* Chinathula irunthu perusa vara */
}

.service-box:hover {
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    transform: translateY(-10px);
}

.service-box:hover::before {
    opacity: 1;
    transform: scale(1);
}

.active-box::before {
    opacity: 1;
    transform: scale(1);
}

.active-box {
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Jadoo Style Icon Background */
.icon-bg {
    font-size: 2.5rem;
    color: #DF6951;
    display: inline-block;
    padding: 10px;
}

.service-box.active-box::before {
    content: "";
    position: absolute;
    bottom: -15px;
    left: -15px;
    width: 100px;
    height: 100px;
    background: #DF6951;
    border-radius: 30px 0 0 0;
    z-index: -1;
}

.section-title {
    font-family: 'Volkhov', serif;
    color: #1E1D4C;
    font-size: 2.5rem;
}

.single-service {
    background: #ffffff;
    border-radius: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin: 10px;
    border: 1px solid #f8f8f8;
}

.single-service h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-top: 15px;
    color: #1E1D4C;
}

.single-service:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-color: transparent;
}

.service-number {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 30px;
    font-weight: 800;
    color: #f1f1f1;
    z-index: -1;
}

.service-icon img {
    width: 60px !important; /* Slider-la perusa varaama irukka */
    margin: 0 auto;
}

.service-text h3 {
    font-size: 20px;
    color: #1E1D4C;
    font-weight: 700;
    text-transform: capitalize;
}

/* Testimonial Styles */
#testimonial {
    padding: 80px 0;
}

.testimonial-card {
    transition: all 0.4s ease-in-out;
    border: 1px solid #f0f0f0;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1) !important;
}

.font-cursive {
    font-family: 'Volkhov', serif;
}

.rounded-4 {
    border-radius: 1.5rem !important;
}

/* Dots Styling */
.owl-theme .owl-dots .owl-dot.active span {
    background: #DF6951 !important;
}

 /* FAQ Styles */
#faq .accordion-button {
    padding: 1.5rem;
    color: #181E4B;
    background-color: #fff;
    font-size: 1.1rem;
}

#faq .accordion-button:not(.collapsed) {
    color: #DF6951; /* Active Question Color */
    background-color: #fff;
    box-shadow: none;
}

#faq .accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0,0,0,.125);
}

#faq .accordion-item {
    border-bottom: 1px solid #eee;
}

#faq .accordion-item:last-child {
    border-bottom: none;
}

#faq img {
    max-height: 350px;
    object-fit: contain;
}

/* Floating Container */
/* Container to hold everything */
.floating-contact-container {
    position: fixed;
    bottom: 25px;
    width: 100%;
    padding: 0 20px;
    pointer-events: none; /* Intha area mela click panna background work aagum */
    z-index: 9999;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

/* Individual Icon Styles */
.float-icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff !important;
    font-size: 24px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    pointer-events: auto; /* Buttons matum click aagum */
    transition: all 0.3s ease;
    text-decoration: none !important;
}

.float-icon:hover {
    transform: scale(1.1);
}

/* Left & Right Groups */
.float-left-side {
    display: flex;
}

.float-right-side {
    display: flex;
    flex-direction: column;
}

/* Colors */
.phone-icon {
    background: #DF6951; /* Unga customized orange */
    animation: bounce 2s infinite;
}

.whatsapp-icon {
    background: #25D366;
    animation: bounce 2s infinite;
}

.google-icon {
    background: #fff;
    padding: 2px; /* Logo theriya chinna padding */
    animation: bounce 2s infinite;
}

/* Animation for WhatsApp */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-10px);}
    60% {transform: translateY(-5px);}
}

/* Responsive adjustment for small screens */
@media (max-width: 576px) {
    .float-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

/* Footer Styles */
footer {
    background-color: #1a1a1a !important; /* Pure black-ku bathila dark grey */
}

footer h5 {
    font-size: 1.1rem;
    position: relative;
    padding-bottom: 5px;
}

footer a:hover {
    color: #DF6951 !important; /* Hover panna orange color aagum */
    padding-left: 5px;
    transition: 0.3s;
}

footer .fab {
    font-size: 1.2rem;
    transition: 0.3s;
}

footer .fab:hover {
    color: #DF6951;
}

.hover-orange:hover {
        color: #DF6951 !important;
        padding-left: 5px;
        transition: 0.3s all ease;
    }

    .social-links a:hover {
        color: #DF6951 !important;
        transform: translateY(-3px);
        display: inline-block;
    }

    /* About page Header */
    .bg-primary-orange {
    background-color: #DF6951 !important;
}

.text-orange {
    color: #DF6951 !important;
}

.img-fluid.rounded {
    border-radius: 15px !important;
}

.hover-shadow:hover {
    box-shadow: 0 10px 20px rgba(0,0,0,0.15) !important;
    transition: 0.3s ease;
}