/* Base Styles & Indian Flag Color Palette */
:root {
    --saffron: #FF9933;
    --white: #FFFFFF;
    --green: #138808;
    --navy: #000080;
    --dark-blue: #06038D;
    --light-blue: #E3F2FD;
    --text-dark: #333333;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: linear-gradient(135deg, #f8f9ff 0%, #f0f2ff 100%);
    color: var(--text-dark);
    overflow-x: hidden;
    position: relative;
}

/* Animated Background */
.animated-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.particles-container {
    position: absolute;
    width: 100%;
    height: 100%;
}

.flag-wave {
    position: absolute;
    width: 300%;
    height: 40%;
    opacity: 0.1;
    animation: waveMove 20s linear infinite;
}

.flag-wave.saffron {
    background: var(--saffron);
    top: 10%;
    animation-delay: 0s;
}

.flag-wave.white {
    background: var(--white);
    top: 40%;
    animation-delay: -7s;
    box-shadow: 0 0 30px rgba(255,255,255,0.3);
}

.flag-wave.green {
    background: var(--green);
    top: 70%;
    animation-delay: -14s;
}

/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
    border-bottom: 3px solid var(--saffron);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-spin {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 3px solid var(--saffron);
    padding: 2px;
    animation: logoRotate 20s linear infinite;
    transition: transform 0.3s;
}

.logo-spin:hover {
    animation-duration: 5s;
}

.company-name {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(90deg, var(--saffron), var(--green));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s;
    position: relative;
}

.nav-link:hover {
    color: var(--saffron);
    background: rgba(255, 153, 51, 0.1);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--saffron);
    transition: all 0.3s;
}

.nav-link:hover::after {
    width: 80%;
    left: 10%;
}

.nav-link.active {
    color: var(--saffron);
}

/* WhatsApp Float Button */
.whatsapp-float-left {
    position: fixed;
    left: 30px;
    bottom: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    text-decoration: none;
    animation: float 3s ease-in-out infinite;
    transition: all 0.3s;
}

.whatsapp-float-left:hover {
    background: #128C7E;
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
}

.whatsapp-tooltip {
    position: absolute;
    left: 70px;
    background: #333;
    color: white;
    padding: 8px 12px;
    border-radius: 5px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s;
    pointer-events: none;
}

.whatsapp-float-left:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateX(0);
}

.whatsapp-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #25D366;
    opacity: 0.5;
    animation: pulse 2s infinite;
}

/* Hero Section */
.hero-section {
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 0 5%;
    gap: 3rem;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.typing-animation {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    border-right: 3px solid var(--saffron);
    white-space: nowrap;
    overflow: hidden;
    animation: typing 3.5s steps(40, end), blink-caret 0.75s step-end infinite;
}

.ai-text {
    color: var(--saffron);
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.fade-in-up {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeUp 1s forwards 1s;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.btn-pulse {
    background: linear-gradient(135deg, var(--green), #0d6e07);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(19, 136, 8, 0.3);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    animation: pulse 2s infinite;
}

.btn-pulse:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(19, 136, 8, 0.4);
    animation: none;
}

.btn-secondary {
    background: transparent;
    color: var(--saffron);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    border: 2px solid var(--saffron);
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: var(--saffron);
    color: white;
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
}

.floating-shapes {
    position: relative;
    width: 300px;
    height: 300px;
}

.shape {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: var(--shadow);
}

.ai-chip {
    background: linear-gradient(135deg, var(--saffron), #ff8000);
    top: 20%;
    left: 10%;
    animation: float 6s ease-in-out infinite;
}

.tally-icon {
    background: linear-gradient(135deg, var(--green), #0d6e07);
    top: 60%;
    left: 60%;
    animation: float 7s ease-in-out infinite 0.5s;
}

.whatsapp-icon {
    background: linear-gradient(135deg, #25D366, #128C7E);
    top: 20%;
    left: 60%;
    animation: float 5s ease-in-out infinite 1s;
}

/* Services Section */
.services-section {
    padding: 5rem 5%;
    background: rgba(255, 255, 255, 0.7);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--navy);
}

.section-title span {
    color: var(--saffron);
    position: relative;
}

.section-title span::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--saffron), var(--green));
    border-radius: 3px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: all 0.4s;
    border-top: 5px solid var(--saffron);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
}

.service-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    border-top-color: var(--green);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 153, 51, 0.1), transparent);
    transition: left 0.7s;
}

