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

body {
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
    color: #333333;
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    background-color: #121212;
    background-image: linear-gradient(135deg, #121212 0%, #1e1e24 50%, #252530 100%);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 20%;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-image: url('images/TECHHERO.png');
    background-size: auto;
    background-position:left;
    background-repeat: no-repeat;
    opacity: 0.85; /* Adjust opacity to ensure text remains visible */
}

.animated-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    transition: all 8s ease-in-out;
}

.shape-1 {
    top: 10%;
    left: 5%;
    width: 500px;
    height: 500px;
    background: rgba(74, 144, 226, 0.15);
    animation: floatAnimation 20s infinite alternate ease-in-out;
}

.shape-2 {
    bottom: 10%;
    right: 10%;
    width: 400px;
    height: 400px;
    background: rgba(126, 87, 194, 0.2);
    animation: floatAnimation 15s infinite alternate-reverse ease-in-out;
}

.shape-3 {
    top: 40%;
    right: 25%;
    width: 300px;
    height: 300px;
    background: rgba(66, 165, 245, 0.15);
    animation: floatAnimation 18s infinite alternate ease-in-out;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out;
}

.logo-container {
    margin-bottom: 2rem;
}

.logo {
    max-width: 300px;
    height: auto;
}

.hero-text h1 {
    font-size: 2.5rem;
    font-weight: 700;
  
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
   
    padding: 10px 15px;
    border-radius: 5px;
    display: inline-block;
}

.show {
    display: block;
}

.hide {
    display: none;
}

.hero-text p {
    font-size: 1.25rem;
    color: #ffffff;

    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
    padding: 8px 12px;
    border-radius: 4px;
    display: inline-block;
}

.hero-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
   
    padding: 15px;
    border-radius: 8px;
    margin-top: 10px;
}

.btn-primary {
    display: inline-block;
    padding: 0.875rem 2rem;
    font-size: 1.125rem;
    background: linear-gradient(135deg, #4a90e2 0%, #5e60ce 100%);
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-weight: 500;
    box-shadow: 0 4px 14px rgba(74, 144, 226, 0.25);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.4);
}

.btn-secondary {
    display: inline-block;
    padding: 0.875rem 2rem;
    font-size: 1.125rem;
    background: transparent;
    color: #4a90e2;
    border: 1px solid #4a90e2;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.btn-secondary:hover {
    background: rgba(74, 144, 226, 0.1);
}

.scroll-indicator {
    font-size: 0.875rem;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.9;
    animation: pulse 2s infinite;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
}

.scroll-indicator::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 16px;
    border: solid #8491a5;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 3px;
    transform: translateX(-50%) rotate(45deg);
}

/* Services Section */
.services-section {
    padding: 6rem 0;
    background-color: #ffffff;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 3rem;
    color: #1e293b;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #4a90e2, #5e60ce);
    border-radius: 3px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
    text-align: center;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.05);
    border-color: #4a90e2;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1e293b;
}

.service-card p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
}

/* Areas Section */
.areas-section {
    padding: 6rem 0;
    background-color: #f8fafc;
    position: relative;
    overflow: hidden;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.area-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.area-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4a90e2, #5e60ce);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

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

.area-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.area-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
}

.area-card .area-logo {
    width: 72px;
    height: 72px;
    object-fit: contain;
    display: block;
    margin-bottom: 10px;
}

.area-card .area-name {
    font-weight: 600;
    color: #1e293b;
}

/* Appointment Section */
.appointment-section {
    padding: 6rem 0;
    background-color: #ffffff;
}

/* Service Introduction */
.service-intro {
    text-align: center;
    margin-bottom: 4rem;
    color: #1e293b;
}

.service-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.service-intro p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: #64748b;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.service-areas {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.area-tag {
    background: #f8fafc;
    color: #4a90e2;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.area-tag:hover {
    background: #4a90e2;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(74, 144, 226, 0.3);
}

/* Multi-Step Form Container */
.appointment-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.appointment-form-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

/* Form Progress Indicator */
.form-progress {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3rem;
    position: relative;
}

.form-progress::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    height: 2px;
    background: #e0e0e0;
    z-index: 1;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e0e0e0;
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.progress-step.active .step-number {
    background: #667eea;
    color: white;
}

