/* Update this file to remove footer styling related to the "powered by" link */

/* Main styles and reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    color: #333;
    line-height: 1.6;
}

/* Main container to limit width */
.container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

/* Navigation styles */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    max-width: 1400px; /* Match container width */
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    margin-right: 10px;
}

.logo-text {
    font-size: 24px;
    font-weight: bold;
    color: #333;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #20b2aa;
}

.cta-button {
    background-color: #20b2aa;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #188f89;
}

/* Hero section styles */
header {
    background-size: cover;
    background-position: center;
    height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
}

.hero {
    margin-top: 80px;
    text-align: center;
    padding: 100px 20px;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.hero-text {
    flex: 1;
    min-width: 300px;
    text-align: left;
    padding-right: 40px;
}

.hero-image {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    position: relative;
}

.hero-image img {
    width: 100%;
    position: relative;
    z-index: 2;
}

/* Add ground shadow effect */
.hero-image::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 10%;
    width: 85%;
    height: 15px;
    background: rgba(0, 0, 0, 0.25);
    border-radius: 50%;
    filter: blur(4px);
    z-index: 1;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #333;
}

.hero p {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 30px;
    color: #666;
}

/* Hero background styles */
.hero-bg {
    background-color: #e6f7ff;
    background-image: url('/api/placeholder/background.jpg');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cloud {
    position: absolute;
    background-color: white;
    border-radius: 50%;
    opacity: 0.8;
}

.cloud-1 {
    width: 150px;
    height: 150px;
    top: 20px;
    right: 100px;
}

.cloud-2 {
    width: 100px;
    height: 100px;
    top: 80px;
    left: 150px;
}

/* Services section styles */
.services {
    padding: 80px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.services h2 {
    font-size: 36px;
    margin-bottom: 50px;
}

.service-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    width: 300px;
    text-align: center;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card img {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #20b2aa;
}

/* About section styles */
.about {
    padding: 80px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.about h2 {
    font-size: 36px;
    margin-bottom: 50px;
    color: #333;
}

.about-image-container {
    width: 100%;
    height: 100%;
    position: relative;
    background-color: #000;
    overflow: hidden;
}

.about-image {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.about-image img {
    width: 100%;
    height: 100%;
/*    object-fit: cover; */
}

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(32, 178, 170, 0.8);
    color: white;
    padding: 10px;
    font-size: 18px;
    font-weight: 500;
}

.about-text {
    flex: 1.5;
    padding: 40px;
    text-align: left;
}

.about-text h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #20b2aa;
}

.about-text p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #555;
}

.about-text .cta-button {
    display: inline-block;
    margin-top: 15px;
}

/* Contact section styles */
.contact {
    background-color: #f9f9f9;
    padding: 80px 20px;
    text-align: center;
}

.contact h2 {
    font-size: 36px;
    margin-bottom: 30px;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

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

.submit-button {
    background-color: #20b2aa;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-button:hover {
    background-color: #188f89;
}

/* Footer styles - now without "powered by" styling */
footer {
    background-color: #333;
    color: white;
    width: 100%;
    padding: 30px 0 15px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0 20px;
}

.footer-section {
    width: 300px;
    margin-bottom: 20px;
    text-align: left;
}

.footer-section h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #20b2aa;
}

.footer-section p {
    margin-bottom: 8px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #20b2aa;
}

.footer-bottom {
    margin-top: 20px;
    border-top: 1px solid #444;
    padding-top: 15px;
    text-align: center;
    width: 100%;
}

/* Form status messages */
.success-message {
    background-color: #dff0d8;
    color: #3c763d;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 5px;
    text-align: center;
}

.error-message {
    background-color: #f2dede;
    color: #a94442;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 5px;
    text-align: center;
}

/* Responsive styles */
@media (max-width: 1200px) {
    .container {
        max-width: 100%;
    }
    
    nav {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    nav {
        padding: 20px;
        flex-direction: column;
    }
    
    nav ul {
        margin-top: 20px;
        flex-direction: column;
        align-items: center;
    }
    
    nav ul li {
        margin: 10px 0;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .hero-content {
        flex-direction: column;
    }
    
    .hero-text {
        padding-right: 0;
        margin-bottom: 40px;
        text-align: center;
    }
    
    .about-container {
        flex-direction: column;
    }
    
    .about-image {
        min-height: 300px;
    }
    
    .footer-content {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-section {
        width: 100%;
        text-align: center;
        margin-bottom: 40px;
    }
}

/* === Migrated Inline Styles === */
/* Main styles and reset */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            color: #333;
            line-height: 1.6;
        }
        /* Main container to limit width */
        .container {
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            overflow: hidden;
        }
        /* Navigation styles */
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 40px;
            background-color: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            max-width: 1400px; /* Match container width */
        }
        .logo {
            display: flex;
            align-items: center;
        }
        .logo img {
            height: 50px;
            margin-right: 10px;
        }
        .logo-text {
            font-size: 24px;
            font-weight: bold;
            color: #333;
        }
        nav ul {
            display: flex;
            list-style: none;
        }
        nav ul li {
            margin-left: 30px;
        }
        nav ul li a {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            transition: color 0.3s;
        }
        nav ul li a:hover {
            color: #20b2aa;
        }
        .cta-button {
            background-color: #20b2aa;
            color: white;
            padding: 10px 20px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: bold;
            transition: background-color 0.3s;
        }
        .cta-button:hover {
            background-color: #188f89;
        }
        /* Hero section styles */
        header {
            background-size: cover;
            background-position: center;
            height: 500px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 0 20px;
        }
        .hero {
            margin-top: 80px;
            text-align: center;
            padding: 100px 20px;
        }
        .hero-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            max-width: 1200px;
            margin: 0 auto;
            flex-wrap: wrap;
            position: relative;
            z-index: 1;
        }
        .hero-text {
            flex: 1;
            min-width: 300px;
            text-align: left;
            padding-right: 40px;
        }
        .hero-image {
            flex: 1;
            min-width: 300px;
            max-width: 500px;
            position: relative;
        }
        .hero-image img {
            width: 100%;
            position: relative;
            z-index: 2;
        }
        /* Add ground shadow effect */
        .hero-image::after {
            content: "";
            position: absolute;
            bottom: -2px;
            left: 10%;
            width: 85%;
            height: 15px;
            background: rgba(0, 0, 0, 0.25);
            border-radius: 50%;
            filter: blur(4px);
            z-index: 1;
        }
        .hero h1 {
            font-size: 48px;
            margin-bottom: 20px;
            color: #333;
        }
        .hero p {
            font-size: 18px;
            max-width: 600px;
            margin: 0 auto 30px;
            color: #666;
        }
        /* Hero background styles */
        .hero-bg {
            background-color: #e6f7ff;
            background-image: url('/api/placeholder/background.jpg');
            background-size: cover;
            background-position: center;
            background-blend-mode: overlay;
            padding: 80px 0;
            position: relative;
            overflow: hidden;
        }
        .cloud {
            position: absolute;
            background-color: white;
            border-radius: 50%;
            opacity: 0.8;
        }
        .cloud-1 {
            width: 150px;
            height: 150px;
            top: 20px;
            right: 100px;
        }
        .cloud-2 {
            width: 100px;
            height: 100px;
            top: 80px;
            left: 150px;
        }
        /* Services section styles */
        .services {
            padding: 80px 20px;
            background-color: #f9f9f9;
            text-align: center;
        }
        .services h2 {
            font-size: 36px;
            margin-bottom: 50px;
        }
        .service-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }
        .service-card {
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            padding: 30px;
            width: 300px;
            text-align: center;
            transition: transform 0.3s;
        }
        .service-card:hover {
            transform: translateY(-10px);
        }
        .service-card img {
            width: 80px;
            height: 80px;
            margin-bottom: 20px;
        }
        .service-card h3 {
            font-size: 24px;
            margin-bottom: 15px;
            color: #20b2aa;
        }
        /* About section styles */
        .about {
            padding: 80px 20px;
            background-color: #f9f9f9;
            text-align: center;
        }
        .about h2 {
            font-size: 36px;
            margin-bottom: 50px;
            color: #333;
        }
        .about-container {
            display: flex;
            max-width: 1200px;
            margin: 0 auto;
            background-color: white;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            overflow: hidden;
        }
        .about-image {
            flex: 1.2; /* Increased from 1 to 1.2 to make image section wider */
            width: 400px; /* Increased width */
            min-width: 400px; /* Increased min-width */
            position: relative;
            overflow: hidden;
            border-right: 1px solid #eaeaea;
        }
        .image-wrapper img {
			max-width: 100%;
			max-height: 100%;
			object-fit: contain;
			position: relative;
			opacity: 0;
			transition: opacity 1.5s ease-in-out;
		}

		.image-wrapper img.active {
			opacity: 1;
}

		.image-wrapper img {
			max-width: 100%;
			max-height: 100%;
			object-fit: contain;
			position: relative;
			opacity: 0;
			transition: opacity 1.5s ease-in-out;
		}

		.image-wrapper img.active {
			opacity: 1;
		}


        .about-image img {
			width: 100%;
			height: 100%;
			object-fit: contain; /* preserves full image without cropping */
			position: absolute;
			top: 0;
			left: 0;
			opacity: 0;
			transition: opacity 1.5s ease-in-out;
			background-color: #fff; /* optional: helps white images stand out */
		}

        .about-image img.active {
            opacity: 1;
        }
        .about-controls {
            position: absolute;
            bottom: 50px;
            left: 0;
            right: 0;
            display: flex;
            justify-content: center;
            z-index: 20;
        }
        .about-controls button {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            border: none;
            margin: 0 5px;
            background-color: rgba(255, 255, 255, 0.7);
            cursor: pointer;
            transition: background-color 0.3s;
        }
        .about-controls button.active {
            background-color: #20b2aa;
        }
        .image-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background-color: rgba(32, 178, 170, 0.8);
            color: white;
            padding: 12px; /* Increased padding */
            font-size: 18px;
            font-weight: 500;
            z-index: 10;
        }
        .about-text {
            flex: 1.5; /* Adjusted to balance with image section */
            padding: 40px;
            text-align: left;
        }
        .about-text h3 {
            font-size: 28px;
            margin-bottom: 20px;
            color: #20b2aa;
        }
        .about-text p {
            margin-bottom: 20px;
            line-height: 1.8;
            color: #555;
        }
        .about-text .cta-button {
            display: inline-block;
            margin-top: 15px;
        }
        /* Contact section styles */
        .contact {
            background-color: #f9f9f9;
            padding: 80px 20px;
            text-align: center;
        }
        .contact h2 {
            font-size: 36px;
            margin-bottom: 30px;
        }
        .contact-form {
            max-width: 600px;
            margin: 0 auto;
            background-color: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        .form-group {
            margin-bottom: 20px;
            text-align: left;
        }
        .form-group label {
            display: block;
            margin-bottom: 5px;
            font-weight: 500;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 16px;
        }
        .form-group textarea {
            height: 150px;
            resize: vertical;
        }
        .submit-button {
            background-color: #20b2aa;
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 5px;
            font-size: 16px;
            font-weight: bold;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        .submit-button:hover {
            background-color: #188f89;
        }
        /* Footer styles - now without "powered by" styling */
        footer {
            background-color: #333;
            color: white;
            width: 100%;
            padding: 30px 0 15px;
        }
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            padding: 0 20px;
        }
        .footer-section {
            width: 300px;
            margin-bottom: 20px;
            text-align: left;
        }
        .footer-section h3 {
            font-size: 20px;
            margin-bottom: 12px;
            color: #20b2aa;
        }
        .footer-section p {
            margin-bottom: 8px;
        }
        .footer-section ul {
            list-style: none;
        }
        .footer-section ul li {
            margin-bottom: 8px;
        }
        .footer-section ul li a {
            color: #ddd;
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer-section ul li a:hover {
            color: #20b2aa;
        }
        .footer-bottom {
            margin-top: 20px;
            border-top: 1px solid #444;
            padding-top: 15px;
            text-align: center;
            width: 100%;
        }
        /* Form status messages */
        .success-message {
            background-color: #dff0d8;
            color: #3c763d;
            padding: 15px;
            margin-bottom: 20px;
            border-radius: 5px;
            text-align: center;
        }
        .error-message {
            background-color: #f2dede;
            color: #a94442;
            padding: 15px;
            margin-bottom: 20px;
            border-radius: 5px;
            text-align: center;
        }
        /* Responsive styles */
        @media (max-width: 1200px) {
            .container {
                max-width: 100%;
            }
            
            nav {
                max-width: 100%;
            }
        }
        @media (max-width: 768px) {
            nav {
                padding: 20px;
                flex-direction: column;
            }
            
            nav ul {
                margin-top: 20px;
                flex-direction: column;
                align-items: center;
            }
            
            nav ul li {
                margin: 10px 0;
            }
            
            .hero h1 {
                font-size: 32px;
            }
            
            .hero-content {
                flex-direction: column;
            }
            
            .hero-text {
                padding-right: 0;
                margin-bottom: 40px;
                text-align: center;
            }
            
            .about-container {
                flex-direction: column;
            }
            
            .about-image {
                min-width: 100%;
                width: 100%;
            }
            
            .about-image-container {
				height: 100%;
				min-height: 600px;
				max-height: 600px;
				overflow: hidden;
				position: relative;
			}
        
            .about-controls {
                bottom: 45px;
            }
            
            .footer-content {
                flex-direction: column;
                align-items: center;
            }
            
            .footer-section {
                width: 100%;
                text-align: center;
                margin-bottom: 40px;
            }
			.image-wrapper {
				position: absolute;
				top: 0; left: 0;
				width: 100%;
				height: 100%;
				display: flex;
				align-items: center;
				justify-content: center;
			}

			.image-wrapper img {
				max-width: 100%;
				max-height: 100%;
				object-fit: contain;
				position: relative;
				opacity: 0;
				transition: opacity 1.5s ease-in-out;
			}

			.image-wrapper img.active {
				opacity: 1;
			}
        }

/* Hamburger toggle button */
.mobile-menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
}

/* Responsive nav toggle for mobile */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
        position: absolute;
        right: 20px;
        top: 25px;
    }

    nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: white;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        z-index: 999;
        padding: 20px 0;
    }

    body.menu-open nav ul {
        display: flex;
    }

    nav ul li {
        margin: 10px 0;
        text-align: center;
    }

    nav {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}
