/* Base Styles */
:root {
    --mouse-x: 0.5;
    --mouse-y: 0.5;
    /* Attractive color scheme */
    --bg-color: #ffffff;
    --text-color: #333333;
    --header-bg: rgba(255, 255, 255, 0.95);
    --card-bg: #ffffff;
    --border-color: #e0e0e0;
    --hero-bg: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --stat-bg: rgba(255, 255, 255, 0.9);
    --footer-bg: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    --btn-primary-bg: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --btn-primary-hover: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
    --btn-secondary-border: #667eea;
    --btn-secondary-text: #667eea;
    --btn-secondary-hover-bg: #667eea;
    --btn-secondary-hover-text: white;
    --accent-color: #ff6b6b;
    --accent-hover: #ff5252;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hidden {
  display: none;
}

.status-pill {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.9em;
    font-weight: bold;
    color: #333;
    text-align: center;
    min-width: 100px;
    transition: all 0.3s ease;
}

h1, h2, h3, h4 {
    color: #2c3e50;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--accent-color);
    margin: 15px auto;
    border-radius: 2px;
    transition: all 0.5s ease;
}

h2:hover::after {
    width: 120px;
    background: #667eea;
}

p {
    margin-bottom: 15px;
}

a {
    text-decoration: none;
    color: #667eea;
    transition: all 0.3s ease;
}

a:hover {
    color: #764ba2;
    transform: translateY(-2px);
}

ul {
    list-style: none;
}

/* Section entrance animations */
section {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    padding: 80px 0;
    position: relative;
}

section.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 1.2rem;
    color: #555;
    transition: all 0.3s ease;
}

