/* ===== CSS Variables & Reset ===== */
:root {
    --purple: #8c52ff;
    --vivid-purple: #510d97;
    --azure: #6ed0eb;
    --light-azure: #e8f7fc;
    --dark: #333333;
    --light: #f8f9fa;
    --white: #ffffff;
    --shadow: 0 8px 20px rgba(81, 13, 151, 0.12);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--light);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.highlight {
    color: var(--purple);
}

.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 16px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--purple), var(--vivid-purple));
    color: var(--white);
    box-shadow: 0 4px 12px rgba(140, 82, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(140, 82, 255, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--purple);
    border: 2px solid var(--purple);
}

.btn-secondary:hover {
    background-color: rgba(140, 82, 255, 0.1);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    width: 100%;
}

/* Logo on the left */
.logo {
    flex: 0 0 auto;
    min-width: 150px; /* Give logo its own space */
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

/* Center Navigation Links */
.nav-center {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    min-width: 0; /* Allow shrinking */
}

.nav-link {
    font-weight: 600;
    color: #555;
    transition: var(--transition);
    position: relative;
    padding: 5px 0;
    text-decoration: none;
    white-space: nowrap;
    font-size: 1rem; /* Explicit font size */
}

.nav-link:hover, .nav-link.active {
    color: var(--purple);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, var(--purple), var(--azure));
    border-radius: 2px;
}

/* Get Quote Button on the right */
/* Navigation links with equal spacing */
.nav-links-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 35px;
    width: 100%;
}

/* Navigation links with equal spacing */
.nav-links-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 35px;
    width: 100%;
}

.nav-btn {
    padding: 10px 24px;
    background: linear-gradient(135deg, var(--purple), var(--vivid-purple));
    color: var(--white);
    border-radius: 6px;
    font-weight: 600;
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

.nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(140, 82, 255, 0.3);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--vivid-purple);
    cursor: pointer;
    z-index: 1001;
}

/* ===== Hero Section ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 120px 0 80px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(140, 82, 255, 0.05), rgba(110, 208, 235, 0.05));
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(81, 13, 151, 0.03), rgba(110, 208, 235, 0.03));
    z-index: -1;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.hero-text {
    flex: 1;
    max-width: 600px;
}

.hero-tagline {
    display: inline-block;
    background: linear-gradient(135deg, var(--purple), var(--vivid-purple));
    color: var(--white);
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 600;
    margin-bottom: 25px;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.hero-title {
    font-size: 3.2rem;
    margin-bottom: 20px;
    line-height: 1.1;
    color: var(--white); /* ADD THIS LINE */
}

.hero-title .highlight {
    color: var(--purple); /* ADD THIS LINE */
}

.hero-desc {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: var(--white);
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.hero-stats {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--vivid-purple);
    margin-bottom: 5px;
    font-family: 'Montserrat', sans-serif;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--white);
    font-weight: 600;
}
.hero-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(140, 82, 255, 0.1), rgba(110, 208, 235, 0.1));
    animation: float 15s infinite ease-in-out;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    bottom: 20%;
    left: 5%;
    animation-delay: 5s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    right: 20%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

/* ===== Services Section ===== */
.services {
    padding: 100px 0;
    background-color: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--white);
    border-radius: 15px;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(140, 82, 255, 0.1);
    height: 300px;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(81, 13, 151, 0.2);
    border-color: var(--azure);
    height: 380px;
}

.service-card:hover .service-details {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--purple), var(--vivid-purple));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--white);
    font-size: 1.8rem;
}

.service-title {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--vivid-purple);
}

.service-desc {
    color: #666;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.service-details {
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
    visibility: hidden;
    margin-top: auto;
}

.service-details ul {
    margin-bottom: 20px;
}

.service-details li {
    padding: 5px 0;
    color: #555;
    position: relative;
    padding-left: 20px;
}

.service-details li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--azure);
    font-weight: bold;
}

.service-btn {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(135deg, var(--azure), #4ac9e8);
    color: var(--white);
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.service-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(110, 208, 235, 0.3);
}

/* ===== Why Choose Us ===== */
.why-us {
    padding: 100px 0;
    background-color: var(--light-azure);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.advantage-card {
    background-color: var(--white);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(110, 208, 235, 0.2);
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(110, 208, 235, 0.15);
    border-color: var(--azure);
}

.advantage-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--azure), #4ac9e8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--white);
    font-size: 1.5rem;
}