.step-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.progress-step.active .step-label {
    color: #667eea;
}

/* Form Steps */
.form-step {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.form-step.active {
    display: block;
    opacity: 1;
}

/* Appointment Type Selection */
.appointment-type-selection {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    justify-content: center;
}

.appointment-type-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 180px;
    text-align: center;
}

.appointment-type-option:hover {
    border-color: #667eea;
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(102, 126, 234, 0.15);
}

.appointment-type-option.active {
    border-color: #667eea;
    background: #f8f9ff;
}

.appointment-type-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.appointment-type-option h4 {
    margin-bottom: 0.5rem;
    color: #333;
}

.appointment-type-option p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

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

.form-step h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.form-step p {
    color: #666;
    margin-bottom: 2rem;
}

/* Form Elements */
.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
}

/* Google Sign-In Styling */
.auth-status {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
}

.auth-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.auth-success .profile-pic {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid #28a745;
}

.auth-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.auth-warning {
    background-color: #fff3cd;
    color: #856404;
    border: 1px solid #ffeaa7;
}

.auth-loading {
    background-color: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
    margin-top: 0.5rem;
}

/* Debug styles for development */
.debug-info {
    position: fixed;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 10px;
    border-radius: 5px;
    font-family: monospace;
    font-size: 12px;
    max-width: 300px;
    z-index: 10000;
}

/* Address Validation */
.validation-message {
    padding: 0.75rem;
    border-radius: 8px;
    margin-top: 1rem;
}

.validation-message.success {
    background: #e8f5e8;
    color: #2e7d32;
    border: 1px solid #4caf50;
}

.validation-message.error {
    background: #ffebee;
    color: #c62828;
    border: 1px solid #f44336;
}

/* Service Options */
.service-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.service-option {
    padding: 1.5rem;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
}

.service-option:hover {
    border-color: #667eea;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.15);
}

.service-option.active {
    border-color: #667eea;
    background: #f8f9ff;
}

.service-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.service-option h4 {
    margin-bottom: 0.5rem;
    color: #333;
}

.service-option p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

