/* assets/css/style.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #2d2d2d 100%);
}

/* News Ticker */
.news-ticker {
    background: linear-gradient(90deg, #FFD700, #FFA500);
    color: #000;
    padding: 0.8rem 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    font-weight: 600;
    margin-top: 80px;
    box-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
}

.news-content {
    display: inline-block;
    animation: scrollLeft 30s linear infinite;
    padding-left: 100%;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

@keyframes scrollLeft {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

.news-label {
    background: linear-gradient(45deg, #000, #333);
    color: #FFD700;
    padding: 0.6rem 1.2rem;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    font-weight: 700;
    z-index: 10;
    border-radius: 0 10px 10px 0;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.company-logo {
    height: 60px;
    width: auto;
    transition: all 0.3s ease;
    object-fit: contain;
    animation: logoFloat 4s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% { 
        transform: translateY(0px) rotateY(0deg) scale(1);
        filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.3));
    }
    25% { 
        transform: translateY(-5px) rotateY(5deg) scale(1.05);
        filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.6));
    }
    50% { 
        transform: translateY(-8px) rotateY(0deg) scale(1.08);
        filter: drop-shadow(0 0 25px rgba(255, 215, 0, 0.8));
    }
    75% { 
        transform: translateY(-5px) rotateY(-5deg) scale(1.05);
        filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.6));
    }
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    cursor: pointer;
}

.nav-links a:hover,
.nav-links a.active {
    color: #000;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #FFD700;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 215, 0, 0.3);
    padding: 1rem;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu a {
    display: block;
    color: #fff;
    text-decoration: none;
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
    transition: all 0.3s ease;
}

.mobile-menu a:hover {
    background: rgba(255, 215, 0, 0.1);
    color: #FFD700;
}

/* Common Styles */
.page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 3rem;
}

.highlight {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: #000;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 2px solid rgba(255, 215, 0, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: #FFD700;
}

.card {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 215, 0, 0.8);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.3);
}

/* Hero Section */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 2rem;
    margin-top: 60px;
}

