/* Global Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        :root {
            --primary: #ff90bb; /* Soft pink from palette */
            --secondary: #ffc1da; /* Light pink from palette */
            --light: #f8f8e1; /* Cream from palette */
            --dark: #8accd5; /* Soft teal from palette */
            --darker: #6ab7c3; /* Darker teal for footer */
            --accent: #ff90bb; /* Same as primary for consistency */
            --text: #5a5a5a; /* Neutral dark gray for readability */
        }

        body {
            color: var(--text);
            line-height: 1.6;
            background-color: var(--light);
            overflow-x: hidden;
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        section {
            padding: 80px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
            color: var(--dark);
        }

        .section-title h2 {
            font-size: 2.2rem;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .section-title h2:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--primary);
        }

        .btn {
            display: inline-block;
            background-color: var(--dark);
            color: white;
            padding: 12px 30px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        .btn:hover {
            background-color: var(--primary);
            transform: translateY(-3px);
            box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
        }

        .btn-primary {
            background-color: var(--primary);
            color: white;
        }

        .btn-primary:hover {
            background-color: #ff7aad;
        }

        /* Header Styles */
        header {
            background-color: white;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }

        .logo {
            display: flex;
            align-items: center;
        }

        .logo h1 {
            font-size: 24px;
            color: var(--dark);
            margin-left: 10px;
            font-weight: 700;
        }

        .logo-img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            object-fit: cover;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            background-color: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            overflow: hidden;
        }

        .logo-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .nav-links {
            display: flex;
            list-style: none;
        }

        .nav-links li {
            margin-left: 25px;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--text);
            font-weight: 500;
            transition: color 0.3s;
            position: relative;
        }

        .nav-links a:after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--primary);
            transition: width 0.3s;
        }

        .nav-links a:hover {
            color: var(--dark);
        }

        .nav-links a:hover:after {
            width: 100%;
        }

      /* Hero Section - Updated with background image */
         .hero {
            background: linear-gradient(rgba(138, 204, 213, 0.31), rgba(138, 204, 213, 0.336)), 
                        url('https://i.ibb.co/Kz8fzMHk/newwwwwww.jpg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            color: rgb(255, 255, 255);
            text-align: center;
            padding: 120px 0;
            min-height: 80vh;
            display: flex;
            align-items: center;}

        .hero h2 {
            font-size: 2.8rem;
            margin-bottom: 20px;
            font-weight: 700;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 30px;
            line-height: 1.8;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
        }

        .hero-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 30px;
        }
        
        @media (max-width: 768px) {
    .hero {
        background-attachment: scroll !important; /* Remove fixed on mobile */
        background: linear-gradient(rgba(138, 204, 213, 0.8), rgba(138, 204, 213, 0.8)), 
                    url('https://i.ibb.co/Kz8fzMHk/newwwwwww.jpg');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        min-height: 70vh; /* Slightly smaller on mobile */
        padding: 80px 0;
    }
    
    .hero h2 {
        font-size: 2rem !important;
    }
    
    .hero p {
        font-size: 1.1rem !important;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    }
}