/* Buttons */
.btn-primary {
    background: var(--btn-primary-bg);
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    display: inline-block;
    transition: all 0.4s ease;
    border: none;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: var(--btn-primary-hover);
    transition: all 0.5s ease;
    z-index: -1;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

.btn-primary:hover::before {
    width: 100%;
}

.btn-secondary {
    background-color: transparent;
    color: var(--btn-secondary-text);
    border: 2px solid var(--btn-secondary-border);
    padding: 12px 25px;
    border-radius: 30px;
    display: inline-block;
    transition: all 0.4s ease;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: var(--btn-secondary-hover-bg);
    transition: all 0.5s ease;
    z-index: -1;
}

.btn-secondary:hover {
    color: var(--btn-secondary-hover-text);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.btn-secondary:hover::before {
    width: 100%;
}

.btn-full {
    width: 100%;
    text-align: center;
}

/* Header & Navigation */
header {
    background-color: var(--header-bg);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-right: auto;
}

.logo h1 {
    font-size: 1.6rem;
    margin-bottom: 0;
    background: var(--btn-primary-bg);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.logo h1:hover {
    transform: scale(1.05);
}

.logo-img {
    height: 80px;
    width: auto;
    transition: all 0.3s ease;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.logo:hover .logo-img {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

nav ul {
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.2);
    padding: 10px 15px;
    border-radius: 30px;
    backdrop-filter: blur(10px);
}

nav ul li {
    margin-left: 25px;
    position: relative;
}

nav ul li a {
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

nav ul li a:hover::after,
nav ul li a.active::after {
    width: 100%;
}

nav ul li a:hover,
nav ul li a.active {
    color: #764ba2;
    font-weight: 600;
}

/* Hero Section */
.hero {
    background: var(--hero-bg);
    padding: 100px 0;
    text-align: left;
    position: relative;
    overflow: hidden;
    color: white;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        circle at calc(var(--mouse-x) * 100%) calc(var(--mouse-y) * 100%),
        rgba(255, 255, 255, 0.1) 0%,
        rgba(0, 0, 0, 0.1) 100%
    );
    pointer-events: none;
    animation: float 6s ease-in-out infinite;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.hero-text {
    flex: 1.5;
    animation: fadeInUp 1s ease;
}

.hero-text h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 500px;
    opacity: 0.9;
}

.hero-text .btn-primary {
    margin-right: 15px;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-text .btn-secondary {
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-right-content {
    flex: 1;
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

@media (max-width: 768px) {
    .hero-right-content {
        flex-direction: column;
    }
}

.hero-stats {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    width: 100%;
    max-width: 300px;
    animation: fadeInUp 1s ease 0.3s both;
}

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-20px); }
    60% { transform: translateY(-10px); }
}

.hero-stats .stat-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    transform: perspective(1000px) rotateY(0deg) translateZ(0);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: float 4s ease-in-out infinite;
    animation-delay: calc(var(--delay) * 0.5s);
}

.hero-stats .stat-box:hover {
    transform: perspective(1000px) rotateY(10deg) translateZ(20px);
    background: rgba(255, 255, 255, 0.2);
    animation-play-state: paused;
}

.hero-stats .stat-box h3 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 5px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.hero-stats .stat-box p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

.hero-quick-links {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    width: 100%;
    max-width: 300px;
}

.hero-quick-links span {
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 0.95rem;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
    animation: bounce 2s infinite;
    animation-delay: calc(var(--delay) * 0.3s);
    width: fit-content;
}

.hero-quick-links span:hover {
    transform: translateY(-5px) scale(1.05);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.welcome-banner {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 25px 0;
    text-align: center;
    animation: fadeInUp 0.8s ease;
}

.welcome-banner h2 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Our Services Section */
.our-services {
    background-color: var(--bg-color);
    position: relative;
}

.our-services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="%23667eea" opacity="0.1"/><circle cx="50" cy="50" r="1" fill="%23764ba2" opacity="0.1"/><circle cx="80" cy="80" r="1.5" fill="%23ff6b6b" opacity="0.1"/></svg>');
    background-size: 200px;
    z-index: 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.service-card {
    background: var(--card-bg);
    padding: 40px 30px;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--btn-primary-bg);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.2);
}

.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: #2c3e50;
    transition: all 0.3s ease;
}

.service-card p {
    color: #666;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.learn-more {
    display: inline-block;
    margin-top: 15px;
    font-weight: 600;
    color: #667eea;
    position: relative;
    transition: all 0.3s ease;
}

.learn-more::after {
    content: '→';
    margin-left: 5px;
    transition: all 0.3s ease;
}

.learn-more:hover {
    color: #764ba2;
    letter-spacing: 1px;
}

.learn-more:hover::after {
    transform: translateX(5px);
}

/* GST Calculator Section */
.gst-calculator {
    padding: 60px 0;
    background-color: #f8f8f8; /* Added background color */
    text-align: center;
}

.gst-calculator h2 {
    margin-bottom: 15px;
    color: var(--heading-color);
}

.gst-calculator .section-intro {
    margin-bottom: 40px;
    color: var(--text-color);
}

.calculator-card {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    max-width: 500px;
    margin: 0 auto;
    text-align: left;
}

.calculator-card .input-group {
    margin-bottom: 20px;
}

.calculator-card label {
    display: block;
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--heading-color);
}

.calculator-card input[type="number"],
.calculator-card select {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 16px;
    color: var(--text-color);
    background-color: var(--light-bg);
    transition: border-color 0.3s ease;
}

.calculator-card input[type="number"]:focus,
.calculator-card select:focus {
    border-color: var(--primary-color);
    outline: none;
}

.calculator-card .button-group {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.calculator-card button {
    flex: 1;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.calculator-card button#calculate-gst {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.calculator-card button#calculate-gst:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

.calculator-card button#reset-gst {
    background-color: var(--light-bg);
    color: var(--heading-color);
    border: 1px solid var(--border-color);
}

.calculator-card button#reset-gst:hover {
    background-color: var(--border-color);
    transform: translateY(-2px);
}

.calculator-card .result-group {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.calculator-card .result-group p {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--heading-color);
    display: flex;
    justify-content: space-between;
}

.calculator-card .result-group span {
    font-weight: 600;
    color: var(--primary-color);
}

/* Why Choose Us Section */
.why-choose-us {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.why-choose-us::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.reason-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    transform: translateY(0);
}

.reason-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.reason-card i {
    font-size: 3rem;
    color: white;
    margin-bottom: 20px;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.reason-card:hover i {
    transform: scale(1.2) rotate(5deg);
}

.reason-card h4 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: white;
}

.reason-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
}

/* Expertise Section */
.expertise {
    background-color: var(--bg-color);
}

.expertise-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 50px;
}

