/* Modern Coming Soon Page Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
    color: #fff;
    height: 100vh;
    overflow: hidden;
    position: relative;
}

.container {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    position: relative;
}

.content {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    max-width: 800px;
    width: 90%;
    animation: fadeIn 1s ease-in-out;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Logo Styles */
.logo-container {
    margin-bottom: 1rem;
}

.logo {
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    background: linear-gradient(to right, #ff7e5f, #feb47b);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: pulse 2s infinite;
}

.logo span {
    background: linear-gradient(to right, #00c6ff, #0072ff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Tagline Styles */
.tagline {
    margin-bottom: 2rem;
    font-size: 1.2rem;
}

.tagline .highlight {
    color: #ff9a8b;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.tagline .highlight::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    bottom: -5px;
    left: 0;
    background: linear-gradient(to right, #ff9a8b, #ff6b95);
    border-radius: 10px;
    animation: slideIn 1.5s ease-in-out;
}

/* Coming Soon Section */
.coming-soon {
    margin-bottom: 2.5rem;
}

.coming-soon h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* Removed countdown styles */

/* Contact Info */
.contact-info {
    margin-bottom: 2rem;
}

.contact-info h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 500;
}

.contact-info p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

.contact-info .highlight {
    color: #FF9933;
    font-weight: 600;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
    animation: pulse 2s infinite;
}

.contact-info .highlight::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -3px;
    left: 0;
    background: linear-gradient(to right, #FF9933, #138808);
    border-radius: 10px;
    animation: slideIn 1.5s ease-in-out;
}

/* Social Icons */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-icon:hover {
    transform: translateY(-5px);
    background: linear-gradient(135deg, #ff7e5f, #feb47b);
    color: #fff;
}

/* Animated Background */
.animated-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.5;
}

/* Indian Flag Colors - Saffron */
.circle1 {
    width: 600px;
    height: 600px;
    background: linear-gradient(#FF9933, #FF7722);
    top: -200px;
    right: -100px;
    animation: float 15s ease-in-out infinite alternate;
}

/* Indian Flag Colors - White/Blue (Ashoka Chakra) */
.circle2 {
    width: 500px;
    height: 500px;
    background: linear-gradient(#FFFFFF, #000080);
    bottom: -150px;
    left: -100px;
    animation: float 20s ease-in-out infinite alternate-reverse;
}

/* Indian Flag Colors - Green */
.circle3 {
    width: 300px;
    height: 300px;
    background: linear-gradient(#138808, #0D6B06);
    top: 40%;
    left: 20%;
    animation: float 18s ease-in-out infinite alternate;
}

/* Rupee Symbol Animation */
.circle4 {
    width: 200px;
    height: 200px;
    background: linear-gradient(#a17fe0, #5d26c1);
    top: 20%;
    right: 20%;
    animation: float 12s ease-in-out infinite alternate-reverse;
}

/* Ashoka Chakra Animation */
.chakra {
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 5px solid rgba(255, 255, 255, 0.3);
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    animation: rotate 20s linear infinite;
}

.chakra::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    border-radius: 50%;
    border: 3px dashed rgba(0, 56, 168, 0.5);
    animation: rotate-reverse 15s linear infinite;
}

.chakra::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20%;
    height: 20%;
    border-radius: 50%;
    background: rgba(0, 56, 168, 0.3);
    animation: pulse 3s ease-in-out infinite;
}

/* Invoice/Billing Elements */
.rupee-symbol {
    position: absolute;
    font-size: 80px;
    color: rgba(255, 255, 255, 0.2);
    z-index: 0;
    text-shadow: 0 0 15px rgba(255, 153, 51, 0.3);
}

.rupee-1 {
    top: 15%;
    left: 10%;
    animation: float-symbol 10s ease-in-out infinite;
}

.rupee-2 {
    bottom: 20%;
    right: 15%;
    animation: float-symbol 12s ease-in-out infinite 2s;
}

/* Add more rupee symbols */
.rupee-symbol::before {
    content: '₹';
    position: absolute;
    font-size: 40px;
    color: rgba(255, 255, 255, 0.1);
    top: -30px;
    left: 20px;
    animation: float-symbol 8s ease-in-out infinite 1s;
}

.rupee-symbol::after {
    content: '₹';
    position: absolute;
    font-size: 30px;
    color: rgba(255, 255, 255, 0.1);
    bottom: -20px;
    right: 10px;
    animation: float-symbol 6s ease-in-out infinite 3s;
}

.invoice-icon {
    position: absolute;
    width: 100px;
    height: 120px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    z-index: 0;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

.invoice-1 {
    top: 25%;
    right: 10%;
    transform: rotate(15deg);
    animation: float-invoice 15s ease-in-out infinite;
}

.invoice-2 {
    bottom: 15%;
    left: 12%;
    transform: rotate(-10deg);
    animation: float-invoice 18s ease-in-out infinite 3s;
}

/* Add invoice details */
.invoice-icon::before {
    content: '';
    position: absolute;
    width: 70%;
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
    top: 20%;
    left: 15%;
    box-shadow: 0 10px 0 rgba(255, 255, 255, 0.1), 0 20px 0 rgba(255, 255, 255, 0.1), 0 30px 0 rgba(255, 255, 255, 0.1);
}

.invoice-icon::after {
    content: '';
    position: absolute;
    width: 40%;
    height: 10px;
    background: rgba(19, 136, 8, 0.2);
    bottom: 15%;
    right: 10%;
    border-radius: 5px;
    animation: pulse 3s ease-in-out infinite;
}

/* India Map Outline */
.india-map {
    position: absolute;
    width: 200px;
    height: 200px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M50,10 C60,15 70,20 75,30 C80,40 85,50 80,60 C75,70 65,75 55,80 C45,85 35,80 25,75 C15,70 10,60 15,50 C20,40 25,30 35,20 C40,15 45,12 50,10 Z' fill='none' stroke='rgba(255,255,255,0.1)' stroke-width='1'/%3E%3C/svg%3E") no-repeat center center;
    opacity: 0.3;
    top: 60%;
    right: 5%;
    transform: rotate(10deg);
    animation: float 20s ease-in-out infinite alternate;
    z-index: 0;
}

/* Sri Info Solution Line Styles */
.sri-info-line {
    margin: 1.5rem 0;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

.sri-info-line .highlight {
    color: #FF9933;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.sri-info-line .highlight::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    bottom: -5px;
    left: 0;
    background: linear-gradient(to right, #FF9933, #138808);
    border-radius: 10px;
    animation: slideIn 1.5s ease-in-out;
}

/* Additional Animations */
@keyframes rotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes rotate-reverse {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(-360deg);
    }
}

@keyframes float-symbol {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(5deg);
    }
    100% {
        transform: translateY(0) rotate(0deg);
    }
}

@keyframes float-invoice {
    0% {
        transform: translateY(0) rotate(15deg);
    }
    50% {
        transform: translateY(-20px) rotate(20deg);
    }
    100% {
        transform: translateY(0) rotate(15deg);
    }
}

/* Animations */
@keyframes float {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    100% {
        transform: translate(50px, 50px) rotate(10deg);
    }
}

@keyframes pulse {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
    100% {
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    0% {
        width: 0;
        opacity: 0;
    }
    100% {
        width: 100%;
        opacity: 1;
    }
}

/* Responsive Styles */
@media (max-width: 768px) {
    .logo {
        font-size: 2.8rem;
    }
    
    .coming-soon h2 {
        font-size: 2rem;
    }
    
    .countdown {
        gap: 0.8rem;
    }
    
    .countdown-item {
        min-width: 60px;
        padding: 0.8rem;
    }
    
    .countdown-item span {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .content {
        padding: 1.5rem;
    }
    
    .logo {
        font-size: 2.2rem;
    }
    
    .tagline {
        font-size: 1rem;
    }
    
    .coming-soon h2 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .sri-info-line {
        font-size: 0.9rem;
        margin: 1rem 0;
    }
    
    .subscribe h3 {
        font-size: 1.1rem;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .chakra {
        width: 100px;
        height: 100px;
    }
    
    .rupee-symbol {
        font-size: 60px;
    }
    
    .invoice-icon {
        width: 70px;
        height: 90px;
    }
}