.service-card:hover::before {
    left: 100%;
}

.service-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--light-blue), white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    color: var(--saffron);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.service-card h3 {
    color: var(--navy);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.service-card p {
    color: #666;
    line-height: 1.6;
}

/* Stats Section */
.stats-section {
    padding: 4rem 5%;
    background: linear-gradient(135deg, var(--white), #f0f2ff);
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 3rem auto 0;
}

.stats-section .stat-item {
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.stats-section .stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(90deg, var(--saffron), var(--green));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 0.5rem;
}

/* AI Section */
.ai-section {
    padding: 5rem 5%;
    background: linear-gradient(135deg, #f8f9ff 0%, #eef1ff 100%);
    border-top: 3px solid var(--green);
    border-bottom: 3px solid var(--saffron);
}

.ai-container {
    max-width: 1200px;
    margin: 0 auto;
}

.ai-container h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--navy);
    margin-bottom: 3rem;
}

.ai-container h2 i {
    color: var(--saffron);
    margin-right: 10px;
}

.ai-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.ai-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.ai-card:hover {
    border-color: var(--saffron);
    transform: translateY(-5px);
}

.ai-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s;
}

.ai-card:hover::after {
    opacity: 1;
    animation: ripple 1s linear;
}

.ai-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--saffron), #ff8000);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    transition: all 0.3s;
}