/* Calendar Styles */
.calendar-container {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.calendar-nav {
    background: #667eea;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: background 0.3s ease;
}

.calendar-nav:hover {
    background: #5a6fd8;
}

.calendar-grid .calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1px;
    background: #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

.day-header {
    background: #f5f5f5;
    padding: 0.75rem;
    text-align: center;
    font-weight: bold;
    font-size: 0.9rem;
    color: #666;
}

.calendar-day {
    background: white;
    padding: 0.75rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.calendar-day:hover:not(.past):not(.empty) {
    background: #f0f2ff;
}

.calendar-day.selected {
    background: #667eea;
    color: white;
}

.calendar-day.today {
    background: #e3f2fd;
    font-weight: bold;
}

.calendar-day.past {
    color: #ccc;
    cursor: not-allowed;
}

.calendar-day.weekend {
    background: #fafafa;
}

.calendar-day.empty {
    cursor: default;
}

/* Time Slots */
.time-slots {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.time-slot-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
}

.time-slot {
    padding: 0.75rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
}

.time-slot:hover {
    border-color: #667eea;
    background: #f8f9ff;
}

.time-slot.selected {
    border-color: #667eea;
    background: #667eea;
    color: white;
}

/* Selected Appointment */
.selected-appointment {
    background: #e8f5e8;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.appointment-summary {
    text-align: center;
}

.appointment-date {
    font-size: 1.2rem;
    font-weight: bold;
    color: #2e7d32;
    margin-bottom: 0.5rem;
}

.appointment-time {
    font-size: 1.1rem;
    color: #388e3c;
    margin-bottom: 0.5rem;
}

.appointment-service {
    font-size: 1rem;
    color: #4caf50;
    text-transform: capitalize;
}

/* Form Navigation */
.form-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 2.5rem;
}

.form-navigation button {
    padding: 0.8rem 1.5rem;
    background: #4a90e2;
    color: white;
    border: none;
    border-radius: 30px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(74, 144, 226, 0.2);
}

.form-navigation button:hover {
    background: #3a7bd5;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(74, 144, 226, 0.25);
}

.form-navigation button.prev {
    background: #f8fafc;
    color: #4a90e2;
    border: 1px solid #e2e8f0;
    box-shadow: none;
}

.form-navigation button.prev:hover {
    background: #f1f5f9;
    border-color: #4a90e2;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(74, 144, 226, 0.1);
}

.form-navigation button:disabled {
    background: #e2e8f0;
    color: #94a3b8;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
    border: none;
}

/* Form Actions */
.form-actions {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 2rem;
}

.btn-primary,
.btn-secondary {
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 120px;
}

.btn-primary {
    background: #667eea;
    color: white;
}

.btn-primary:hover:not(:disabled) {
    background: #5a6fd8;
    transform: translateY(-1px);
}

.btn-primary:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.btn-secondary {
    background: #f5f5f5;
    color: #666;
    border: 1px solid #ddd;
}

.btn-secondary:hover {
    background: #e0e0e0;
}

/* Success Overlay */
.success-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.success-content {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    max-width: 400px;
    animation: successPop 0.5s ease;
}

@keyframes successPop {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.success-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.success-content h2 {
    color: #2e7d32;
    margin-bottom: 1rem;
}

.success-content p {
    color: #666;
    margin-bottom: 2rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

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

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.2); opacity: 1; }
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .container {
        padding: 0 2rem;
    }
    
    .hero-text h1 {
        font-size: 2.75rem;
    }
    
    .services-grid, .areas-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .hero-section {
        min-height: 500px;
        padding: 4rem 0;
    }
    
    .hero-text h1 {
        font-size: 2.25rem;
    }
    
    .hero-text p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .btn-container {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-primary, .btn-secondary {
        margin: 0.5rem 0;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .services-grid, .areas-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 1.25rem;
    }
    
    .service-card, .area-card {
        padding: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .time-slot-grid {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-section {
        min-height: 400px;
    }
    
    .hero-text h1 {
        font-size: 1.75rem;
    }
    
    .hero-text p {
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .services-grid, .areas-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card, .area-card {
        padding: 1.25rem;
    }
    
    .appointment-form-container {
        padding: 1.5rem;
    }
    
    .form-navigation {
        flex-direction: column;
        gap: 1rem;
    }
    
    .form-navigation button {
        width: 100%;
    }
    
    .service-options {
        grid-template-columns: 1fr;
    }
    
    .form-progress::before {
        display: none;
    }
    
    .form-progress {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .progress-step {
        flex-direction: row;
        width: 100%;
        gap: 1rem;
    }
    
    .step-number {
        margin-bottom: 0;
    }
}

/* Loading States */
.loading {
    text-align: center;
    padding: 2rem;
    color: #666;
}

.error {
    text-align: center;
    padding: 2rem;
    color: #c62828;
    background: #ffebee;
    border-radius: 8px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .service-intro h2 {
        font-size: 2rem;
    }
    
    .service-intro p {
        font-size: 1rem;
    }
    
    .appointment-form-container {
        margin: 1rem;
        padding: 1.5rem;
    }
    
    .form-progress {
        margin-bottom: 2rem;
    }
    
    .step-label {
        font-size: 0.8rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .service-options {
        grid-template-columns: 1fr;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .calendar-grid .calendar-days {
        gap: 0;
    }
    
    .calendar-day {
        padding: 0.5rem;
        min-height: 35px;
        font-size: 0.9rem;
    }
    
    .time-slot-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .success-content {
        margin: 1rem;
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .area-tag {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .step-number {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .calendar-day {
        padding: 0.4rem;
        min-height: 30px;
        font-size: 0.8rem;
    }
    
    .time-slot-grid {
        grid-template-columns: 1fr;
    }
}

/* Animations */
@keyframes chaosFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-20px) rotate(5deg); }
    50% { transform: translateY(10px) rotate(-3deg); }
    75% { transform: translateY(-15px) rotate(7deg); }
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes circuitPulse {
    0%, 100% { opacity: 0; }
    50% { opacity: 1; }
}

@keyframes circuitGlow {
    0%, 100% { box-shadow: 0 0 5px #ffffff; }
    50% { box-shadow: 0 0 15px #00ffff, 0 0 25px #00ffff; }
}

@keyframes nodePulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.5); opacity: 1; }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.2); opacity: 1; }
}

/* Responsive Design */
@media (max-width: 768px) {
    .tech-icon {
        font-size: 2rem;
    }
    
    .code-snippet {
        font-size: 10px;
        padding: 6px 8px;
    }
    
    .symbol-text h1 {
        font-size: 2rem;
    }
    
    .symbol-text p {
        font-size: 1rem;
    }
    
    .tech-heart {
        width: 80px;
        height: 80px;
    }
    
    .heart-shape {
        width: 70px;
        height: 60px;
    }
    
    .heart-left,
    .heart-right {
        width: 36px;
        height: 56px;
    }
    
    .heart-right {
        left: 18px;
    }
}

/* Policy Pages Styles */
.page-header {
    background-color: #1a1a2e;
    padding: 1.5rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo img {
    max-width: 200px;
    height: auto;
}

.policy-section {
    padding: 4rem 0;
}

.policy-section h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #1a1a2e;
}

.last-updated {
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
}

.policy-content h2 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #1a1a2e;
}

.policy-content p {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: #334155;
}

.policy-content ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.policy-content li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
    color: #334155;
}

.policy-content a {
    color: #4a90e2;
    text-decoration: none;
    transition: color 0.3s ease;
}

.policy-content a:hover {
    color: #2563eb;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .policy-section h1 {
        font-size: 2rem;
    }
    
    .policy-content h2 {
        font-size: 1.25rem;
    }
}

/* FAQ Section */
.faq-section {
    padding: 6rem 0;
    background-color: #f8fafc;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #ffffff;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.faq-question {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: #ffffff;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #f8f9ff;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e293b;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: bold;
    color: #4a90e2;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 2rem 1.5rem;
    max-height: 500px; /* Adjust as needed */
}

.faq-answer p {
    margin: 0;
    color: #64748b;
    line-height: 1.6;
}

/* Mission Statement Section */
.mission-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #4a90e2 0%, #5e60ce 100%);
    color: #ffffff;
}

.mission-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 0 2rem;
}

