/* =========================
   Reset & Base Styles
========================= */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body, html {
    font-family: 'Inter', sans-serif;
    color: #1C1C1C;
    background-color: #ffffff;
    line-height: 1.6;
}

/* =========================
   Containers
========================= */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* =========================
   Navbar
========================= */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-color: #ffffff;
    border-bottom: 1px solid #eaeaea;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* Navbar logo */
.nav-logo {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 22px;
    color: #FF6600;
    text-decoration: none;
}

/* Navbar links container */
.nav-links {
    display: flex;
    flex-wrap: wrap; /* allow wrapping on small screens */
    justify-content: flex-end;
    background: #f7f7f7; 
    padding: 5px 10px;
    border-radius: 10px;
    gap: 10px;
    max-width: 100%;
    overflow: hidden; /* prevent overflow on small screens */
}

/* Navbar links as buttons */
.nav-links a {
    margin-left: 10px;
    padding: 8px 18px;
    text-decoration: none;
    color: #1C1C1C;
    font-weight: 500;
    border-radius: 6px;
    display: inline-block;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

/* Hover effect */
.nav-links a:hover {
    color: #FF6600;
    border: 1px solid #FF6600;
    background-color: rgba(255, 102, 0, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* Active page effect */
.nav-links a.active {
    color: #ffffff !important;
    background-color: #FF6600 !important;
    font-weight: 600;
    border: 1px solid #FF6600 !important;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

/* Fade-in for sections or items */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}


/* =========================
   Hero Section
========================= */
.hero {
    text-align: center;
    padding: 100px 20px;
    background-color: #ffffff;
}
.hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}
.hero p {
    font-size: 18px;
    margin-bottom: 30px;
}
.btn {
    display: inline-block;
    background-color: #FF6600;
    color: white;
    padding: 12px 28px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
}
.btn:hover {
    background-color: #e65c00;
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* =========================
   Projects Section
========================= */
.projects {
    background-color: #f9f9f9;
    padding: 60px 20px;
}
.projects h2 {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    margin-bottom: 40px;
}
.project-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}
.card {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    width: 280px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}
.card img {
    width: 100%;
    height: 120px;
    object-fit: contain;
    margin-bottom: 15px;
}
.card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    margin-bottom: 10px;
}
.card p {
    font-size: 14px;
    margin-bottom: 10px;
}
.card ul {
    padding-left: 20px;
    margin: 0;
    font-size: 14px;
}

/* =========================
   Approach & Shared Utility
   ========================= */

/* Main Section Containers */
.approach, 
.approach-section {
    padding: 80px 20px;
    background-color: #ffffff;
    text-align: center;
}

/* Typography Authority */
.brand-text {
    color: #000000 !important; /* Professional Black Authority */
}

.subtitle {
    color: #64748b; /* Slate Gray for low eye-stress */
    font-size: 1.1rem;
    margin-bottom: 50px;
}

/* Methodology Grid Layout */
.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 40px auto;
}

/* Professional Cards with 2pt Shadow Logic */
.approach-card {
    background: #ffffff;
    padding: 35px;
    border-radius: 12px;
    text-align: left;
    /* Subtle 2-point shadow for professional depth and zero eye-stress */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08); 
    border-top: 4px solid #ff6a00; /* Signature Logo Orange */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.approach-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.approach-card h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.approach-card p {
    color: #334155;
    line-height: 1.6;
}