.ai-card:hover .ai-icon {
    background: linear-gradient(135deg, var(--green), #0d6e07);
    transform: scale(1.1) rotate(10deg);
}

.ai-card h3 {
    color: var(--navy);
    margin-bottom: 1rem;
}

/* Contact Section */
.contact-section {
    padding: 5rem 5%;
    background: white;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    align-items: start;
}

.contact-info {
    background: linear-gradient(135deg, #f8f9ff, #f0f2ff);
    padding: 2.5rem;
    border-radius: 15px;
    border-left: 5px solid var(--green);
}

.contact-info h3 {
    color: var(--navy);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.contact-info h3 i {
    color: var(--saffron);
    margin-right: 10px;
}

.contact-info p {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #555;
}

.contact-info i {
    color: var(--saffron);
    width: 20px;
}

.whatsapp-badge {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 1.5rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    animation: badgePulse 3s infinite;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--saffron);
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 153, 51, 0.2);
}

.btn-submit {
    background: linear-gradient(135deg, var(--saffron), #ff8000);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-submit:hover {
    background: linear-gradient(135deg, var(--green), #0d6e07);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 153, 51, 0.3);
}

/* ==================== */
/* ANIMATED FOOTER STYLES */
/* ==================== */

.animated-footer {
    background: linear-gradient(135deg, #0a0a2a 0%, #1a1a3a 100%);
    color: white;
    padding: 4rem 0 0;
    position: relative;
    overflow: hidden;
    margin-top: 5rem;
    border-top: 3px solid var(--saffron);
}

.animated-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--saffron), var(--green), transparent);
    animation: shine 3s linear infinite;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 2;
}

/* Company Info */
.company-info {
    padding-right: 2rem;
}

.footer-logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-logo-spin {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 3px solid var(--saffron);
    padding: 2px;
    animation: logoRotate 30s linear infinite;
    transition: all 0.3s;
    background: white;
}

.footer-logo-spin:hover {
    animation-duration: 10s;
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(255, 153, 51, 0.5);
}

.logo-text h3 {
    font-size: 1.8rem;
    margin: 0;
    color: white;
}

.logo-text h3 span {
    color: var(--saffron);
}

.tagline {
    color: var(--green);
    font-weight: 600;
    letter-spacing: 1px;
    margin: 0.2rem 0 0;
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.footer-ceo {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: 10px;
    border-left: 3px solid var(--saffron);
    margin-bottom: 1.5rem;
}

.footer-ceo i {
    color: var(--saffron);
    font-size: 1.5rem;
}

.footer-ceo strong {
    color: var(--saffron);
}

.footer-ceo small {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: currentColor;
    opacity: 0.2;
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.3s;
}

.social-link:hover::before {
    transform: scale(1.5);
}

.social-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.social-link.whatsapp { background: #25D366; }
.social-link.facebook { background: #1877F2; }
.social-link.twitter { background: #1DA1F2; }
.social-link.linkedin { background: #0077B5; }
.social-link.instagram { 
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}
.social-link.email { background: var(--saffron); }

/* Footer Sections Common */
.footer-section {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.footer-section.footer-animated {
    opacity: 1;
    transform: translateY(0);
}

.footer-section:nth-child(1) { transition-delay: 0.1s; }
.footer-section:nth-child(2) { transition-delay: 0.2s; }
.footer-section:nth-child(3) { transition-delay: 0.3s; }

.footer-section:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
    border-color: rgba(255, 153, 51, 0.2);
}

.footer-heading {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.8rem;
    border-bottom: 2px solid var(--saffron);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-heading i {
    color: var(--saffron);
}

/* Quick Links */
.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-list li {
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 1.2rem;
}

.footer-links-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--saffron);
    font-size: 0.8rem;
    transition: transform 0.3s;
}

.footer-links-list li:hover::before {
    transform: translateX(5px);
    color: var(--green);
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    position: relative;
    overflow: hidden;
}

.footer-link i {
    font-size: 0.7rem;
    color: var(--saffron);
    transition: transform 0.3s;
}

.footer-link:hover {
    color: var(--saffron);
    padding-left: 5px;
}

.footer-link:hover i {
    transform: rotate(90deg);
    color: var(--green);
}

.footer-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -100%;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--saffron), transparent);
    transition: left 0.5s;
}

.footer-link:hover::after {
    left: 100%;
}

/* Service Tags */
.services-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.service-tag {
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: default;
    transition: all 0.3s;
    animation: tagFloat 3s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.service-tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.service-tag:hover::before {
    left: 100%;
}

.service-tag:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.ai-tag {
    background: linear-gradient(135deg, var(--saffron), #ff8000);
    animation-delay: 0s;
}
.whatsapp-tag {
    background: linear-gradient(135deg, #25D366, #128C7E);
    animation-delay: 0.5s;
}
.tally-tag {
    background: linear-gradient(135deg, var(--green), #0d6e07);
    animation-delay: 1s;
}
.busy-tag {
    background: linear-gradient(135deg, #4A00E0, #8E2DE2);
    animation-delay: 1.5s;
}
.web-tag {
    background: linear-gradient(135deg, #2196F3, #21CBF3);
    animation-delay: 2s;
}
.app-tag {
    background: linear-gradient(135deg, #FF416C, #FF4B2B);
    animation-delay: 2.5s;
}
.cloud-tag {
    background: linear-gradient(135deg, #00B4DB, #0083B0);
    animation-delay: 3s;
}
.api-tag {
    background: linear-gradient(135deg, #834D9B, #D04ED6);
    animation-delay: 3.5s;
}

/* Contact Info */
.contact-details {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.2rem;
    padding-bottom: 1.2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
    opacity: 0;
    transform: translateY(20px);
}

.footer-animated .contact-item:nth-child(1) { animation: fadeInUp 0.5s ease-out 0.2s forwards; }
.footer-animated .contact-item:nth-child(2) { animation: fadeInUp 0.5s ease-out 0.3s forwards; }
.footer-animated .contact-item:nth-child(3) { animation: fadeInUp 0.5s ease-out 0.4s forwards; }
.footer-animated .contact-item:nth-child(4) { animation: fadeInUp 0.5s ease-out 0.5s forwards; }

.contact-item:hover {
    border-bottom-color: var(--saffron);
    padding-left: 5px;
}

.contact-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 153, 51, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--saffron);
    font-size: 1rem;
    flex-shrink: 0;
    transition: all 0.3s;
}

.contact-item:hover .contact-icon {
    background: var(--saffron);
    color: white;
    transform: rotate(15deg);
}

.contact-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    line-height: 1.5;
}

.contact-text strong {
    color: var(--saffron);
    font-size: 0.95rem;
}

/* Newsletter */
.newsletter {
    background: rgba(255, 255, 255, 0.03);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.newsletter h5 {
    color: white;
    margin: 0 0 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
}

.newsletter h5 i {
    color: var(--saffron);
}

.newsletter p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-input {
    flex: 1;
    padding: 0.8rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--saffron);
    background: rgba(255, 255, 255, 0.08);
}

.newsletter-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--saffron), #ff8000);
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-btn:hover {
    background: linear-gradient(135deg, var(--green), #0d6e07);
    transform: rotate(20deg) scale(1.1);
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.5);
    padding: 2rem 5%;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

#currentYear {
    color: var(--saffron);
    font-weight: 700;
}

.reg-number {
    color: var(--green);
    font-weight: 600;
}

.separator {
    color: rgba(255, 255, 255, 0.3);
    margin: 0 0.8rem;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.bottom-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s;
}

.bottom-link:hover {
    color: var(--saffron);
    text-decoration: underline;
}

.payment-methods {
    display: flex;
    gap: 1rem;
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.7);
}

.payment-methods i {
    transition: all 0.3s;
    cursor: pointer;
}

.payment-methods i:hover {
    color: var(--saffron);
    transform: translateY(-3px);
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--saffron), #ff8000);
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(255, 153, 51, 0.3);
    transition: all 0.3s;
    animation: bounce 2s infinite;
}

.scroll-to-top:hover {
    background: linear-gradient(135deg, var(--green), #0d6e07);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(19, 136, 8, 0.4);
}

/* Indian Flag Waves at Bottom */
.flag-waves-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    overflow: hidden;
    z-index: 1;
    opacity: 0.1;
}

.flag-wave-bottom {
    position: absolute;
    width: 300%;
    height: 40px;
    animation: waveMoveReverse 25s linear infinite;
}

.flag-wave-bottom.saffron {
    background: var(--saffron);
    bottom: 60px;
    animation-delay: 0s;
}

.flag-wave-bottom.white {
    background: var(--white);
    bottom: 30px;
    animation-delay: -8s;
    box-shadow: 0 0 30px rgba(255,255,255,0.3);
}

.flag-wave-bottom.green {
    background: var(--green);
    bottom: 0;
    animation-delay: -16s;
}

/* ==================== */
/* FOOTER ANIMATIONS */
/* ==================== */

@keyframes shine {
    0% { background-position: -200px 0; }
    100% { background-position: calc(100% + 200px) 0; }
}

@keyframes tagFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

@keyframes ringPulse {
    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); }
}

@keyframes pulseGreen {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

@keyframes waveMoveReverse {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* ==================== */
/* RESPONSIVE DESIGN */
/* ==================== */

@media (max-width: 1200px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 1rem;
    }
    
    .mobile-menu-btn {
        display: block;
        background: var(--saffron);
        color: white;
        border: none;
        padding: 10px 15px;
        border-radius: 5px;
        font-size: 1.2rem;
        cursor: pointer;
    }
    
    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        padding: 1rem;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        z-index: 1000;
    }
    
    .nav-menu.show {
        display: flex;
    }
    
    .hero-section {
        flex-direction: column;
        text-align: center;
        padding: 2rem 5%;
        min-height: auto;
    }
    
    .typing-animation {
        font-size: 2.2rem;
        white-space: normal;
        border-right: none;
        animation: none;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .floating-shapes {
        width: 250px;
        height: 250px;
        margin-top: 2rem;
    }
    
    .shape {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .whatsapp-float-left {
        left: 20px;
        bottom: 20px;
        width: 50px;
        height: 50px;
        font-size: 25px;
    }
    
    .animated-footer {
        padding: 3rem 0 0;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .footer-section {
        padding: 1.5rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-bottom-links {
        justify-content: center;
    }
    
    .payment-methods {
        justify-content: center;
    }
    
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-logo-container {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.5rem;
    }
    
    .contact-icon {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
}

/* ==================== */
/* ABOUT US SECTION */
/* ==================== */

.about-section {
    padding: 5rem 5%;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--saffron), var(--white), var(--green));
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.about-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
    border-top: 4px solid transparent;
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.overview-card {
    border-top-color: var(--saffron);
    grid-column: span 2;
}

.story-card {
    border-top-color: var(--green);
}

.services-card {
    border-top-color: #2196F3;
}

.mission-card {
    border-top-color: #FF9800;
}

.about-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--saffron), #ff8000);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: white;
    transition: all 0.3s;
}

.about-card:hover .about-icon {
    transform: rotate(15deg) scale(1.1);
    background: linear-gradient(135deg, var(--green), #0d6e07);
}

.about-text h3 {
    color: var(--navy);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.about-text h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--saffron), var(--green));
}

.about-text p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 1rem;
}

/* Timeline Animation */
.timeline-animation {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 2rem;
    padding: 0 1rem;
}

.timeline-dot {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 0.9rem;
    position: relative;
    z-index: 2;
    transform: scale(0);
    opacity: 0;
    transition: all 0.5s;
}

.timeline-dot.founded {
    background: linear-gradient(135deg, var(--saffron), #ff8000);
}

.timeline-dot.growth {
    background: linear-gradient(135deg, var(--green), #0d6e07);
}

.timeline-dot.current {
    background: linear-gradient(135deg, #2196F3, #21CBF3);
}

.timeline-line {
    flex: 1;
    height: 3px;
    background: #e0e0e0;
    position: relative;
    overflow: hidden;
}

.timeline-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--saffron), var(--green));
    transition: width 1s ease-in-out;
}

/* Services Highlights */
.services-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.highlight-tag {
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(255, 153, 51, 0.1), rgba(19, 136, 8, 0.1));
    color: var(--navy);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s;
    border: 1px solid rgba(255, 153, 51, 0.2);
    cursor: default;
}

.highlight-tag:hover {
    background: linear-gradient(135deg, var(--saffron), var(--green));
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
}

/* Mission Quote */
.mission-quote {
    background: linear-gradient(135deg, rgba(255, 153, 51, 0.05), rgba(19, 136, 8, 0.05));
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 1.5rem;
    border-left: 4px solid var(--saffron);
    position: relative;
    transition: all 0.3s;
}

.mission-quote i:first-child {
    color: var(--saffron);
    font-size: 1.5rem;
    position: absolute;
    top: 10px;
    left: 10px;
}

.mission-quote i:last-child {
    color: var(--green);
    font-size: 1.5rem;
    position: absolute;
    bottom: 10px;
    right: 10px;
}

.mission-quote p {
    font-style: italic;
    color: var(--navy);
    text-align: center;
    margin: 0;
    padding: 0 2rem;
    font-size: 1.1rem;
}

/* CEO Highlight Card */
.ceo-highlight-card {
    grid-column: span 2;
    background: linear-gradient(135deg, #0a0a2a 0%, #1a1a3a 100%);
    border-radius: 15px;
    padding: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.ceo-image-container {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.ceo-image-placeholder {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--saffron), #ff8000);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    border: 5px solid rgba(255, 255, 255, 0.1);
    animation: pulseCEOPic 3s infinite;
}

@keyframes pulseCEOPic {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.ceo-info h4 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.ceo-title {
    color: var(--saffron);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.ceo-quote {
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
    border-left: 3px solid var(--saffron);
    padding-left: 1rem;
    margin-top: 1rem;
}

.ceo-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    flex-shrink: 0;
}

.ceo-highlight-card .stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
}

.ceo-highlight-card .stat-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    border-color: var(--saffron);
}

.ceo-highlight-card .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(90deg, var(--saffron), var(--green));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 0.5rem;
}

.ceo-highlight-card .stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: 600;
}

/* Responsive Design for About Section */
@media (max-width: 992px) {
    .overview-card,
    .ceo-highlight-card {
        grid-column: span 1;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .ceo-highlight-card {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .ceo-image-container {
        flex-direction: column;
    }
    
    .ceo-stats {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 3rem 1rem;
    }
    
    .ceo-stats {
        grid-template-columns: 1fr;
    }
    
    .timeline-animation {
        flex-direction: column;
        height: 200px;
    }
    
    .timeline-line {
        width: 3px;
        height: 40px;
    }
    
    .timeline-line::after {
        width: 100%;
        height: 0;
        transition: height 1s ease-in-out;
    }
    
    .services-highlights {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .about-card {
        padding: 1.5rem;
    }
    
    .ceo-highlight-card {
        padding: 1.5rem;
    }
    
    .ceo-image-placeholder {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
    }
    
    .ceo-highlight-card .stat-number {
        font-size: 2rem;
    }
}

/* Additional Styles for JavaScript Elements */
.fade-in-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.fade-in-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.service-hover {
    margin-top: 1.5rem;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s;
}

.service-card:hover .service-hover {
    opacity: 1;
    transform: translateY(0);
}

.service-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--saffron);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.service-cta:hover {
    background: var(--green);
    padding-right: 20px;
}

.form-error {
    background: #ffebee;
    color: #c62828;
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 1rem;
    animation: shake 0.5s;
}

.btn-submit.loading {
    position: relative;
    color: transparent;
}

.btn-submit.loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.ceo-highlight {
    color: var(--saffron);
    font-weight: 800;
    position: relative;
    cursor: help;
    padding: 0 5px;
}

.ceo-badge {
    background: white;
    padding: 10px 15px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    border-left: 4px solid var(--saffron);
    font-size: 0.9rem;
    line-height: 1.3;
    animation: fadeIn 0.3s;
    z-index: 1001;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes socialPop {
    0% {
        opacity: 0;
        transform: scale(0.5) rotate(-180deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0);
    }
}