.mission-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.mission-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #ffffff;
    border-radius: 3px;
}

.mission-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Phone Contact Section */
.phone-contact-section {
    padding: 5rem 0;
    background-color: #ffffff;
}

.phone-contact-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding: 3rem 2rem;
    background: #f8fafc;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.phone-contact-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.phone-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: #4a90e2;
}

.phone-contact-content h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.phone-contact-content p {
    color: #64748b;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.phone-number {
    display: inline-block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #4a90e2;
    text-decoration: none;
    padding: 0.5rem 2rem;
    border-radius: 50px;
    background: #ffffff;
    box-shadow: 0 4px 14px rgba(74, 144, 226, 0.25);
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.phone-number:hover {
    background: #4a90e2;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.4);
}

.phone-subtext {
    font-size: 0.9rem;
    color: #94a3b8;
}

@media (max-width: 768px) {
    .faq-question h3 {
        font-size: 1.1rem;
    }
    
    .mission-content h2 {
        font-size: 2rem;
    }
    
    .mission-content p {
        font-size: 1.1rem;
    }
    
    .phone-contact-content {
        padding: 2rem 1.5rem;
    }
    
    .phone-number {
        font-size: 2rem;
        padding: 0.5rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .faq-question {
        padding: 1.25rem 1.5rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1.5rem 1.25rem;
    }
    
    .mission-content h2 {
        font-size: 1.75rem;
    }
    
    .mission-content p {
        font-size: 1rem;
    }
    
    .phone-icon {
        font-size: 3rem;
    }
    
    .phone-contact-content h2 {
        font-size: 1.75rem;
    }
    
    .phone-number {
        font-size: 1.75rem;
        padding: 0.5rem 1.25rem;
    }
}

/* Footer Styles */
.site-footer {
    background-color: #1a1a2e;
    color: #ffffff;
    padding: 3rem 0;
    margin-top: 4rem;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.footer-logo-img {
    max-width: 200px;
    height: auto;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #4a90e2;
}

.footer-contact p {
    margin: 0.5rem 0;
    font-size: 0.9rem;
    color: #b0b7c3;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-links ul {
        justify-content: center;
    }
}
.google-signin-btn {
    background: #4285f4;
    color: white;
    border: none;
    width: 100%;
    padding: 12px 24px;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
}