/* For very small screens */
@media (max-width: 480px) {
    .hero {
        min-height: 60vh;
        padding: 60px 0;
    }
    
    .hero h2 {
        font-size: 1.8rem !important;
    }
    
    .hero p {
        font-size: 1rem !important;
    }
}


        /* Mission Section */
        .mission {
            background-color: white;
        }

        .mission-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
        }

        .mission-text {
            flex: 1;
            min-width: 300px;
            padding-right: 30px;
        }

        .mission-text p {
            margin-bottom: 20px;
            font-size: 1.1rem;
        }

        .mission-image {
            flex: 1;
            min-width: 300px;
            height: 350px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            overflow: hidden;
        }

        .mission-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .mission-tagline {
            text-align: center;
            margin-top: 40px;
            font-size: 1.3rem;
            font-style: italic;
            color: var(--dark);
            font-weight: 500;
        }

        /* Values Section */
        .values {
            background-color: #f8f8e1;
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }

        .value-card {
            background-color: white;
            border-radius: 10px;
            padding: 30px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s;
            border-top: 4px solid var(--primary);
        }

        .value-card:hover {
            transform: translateY(-10px);
        }

        .value-icon {
            font-size: 2.5rem;
            color: var(--dark);
            margin-bottom: 20px;
        }

        .value-card h3 {
            margin-bottom: 15px;
            color: var(--dark);
        }

        /* Services Section */
        .services {
            background-color: white;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .service-card {
            background-color: #f8f8e1;
            border-radius: 10px;
            padding: 30px;
            transition: transform 0.3s;
            border-left: 4px solid var(--primary);
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        .service-icon {
            font-size: 2.2rem;
            color: var(--dark);
            margin-bottom: 20px;
        }

        .service-card h3 {
            margin-bottom: 15px;
            color: var(--dark);
        }

        .service-card ul {
            list-style-type: none;
            margin-top: 15px;
        }

        .service-card ul li {
            margin-bottom: 8px;
            padding-left: 20px;
            position: relative;
        }

        .service-card ul li:before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--primary);
            font-weight: bold;
        }

        /* Why Choose Us Section */
        .why-choose {
            background-color: #f8f8e1;
        }

        .features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .feature {
            display: flex;
            align-items: flex-start;
        }

        .feature-icon {
            font-size: 2rem;
            color: var(--dark);
            margin-right: 20px;
            flex-shrink: 0;
        }

        .feature-text h3 {
            margin-bottom: 10px;
            color: var(--dark);
        }

        /* Team Section */
        .team {
            background-color: white;
        }

        .team-members {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 40px;
        }

        .team-member {
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            max-width: 350px;
            text-align: center;
            transition: transform 0.3s;
        }

        .team-member:hover {
            transform: translateY(-10px);
        }

        .member-image {
            height: 250px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .member-image img {
            width: 100%;
            height: 120%;
            margin-top: 50px;
            
        }

        .member-info {
            padding: 25px;
        }

        .member-info h3 {
            margin-bottom: 10px;
            color: var(--dark);
        }

        .member-info p {
            color: #666;
        }

     /* Reviews Slider Section */
        .reviews {
            background-color: #f8f8e1;
            position: relative;
            overflow: hidden;
        }

        .reviews-slider {
            position: relative;
            max-width: 900px;
            margin: 0 auto;
            overflow: hidden;
        }

        .reviews-track {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }

        .review-slide {
            min-width: 100%;
            padding: 0 20px;
            box-sizing: border-box;
        }

        .review-card {
            background-color: white;
            border-radius: 10px;
            padding: 40px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s;
            border-top: 4px solid var(--primary);
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
        }

        .review-content {
            margin-bottom: 25px;
        }

        .review-content p {
            font-style: italic;
            line-height: 1.6;
            color: var(--text);
            font-size: 1.1rem;
        }

        .review-author {
            border-top: 1px solid rgba(138, 204, 213, 0.3);
            padding-top: 20px;
        }

        .review-author h4 {
            color: var(--dark);
            margin-bottom: 5px;
            font-size: 1.2rem;
        }

        .review-author p {
            color: #666;
            font-size: 1rem;
        }

        .slider-controls {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-top: 30px;
            gap: 20px;
        }

        .slider-btn {
            background-color: var(--dark);
            color: white;
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        }

        .slider-btn:hover {
            background-color: var(--primary);
            transform: scale(1.1);
        }

        .slider-dots {
            display: flex;
            gap: 10px;
        }

        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: var(--secondary);
            cursor: pointer;
            transition: all 0.3s;
        }

        .slider-dot.active {
            background-color: var(--dark);
            transform: scale(1.2);
        }

        /* Contact Section */
        .contact {
            background-color: var(--dark);
            color: rgb(0, 0, 0);
        }

        .contact .section-title h2 {
            color: rgb(0, 0, 0);
        }

        .contact .section-title h2:after {
            background-color: var(--primary);
        }

        .contact-content {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
        }

        .contact-info {
            flex: 1;
            min-width: 300px;
        }

        .contact-info h3 {
            margin-bottom: 20px;
            font-size: 1.5rem;
        }

        .contact-details {
            margin-top: 30px;
        }

        .contact-details p {
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }

        .contact-details i {
            margin-right: 10px;
            color: var(--primary);
            width: 20px;
        }


        /* Map under KVK in Contact Info */
.map-after-kvk {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.map-address {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    color: rgb(0, 0, 0);
    font-size: 0.95rem;
}

.map-address i {
    margin-right: 8px;
    color: var(--primary);
    font-size: 1rem;
}

.contact-google-map {
    width: 100%;
    height: 180px;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

.contact-google-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}
        .contact-form {
            flex: 1;
            min-width: 300px;
            background-color: rgba(255, 255, 255, 0.1);
            padding: 30px;
            border-radius: 10px;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 5px;
            font-size: 1rem;
            background-color: rgba(255, 255, 255, 0.1);
            color: rgb(0, 0, 0);
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: rgba(45, 45, 45, 0.7);
        }

        .form-group textarea {
            height: 150px;
            resize: vertical;
        }

        /* Form dropdown styling */
        .form-group select option {
            background-color: white;
            color: black;
        }

        /* Form status message */
        .form-status {
            margin-top: 15px;
            padding: 10px;
            border-radius: 5px;
            text-align: center;
            display: none;
        }

        .form-status.success {
            background-color: rgba(46, 125, 50, 0.2);
            color: #a5d6a7;
            border: 1px solid #4caf50;
        }

        .form-status.error {
            background-color: rgba(211, 47, 47, 0.2);
            color: #e57373;
            border: 1px solid #f44336;
        }

        /* Footer - Updated with darker color */
        footer {
            background-color: var(--darker);
            color: rgb(0, 0, 0);
            padding: 60px 0 20px;
        }

        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            margin-bottom: 30px;
        }

        .footer-column {
            flex: 1;
            min-width: 250px;
            margin-bottom: 30px;
        }

        .footer-column h3 {
            margin-bottom: 20px;
            font-size: 1.2rem;
            color: var(--primary);
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column ul li {
            margin-bottom: 10px;
        }

        .footer-column a {
            color: #000000;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-column a:hover {
            color: var(--primary);
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            transition: all 0.3s;
        }

        .social-links a:hover {
            background-color: var(--primary);
            transform: translateY(-3px);
        }

        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgb(0, 0, 0);
            font-size: 0.9rem;
            color: #000000;
        }

        /* Responsive Styles */
        @media (max-width: 768px) {
            .navbar {
                flex-direction: column;
            }

            .nav-links {
                margin-top: 15px;
                flex-wrap: wrap;
                justify-content: center;
            }

            .nav-links li {
                margin: 5px 10px;
            }

            .hero h2 {
                font-size: 2.2rem;
            }

            .hero p {
                font-size: 1.1rem;
            }

            .hero-buttons {
                flex-direction: column;
                gap: 10px;
            }

            .mission-content {
                flex-direction: column;
            }

            .mission-text {
                padding-right: 0;
                margin-bottom: 30px;
            }

            .contact-content {
                flex-direction: column;
            }
        }