/* NETLOOM LTD - Main Stylesheet */
/* Colors: Black, Dark Grey, #4883c2 (blue), #6af7d8 (teal) */

/* Global Styles */
:root {
    --primary-dark: #000000;
    --secondary-dark: #333333;
    --primary-blue: #4883c2;
    --primary-teal: #6af7d8;
    --light-gray: #f4f4f4;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--secondary-dark);
    background-color: var(--light-gray);
}

.container {
    max-width: 1200px;
    margin: 20px auto;
    background-color: var(--white);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

h1, h2, h3 {
    color: var(--primary-dark);
}

a {
    text-decoration: none;
    color: var(--primary-blue);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-teal);
}

.btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-teal));
    color: var(--white);
    padding: 10px 20px;
    border-radius: 5px;
    transition: transform 0.3s ease;
}

.btn:hover {
    transform: translateY(-3px);
    color: var(--white);
}

/* Header Styles */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: var(--primary-dark);
    color: var(--white);
}

.logo {
    display: flex;
    align-items: baseline;
}

.logo h1 {
    color: var(--white);
    font-size: 2rem;
    margin-right: 5px;
}

.logo span {
    color: var(--primary-teal);
    font-weight: bold;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: var(--white);
    font-weight: bold;
    position: relative;
}

nav ul li a:hover {
    color: var(--primary-teal);
}

nav ul li a.active {
    color: var(--primary-teal);
}

nav ul li a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-teal);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    text-align: center;
    padding: 100px 20px;
    color: var(--white);
}

.hero-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--white);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* Services Section */
.services-highlight {
    padding: 60px 20px;
    text-align: center;
}

.services-highlight h2 {
    margin-bottom: 40px;
    font-size: 2rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.service-card {
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card i {
    font-size: 3rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.service-card h3 {
    margin-bottom: 15px;
}

/* Why Us Section */
.why-us {
    background-color: var(--secondary-dark);
    color: var(--white);
    padding: 60px 20px;
    text-align: center;
}

.why-us h2 {
    color: var(--white);
    margin-bottom: 40px;
    font-size: 2rem;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature i {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-teal);
}

.feature h3 {
    color: var(--white);
    margin-bottom: 15px;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-teal));
    color: var(--white);
    padding: 60px 20px;
    text-align: center;
}

.cta h2 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 2rem;
}

.cta p {
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.cta .btn {
    background: var(--white);
    color: var(--primary-blue);
}

.cta .btn:hover {
    background: var(--light-gray);
}

/* Footer */
footer {
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 40px 20px 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-info h3, .footer-links h3 {
    color: var(--primary-teal);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.footer-info p {
    margin-bottom: 10px;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: var(--white);
}

.footer-links ul li a:hover {
    color: var(--primary-teal);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* About Page */
.about-section {
    padding: 60px 20px;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-text h2 {
    margin-bottom: 20px;
    font-size: 2rem;
}

.about-text p {
    margin-bottom: 15px;
}

.about-image img {
    width: 100%;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.team-section {
    padding: 60px 20px;
    background-color: var(--light-gray);
}

.team-section h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.team-member {
    background-color: var(--white);
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.team-member img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.team-info {
    padding: 20px;
}

.team-info h3 {
    margin-bottom: 5px;
}

.team-info p {
    color: var(--primary-blue);
    margin-bottom: 15px;
}

/* Services Page */
.services-section {
    padding: 60px 20px;
}

.service-item {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 30px;
    margin-bottom: 50px;
    align-items: center;
}

.service-item:nth-child(even) {
    grid-template-columns: 2fr 1fr;
}

.service-item:nth-child(even) .service-image {
    order: 2;
}

.service-item:nth-child(even) .service-details {
    order: 1;
}

.service-image img {
    width: 100%;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-details h3 {
    margin-bottom: 15px;
    font-size: 1.8rem;
    color: var(--primary-blue);
}

.service-details p {
    margin-bottom: 20px;
}

/* Contact Page */
.contact-section {
    padding: 60px 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info h2 {
    margin-bottom: 30px;
    font-size: 2rem;
}

.contact-details {
    margin-bottom: 30px;
}

.contact-details p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.contact-details p i {
    margin-right: 10px;
    color: var(--primary-blue);
}

.contact-form h2 {
    margin-bottom: 30px;
    font-size: 2rem;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.form-group textarea {
    height: 150px;
}

/* Thank You Page */
.thank-you-section {
    padding: 80px 20px;
    text-align: center;
}

.thank-you-content {
    max-width: 700px;
    margin: 0 auto;
    padding: 40px;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.thank-you-content i {
    font-size: 5rem;
    color: var(--primary-teal);
    margin-bottom: 20px;
}

.thank-you-content h2 {
    margin-bottom: 20px;
    font-size: 2rem;
}

.thank-you-content p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.thank-you-actions {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.btn-secondary:hover {
    background: var(--light-gray);
    color: var(--primary-blue);
}

/* Values Section */
.values {
    padding: 60px 20px;
    background-color: var(--light-gray);
    text-align: center;
}

.values h2 {
    margin-bottom: 40px;
    font-size: 2rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-item {
    background-color: var(--white);
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.value-item:hover {
    transform: translateY(-10px);
}

.value-item i {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--primary-blue);
}

.value-item h3 {
    margin-bottom: 15px;
}

/* Process Section */
.process {
    padding: 60px 20px;
    text-align: center;
    background-color: var(--light-gray);
}

.process h2 {
    margin-bottom: 40px;
    font-size: 2rem;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.process-step {
    background-color: var(--white);
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
}

.step-number {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-teal));
    color: var(--white);
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 50%;
    margin: 0 auto 20px;
}

.process-step h3 {
    margin-bottom: 15px;
}

/* FAQ Section */
.faq {
    padding: 60px 20px;
}

.faq h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
}

.faq-items {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 30px;
    padding: 20px;
    background-color: var(--light-gray);
    border-radius: 5px;
}

.faq-item h3 {
    margin-bottom: 10px;
    color: var(--primary-blue);
}

/* Services Header */
.services-header {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/services-bg.jpg');
    background-size: cover;
    background-position: center;
    text-align: center;
    padding: 80px 20px;
    color: var(--white);
}

.services-header h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--white);
}

.services-header p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Animations */
.animate {
    animation: fadeUp 0.6s ease forwards;
}

@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mission Vision Section */
.mission-vision {
    padding: 60px 20px;
    background-color: var(--light-gray);
}

/* Responsive Styles */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        text-align: center;
    }
    
    nav ul {
        margin-top: 20px;
    }
    
    .about-content,
    .service-item,
    .service-item:nth-child(even),
    .contact-section {
        grid-template-columns: 1fr;
    }
    
    .service-item:nth-child(even) .service-image,
    .service-item:nth-child(even) .service-details {
        order: unset;
    }
    
    .thank-you-actions {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    nav ul {
        flex-direction: column;
        align-items: center;
    }
    
    nav ul li {
        margin: 5px 0;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
} 