/* ===================================
   All In One Internet TV Packages - Modern Style
   =================================== */

/* CSS Variables */
:root {
    --primary-color: #6366f1;
    --secondary-color: #8b5cf6;
    --accent-color: #a855f7;
    --dark-color: #1e1b4b;
    --light-color: #ffffff;
    --gray-light: #f8fafc;
    --text-color: #334155;
    --text-muted: #64748b;
    --gradient-primary: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    --gradient-dark: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%);
    --shadow-sm: 0 2px 10px rgba(99, 102, 241, 0.08);
    --shadow-md: 0 5px 20px rgba(99, 102, 241, 0.15);
    --shadow-lg: 0 10px 40px rgba(99, 102, 241, 0.25);
    --transition: all 0.3s ease;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-color);
    overflow-x: hidden;
    background: #ffffff;
    font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

a {
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* Banner Section */
.banner-section-outer {
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%);
    position: relative;
    overflow: hidden;
}

.banner-section-outer::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

/* Header */
.main-header {
    padding: 15px 0;
    position: relative;
    z-index: 100;
}

.main-header .navbar {
    padding: 30px;
}

/* Logo */
.nav-logo-text {
    background: linear-gradient(135deg, #0891b2 0%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 22px;
    line-height: 1.2;
}

.logo-accent {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Nav links */
.main-header .navbar-nav .nav-link {
    color: #ffffff !important;
    font-weight: 500;
    padding: 10px 16px !important;
    position: relative;
    white-space: nowrap;
}

.main-header .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
    transform: translateX(-50%);
}

.main-header .navbar-nav .nav-link:hover::after,
.main-header .navbar-nav .nav-item.active .nav-link::after {
    width: 60%;
}

/* Call button in nav */
.nav-call-btn {
    display: inline-block;
    background: var(--gradient-primary);
    color: #fff !important;
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(8, 145, 178, 0.3);
    transition: all 0.3s ease;
    margin-left: 8px;
    text-decoration: none;
}

.nav-call-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.45);
    color: #fff !important;
    text-decoration: none;
}

/* Toggler */
.main-header .navbar-toggler {
    border: none;
    padding: 4px 8px;
    background: rgba(255,255,255,0.1);
    border-radius: 6px;
}

.main-header .navbar-toggler:focus {
    outline: none;
    box-shadow: none;
}

/* Mobile menu dropdown */
@media (max-width: 991px) {
    .main-header .navbar-collapse {
        background: rgba(15, 20, 50, 0.97);
        border-radius: 12px;
        padding: 12px 16px;
        margin-top: 12px;
    }

    .main-header .navbar-nav .nav-link {
        padding: 10px 12px !important;
        border-bottom: 1px solid rgba(255,255,255,0.07);
        font-size: 14px;
    }

    .main-header .navbar-nav .nav-item:last-child .nav-link {
        border-bottom: none;
    }

    .main-header .navbar-nav .nav-link::after {
        display: none;
    }

    .nav-call-item {
        margin-top: 10px;
    }

    .nav-call-btn {
        display: block;
        text-align: center;
        margin-left: 0;
        width: 100%;
        padding: 12px 20px;
        border-radius: 8px;
        font-size: 14px;
    }
}

@media (max-width: 575px) {
    .nav-logo-text {
        font-size: 17px;
    }

    .main-header {
        padding: 10px 0;
    }
}

/* Banner Section */
.home-banner-section {
    padding: 100px 0 120px;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    background: rgba(139, 92, 246, 0.15);
    border: 1px solid rgba(139, 92, 246, 0.3);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: #a78bfa;
}

.hero-badge i {
    color: #fbbf24;
    margin-right: 6px;
}

.home-banner-text h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.15rem;
    margin-bottom: 25px;
    opacity: 0.95;
    line-height: 1.7;
}

.hero-features {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.feature-item {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 500;
}

.feature-item i {
    color: #a78bfa;
    margin-right: 6px;
}

.home-banner-button {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-primary-hero {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 35px;
    background: var(--gradient-primary);
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.05rem;
    box-shadow: 0 5px 20px rgba(99, 102, 241, 0.4);
    transition: var(--transition);
    text-decoration: none;
}

.btn-primary-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.5);
    color: #fff;
    text-decoration: none;
}

.btn-secondary-hero {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 35px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: var(--transition);
    text-decoration: none;
}

.btn-secondary-hero:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;
    text-decoration: none;
}

.hero-image-wrapper {
    position: relative;
}

.hero-main-img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: floatImage 6s ease-in-out infinite;
}

@keyframes floatImage {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 25px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 15px;
    animation: float 3s ease-in-out infinite;
}

.card-1 {
    top: 15%;
    left: -10%;
    animation-delay: 0s;
}

.card-2 {
    bottom: 15%;
    right: -10%;
    animation-delay: 1.5s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.floating-card .card-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
}

.floating-card .card-content h4 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--dark-color);
    margin: 0;
    line-height: 1;
}

.floating-card .card-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
}

/* Interaction Section */
.interaction-section {
    padding: 100px 0;
    background: var(--light-color);
}

.interaction-section-text h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.interaction-section-text .main-text {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.interaction-section-listing-outer {
    margin-bottom: 25px;
}

.interaction-section-listing-inner {
    padding: 20px;
    background: var(--gray-light);
    border-radius: 15px;
    transition: var(--transition);
}

.interaction-section-listing-inner:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.interaction-section-listing-inner h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.interaction-section-listing-inner p {
    color: var(--text-muted);
    margin: 0;
}

/* Solutions Section */
.solutions-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e8eaf6 100%);
}

.solutions-section-inner h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.solutions-section-text p {
    font-size: 1.1rem;
    color: var(--text-muted);
}

