﻿/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
    body {
    margin: 0;   /* remove default browser spacing */
}
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.3;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    text-align: center;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: #4a2c8a;
    color: white;
}

.btn-primary:hover {
    background-color: #3a216e;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(74, 44, 138, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: #4a2c8a;
    border: 2px solid #4a2c8a;
}

.btn-secondary:hover {
    background-color: #4a2c8a;
    color: white;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #333;
}

.section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 50px;
    font-size: 1.1rem;
}

/* Navigation Styles */
.navbar {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
}

.logo span {
    color: #4a2c8a;
}

.nav-menu {
    display: flex;
}

.nav-menu li {
    margin-left: 30px;
}

.nav-menu a {
    font-weight: 500;
    position: relative;
    padding: 5px 0;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #4a2c8a;
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #4a2c8a;
    border-radius: 3px;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #333;
}

/* Hero Section */
.hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0ebf8 0%, #e6e0f2 100%);
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.hero-content {
    flex: 1;
    min-width: 300px;
    padding-right: 40px;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    color: #333;
}

.hero-content h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #4a2c8a;
    font-weight: 500;
}

.hero-content p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

.hero-image {
    flex: 1;
    min-width: 300px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(74, 44, 138, 0.25);
    transition: all 0.4s ease;
    position: relative;
    animation: float 6s ease-in-out infinite;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(135deg, #4a2c8a 0%, #6b46c1 100%);
    border-radius: 20px;
    z-index: -1;
    opacity: 0.2;
}

.hero-image:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(74, 44, 138, 0.35);
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.hero-image:hover img {
    transform: scale(1.05);
}

/* Welcome Section */
.welcome-section {
    padding: 80px 0;
    background-color: white;
}

.welcome-section .section-title {
    margin-bottom: 50px;
}

.services-highlight {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1);
    border-top: 6px solid #4a2c8a;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    height: 100%;
    cursor: default;
}

.clickable-card {
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(74, 44, 138, 0.15);
}

.service-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #4a2c8a;
    margin-bottom: 10px;
    opacity: 0.8;
}

.service-icon-main {
    font-size: 3rem;
    color: #4a2c8a;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon-main {
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #333;
}

.service-card h4 {
    font-size: 1rem;
    margin-bottom: 15px;
    color: #4a2c8a;
    font-weight: 600;
    line-height: 1.4;
}

.service-card p {
    margin-bottom: 0px;
    color: #666;
    font-size: 0.95rem;
}

.service-features {
    padding-left: 20px;
    margin-top: 15px;
}

.service-features li {
    list-style-type: disc;
    margin-bottom: 8px;
    color: #555;
}

/* Mission Section */
.mission-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #4a2c8a 0%, #6b46c1 100%);
    color: white;
}

.mission-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.mission-content h2 {
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.5;
}

/* Page Header */
.page-header {
    padding: 80px 0;
    background: linear-gradient(135deg, #4a2c8a 0%, #6b46c1 100%);
    color: white;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* About Page */
.about-content {
    padding: 80px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 20px;
    color: #555;
}

.mission-vision {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.mission,
.vision {
    background-color: #f5f5f5;
    padding: 25px;
    border-radius: 8px;
}

.mission h3,
.vision h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: #4a2c8a;
}

.about-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Approach Section */
.approach {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.approach-card {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
}

.approach-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.approach-icon {
    font-size: 2.5rem;
    color: #4a2c8a;
    margin-bottom: 20px;
}

.approach-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background-color: white;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #4a2c8a;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    color: #555;
}

.testimonial-author {
    font-weight: 500;
    color: #4a2c8a;
}

/* Services Page */
.services-intro {
    padding: 60px 0 30px;
    text-align: center;
}

.services-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
}

.services-intro p {
    max-width: 800px;
    margin: 0 auto;
    color: #555;
    font-size: 1.1rem;
}

.main-services {
    padding: 30px 0 60px;
}

.service-detail-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 30px;
    background-color: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
    align-items: start;
}

.service-detail-icon {
    font-size: 3rem;
    color: #4a2c8a;
}

.service-detail-content h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #333;
}

.service-detail-content h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #4a2c8a;
    font-weight: 500;
}

.service-detail-content p {
    margin-bottom: 25px;
    color: #555;
}

.service-features-full h5 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #333;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-item i {
    color: #4a2c8a;
}

.core-services {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.core-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.core-service-card {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.core-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.core-service-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
    color: #333;
}

.service-number {
    color: #4a2c8a;
    font-weight: 700;
    margin-right: 10px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #4a2c8a;
    font-weight: 500;
    margin-top: 15px;
}

.services-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #4a2c8a 0%, #6b46c1 100%);
    color: white;
    text-align: center;
}

.services-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.services-cta p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

/* Contact Page */
.contact-content {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 30px;
    color: #555;
}

.contact-details {
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: #f0e6f5;
    color: #4a2c8a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-right: 15px;
    flex-shrink: 0;
}