.expertise-text {
    flex: 1;
    min-width: 300px;
    animation: fadeInUp 0.8s ease;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    flex: 1;
    min-width: 300px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.stat-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    color: white;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    transition: all 0.4s ease;
    transform: translateY(0);
}

.stat-box:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.4);
}

.stat-box h3 {
    font-size: 2.5rem;
    margin-bottom: 5px;
    color: white;
}

.stat-box p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.services-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.service-item {
    text-align: center;
    padding: 30px;
    background: var(--card-bg);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 1px solid var(--border-color);
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(102, 126, 234, 0.2);
}

.service-item i {
    font-size: 3rem;
    color: #667eea;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.service-item:hover i {
    transform: scale(1.2) rotate(10deg);
}

.service-item h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.mission-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 50px;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 40px;
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.3);
    animation: pulse 3s ease-in-out infinite;
}

.mission-box h3 {
    color: white;
    font-size: 2rem;
    margin-bottom: 20px;
}

.mission-box p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.9);
}

.expertise .btn-secondary {
    display: block;
    width: fit-content;
    margin: 0 auto;
}

/* Testimonials Section */
.testimonials {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M20,20 Q40,5 50,30 T80,20" stroke="%23667eea" fill="none" opacity="0.1" stroke-width="0.5"/><path d="M10,50 Q30,35 40,60 T70,50" stroke="%23764ba2" fill="none" opacity="0.1" stroke-width="0.5"/></svg>');
    background-size: 300px;
    animation: float 10s ease-in-out infinite;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background: var(--card-bg);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: all 0.4s ease;
    border: 1px solid var(--border-color);
}

.testimonial-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.2);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 5rem;
    color: #667eea;
    opacity: 0.1;
    font-family: Georgia, serif;
}

.quote-icon {
    font-size: 2rem;
    color: #667eea;
    opacity: 0.2;
    margin-bottom: 15px;
}

.testimonial-card .stars {
    margin-bottom: 10px;
}

.testimonial-card .stars i {
    color: #ffc107; /* Yellow color for stars */
    margin: 0 2px;
}

.testimonial-card p {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.client-info {
    margin-top: 20px;
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
}

.client-info h4 {
    margin-bottom: 5px;
    color: #2c3e50;
}

/* Clients Section */
.clients {
    background-color: var(--bg-color);
    padding: 80px 0;
}

.client-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.client-logo {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    font-weight: bold;
    color: #667eea;
    text-align: center;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    border: 1px solid var(--border-color);
}

.client-logo:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 30px rgba(102, 126, 234, 0.2);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

/* Consultation Section */
.consultation {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.consultation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 80%, rgba(255,255,255,0.1) 0%, transparent 50%);
    animation: float 8s ease-in-out infinite;
}

.consultation-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.consultation-steps {
    flex: 1;
    min-width: 300px;
    animation: fadeInUp 0.8s ease;
}

.step {
    display: flex;
    margin-bottom: 30px;
    align-items: flex-start;
}

.step-number {
    background: white;
    color: #667eea;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    margin-right: 20px;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.step-number:hover {
    transform: scale(1.1) rotate(10deg);
}

.step-content h4 {
    color: white;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.step-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
}

.appointment-form {
    flex: 1;
    min-width: 300px;
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    animation: fadeInUp 0.8s ease 0.2s both;
}

.appointment-form h3 {
    text-align: center;
    margin-bottom: 25px;
    color: #2c3e50;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #2c3e50;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.2);
    outline: none;
}

.detail-field {
    margin-bottom: 15px;
}

.detail-field label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #2c3e50;
}

.detail-field input,
.detail-field select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.detail-field input:focus,
.detail-field select:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 2px rgba(102, 126, 234, 0.2);
    outline: none;
}

/* Status dropdown for admin table */
.status-dropdown {
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid #bbb;
    font-weight: bold;
    min-width: 120px;
    transition: all 0.3s ease;
}

.status-dropdown:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(102, 126, 234, 0.3);
}

.status-dropdown option[value="Upcoming"], .status-dropdown[value="Upcoming"] {
    background: #e3f2fd;
    color: #1565c0;
}
.status-dropdown option[value="Completed"], .status-dropdown[value="Completed"] {
    background: #e8f5e9;
    color: #2e7d32;
}
.status-dropdown option[value="Cancelled"], .status-dropdown[value="Cancelled"] {
    background: #ffebee;
    color: #c62828;
}