.hero-container {
    max-width: 1200px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.tagline {
    font-size: 1.5rem;
    color: #FFD700;
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-description {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 2rem;
    line-height: 1.8;
}

/* Business Animation */
.business-animation {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
}

.animation-container {
    width: 300px;
    height: 400px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.calculator, .gst-sign, .currency-animation {
    position: absolute;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.5s ease;
}

.calculator.active, .gst-sign.active, .currency-animation.active {
    opacity: 1;
    transform: scale(1);
}

.calculator {
    width: 200px;
    height: 280px;
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    border-radius: 15px;
    border: 3px solid #FFD700;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    animation: float 3s ease-in-out infinite;
    padding: 10px;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-10px) scale(1.02); }
}

.calculator-screen {
    width: 100%;
    height: 60px;
    background: linear-gradient(145deg, #000, #1a1a1a);
    border: 2px solid #FFD700;
    border-radius: 8px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0 10px;
    font-family: 'Courier New', monospace;
    font-size: 16px;
    color: #FFD700;
    font-weight: bold;
}

.calculator-buttons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
    width: 100%;
}

.calc-btn {
    height: 35px;
    background: linear-gradient(145deg, #333, #222);
    border: 1px solid #FFD700;
    border-radius: 5px;
    color: #FFD700;
    font-size: 11px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gst-sign {
    width: 200px;
    height: 200px;
}

.gst-sign.active {
    animation: gstRotate 2s linear infinite;
}

@keyframes gstRotate {
    0% { transform: rotateY(0deg); }
    100% { transform: rotateY(360deg); }
}

.gst-circle {
    width: 200px;
    height: 200px;
    background: conic-gradient(from 0deg, #FFD700, #FFA500, #B8860B, #FFD700);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.4);
}

.gst-text {
    background: #000;
    color: #FFD700;
    padding: 20px;
    border-radius: 50%;
    font-size: 24px;
    font-weight: 900;
    text-align: center;
    line-height: 1;
    border: 3px solid #FFD700;
}

.currency-animation {
    width: 200px;
    height: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.rupee-symbol {
    font-size: 80px;
    color: #FFD700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    animation: rupeeGlow 2s ease-in-out infinite;
    margin-bottom: 20px;
}

@keyframes rupeeGlow {
    0%, 100% { 
        transform: scale(1);
        text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    }
    50% { 
        transform: scale(1.1);
        text-shadow: 0 0 30px rgba(255, 215, 0, 0.8);
    }
}

.currency-notes {
    display: flex;
    gap: 10px;
    animation: notesFloat 3s ease-in-out infinite;
}

.note {
    width: 40px;
    height: 25px;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    border-radius: 3px;
    border: 1px solid #B8860B;
    font-size: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-weight: bold;
}

@keyframes notesFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    z-index: 999;
    animation: whatsappPulse 2s ease-in-out infinite;
}

@keyframes whatsappPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Statistics Section */
.stats-section {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 215, 0, 0.1);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card:hover {
    transform: translateY(-10px);
    border-color: #FFD700;
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: #FFD700;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 2;
}

.stat-label {
    font-size: 1.2rem;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-description {
    font-size: 0.9rem;
    color: #cccccc;
    margin-top: 0.5rem;
}

/* Services Section */
.services-section {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-icon {
    font-size: 3rem;
    color: #FFD700;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}

.service-card p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Service Detail */
.service-detail {
    max-width: 800px;
    margin: 0 auto;
    padding: 6rem 2rem 2rem;
}

.service-detail h1 {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 2rem;
    text-align: center;
}

.service-detail .service-icon {
    font-size: 5rem;
    text-align: center;
    display: block;
    margin-bottom: 2rem;
}

.service-content {
    background: rgba(0, 0, 0, 0.5);
    padding: 3rem;
    border-radius: 20px;
    border: 2px solid rgba(255, 215, 0, 0.3);
}

.service-content p {
    color: #cccccc;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.service-features {
    margin-top: 2rem;
}

.service-features h3 {
    color: #FFD700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-features ul {
    list-style: none;
    padding: 0;
}

.service-features li {
    color: #cccccc;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.service-features li:before {
    content: "✓";
    color: #FFD700;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Reviews Section */
.reviews-section {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.reviews-slider {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.reviews-track {
    display: flex;
    transition: transform 0.5s ease;
}

.review-slide {
    min-width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.review-card {
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-10px);
    border-color: #FFD700;
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.3);
}

.reviewer-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #FFD700;
    margin-bottom: 1rem;
}

.stars {
    color: #FFD700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.review-text {
    color: #cccccc;
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.reviewer-name {
    color: #FFD700;
    font-weight: 600;
    font-size: 1.1rem;
}

.slider-controls {
    text-align: center;
    margin-top: 2rem;
}

.slider-btn {
    background: rgba(255, 215, 0, 0.2);
    border: 2px solid rgba(255, 215, 0, 0.3);
    color: #FFD700;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin: 0 0.5rem;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.slider-btn:hover {
    background: #FFD700;
    color: #000;
}

/* Clients Section */
.clients-section {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    overflow: hidden;
}

.clients-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.clients-slider {
    overflow: hidden;
    margin-top: 3rem;
    position: relative;
}

.clients-track {
    display: flex;
    animation: clientsSlide 20s linear infinite;
    width: calc(200% + 4rem);
}

.clients-track:hover {
    animation-play-state: paused;
}

@keyframes clientsSlide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.client-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 150px;
    min-width: 200px;
    margin: 0 1rem;
    flex-shrink: 0;
}

.client-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 215, 0, 0.6);
    box-shadow: 0 15px 30px rgba(255, 215, 0, 0.2);
}

.client-logo {
    max-width: 120px;
    max-height: 80px;
    object-fit: contain;
    margin-bottom: 1rem;
    filter: grayscale(100%) brightness(0.8);
    transition: all 0.3s ease;
}

.client-card:hover .client-logo {
    filter: grayscale(0%) brightness(1.2);
    transform: scale(1.1);
}

.client-name {
    color: #FFD700;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
}

/* About Page */
.about-hero {
    text-align: center;
    padding: 6rem 2rem 4rem;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    color: #cccccc;
    font-size: 1.2rem;
    line-height: 1.8;
}

.mission-vision {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin: 4rem 0;
}

.mission-card, .vision-card {
    background: rgba(255, 215, 0, 0.1);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
}

.mission-card h3, .vision-card h3 {
    color: #FFD700;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.mission-card p, .vision-card p {
    color: #fff;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Team Section */
.team-section {
    padding: 6rem 2rem 4rem;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.team-member {
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    border-color: #FFD700;
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.3);
}

.member-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #FFD700;
    margin-bottom: 1.5rem;
}

.member-name {
    color: #FFD700;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.member-role {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.member-experience {
    color: #cccccc;
    margin-bottom: 1rem;
}

.member-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.skill-tag {
    background: rgba(255, 215, 0, 0.2);
    color: #FFD700;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

/* Blog Section */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-card {
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
    border-color: #FFD700;
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.3);
}

.blog-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content {
    padding: 2rem;
}

.blog-title {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.blog-excerpt {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.blog-meta {
    color: #FFD700;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

/* Blog Detail */
.blog-detail {
    max-width: 900px;
    margin: 0 auto;
    padding: 6rem 2rem 2rem;
}

.blog-detail-header {
    text-align: center;
    margin-bottom: 3rem;
}

.blog-detail-title {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.blog-detail-meta {
    color: #FFD700;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.blog-detail-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 3rem;
}

.blog-detail-content {
    background: rgba(0, 0, 0, 0.5);
    padding: 3rem;
    border-radius: 20px;
    border: 2px solid rgba(255, 215, 0, 0.3);
}

.blog-detail-content p {
    color: #cccccc;
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.blog-detail-content h3 {
    color: #FFD700;
    font-size: 1.8rem;
    margin: 2rem 0 1rem;
}

.blog-detail-content ul {
    color: #cccccc;
    margin-left: 2rem;
    margin-bottom: 2rem;
}

.blog-detail-content li {
    margin-bottom: 0.5rem;
}

/* Contact Section */
.contact-section {
    padding: 6rem 2rem 4rem;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
}

.contact-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    color: #FFD700;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1.5rem;
    color: #cccccc;
}

.contact-icon {
    color: #FFD700;
    font-size: 1.5rem;
    width: 30px;
}

.contact-form {
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    padding: 3rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: #FFD700;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #FFD700;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Alerts */
.alert {
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 1rem;
    text-align: center;
}

.alert-success {
    background: #28a745;
    color: white;
}

.alert-error {
    background: #dc3545;
    color: white;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 100%);
    padding: 4rem 2rem 2rem;
    position: relative;
    overflow: hidden;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    color: #FFD700;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-section p,
.footer-section li {
    color: #cccccc;
    line-height: 1.8;
    margin-bottom: 0.8rem;
    font-size: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    position: relative;
    padding-left: 25px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.footer-section ul li:before {
    content: "⚡";
    color: #FFD700;
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.1rem;
}

.footer-section ul li:hover {
    color: #FFD700;
    transform: translateX(5px);
}

.footer-bottom {
    border-top: 2px solid rgba(255, 215, 0, 0.3);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: #888;
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .animation-container {
        width: 250px;
        height: 350px;
    }

    .calculator {
        width: 180px;
        height: 250px;
    }

    .gst-circle {
        width: 180px;
        height: 180px;
    }

    .rupee-symbol {
        font-size: 70px;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 1rem;
        flex-wrap: wrap;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .company-logo {
        height: 50px;
    }

    .hero {
        margin-top: 120px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .calculator {
        width: 160px;
        height: 220px;
        padding: 8px;
    }

    .calculator-screen {
        height: 50px;
        font-size: 14px;
        margin-bottom: 10px;
    }

    .calc-btn {
        height: 30px;
        font-size: 10px;
    }

    .gst-circle {
        width: 160px;
        height: 160px;
    }

    .gst-text {
        font-size: 20px;
        padding: 15px;
    }

    .rupee-symbol {
        font-size: 60px;
    }

    .news-ticker {
        margin-top: 120px;
    }

    .review-slide {
        grid-template-columns: 1fr;
    }

    .blog-detail-title {
        font-size: 2rem;
    }

    .blog-detail-image {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .page-container {
        padding: 1rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .service-icon {
        font-size: 2.5rem;
    }

    .calculator {
        width: 140px;
        height: 200px;
        padding: 6px;
    }

    .calculator-screen {
        height: 40px;
        font-size: 12px;
    }

    .calc-btn {
        height: 25px;
        font-size: 9px;
    }

    .gst-circle {
        width: 140px;
        height: 140px;
    }

    .gst-text {
        font-size: 16px;
        padding: 12px;
    }

    .rupee-symbol {
        font-size: 50px;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .clients-track {
        animation-duration: 30s;
    }

    .client-card {
        min-width: 160px;
        padding: 1rem;
    }
}