.contact-text h3 {
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.social-section h3 {
    margin-bottom: 15px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-right: 15px;
    margin-bottom: 10px;
    padding: 10px 15px;
    background-color: #f0e6f5;
    color: #4a2c8a;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: #4a2c8a;
    color: white;
}

/* Contact Form */
.contact-form-container {
    background-color: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contact-form-container h2 {
    margin-bottom: 30px;
    font-size: 2rem;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
}

.form-group textarea {
    resize: vertical;
}

.form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 4px;
    display: none;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

/* Contact Testimonials */
.contact-testimonials {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.testimonial-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

/* Map Section */
.map-section {
    padding: 80px 0;
    background-color: white;
}

.map-placeholder {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    align-items: center;
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.map-info h3 {
    margin-bottom: 15px;
    color: #4a2c8a;
}

.map-info p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.map-image {
    border-radius: 8px;
    overflow: hidden;
}

.map-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Scroll to Top Button */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #4a2c8a;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    z-index: 100;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.scroll-top:hover {
    background-color: #3a216e;
    transform: translateY(-3px);
}

/* Footer */
.footer {
    background-color: #222;
    color: #ddd;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: white;
}

.footer-column h3 span {
    color: #bb86fc;
}

.footer-column h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: white;
}

.footer-column p {
    margin-bottom: 20px;
    color: #aaa;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a:hover {
    color: #bb86fc;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.contact-info i {
    margin-right: 10px;
    color: #bb86fc;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
    color: #aaa;
    font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero .container {
        flex-direction: column;
    }

    .hero-content {
        padding-right: 0;
        margin-bottom: 50px;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .service-detail-card {
        grid-template-columns: 1fr;
    }

    .service-detail-icon {
        justify-self: center;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 15px 0;
    }

    .menu-toggle {
        display: block;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }

    .mission-content h2 {
        font-size: 1.6rem;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .btn {
        width: 100%;
    }

    .contact-form-container {
        padding: 30px 20px;
    }

    .section-title {
        font-size: 1.8rem;
    }
}

/* Social Media Links - Enhanced */
.social-links-enhanced {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}

.social-link-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-link {
    background-color: #25D366;
    color: white;
}

.whatsapp-link:hover {
    background-color: #1da851;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.facebook-link {
    background-color: #1877F2;
    color: white;
}

.facebook-link:hover {
    background-color: #166fe5;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(24, 119, 242, 0.3);
}

.instagram-link {
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
    color: white;
}

.instagram-link:hover {
    opacity: 0.9;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(131, 58, 180, 0.3);
}

.social-link-item i {
    font-size: 1.2rem;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25D366;
    color: white;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #1da851;
    transform: scale(1.1);
    box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.3);
}

.whatsapp-float-left {
    right: auto;
    left: 40px;
}

/* Social Media in Contact Page */
.social-media-section {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.social-media-section h3 {
    margin-bottom: 20px;
    color: #4a2c8a;
}

.social-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

/* Circular Logo Styles */
.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4a2c8a 0%, #6b46c1 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(74, 44, 138, 0.3);
    border: 3px solid white;
}

.logo-inner {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-f {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: white;
    position: absolute;
    left: 15px;
}

.logo-e {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    position: absolute;
    right: 15px;
    bottom: 10px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-line1 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #4a2c8a;
    letter-spacing: -0.5px;
}

.logo-line2 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    letter-spacing: 1px;
    margin-top: 2px;
}

.logo-tagline {
    font-size: 0.7rem;
    color: #666;
    font-weight: 400;
    margin-top: 4px;
    letter-spacing: 0.5px;
    max-width: 200px;
    line-height: 1.2;
}

/* Hero Section with Adjusted Paragraph */
.hero {
    padding: 60px 0 80px;
    /* Adjusted padding to move content higher */
    background: linear-gradient(135deg, #f0ebf8 0%, #e6e0f2 100%);
    position: relative;
    overflow: hidden;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.hero-content {
    flex: 1;
    min-width: 300px;
    padding-right: 40px;
    padding-top: 20px;
    /* Added padding to move text higher */
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    color: #333;
}

.hero-content h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #4a2c8a;
    font-weight: 500;
}

.hero-content p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
    margin-top: -10px;
    /* Negative margin to move paragraph higher */
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.hero-image {
    flex: 1;
    min-width: 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
    /* Adjusted to align with higher text */
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .hero .container {
        flex-direction: column;
    }

    .hero-content {
        padding-right: 0;
        margin-bottom: 40px;
        text-align: center;
        padding-top: 10px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-content p {
        margin-top: -5px;
    }
}

@media (max-width: 768px) {
    .logo-circle {
        width: 50px;
        height: 50px;
    }

    .logo-f {
        font-size: 1.7rem;
        left: 12px;
    }

    .logo-e {
        font-size: 1.3rem;
        right: 12px;
        bottom: 8px;
    }

    .logo-line1 {
        font-size: 1.4rem;
    }

    .logo-line2 {
        font-size: 1rem;
    }

    .logo-tagline {
        font-size: 0.65rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.1rem;
        margin-top: -8px;
    }
}

@media (max-width: 576px) {
    .logo-container {
        gap: 10px;
    }

    .logo-circle {
        width: 45px;
        height: 45px;
    }

    .logo-f {
        font-size: 1.5rem;
        left: 10px;
    }

    .logo-e {
        font-size: 1.1rem;
        right: 10px;
        bottom: 7px;
    }

    .logo-text {
        max-width: 150px;
    }

    .logo-line1 {
        font-size: 1.2rem;
    }

    .logo-line2 {
        font-size: 0.9rem;
    }

    .logo-tagline {
        display: none;
        /* Hide tagline on very small screens */
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content h2 {
        font-size: 1.2rem;
    }

    .hero-content p {
        font-size: 1rem;
        margin-top: -5px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .btn {
        width: 100%;
    }
}

/* Circular Logo Styling */
.logo-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    /* This makes it circular */
    object-fit: cover;
    /* Ensures image fills the circle without distortion */
    object-position: center;
    /* Centers the image within the circle */
    border: 3px solid #4a2c8a;
    /* Purple border around the circle */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    /* Subtle shadow for depth */
    display: block;
    transition: all 0.3s ease;
    /* Smooth hover effect */
}

/* Optional: Hover effect */
.logo-image:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(74, 44, 138, 0.2);
}

/* For responsive design */
@media (max-width: 768px) {
    .logo-image {
        width: 50px;
        height: 50px;
        border-width: 2px;
    }
}

@media (max-width: 576px) {
    .logo-image {
        width: 45px;
        height: 45px;
    }
}

/* Alternative: If you want the logo inside a circular container */
.logo-circle-container {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    /* Hides parts of image outside the circle */
    border: 3px solid #4a2c8a;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-circle-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Navbar with right-aligned menu */
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

/* Logo styling with text */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #4a2c8a;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-line1 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #4a2c8a;
    font-family: 'Poppins', sans-serif;
}

/* Navigation menu on the right */
.nav-right {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    margin-left: 30px;
}

.nav-menu a {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    color: #333;
    text-decoration: none;
    padding: 5px 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #4a2c8a;
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #4a2c8a;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #333;
    margin-left: 20px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        right: -100%;
        flex-direction: column;
        background-color: white;
        width: 80%;
        max-width: 300px;
        height: calc(100vh - 80px);
        padding: 30px 20px;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 1000;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu li {
        margin: 15px 0;
        margin-left: 0;
    }

    .menu-toggle {
        display: block;
    }

    .logo-line1 {
        font-size: 1.1rem;
    }

    .logo-image {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 576px) {
    .logo-line1 {
        display: none;
        /* Hide text on very small screens */
    }

    .nav-container {
        padding: 10px 15px;
    }
}

/* Form Validation Styles */
.error-message {
    color: #e74c3c;
    font-size: 0.85rem;
    margin-top: 5px;
    min-height: 20px;
    display: none;
}

.form-group input:invalid,
.form-group select:invalid,
.form-group textarea:invalid {
    border-color: #e74c3c;
}

.form-group input:valid,
.form-group select:valid,
.form-group textarea:valid {
    border-color: #2ecc71;
}

.form-group input:focus:invalid,
.form-group select:focus:invalid,
.form-group textarea:focus:invalid {
    border-color: #e74c3c;
    box-shadow: 0 0 0 2px rgba(231, 76, 60, 0.2);
}

.form-group input:focus:valid,
.form-group select:focus:valid,
.form-group textarea:focus:valid {
    border-color: #2ecc71;
    box-shadow: 0 0 0 2px rgba(46, 204, 113, 0.2);
}

/* Character counter */
.counter {
    text-align: right;
    font-size: 0.85rem;
    color: #666;
    margin-top: 5px;
}

.counter span {
    font-weight: 600;
}

/* Checkbox styling */
.checkbox-group {
    display: flex;
    align-items: flex-start;
    margin-top: 20px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-right: 10px;
    margin-top: 5px;
}

.checkbox-group label {
    font-size: 0.9rem;
    line-height: 1.4;
    cursor: pointer;
}

.privacy-link {
    color: #4a2c8a;
    text-decoration: underline;
}

.privacy-link:hover {
    color: #3a216e;
}

/* Button loading state */
.btn-loader {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Success/Error message styles */
.form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 4px;
    display: none;
    animation: fadeIn 0.3s ease;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

.form-message.info {
    background-color: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Form validation focus states */
.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea {
    border-color: #e74c3c;
    background-color: #fff9f9;
}

.form-group.has-success input,
.form-group.has-success select,
.form-group.has-success textarea {
    border-color: #2ecc71;
    background-color: #f9fff9;
}


/* ==========================================================================
   AI Chatbot Styles
   ========================================================================== */
.chatbot-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 10000;
    font-family: 'Open Sans', sans-serif;
}

/* Chatbot Toggle Button */
.chatbot-toggle {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4a2c8a 0%, #6b46c1 100%);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(74, 44, 138, 0.3);
    transition: all 0.3s ease;
    position: relative;
    animation: pulse 2s infinite;
}

.chatbot-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(74, 44, 138, 0.4);
}

.chatbot-status {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 12px;
    height: 12px;
    background-color: #25D366;
    border-radius: 50%;
    border: 2px solid white;
    animation: statusPulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(74, 44, 138, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(74, 44, 138, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(74, 44, 138, 0);
    }
}

@keyframes statusPulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.7;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Chatbot Container */
.chatbot-container {
    position: absolute;
    bottom: 70px;
    right: 0;
    width: 380px;
    max-width: 90vw;
    height: 600px;
    max-height: 80vh;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    display: none;
    flex-direction: column;
    overflow: hidden;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.chatbot-container.active {
    display: flex;
}

/* Chatbot Header */
.chatbot-header {
    background: linear-gradient(135deg, #4a2c8a 0%, #6b46c1 100%);
    color: white;
    padding: 15px 20px;
}

.chatbot-header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.chatbot-avatar {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.chatbot-info h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.chatbot-info p {
    margin: 2px 0 0;
    font-size: 12px;
    opacity: 0.9;
}

.chatbot-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.chatbot-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

.chatbot-status-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    opacity: 0.9;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #25D366;
}

.status-dot.online {
    animation: blink 1.5s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

/* Chat Messages Area */
.chatbot-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    background: #f8f9fa;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.message {
    max-width: 80%;
    padding: 12px 16px;
    border-radius: 18px;
    animation: fadeIn 0.3s ease;
    line-height: 1.4;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.message-bot {
    background: white;
    border: 1px solid #e9ecef;
    align-self: flex-start;
    border-bottom-left-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.message-user {
    background: linear-gradient(135deg, #4a2c8a 0%, #6b46c1 100%);
    color: white;
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

.message-typing {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 12px 16px;
    background: white;
    border-radius: 18px;
    align-self: flex-start;
    border: 1px solid #e9ecef;
}

.typing-dot {
    width: 8px;
    height: 8px;
    background: #6b46c1;
    border-radius: 50%;
    animation: typing 1.4s infinite;
}

.typing-dot:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typing {

    0%,
    60%,
    100% {
        transform: translateY(0);
    }

    30% {
        transform: translateY(-6px);
    }
}

/* Quick Actions */
.chatbot-quick-actions {
    padding: 15px 20px;
    background: white;
    border-top: 1px solid #e9ecef;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.quick-btn {
    padding: 8px 12px;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 20px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.quick-btn:hover {
    background: #e9ecef;
    transform: translateY(-1px);
}

/* Chat Input Area */
.chatbot-input-area {
    padding: 15px 20px;
    background: white;
    border-top: 1px solid #e9ecef;
}

.input-container {
    display: flex;
    gap: 10px;
    margin-bottom: 8px;
}

#chatbotInput {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid #e9ecef;
    border-radius: 24px;
    font-size: 14px;
    outline: none;
    transition: border 0.3s ease;
}

#chatbotInput:focus {
    border-color: #4a2c8a;
    box-shadow: 0 0 0 2px rgba(74, 44, 138, 0.1);
}

.send-btn {
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, #4a2c8a 0%, #6b46c1 100%);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.send-btn:hover {
    transform: scale(1.05);
}

.input-hints {
    text-align: center;
    color: #6c757d;
    font-size: 11px;
}

/* Appointment Form */
.appointment-form {
    margin-top: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 12px;
    border: 1px solid #e9ecef;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.appointment-form h4 {
    margin: 0 0 15px 0;
    color: #4a2c8a;
    font-size: 16px;
}

.form-row {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.form-row input,
.form-row select {
    flex: 1;
    padding: 10px;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
}

.form-row input:focus,
.form-row select:focus {
    border-color: #4a2c8a;
}

textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    font-size: 14px;
    resize: vertical;
    margin-bottom: 10px;
    outline: none;
}

textarea:focus {
    border-color: #4a2c8a;
}

.form-actions {
    display: flex;
    gap: 10px;
}

.btn-cancel,
.btn-submit {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cancel {
    background: #e9ecef;
    color: #495057;
}

.btn-cancel:hover {
    background: #dee2e6;
}

.btn-submit {
    background: linear-gradient(135deg, #4a2c8a 0%, #6b46c1 100%);
    color: white;
}

.btn-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(74, 44, 138, 0.2);
}

/* Chatbot Footer */
.chatbot-footer {
    padding: 10px 20px;
    background: white;
    border-top: 1px solid #e9ecef;
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: #6c757d;
}

.chatbot-footer i {
    margin-right: 4px;
}

/* Service Fee Cards */
.fee-card {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 15px;
    margin: 10px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.fee-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.fee-title {
    font-weight: 600;
    color: #4a2c8a;
}

.fee-amount {
    background: #e9ecef;
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 600;
    color: #495057;
}

.fee-details {
    font-size: 13px;
    color: #6c757d;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 768px) {
    .chatbot-container {
        width: 350px;
        max-width: 95vw;
        height: 500px;
        right: -10px;
    }

    .form-row {
        flex-direction: column;
        gap: 8px;
    }

    .chatbot-quick-actions {
        overflow-x: auto;
        padding-bottom: 10px;
    }
}

@media (max-width: 480px) {
    .chatbot-widget {
        bottom: 10px;
        right: 10px;
    }

    .chatbot-toggle {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .chatbot-container {
        width: 320px;
        height: 450px;
    }
}

/* Gemini-specific styles */
.chatbot-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #4285f4;
    color: white;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 10px;
    font-weight: bold;
    border: 2px solid white;
}

.gemini-badge {
    position: absolute;
    bottom: -5px;
    right: -5px;
    background: linear-gradient(45deg, #4285f4, #34a853, #fbbc05, #ea4335);
    color: white;
    font-size: 8px;
    padding: 2px 6px;
    border-radius: 8px;
    font-weight: bold;
}

.chatbot-avatar {
    position: relative;
}

/* AI Thinking Animation */
.ai-thinking {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 12px;
    margin: 10px 0;
}

.ai-thinking-text {
    font-size: 12px;
    color: #6c757d;
}

.ai-thinking-dots {
    display: flex;
    gap: 4px;
}

.ai-thinking-dots span {
    width: 6px;
    height: 6px;
    background: #4a2c8a;
    border-radius: 50%;
    animation: thinking 1.4s infinite;
}

.ai-thinking-dots span:nth-child(2) {
    animation-delay: 0.2s;
}

.ai-thinking-dots span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes thinking {

    0%,
    100% {
        opacity: 0.4;
        transform: translateY(0);
    }

    50% {
        opacity: 1;
        transform: translateY(-3px);
    }
}

/* Enhanced message styles for AI responses */
.message-bot.ai-enhanced {
    border-left: 3px solid #4285f4;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.message-bot .ai-suggestion {
    background: #e8f0fe;
    border: 1px solid #d2e3fc;
    border-radius: 8px;
    padding: 10px;
    margin-top: 10px;
}

.ai-suggestion h5 {
    margin: 0 0 8px 0;
    color: #4285f4;
    font-size: 14px;
}

.ai-suggestion ul {
    margin: 0;
    padding-left: 20px;
}

.ai-suggestion li {
    margin-bottom: 4px;
    font-size: 13px;
}

/* Gemini color scheme accents */
.send-btn {
    background: linear-gradient(135deg, #4285f4 0%, #34a853 100%);
}

.send-btn:hover {
    background: linear-gradient(135deg, #3367d6 0%, #2e8b57 100%);
}

.chatbot-toggle {
    background: linear-gradient(135deg, #4285f4 0%, #4a2c8a 100%);
}

.chatbot-toggle:hover {
    background: linear-gradient(135deg, #3367d6 0%, #3a216e 100%);
}

.chatbot-quick-actions {
    padding: 12px 15px;
    background: white;
    border-top: 1px solid #e9ecef;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.quick-btn {
    padding: 6px 12px;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 16px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.quick-btn:hover {
    background: #e9ecef;
    transform: translateY(-1px);
}

.chatbot-input-area {
    padding: 15px;
    background: white;
    border-top: 1px solid #e9ecef;
}

.input-container {
    display: flex;
    gap: 10px;
    margin-bottom: 8px;
}

#chatbotInput {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid #dee2e6;
    border-radius: 24px;
    font-size: 14px;
    outline: none;
    transition: border 0.3s ease;
}

#chatbotInput:focus {
    border-color: #4a2c8a;
    box-shadow: 0 0 0 2px rgba(74, 44, 138, 0.1);
}

.send-btn {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #4a2c8a 0%, #6b46c1 100%);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.send-btn:hover {
    transform: scale(1.05);
}

.input-hints {
    text-align: center;
    color: #6c757d;
    font-size: 11px;
}

/* Responsive */
@media (max-width: 768px) {
    .chatbot-container {
        width: 320px;
        height: 450px;
        right: -10px;
    }

    .chatbot-widget {
        bottom: 10px;
        right: 10px;
    }
}

@media (max-width: 480px) {
    .chatbot-container {
        width: 300px;
        height: 400px;
    }

    .chatbot-toggle {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

/* ==========================================================================
   Academy & SheTech Specific Styles
   ========================================================================== */

/* Grid Helpers */
.grid {
    display: grid;
    gap: 30px;
}

.two-col-grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

.three-col-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

@media (max-width: 900px) {
    .two-col-grid {
        grid-template-columns: 1fr;
    }
}

/* Feature List (Academy) */
.feature-list {
    margin-top: 1.5rem;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-weight: 500;
}

.feature-list i {
    color: #4a2c8a;
    /* Primary Color */
}

/* Image Card with Badge */
.image-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.image-card img {
    width: 100%;
    display: block;
}

.experience-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: white;
    padding: 15px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    min-width: 120px;
}

.experience-badge .count {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: #4a2c8a;
}

.experience-badge .label {
    font-size: 0.8rem;
    color: #666;
}

/* Training Features */
.program-features {
    margin-top: 2rem;
    display: grid;
    gap: 20px;
}

.feature-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.icon-box {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(74, 44, 138, 0.1);
    color: #4a2c8a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* Course/Program Cards (Academy & SheTech) */
.program-card,
.card {
    background: white;
    padding: 0;
    border-radius: 16px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.card {
    padding: 25px;
}

.program-card:hover,
.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.card-image {
    height: 200px;
    overflow: hidden;
    width: 100%;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.program-card:hover .card-image img {
    transform: scale(1.1);
}

.card-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-content .icon {
    width: 50px;
    height: 50px;
    background: #f9f9f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4a2c8a;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.tech-stack {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 20px;
    flex-grow: 1;
}

.link-btn {
    font-weight: 600;
    color: #4a2c8a;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.link-btn:hover {
    gap: 8px;
}

/* SheTech Specifics from inline styles */
.highlight {
    background: #fbf7ff;
    padding: 30px;
    border-radius: 16px;
    border-left: 6px solid #4a2c8a;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    margin-top: 20px;
}


/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

/* Grid Responsive Fixes */
@media (max-width: 768px) {
    .nav {
        position: fixed;
        width: 100%;
        height: 100vh;
        background: white;
        top: 0;
        left: -100%;
        transition: 0.3s;
        z-index: 1000;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .nav.active {
        left: 0;
    }
}


/* Voice Recorder Button */
.voice-btn {
    background: none;
    border: none;
    color: #4a2c8a;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0 10px;
    transition: all 0.3s ease;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.voice-btn:hover {
    background: rgba(74, 44, 138, 0.1);
    transform: scale(1.1);
}

.voice-btn.listening {
    color: #e74c3c;
    animation: pulse-red 1.5s infinite;
    background: rgba(231, 76, 60, 0.1);
}

@keyframes pulse-red {
    0% {
        box-shadow: 0 0 0 0 rgba(231, 76, 60, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(231, 76, 60, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(231, 76, 60, 0);
    }
}


/* --- AIAcademy Redesign --- */
.academy-hero {
    background: linear-gradient(135deg, #4a2c8a 0%, #6b46c1 100%) !important;
    position: relative;
    overflow: hidden;
    padding: 120px 0 !important;
}

.academy-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
}

.academy-hero h1 {
    font-size: 4rem !important;
    line-height: 1.1;
    margin-bottom: 25px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.academy-hero .btn-primary {
    background: white !important;
    color: #4a2c8a !important;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.academy-hero .btn-secondary {
    border-color: rgba(255, 255, 255, 0.5) !important;
    color: white !important;
}

.program-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(74, 44, 138, 0.12);
}

.program-card .card-image {
    height: 200px;
    overflow: hidden;
}

.program-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.program-card:hover .card-image img {
    transform: scale(1.1);
}

.program-card .card-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.program-card .icon {
    width: 60px;
    height: 60px;
    background: #f0ebf8;
    color: #4a2c8a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.program-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
}

.tech-stack {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 20px;
    line-height: 1.4;
}

.link-btn {
    margin-top: auto;
    color: #4a2c8a;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.link-btn:hover {
    gap: 12px;
}

.academy-hero h1 span {
    background: linear-gradient(135deg, #fff 0%, #dcd0ff 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    margin-top: 10px;
}

.academy-hero .subtitle {
    max-width: 600px;
    margin: 0 auto 40px auto;
    font-weight: 300;
}

/* Floating Blobs for background */
.blob {
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    filter: blur(50px);
    z-index: 0;
}

.blob-1 {
    top: 10%;
    left: 5%;
}

.blob-2 {
    bottom: 10%;
    right: 5%;
    width: 400px;
    height: 400px;
}

/* ===================================
   RESPONSIVE DESIGN - MEDIA QUERIES
   =================================== */

/* Tablet Devices (768px - 1024px) */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content h2 {
        font-size: 1.3rem;
    }

    .section-title {
        font-size: 2rem;
    }
}

/* Mobile Devices (max-width: 768px) */
@media (max-width: 768px) {

    /* Navigation */
    .nav-container {
        padding: 15px 20px;
    }

    .menu-toggle {
        display: block;
        z-index: 1001;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background-color: white;
        flex-direction: column;
        padding: 80px 30px 30px;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 1000;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu li {
        margin: 0 0 20px 0;
    }

    .nav-menu a {
        font-size: 1.1rem;
        display: block;
        padding: 10px 0;
    }

    /* Hero Section */
    .hero {
        padding: 50px 0;
    }

    .hero .container {
        flex-direction: column-reverse;
        gap: 30px;
    }

    .hero-content {
        padding-right: 0;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content h2 {
        font-size: 1.2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .hero-image {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }

    /* Service Cards */
    .services-highlight,
    .core-services-grid,
    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 30px 20px;
    }

    /* Section Titles */
    .section-title {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    /* Mission Section */
    .mission-content h2 {
        font-size: 1.5rem;
    }

    /* Page Headers */
    .page-header {
        padding: 50px 0;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .page-header p {
        font-size: 1rem;
    }

    /* Contact Grid */
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-container {
        padding: 30px 20px;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* WhatsApp Float */
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.8rem;
    }

    /* Scroll Top Button */
    .scroll-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }

    /* Chatbot Widget */
    .chatbot-container {
        width: 100%;
        height: 100%;
        max-width: none;
        max-height: none;
        border-radius: 0;
        bottom: 0;
        right: 0;
    }

    .chatbot-toggle {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
}

/* Small Mobile Devices (max-width: 480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-content h1 {
        font-size: 1.6rem;
    }

    .hero-content h2 {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .service-number {
        font-size: 2rem;
    }

    .service-card h3 {
        font-size: 1.5rem;
    }

    .logo-text .logo-line1 {
        font-size: 0.9rem;
    }
}

/* Life Engineering Feature Card */
.feature-card {
    background: linear-gradient(135deg, #ffffff 0%, #f3f0ff 100%);
    border: 2px solid #4a2c8a;
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(74, 44, 138, 0.15);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #4a2c8a, #f72585);
}

.feature-card:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 15px 40px rgba(74, 44, 138, 0.25);
}

.feature-card .service-icon-main {
    font-size: 3.5rem;
    color: #4a2c8a;
    margin-bottom: 25px;
}

.feature-card h3 {
    font-size: 1.8rem;
    color: #4a2c8a;
    margin-bottom: 10px;
}

/* Core Family Services Section */
#core-family-services {
    padding-top: 80px;
    padding-bottom: 80px;
}

.core-service-card {
    border-top: 4px solid transparent;
    transition: all 0.3s ease;
}

.core-service-card:hover {
    transform: translateY(-10px);
}

.core-service-card:nth-child(1) {
    border-top-color: #ff6f61;
}

.core-service-card:nth-child(2) {
    border-top-color: #4a2c8a;
}

.core-service-card:nth-child(3) {
    border-top-color: #f72585;
}

/* Core Service Card Button */
.btn-learn-more {
    display: inline-flex;
    align-items: center;
    margin-top: 15px;
    padding: 0;
    border: none;
    background: transparent;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.core-service-card:nth-child(1) .btn-learn-more {
    color: #ff6f61;
}

.core-service-card:nth-child(1) .btn-learn-more:hover {
    background: transparent;
    color: #e04f40;
    box-shadow: none;
    transform: translateX(5px);
}

.core-service-card:nth-child(2) .btn-learn-more {
    color: #4a2c8a;
}

.core-service-card:nth-child(2) .btn-learn-more:hover {
    background: transparent;
    color: #351a66;
    box-shadow: none;
    transform: translateX(5px);
}

.core-service-card:nth-child(3) .btn-learn-more {
    color: #f72585;
}

.core-service-card:nth-child(3) .btn-learn-more:hover {
    background: transparent;
    color: #d61a6f;
    box-shadow: none;
    transform: translateX(5px);
}

.btn-learn-more i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.btn-learn-more:hover i {
    transform: translateX(4px);
}

/* Responsive Adjustments for Feature Card */
@media (min-width: 768px) {
    .feature-card {
        grid-column: span 2;
        /* Span 2 columns on tablet */
    }
}

@media (min-width: 1024px) {
    .feature-card {
        grid-column: span 1;
        /* Reset to 1 column on desktop grid if needed, or keep highlighted */
    }
}

/* Global Back Button */
.back-button-global {
    position: fixed;
    top: 100px;
    left: 20px;
    z-index: 1000;
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background-color: rgba(255, 255, 255, 0.9);
    color: #4a2c8a;
    border: 1px solid rgba(74, 44, 138, 0.2);
    border-radius: 30px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.back-button-global:hover {
    background-color: #4a2c8a;
    color: white;
    transform: translateX(-5px);
    box-shadow: 0 6px 16px rgba(74, 44, 138, 0.2);
    border-color: #4a2c8a;
}

.back-button-global i {
    margin-right: 8px;
}

@media (max-width: 768px) {
    .back-button-global {
        top: 85px;
        left: 15px;
        padding: 6px 12px;
        font-size: 0.8rem;
    }
}

/* Enhanced Robotics Page Styles */
.robotics-hero {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.9), rgba(30, 41, 59, 0.8)), url('../images/robotics-banner.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* Parallax effect */
    color: #fff;
    padding: 160px 0 120px;
    /* Increased padding */
    text-align: center;
    position: relative;
    clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
    /* Modern slant */
    margin-bottom: 60px;
}

.robotics-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(to right, #fff, #a5b4fc);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.robotics-hero .subtitle {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 40px;
    color: #e2e8f0;
    line-height: 1.6;
    
}

/* hero geelan_academy-hero */
.geelan_academy-hero {
     background: linear-gradient(135deg, rgba(15, 23, 42, 0.9), rgba(30, 41, 59, 0.8)),url("../images/geelan.png") center/cover no-repeat;
    height: 420px;          /* regular professional size */
    padding: 40px 20px;     /* reduce padding */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fffbfb;
}

.geelan_academy-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(to right, #fff, #a5b4fc);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.geelan_academy-hero .subtitle {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 40px;
    color: #e2e8f0;
    line-height: 1.6;
}

/* ===== HERO SECTION ===== */

.familia_franchise-hero {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.9), rgba(30, 41, 59, 0.8)),url("../images/familia_franchise.png") center/cover no-repeat;
    height: 420px;          /* regular professional size */
    padding: 40px 20px;     /* reduce padding */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fffbfb;
}

/* ===== Title ===== */

.familia_franchise-hero h2 {
    font-size: 44px;
    font-weight: 800;
    margin-bottom: 40px;
    letter-spacing: 1px;
}

/* ===== Details Container ===== */

.academy-details ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: auto;
}

/* ===== Each Item Block ===== */

.academy-details li {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(8px);
    padding: 22px;
    border-radius: 16px;
    font-size: 17px;
    font-weight: 500;
    transition: 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* ===== Bold Heading Inside LI ===== */

.academy-details li b {
    display: block;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #fbf4f4;
}

/* ===== Hover Effect ===== */

.academy-details li:hover {
    transform: translateY(-6px);
    background: rgba(255,255,255,0.18);
}

/* ===== Description ===== */

.academy-details p {
    margin-top: 40px;
    font-size: 18px;
    line-height: 1.6;
    color: #f9f3f3;
}

/* ===== Buttons ===== */

.hero-buttons {
    margin-top: 35px;
}

.btn {
    padding: 14px 28px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    margin: 10px;
    display: inline-block;
    transition: 0.3s;
}

.btn-primary {
    background: linear-gradient(45deg, #00c6ff, #0072ff);
    color: white;
}

.btn-secondary {
    background: white;
    color: #0a2c3d;
}

.btn:hover {
    transform: scale(1.05);
}

/* ===== Responsive ===== */

@media (max-width: 900px) {
    .academy-details ul {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .academy-details ul {
        grid-template-columns: 1fr;
    }
}

.value-section {
    padding: 60px 10%;
    background: #f4f7fb;
    text-align: center;
}

.value-section h2 {
    font-size: 32px;
    color: #0d47a1;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 18px;
    color: #555;
    margin-bottom: 40px;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.value-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.value-card h3 {
    font-size: 16px;
    color: #333;
}

.bottom-text {
    margin-top: 40px;
    font-size: 17px;
    font-weight: 500;
    color: #0d47a1;
}

/* Section */
.learn-premium {
  position: relative;
  background: #f5f7fb;
  padding: 80px 20px;
  overflow: hidden;
}

/* Header */
.learn-header {
  text-align: center;
  max-width: 700px;
  margin: auto;
  margin-bottom: 50px;
}

.learn-header h2 {
  font-size: 40px;
  font-weight: 700;
  color: #1c1c1c;
  margin-bottom: 15px;
}

.learn-header .subtitle {
  font-size: 18px;
  color: #666;
}


/* Flip Grid Center */
.flip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  max-width: 850px;
  margin: auto;
}

/* Flip Card */
.flip-card {
  perspective: 1000px;
  height: 120px;
}

.flip-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: 0.6s;
  transform-style: preserve-3d;
}

.flip-card:hover .flip-inner {
  transform: rotateY(180deg);
}

.front, .back {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  backface-visibility: hidden;
  font-weight: 600;
  font-size: 18px;
  text-align: center;
  padding: 15px;
}

/* Front */
.front {
  background: linear-gradient(135deg, #3b82f6, #9333ea);
  color: #fff;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

/* Back */
.back {
  background: linear-gradient(135deg, #fde2e4, #fbcfe8);
  color: #222;
  transform: rotateY(180deg);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

/* Responsive */
@media (max-width: 991px) {
  .flip-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .learn-image {
    display: none;
  }
}

@media (max-width: 576px) {
  .flip-grid {
    grid-template-columns: 1fr;
  }

  .learn-header h2 {
    font-size: 30px;
  }
}
/* SECTION */
.model-section {
  padding: 100px 0;
  background: #f8fafc;
}

/* CONTAINER */
.container {
  max-width: 1100px;
  margin: auto;
  padding: 0 20px;
}

/* HEADER */
.model-header {
  text-align: center;
  margin-bottom: 60px;
}

.model-header h2 {
  font-size: 32px;
  margin-bottom: 15px;
}

.model-header p {
  color: #6b7280;
  max-width: 600px;
  margin: auto;
}

/* GRID LAYOUT */
.model-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* CARD */
.model-card {
  padding: 30px;
  border-radius: 14px;
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  color: #ffffff;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.model-card:hover {
  transform: translateY(-5px);
}

.model-card h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.model-card p {
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
}

/* MOBILE */
@media (max-width: 768px) {
  .model-grid {
    grid-template-columns: 1fr;
  }
}

.advantages-section {
  padding: 100px 20px;
  background: #f4f7fb;
  text-align: center;
}

.container {
  max-width: 1100px;
  margin: auto;
}

.advantages-section h2 {
  font-size: 32px;
  margin-bottom: 60px;
  color: #1f2937;
}

/* Layout */
.advantages-wrapper {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

/* Card Style */
.adv-card {
  width: 200px;
  height: 250px;
  border-radius: 100px;
  padding: 40px 20px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 15px 30px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.adv-card span {
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 15px;
}

.adv-card h3 {
  font-size: 16px;
  line-height: 1.4;
}

.adv-card:hover {
  transform: translateY(-10px);
}

/* Gradient Colors */
.red {
  background: linear-gradient(135deg, #ff416c, #ff4b2b);
}

.orange {
  background: linear-gradient(135deg, #ff7e00, #ffb347);
}

.green {
  background: linear-gradient(135deg, #56ab2f, #a8e063);
}

.blue {
  background: linear-gradient(135deg, #2193b0, #6dd5ed);
}

.darkblue {
  background: linear-gradient(135deg, #1e3c72, #2a5298);
}

/* Responsive */
@media (max-width: 768px) {
  .adv-card {
    width: 160px;
    height: 220px;
    padding: 30px 15px;
  }
}



/*  geelan Section wrapper */
.vm-section {
    padding: 60px 0;
    background: #ffffff;
}

/* Heading */
.vm-section h2 {
    font-size: 32px;
    font-weight: 700;
    color:  #4a2c8a;
    margin-bottom: 15px;
}

.vm-section p.section-desc {
    max-width: 900px;
    font-size: 15px;
    color: #333;
    line-height: 1.7;
    margin-bottom: 40px;
}

/* Card layout */
.vm-card {
    flex: 1;                 /* equal width */
    display: flex;
    width: calc(50% - 15px); 
    width: 100%;
    height: 100%; 
    flex-direction: column;  /* content flows properly */
    padding: 30px;
    background:  #4a2c8a;
    color: #fff;
    border-bottom: 6px solid #df1a14;
}

.vm-card:hover {
    transform: translateY(-5px);
}

/* Icon */
.vm-card .vm-icon {
    width: 55px;
    height: 55px;
    margin-bottom: 20px;
}

.vm-card .vm-icon img {
    width: 100%;
    height: auto;
}

/* Title */
.vm-card h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 15px;
}

/* Content */
.vm-card p {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 15px;
}

/* Grid spacing fix */
.vm-row {
    display: flex;
    gap: 30px;
    align-items: stretch; 
}
.vm-card p:last-child {
    margin-bottom: 0;
}

.vm-row > div {
    display: flex;          /* makes col-md-6 flex */
}

/* Responsive */
@media (max-width: 768px) {
    .vm-card {
        padding: 25px;
    }

    .vm-card h3 {
        font-size: 22px;
    }
}

/* geelan key features  */
* {
  box-sizing: border-box;
  font-family: "Segoe UI", Arial, sans-serif;
}

.features-section {
  padding: 60px 40px;
  background: #f8fafc;
  text-align: center;
}

.features-section h2 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 5px;
  color:  #4a2c8a;
}

.subtitle {
  font-size: 16px;
  color: #03070d;
  margin-bottom: 45px;
}

.features-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.feature-card {
  background: #ffffff;
  width: 100%;
  max-width: 230px;
  padding: 25px 20px 45px;
  border-radius: 14px;
  position: relative;
  overflow: visible;   
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.feature-card h3 {
  font-size: 16px;
  margin-bottom: 10px;
  color: #0f172a;
}

.feature-card p {
  font-size: 14px;
  color: #475569;
  line-height: 1.5;
}

.step {
  position: absolute;
  bottom: -22px;
  left: 50%;
  transform: translateX(-50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #0f172a;
}

/* Section wrapper */
.da-section {
    padding: 80px 0;
    background: #f8f9fc;
}

/* Layout */
.da-row {
    display: flex;
    align-items: center;
    gap: 50px;
}

/* Left content */
.da-content {
    flex: 1;
}

.da-content h2 {
    font-size: 34px;
    font-weight: 700;
    color: #4b2e83;
    margin-bottom: 20px;
}

.da-intro {
    font-size: 16px;
    color: #444;
    line-height: 1.8;
    margin-bottom: 25px;
}

/* List */
.da-list {
    list-style: none;
    padding: 0;
}

.da-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 18px;
    font-size: 15.5px;
    color: #222;
    line-height: 1.7;
}

.da-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 2px;
    color: #4b2e83;
    font-weight: bold;
}

/* Right image */
.da-image {
    flex: 1;
}

.da-image img {
    width: 100%;
    border-radius: 14px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

/* Responsive */
@media (max-width: 768px) {
    .da-row {
        flex-direction: column;
        text-align: center;
    }

    .da-list li {
        text-align: left;
    }
}

.side-info-section {
  position: relative;
  padding: 90px 0;
  background: url("../images/contact-geelan.png") center / cover no-repeat;
  color: #ffffff;
}

.side-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 1;
}

.side-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 60px;
  padding: 0 30px;
}

/* LEFT TITLE */
.side-label {
  flex: 0 0 280px;
  display: flex;
  align-items: center;
}

.side-label h2 {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  border-left: 6px solid #df1a14;
  padding-left: 25px;
}

/* RIGHT CONTENT */
.side-content {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

/* TRANSPARENT CARDS */
.info-card {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  padding: 28px;
  border-radius: 14px;
}

.info-card h3 {
  font-size: 22px;
  color: #ffdd57;
  margin-bottom: 15px;
}

.info-card p,
.info-card li {
  font-size: 15.5px;
  line-height: 1.7;
  margin-bottom: 8px;
}

.info-card ul {
  padding-left: 18px;
}

/* MOBILE */
@media (max-width: 768px) {
  .side-container {
    flex-direction: column;
  }

  .side-label h2 {
    font-size: 32px;
  }
}

/* Glassmorphism Card Style */
.program-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.program-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px -12px rgba(67, 56, 202, 0.25);
}

/* Feature Benefits Grid */
.benefit-item {
    display: flex;
    align-items: center;
    font-size: 1.05rem;
    color: #334155;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border-color: #e0e7ff;
}

.benefit-item i {
    font-size: 1.5rem;
    margin-right: 15px;
    padding: 10px;
    background: #e0e7ff;
    border-radius: 10px;
    color: #4f46e5 !important;
    /* Force override inline color */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .robotics-hero {
        padding: 120px 0 80px;
        clip-path: polygon(0 0, 100% 0, 100% 95%, 0 100%);
    }

    .robotics-hero h1 {
        font-size: 2.25rem;
    }

    .grid.three-col-grid,
    .grid.two-col-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .feature-full-width {
        padding: 30px 20px !important;
        /* Force padding on mobile */
    }

    .program-card {
        padding: 30px 20px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.delay-1 {
    animation-delay: 0.1s;
}

.delay-3 {
    animation-delay: 0.3s;
}