:root {
    --primary-blue: #004aad;
    --primary-orange: #f58220;
    --primary-green: #2e7d32;
    --dark-bg: #0a192f;
    --text-white: #ffffff;
    --text-muted: #e0e0e0;
}

body {
    font-family: 'Inter', sans-serif;
    color: #333;
    overflow-x: hidden;
}

h1, h2, h3, h4, .bn-text {
    font-family: 'Hind Siliguri', sans-serif;
}

/* Navbar */
.transparent-nav {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
}

/* Logo Styling */
.custom-logo {
    width: 45px;
    height: 45px;
    background: white;
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 1.5rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.main-brand {
    font-weight: 800;
    font-size: 1.5rem;
    color: white;
    line-height: 1;
}

.dot-com {
    color: var(--primary-orange);
    font-size: 1rem;
}

.sub-brand {
    font-size: 0.65rem;
    color: rgba(255,255,255,0.8);
    letter-spacing: 1px;
    font-family: 'Inter', sans-serif;
}

.contact-info-top {
    color: white;
    font-size: 0.9rem;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(rgba(0, 74, 173, 0.7), rgba(10, 25, 47, 0.9)), 
                url('assets/img/hero-bg.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding-top: 100px;
}

.text-content h1 {
    line-height: 1.2;
}

/* Countdown */
.countdown-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 15px;
    border-radius: 12px;
    min-width: 90px;
    text-align: center;
}

.countdown-item span {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.countdown-item small {
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 1px;
    opacity: 0.8;
}

/* Hexagon Offer Badge */
.offer-badge-main {
    display: flex;
    justify-content: center;
}

.hexagon {
    width: 250px;
    height: 280px;
    background-color: var(--primary-orange);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    animation: float 3s ease-in-out infinite;
}

.hexagon span {
    font-size: 3.5rem;
    font-weight: 800;
}

.hexagon p {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* Info Cards */
.info-card {
    transition: transform 0.3s ease;
    border-radius: 20px;
}

.info-card:hover {
    transform: translateY(-10px);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: rgba(0, 74, 173, 0.1);
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    font-size: 1.5rem;
}

.icon-box.color-2 { background: rgba(245, 130, 32, 0.1); color: var(--primary-orange); }
.icon-box.color-3 { background: rgba(46, 125, 50, 0.1); color: var(--primary-green); }

.custom-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
}

.custom-list i {
    color: var(--primary-green);
    margin-right: 10px;
    margin-top: 5px;
}

/* App-like Package Cards */
.app-package-card {
    background: #f8f9fa;
    border-radius: 35px;
    border: 8px solid #333;
    height: 500px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.app-package-card:hover {
    transform: scale(1.05);
}

.app-header {
    height: 40px;
    background: #333;
    display: flex;
    justify-content: center;
    align-items: center;
}

.camera-hole {
    width: 60px;
    height: 6px;
    background: #111;
    border-radius: 10px;
}

.app-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
    background: white;
}

.app-logo-small {
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
}

.app-logo-small i { margin-right: 5px; }

.package-title {
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}

.price-tag {
    background: rgba(245, 130, 32, 0.1);
    color: var(--primary-orange);
    display: inline-block;
    padding: 5px 15px;
    border-radius: 10px;
    font-weight: 800;
    font-size: 1.2rem;
}

.package-details {
    font-size: 0.9rem;
    color: #666;
}

.package-details li {
    padding: 5px 0;
    border-bottom: 1px solid #eee;
}

.btn-buy-now {
    background: var(--primary-orange);
    color: white;
    border: none;
    padding: 12px;
    border-radius: 15px;
    font-weight: 700;
    transition: background 0.3s ease;
}

.btn-buy-now:hover {
    background: #d46d1a;
    color: white;
}

/* Footer */
.footer {
    background-color: var(--dark-bg);
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    transition: background 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-blue);
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .hero-section {
        text-align: center;
        padding-top: 150px;
        padding-bottom: 100px;
    }
    #countdown {
        justify-content: center;
    }
}