.advantage-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--vivid-purple);
}

.advantage-card p {
    color: #666;
    font-size: 0.95rem;
}

/* ===== Impact Section ===== */
.impact {
    padding: 100px 0;
    background-color: var(--white);
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.impact-stat {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, rgba(140, 82, 255, 0.05), rgba(110, 208, 235, 0.05));
    border-radius: 15px;
    border: 1px solid rgba(140, 82, 255, 0.1);
}

.impact-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--vivid-purple);
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
}

.impact-label {
    font-size: 1rem;
    color: #666;
    font-weight: 600;
}

.mission-vision {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.mission-card, .vision-card {
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.mission-card {
    background: linear-gradient(135deg, var(--purple), var(--vivid-purple));
    color: var(--white);
}

.vision-card {
    background: linear-gradient(135deg, var(--azure), #4ac9e8);
    color: var(--white);
}

.mission-card h3, .vision-card h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mission-card p, .vision-card p {
    font-size: 1rem;
    line-height: 1.7;
}

/* ===== Quote Section ===== */
.quote {
    padding: 100px 0;
    background-color: var(--light-azure);
}

.quote-form-container {
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.quote-progress {
    display: flex;
    background-color: rgba(140, 82, 255, 0.05);
    padding: 20px;
}

.progress-step {
    flex: 1;
    text-align: center;
    position: relative;
}

.progress-step:not(:last-child):after {
    content: '';
    position: absolute;
    top: 20px;
    right: -50%;
    width: 100%;
    height: 2px;
    background-color: #ddd;
    z-index: 1;
}

.progress-step.active:not(:last-child):after {
    background-color: var(--purple);
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #eee;
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-weight: 600;
    position: relative;
    z-index: 2;
    transition: var(--transition);
}

.progress-step.active .step-number {
    background-color: var(--purple);
    color: var(--white);
}

.step-label {
    font-size: 0.9rem;
    color: #999;
    font-weight: 600;
}

.progress-step.active .step-label {
    color: var(--purple);
}

.quote-form {
    padding: 40px;
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.form-step h3 {
    margin-bottom: 30px;
    color: var(--vivid-purple);
    font-size: 1.5rem;
}

.service-select {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
}

.service-option input {
    display: none;
}

.option-card {
    background-color: var(--light);
    border: 2px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.option-card i {
    font-size: 1.8rem;
    color: var(--purple);
}

.option-card span {
    font-weight: 600;
    color: #555;
}

.service-option input:checked + .option-card {
    border-color: var(--purple);
    background-color: rgba(140, 82, 255, 0.05);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(140, 82, 255, 0.1);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #555;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--purple);
    box-shadow: 0 0 0 3px rgba(140, 82, 255, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.file-upload {
    border: 2px dashed #ddd;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    transition: var(--transition);
}

.file-upload:hover {
    border-color: var(--purple);
}

.file-upload input {
    display: none;
}

.file-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--light);
    border-radius: 6px;
    color: var(--purple);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    margin-bottom: 10px;
}

.file-btn:hover {
    background-color: rgba(140, 82, 255, 0.1);
}

#fileCount {
    display: block;
    color: #666;
    font-size: 0.9rem;
}

.contact-method {
    display: flex;
    gap: 20px;
    margin-top: 10px;
}

.contact-method label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: normal;
    cursor: pointer;
}

.contact-method input {
    width: auto;
}

.form-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.review-summary {
    background-color: var(--light);
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 30px;
}

.summary-item {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.summary-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.summary-item strong {
    color: var(--vivid-purple);
}

.estimate-box {
    background: linear-gradient(135deg, var(--purple), var(--vivid-purple));
    color: var(--white);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 30px;
    text-align: center;
}

.estimate-box h4 {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.estimate-amount {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
}

.estimate-note {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* ===== Contact Section ===== */
.contact {
    padding: 100px 0;
    background-color: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    align-items: center;
}

.contact-desc {
    margin-bottom: 30px;
    color: #666;
    font-size: 1.1rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--azure), #4ac9e8);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-text h4 {
    margin-bottom: 5px;
    color: var(--vivid-purple);
}

.contact-text a {
    color: #555;
    transition: var(--transition);
}

.contact-text a:hover {
    color: var(--purple);
}

/* Contact Map Section */
.contact-map {
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    position: relative;
    margin-top: 30px;
}

.map-container {
    width: 100%;
    height: 100%;
    position: relative;
}

/* Google Maps Embed */
.map-embed {
    width: 100%;
    height: 100%;
}

.map-embed iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Address Overlay */
.address-overlay {
    position: absolute;
    top: 30px;
    left: 30px;
    z-index: 10;
}

.address-card {
    background: linear-gradient(135deg, var(--vivid-purple), #3a0a6e);
    color: var(--white);
    border-radius: 15px;
    padding: 25px;
    max-width: 320px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.address-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: var(--azure);
}

.address-card h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 10px;
}

.address-details {
    margin-bottom: 25px;
}

.address-details p {
    margin-bottom: 8px;
    line-height: 1.5;
    font-size: 0.95rem;
}

.address-details p:first-child {
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: var(--azure);
}

.address-country {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-weight: 600;
    color: var(--azure);
}

.address-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: var(--azure);
    color: var(--vivid-purple);
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    width: 100%;
    justify-content: center;
}

.address-btn:hover {
    background: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

/* ===== Footer ===== */
.footer {
    background: linear-gradient(135deg, var(--vivid-purple), #3a0a6e);
    color: var(--white);
    padding: 70px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo .logo {
    margin-bottom: 15px;
}

.footer-motto {
    font-style: italic;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.8);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-icon:hover {
    background-color: var(--azure);
    transform: translateY(-3px);
}

.footer-links h4,
.footer-services h4,
.footer-cta h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h4:after,
.footer-services h4:after,
.footer-cta h4:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--azure);
}

.footer-links ul,
.footer-services ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a,
.footer-services a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-links a:hover,
.footer-services a:hover {
    color: var(--azure);
    padding-left: 5px;
}

.footer-cta p {
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom p:first-child {
    margin-bottom: 10px;
}

/* ===== Chat Widget ===== */
/* ===== Chat Widget ===== */
.chat-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.chat-toggle {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--purple), var(--vivid-purple));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(140, 82, 255, 0.4);
    transition: var(--transition);
    position: relative;
}

.chat-toggle:hover {
    transform: scale(1.1);
}

.chat-notification {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 20px;
    height: 20px;
    background-color: var(--azure);
    border-radius: 50%;
    border: 3px solid var(--white);
}

.chat-container {
    position: absolute;
    bottom: 70px;
    right: 0;
    width: 350px;
    background-color: var(--white);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    transform: translateY(20px);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.chat-container.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.chat-header {
    background: linear-gradient(135deg, var(--purple), var(--vivid-purple));
    color: var(--white);
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header h4 {
    font-size: 1rem;
    margin: 0;
}

.chat-close {
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
}

.chat-body {
    padding: 20px;
    max-height: 300px;
    overflow-y: auto;
}

.chat-message {
    margin-bottom: 15px;
}

.chat-message.bot {
    text-align: left;
}

.chat-message.user {
    text-align: right;
}

.message-content {
    display: inline-block;
    padding: 12px 15px;
    border-radius: 18px;
    max-width: 80%;
}

.chat-message.bot .message-content {
    background-color: var(--light-azure);
    color: var(--dark);
}

.chat-message.user .message-content {
    background: linear-gradient(135deg, var(--purple), var(--vivid-purple));
    color: var(--white);
}

.chat-quick-replies {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.quick-reply {
    padding: 8px 15px;
    background-color: var(--light);
    border: 1px solid #ddd;
    border-radius: 20px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
}

.quick-reply:hover {
    background-color: var(--purple);
    color: var(--white);
    border-color: var(--purple);
}

.chat-input {
    display: flex;
    padding: 15px 20px;
    border-top: 1px solid #eee;
    background-color: var(--light);
}

.chat-input input {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 20px;
    outline: none;
}

.chat-input button {
    width: 40px;
    height: 40px;
    margin-left: 10px;
    background: linear-gradient(135deg, var(--purple), var(--vivid-purple));
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.chat-input button:hover {
    transform: scale(1.1);
}


/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-text {
        max-width: 100%;
    }
    
    .hero-desc {
        max-width: 100%;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .contact-map {
        height: 450px;
    }
    
    .address-card {
        max-width: 300px;
        padding: 20px;
    }
}

@media (max-width: 900px) {
    .nav-center {
        gap: 15px;
    }
    
    .nav-link {
        font-size: 0.9rem;
    }
    
    .nav-btn {
        padding: 8px 18px;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
        order: 3;
    }
    
    .nav-center, .nav-right {
        display: none;
    }
    
    /* Mobile Menu - Show when active */
    .nav-center.active {
        display: flex;
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: var(--white);
        flex-direction: column;
        padding: 25px 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        z-index: 999;
        gap: 20px;
        max-width: 100%;
    }
    
    .nav-center.active + .nav-right {
        display: flex;
        position: fixed;
        top: calc(80px + 220px);
        left: 0;
        width: 100%;
        padding: 0 20px 25px;
        background-color: var(--white);
        justify-content: center;
        z-index: 999;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }
    
    /* Adjust logo size on mobile */
    .logo-img {
        height: 45px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .impact-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .mission-vision {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        height: auto;
        min-height: 280px;
    }
    
    .service-card:hover {
        height: auto;
    }
    
    .service-details {
        opacity: 1;
        transform: translateY(0);
        visibility: visible;
    }
    
    .contact-map {
        height: 400px;
        border-radius: 15px;
    }
    
    .address-overlay {
        position: relative;
        top: 0;
        left: 0;
        margin-top: -100px;
        padding: 0 20px;
    }
    
    .address-card {
        max-width: 100%;
        margin: 0 auto;
        text-align: center;
    }
    
    .address-icon {
        margin: 0 auto 20px;
    }
}

@media (max-width: 480px) {
    .logo-img {
        height: 40px;
    }
    
    .mobile-menu-btn {
        font-size: 1.3rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .impact-stats {
        grid-template-columns: 1fr;
    }
    
    .form-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .form-buttons button {
        width: 100%;
    }
    
    .chat-container {
        width: 280px;
        right: -10px;
    }
    
    .contact-map {
        height: 350px;
    }
    
    .address-card {
        padding: 15px;
    }
    
    .address-btn {
        padding: 10px 20px;
    }
}

/* Hero Carousel Styles */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        rgba(0, 0, 0, 0.7) 0%, 
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0.2) 100%);
}

.slide-content {
    position: absolute;
    bottom: 30px;
    right: 30px;
    color: white;
    text-align: right;
    z-index: 2;
    max-width: 400px;
    padding: 20px;
}

.slide-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--purple), var(--vivid-purple));
    color: white;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.slide-content h2 {
    font-size: 1.8rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Carousel Navigation Dots */
.carousel-dots {
    position: absolute;
    bottom: 30px;
    left: 30px;
    display: flex;
    gap: 12px;
    z-index: 10;
}

.carousel-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.carousel-dots .dot.active {
    background: linear-gradient(135deg, var(--purple), var(--vivid-purple));
    transform: scale(1.3);
}

.carousel-dots .dot:hover {
    background-color: white;
}

/* Carousel Arrows */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-arrow:hover {
    background: linear-gradient(135deg, var(--purple), var(--vivid-purple));
    transform: translateY(-50%) scale(1.1);
}

.carousel-arrow.prev {
    left: 30px;
}

.carousel-arrow.next {
    right: 30px;
}

/* Ensure hero content stays above carousel */
.hero-content {
    position: relative;
    z-index: 2;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .slide-content {
        bottom: 20px;
        right: 20px;
        max-width: 300px;
    }
    
    .slide-content h2 {
        font-size: 1.4rem;
    }
    
    .carousel-arrow {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .carousel-arrow.prev {
        left: 15px;
    }
    
    .carousel-arrow.next {
        right: 15px;
    }
}

@media (max-width: 480px) {
    .slide-content {
        max-width: 250px;
    }
    
    .slide-content h2 {
        font-size: 1.2rem;
    }
    
    .carousel-dots {
        bottom: 20px;
        left: 20px;
    }
}

/* ===== WhatsApp Floating Button ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px; /* Changed to left to avoid conflict with chat widget */
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    z-index: 1000;
    text-decoration: none;
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.15);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
    color: var(--white);
}

.whatsapp-tooltip {
    position: absolute;
    left: 70px;
    background: var(--vivid-purple);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    pointer-events: none;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    left: 80px;
}

/* Pulse animation */
@keyframes pulse-whatsapp {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
    }
}

/* For devices with chat widget on left, adjust position */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        left: 20px;
        width: 55px;
        height: 55px;
        font-size: 1.8rem;
    }
    
    .whatsapp-tooltip {
        display: none; /* Hide tooltip on mobile to save space */
    }
}

@media (max-width: 480px) {
    .whatsapp-float {
        bottom: 15px;
        left: 15px;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}