.solutions-section-plan-box {
    padding: 30px;
    background: var(--light-color);
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}

.solutions-section-plan-box:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.solutions-section-plan-box figure {
    margin-bottom: 20px;
}

.solutions-section-plan-box figure img {
    width: 60px;
    height: 60px;
}

.solutions-section-plan-box h4 {
    color: var(--dark-color);
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.solutions-section-plan-box p {
    color: var(--text-muted);
    margin: 0;
}

/* Customer Base Section */
.customer-base-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.customer-base-section-text h2 {
    font-size: 2.5rem;
    color: var(--light-color);
    margin-bottom: 20px;
}

.customer-base-section-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.customer-base-sectin-listing li {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 10px;
    font-size: 1rem;
}

.customer-base-sectin-listing li i {
    color: var(--accent-color);
    margin-right: 10px;
}

.customer-base-section-btn-outer .hover-effect {
    padding: 15px 35px;
    background: var(--light-color);
    color: var(--primary-color) !important;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

.customer-base-section-btn-outer .hover-effect:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f0f4ff 100%);
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 15s ease-in-out infinite;
}

.services-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(20, 184, 166, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite reverse;
}

.services-section-inner {
    position: relative;
    z-index: 2;
    margin-bottom: 50px;
}

.services-section-inner h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.services-section-inner h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.services-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.services-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 40px 30px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(102, 126, 234, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.services-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.services-card:hover::before {
    transform: scaleX(1);
}

.services-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.2);
    border-color: rgba(102, 126, 234, 0.3);
}

.services-icon-wrapper {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.services-icon-wrapper::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: var(--gradient-primary);
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.services-card:hover .services-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

.services-card:hover .services-icon-wrapper::after {
    opacity: 0.15;
}

.services-icon-wrapper img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.services-card:hover .services-icon-wrapper img {
    transform: scale(1.1);
}

.services-card h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.services-card:hover h4 {
    color: var(--primary-color);
}

.services-card p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 25px;
}

.services-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
}

.services-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.services-link:hover::after {
    width: calc(100% - 30px);
}

.services-link i {
    transition: transform 0.3s ease;
    font-size: 0.9rem;
}

.services-link:hover {
    color: var(--secondary-color);
    gap: 12px;
}

.services-link:hover i {
    transform: translateX(5px);
}

.row.g-4 {
    position: relative;
    z-index: 2;
}

/* Talent Section */
.talent-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.talent-section-box h2 {
    font-size: 2.5rem;
    color: var(--light-color);
    margin-bottom: 20px;
}

.talent-section-box .color {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.talent-section-box p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.talent-section-button-outer .career {
    padding: 15px 40px;
    background: var(--gradient-accent);
    color: #fff !important;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
}

.talent-section-button-outer .career:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(20, 184, 166, 0.4);
}

/* Review Section */
.review-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.review-section-box h2 {
    font-size: 2.5rem;
    color: var(--light-color);
    margin-bottom: 15px;
}

.review-section-box p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
}

.review-section-inner {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 50px;
}

.review-section-review-img-1 img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 20px;
    border: 4px solid var(--accent-color);
}

.review-section-inner p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.review-section-inner .name {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.review-section-inner .designation {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Footer Section */
.footer-section {
    padding: 80px 0 30px;
    background: #1a1a2e;
    color: #fff;
}

.footer-logo-content .footer-logo img {
    max-width: 200px;
    margin-bottom: 20px;
}

.footer-logo-content p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.footer-links-content h5,
.footer-info-content h5 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
}

.footer-links-content h5::after,
.footer-info-content h5::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--gradient-accent);
}

.footer-links-content ul li {
    margin-bottom: 12px;
}

.footer-links-content ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-links-content ul li a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-links-content ul li i {
    color: var(--accent-color);
    margin-right: 8px;
}

.footer-info-content ul li {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
}

.footer-info-content ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-info-content ul li a:hover {
    color: var(--accent-color);
}

.footer-info-content ul li .font-weight-bold {
    color: #fff;
}

/* Footer Bar */
.footer-bar {
    padding: 20px 0;
    background: #0f0f1a;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bar p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* Hover Effects */
.hover-effect {
    transition: var(--transition);
}

.hover-effect:hover {
    transform: translateY(-3px);
}

/* Responsive Styles */
@media (max-width: 991px) {
    .home-banner-text h1 {
        font-size: 2.5rem;
    }
    
    .home-banner-section {
        padding: 60px 0;
    }
    
    .banner-img-content {
        margin-top: 40px;
    }
    
    .interaction-section-text,
    .services-section-inner {
        text-align: center;
    }
    
    .customer-base-section-text {
        text-align: center;
        margin-bottom: 40px;
    }
    
    .customer-base-sectin-listing {
        text-align: left;
    }
    
    .services-section-inner h2 {
        font-size: 2.2rem;
    }
    
    .services-card {
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .home-banner-text h1 {
        font-size: 2rem;
    }
    
    .interaction-section-text h2,
    .solutions-section-inner h2,
    .services-section-inner h2,
    .talent-section-box h2,
    .review-section-box h2 {
        font-size: 1.8rem;
    }
    
    .footer-links-content,
    .footer-info-content {
        margin-top: 30px;
    }
    
    .services-section {
        padding: 60px 0;
    }
    
    .services-section-inner {
        margin-bottom: 30px;
    }
    
    .services-card {
        padding: 30px 20px;
    }
    
    .services-icon-wrapper {
        width: 75px;
        height: 75px;
    }
    
    .services-icon-wrapper img {
        width: 40px;
        height: 40px;
    }
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

/* Selection */
::selection {
    background: var(--primary-color);
    color: #fff;
}