.delete-appointment {
    background-color: #ff6b6b;
    color: white;
    padding: 8px 15px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 500;
    margin-left: 10px;
}

.delete-appointment:hover {
    background-color: #ff5252;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

/* Footer */
footer {
    background: var(--footer-bg);
    color: white;
    padding: 60px 0 20px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="10" cy="10" r="1" fill="white" opacity="0.1"/><circle cx="90" cy="90" r="1.5" fill="white" opacity="0.1"/></svg>');
    background-size: 200px;
    animation: float 15s ease-in-out infinite reverse;
}

footer h3, footer h4 {
    color: white;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    color: white;
    background-color: rgba(255, 255, 255, 0.1);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-icons a:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.footer-services ul,
.footer-links ul {
    margin-top: 15px;
}

.footer-services ul li,
.footer-links ul li {
    margin-bottom: 10px;
}

.footer-services ul li a,
.footer-links ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    position: relative;
    padding-left: 15px;
}

.footer-services ul li a::before,
.footer-links ul li a::before {
    content: '→';
    position: absolute;
    left: 0;
    transition: all 0.3s ease;
}

.footer-services ul li a:hover,
.footer-links ul li a:hover {
    color: white;
    padding-left: 20px;
}

.footer-services ul li a:hover::before,
.footer-links ul li a:hover::before {
    color: #667eea;
}

.footer-contact p {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.footer-contact p:hover {
    transform: translateX(10px);
}

.footer-contact p a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    display: flex;
    align-items: center;
    width: 100%;
}

.footer-contact p a:hover {
    color: white;
    transform: none; /* Override the translate effect for the link */
}

.footer-contact p i {
    margin-right: 10px;
    width: 20px;
    color: #667eea;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: 15px;
    position: relative;
    z-index: 1;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.footer-bottom-links a:hover {
    color: white;
    text-decoration: underline;
}

/* Toast Notification */
.toast {
    position: fixed;
    left: 50%;
    bottom: 30px;
    transform: translateX(-50%) translateY(20px);
    background: #2c3e50;
    color: #fff;
    padding: 14px 20px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    z-index: 2000;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    max-width: 90%;
    text-align: center;
    font-weight: 600;
}

.toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.toast-success {
    background: linear-gradient(135deg, #43a047 0%, #2e7d32 100%);
}

.toast-error {
    background: linear-gradient(135deg, #e53935 0%, #c62828 100%);
}

.toast-info {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* Enhanced Admin Dashboard Styles */
.admin-dashboard {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    z-index: 1000;
    padding: 2rem;
    overflow-y: auto;
    color: #333;
}

.admin-dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #667eea;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.admin-nav-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    margin-left: 10px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.admin-nav-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

.admin-dashboard-content {
    margin-top: 20px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.admin-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.admin-stat {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    flex: 1;
    min-width: 200px;
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
    color: white;
    transition: all 0.4s ease;
}

.admin-stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(102, 126, 234, 0.4);
}

.admin-stat h3 {
    margin-bottom: 5px;
    color: white;
}

.admin-stat p {
    font-size: 1.8rem;
    font-weight: bold;
    color: white;
    margin: 0;
}

.appointment-controls {
    margin-bottom: 20px;
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}

.appointment-controls input[type="text"] {
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 30px;
    flex-grow: 1;
    font-size: 1rem;
    background: white;
    color: #333;
    min-width: 200px;
    transition: all 0.3s ease;
}

.appointment-controls input[type="text"]:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.2);
    outline: none;
}

.appointment-controls .btn-primary {
    padding: 12px 25px;
    font-size: 1rem;
    border: none;
    border-radius: 30px;
    cursor: pointer;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 15px;
    overflow: hidden;
}

.admin-table th, .admin-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.admin-table th {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    font-weight: bold;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.admin-table tbody tr:nth-child(even) {
    background-color: #f8f9fa;
}

.admin-table tbody tr:hover {
    background-color: #e3f2fd;
    transform: scale(1.01);
    transition: all 0.3s ease;
}

tr {
  cursor: pointer;
  transition: all 0.2s ease;
}

/* Enhanced Admin Dashboard Visualization */
.admin-stats-visualization {
    background: white;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0e0e0;
}

.admin-stats-visualization h3 {
    margin-bottom: 20px;
    color: #2c3e50;
    text-align: center;
    font-size: 1.8rem;
}

.stats-bars {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.stat-bar {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stat-label {
    font-weight: bold;
    color: #2c3e50;
    font-size: 1.1rem;
}

.stat-bar-container {
    height: 25px;
    background-color: #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
}

.stat-bar-fill {
    height: 100%;
    border-radius: 12px;
    transition: width 1s ease;
    animation: fillBar 2s ease-in-out;
}

@keyframes fillBar {
    from { width: 0; }
    to { width: var(--target-width); }
}

.stat-value {
    font-weight: bold;
    color: #2c3e50;
    text-align: right;
    font-size: 1.2rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-text p {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        width: 100%;
        max-width: 600px;
        margin: 20px auto 0;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
}


/* Mobile Navigation */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
    z-index: 1000;
}

.menu-toggle .bar {
    height: 3px;
    width: 25px;
    background-color: var(--btn-secondary-border); /* Changed from --primary-color to a defined variable */
    margin: 4px 0;
    transition: 0.4s;
}

.main-nav {
    transition: transform 0.3s ease-in-out;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    header .container {
        justify-content: space-between;
    }

    .main-nav {
        position: fixed;
        top: 0;
        left: -250px; /* Hidden by default */
        width: 250px;
        height: 100%;
        background-color: var(--header-bg);
        padding-top: 60px;
        box-shadow: 2px 0 5px rgba(0,0,0,0.2);
        transform: translateX(0);
        z-index: 999;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .main-nav.open {
        transform: translateX(250px); /* Slide in */
    }

    .main-nav ul {
        flex-direction: column;
        width: 100%;
        background-color: #f0f0f0; /* Added background color for mobile nav */
        position: absolute;
        top: 60px; /* Adjust based on header height */
        left: 0;
        padding: 1rem 0;
        border-top: 1px solid #eee;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        z-index: 1000;
    }

    .main-nav ul li {
        margin: 15px 0;
        text-align: center;
    }

    .main-nav ul li a {
        padding: 10px 0;
        display: block;
        width: 100%;
        color: var(--text-color);
    }

    .main-nav ul li a.btn-primary {
        margin-top: 20px;
        width: 80%;
    }
}

@media (max-width: 768px) {
    .consultation-content {
        flex-direction: column;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-right-content {
        flex-direction: column;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        width: 100%;
        max-width: 500px;
        margin: 20px auto 0;
    }
    
    .hero-quick-links {
        justify-content: center;
    }
}

@media (max-width: 992px) {
        h2 {
            font-size: 2rem;
        }
    
    .section-intro {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .hero {
        padding: 80px 0;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .btn-primary, .btn-secondary {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .service-card {
        padding: 20px 15px;
        margin-bottom: 20px;
    }

    .service-card h3 {
        font-size: 1.2rem;
    }

    .consultation-content {
        flex-direction: column;
        gap: 20px;
    }

    .step-content {
        padding: 15px;
    }

    .step-content h4 {
        font-size: 1.1rem;
    }

    .step-content p {
        font-size: 0.9rem;
    }

    .appointment-form {
        padding: 30px;
    }

    .appointment-form h3 {
        font-size: 1.5rem;
    }

    .form-group label {
        font-size: 0.9rem;
    }

    .form-group input,
    .form-group select {
        padding: 12px;
        font-size: 0.9rem;
    }

    footer h3, footer h4 {
        font-size: 1.4rem;
    }

    footer p, footer li a {
        font-size: 0.9rem;
    }

}

@media (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.6rem;
    }
    
    .hero-text h1 {
        font-size: 1.8rem;
    }

    .hero-text p {
        font-size: 0.9rem;
    }

    .hero-stats .stat-box h3 {
        font-size: 1.8rem;
    }

    .mission-box {
        padding: 30px 20px;
    }

    .mission-box h3 {
        font-size: 1.6rem;
    }

    .mission-box p {
        font-size: 1rem;
    }

    .testimonial-card {
        padding: 20px 15px;
    }

    .testimonial-card p {
        font-size: 0.9rem;
    }

    .admin-modal-content {
        width: 90%;
        padding: 20px;
    }

    .close-admin-modal {
        top: 10px;
        right: 10px;
    }

    .admin-modal-content input {
        padding: 10px;
    }

    .admin-error {
        font-size: 0.8rem;
    }
    .section-intro {
        font-size: 0.9rem;
    }

    .hero {
        padding: 60px 0;
    }

    .hero-text h1 {
        font-size: 1.8rem;
    }

    .hero-text p {
        font-size: 0.9rem;
    }

    .hero-quick-links span {
        font-size: 0.8rem;
        padding: 8px 15px;
    }

    .welcome-banner h2 {
        font-size: 1.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 25px 15px;
    }

    .service-card h3 {
        font-size: 1.3rem;
    }

    .reasons-grid {
        grid-template-columns: 1fr;
    }

    .reason-card {
        padding: 25px 15px;
    }

    .reason-card h4 {
        font-size: 1.1rem;
    }

    .expertise-content {
        flex-direction: column;
    }

    .stats-container {
        grid-template-columns: 1fr;
    }

    .service-item {
        padding: 25px 15px;
    }

    .service-item h4 {
        font-size: 1.2rem;
    }

    .mission-box {
        padding: 30px 20px;
    }

    .mission-box h3 {
        font-size: 1.5rem;
    }

    .mission-box p {
        font-size: 1rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-card {
        padding: 25px 15px;
    }

    .testimonial-card p {
        font-size: 0.9rem;
    }

    .client-logos {
        grid-template-columns: 1fr;
    }

    .client-logo {
        height: 80px;
        font-size: 0.8rem;
    }

    .consultation h2 {
        font-size: 1.8rem;
    }

    .consultation .section-intro {
        font-size: 0.9rem;
    }

    .consultation-steps {
        flex-direction: column;
    }

    .step {
        margin-bottom: 20px;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .step-content h4 {
        font-size: 1.1rem;
    }

    .step-content p {
        font-size: 0.8rem;
    }

    .appointment-form {
        padding: 20px;
    }

    .appointment-form h3 {
        font-size: 1.3rem;
    }

    .form-group label {
        font-size: 0.8rem;
    }

    .form-group input,
    .form-group select {
        padding: 10px;
        font-size: 0.8rem;
    }

    footer h3, footer h4 {
        font-size: 1.2rem;
    }

    footer p, footer li a {
        font-size: 0.8rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

    .footer-bottom-links {
        flex-direction: column;
        gap: 10px;
    }
}

.admin-modal-content {
  background: #fff;
  padding: 40px 30px 30px 30px;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(30,58,95,0.2);
  width: 350px;
  position: relative;
  text-align: center;
}

.close-admin-modal {
  position: absolute;
  top: 10px;
  right: 18px;
  font-size: 2rem;
  color: #1e3a5f;
  cursor: pointer;
}
.admin-modal-content input {
  width: 100%;
  padding: 12px;
  margin: 12px 0;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}
.admin-error {
  color: #e74c3c;
  margin-top: 10px;
  font-size: 1rem;
}

.review-submission {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.review-submission h2 {
    color: #2c3e50;
    margin-bottom: 15px;
}

.review-submission .section-intro {
    color: #666;
    margin-bottom: 40px;
}

.review-form-container {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.review-form .form-group {
    margin-bottom: 25px;
}

.review-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
}

.review-form input,
.review-form textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
}

.review-form input:focus,
.review-form textarea:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.2);
    outline: none;
}

.rating-stars {
    display: flex;
    gap: 10px;
    font-size: 2rem;
    color: #ddd;
    cursor: pointer;
}

.rating-stars .star:hover,
.rating-stars .star.active {
    color: #ffc107;
}

.review-form textarea {
    resize: vertical;
    min-height: 150px;
}

.review-form .btn-primary {
    margin-top: 10px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .review-form-container {
        padding: 25px;
    }
    
    .review-form input,
    .review-form textarea {
        padding: 12px;
    }
}

/* WhatsApp Chat Widget */
.whatsapp-chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-chat-widget a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-chat-widget a:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

/* Responsive adjustments for mobile */
@media (max-width: 768px) {
    .whatsapp-chat-widget {
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-chat-widget a {
        width: 50px;
        height: 50px;
        font-size: 25px;
    }
}