/* Partnership Portal / Big Picture Section */
.partnership-portal {
    margin-top: 80px;
    padding: 60px 30px;
    background: #f8fafc;
    border-radius: 15px;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.approach-footer {
    margin-top: 50px;
}

/* --- THE BUTTON: Brand Consistent --- */
.cta-button {
    display: inline-block;
    margin-top: 25px;
    padding: 15px 35px;
    background-color: #ff6a00 !important; /* Forced Logo Orange */
    color: #ffffff !important; /* Forced White for legibility */
    text-decoration: none;
    border-radius: 8px; 
    font-weight: 700;
    text-transform: capitalize; 
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    background-color: #e65f00 !important;
    transform: scale(1.02);
}
/* =========================
   Founder Section
========================= */
.founder {
    background-color: #f5f5f5;
    padding: 60px 20px;
    text-align: center;
}

/* =========================
   Contact Section Modern Style
========================= */
.contact-section {
    padding: 60px 20px;
    text-align: center;
    background: #fdf7f0; /* subtle warm tint */
    border-radius: 15px;
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
}

.contact-info div {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    color: #333;
}

.contact-info div i {
    font-size: 1.3rem;
    color: #FF6600;
}

.contact-info a {
    color: #FF6600;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    max-width: 500px;
    margin: 0 auto;
    gap: 20px;
    padding: 20px;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

/* Form Group */
.contact-form .form-group {
    display: flex;
    flex-direction: column;
}

/* Labels */
.contact-form label {
    font-weight: 600;
    margin-bottom: 5px;
}

/* Inputs and Textarea */
.contact-form input,
.contact-form textarea {
    padding: 15px 12px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 16px;
    width: 100%;
    box-sizing: border-box;
    transition: all 0.3s ease;
    background-color: #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

/* Focus state */
.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #FF6600;
    box-shadow: 0 4px 12px rgba(255,102,0,0.2);
    outline: none;
}

/* Button */
.contact-form .btn {
    background: linear-gradient(135deg, #FF6600, #e65c00);
    color: #fff;
    font-weight: 600;
    border-radius: 10px;
    padding: 15px;
    font-size: 16px;
    box-shadow: 0 4px 12px rgba(255,102,0,0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-form .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255,102,0,0.35);
}

/* Fade-in Animation */
.contact-section.fade-in,
.contact-form.fade-in,
.hero.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.contact-section.fade-in.visible,
.contact-form.fade-in.visible,
.hero.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =========================
   Contact Buttons
========================= */
.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}
.email-btn, .whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 10px;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease;
}
.email-btn {
    background: linear-gradient(135deg, #FF6600, #e65c00);
}
.email-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255,102,0,0.35);
}
.whatsapp-btn {
    background: #25D366;
}
.whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(37,211,102,0.35);
}

/* Map + Address Side by Side */
.map-address-container {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap; /* stack on small screens */
    justify-content: center;
    align-items: flex-start;
}

.contact-address {
    flex: 1 1 300px; /* take available space but min 300px */
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
    background-color: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.contact-map {
    flex: 2 1 400px; /* take more space */
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.contact-map iframe {
    width: 100%;
    height: 400px;
    border: 0;
}

/* =========================
   Responsive Navbar for Mobile
========================= */
@media (max-width: 768px) {
    .nav-links {
        flex-wrap: wrap; /* allow links to wrap to next line */
        justify-content: center; /* center links */
        gap: 10px; /* spacing between buttons */
    }

    .nav-links a {
        margin-left: 0; /* remove left margin for better stacking */
        padding: 8px 16px; /* slightly smaller padding */
        font-size: 14px; /* adjust font size */
    }

    .navbar {
        padding: 10px 15px; /* reduce navbar padding */
    }
}

/* =================================
   Ezura About Page Specific Styles
==================================== */

/* 1. Branding & Typography */
.brand-text {
    color: #000000 !important; /* Bold Black for Authority */
    font-weight: 700;
}

.about-section {
    padding: 80px 20px;
    background-color: #ffffff;
    text-align: center;
}

.subtitle {
    color: #64748b; /* Slate Gray for muted professional feel */
    font-size: 1.1rem;
    margin-bottom: 50px;
}

/* 2. Content Layout */
.about-content {
    max-width: 850px;
    margin: 0 auto;
    text-align: left;
}

/* 3. The Vision Cards (2-Point Shadow) */
.about-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    /* Subtle 2-point shadow to reduce eye strain */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08); 
    border-left: 5px solid #ff6a00; /* Signature Orange Accent */
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

.about-card:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.about-card h3 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.about-card p {
    color: #334155;
    line-height: 1.8;
}

/* 4. The Action Button (Vibrant Orange) */
.cta-button {
    display: inline-block;
    margin-top: 40px;
    padding: 18px 40px;
    background-color: #ff6a00 !important; /* Locked Brand Orange */
    color: #ffffff !important; /* Forced White Text */
    text-decoration: none;
    border-radius: 8px; 
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    filter: brightness(1.1);
    transform: scale(1.02);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}

/* 5. Animation Support */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* 6. Responsive Tuning */
@media (max-width: 768px) {
    .about-card {
        padding: 25px;
    }
    h2 {
        font-size: 1.8rem;
    }
}

