/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Image optimization styles */
img {
    max-width: 100%;
    height: auto;
    display: block;
    /* Prevent layout shift during loading */
    aspect-ratio: attr(width) / attr(height);
}

/* Optimize image loading */
img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

img[loading="lazy"].loaded {
    opacity: 1;
}

/* Placeholder for images while loading */
.image-placeholder {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
    border-radius: 8px;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@keyframes marquee-animation {
    from { transform: translateX(-50%); }
    to { transform: translateX(0); }
}

/* Optimize critical images */
.logo-img,
.founder-photo,
.service-img,
.step-img {
    will-change: transform;
    backface-visibility: hidden;
    transform: translateZ(0);
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    background: #fff;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 0;
    gap: 60px;
}

.logo {
    height: 60px;
    max-width: 300px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.logo-img {
    height: 100%;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    display: block;
}

.logo h1 {
    font-size: 18px;
    font-weight: bold;
    color: #000;
    letter-spacing: 2px;
}

.logo .script {
    font-style: italic;
    font-weight: normal;
    font-size: 16px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: #000;
}

.contact-btn {
    background: #000;
    color: #fff;
    padding: 10px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 1px;
    transition: background 0.3s;
}

.contact-btn:hover,
.contact-btn.active {
    background: #333;
}

/* Main Content Spacing */
main {
    margin-top: 60px;
}

/* Hero Section */
.hero {
    padding: 60px 0;
    text-align: center;
    background: #f8f9fa;
}

.hero h2 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 30px;
    color: #000;
}

.hero p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Meet the Founder Section - REWRITTEN FOR CORRECT LAYOUT V3 */
.meet-founder {
    background-color: #f8f5f2;
    padding: 80px 20px;
}

.founder-title {
    font-family: "Times New Roman", Times, serif;
    font-size: 3rem;
    font-weight: 400;
    text-align: center;
    letter-spacing: 2px;
    margin-bottom: 50px;
    color: #333;
}

.founder-bio-layout {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px; /* Space between rows */
}

.bio-row {
    display: flex;
    align-items: center;
    gap: 40px; /* Space between text and image */
}

.bio-image-container {
    flex: 1;
    max-width: 300px; /* Default max-width for image column */
}

.bio-text-container {
    flex: 2; /* Text takes up more space by default */
}

/* Adjust layout for the second row to make the image larger */
.bio-row:nth-child(2) .bio-text-container {
    flex: 1.8; /* Give text slightly less space */
}

.bio-row:nth-child(2) .bio-image-container {
    flex: 1.2; /* Give image slightly more space */
    max-width: 350px; /* Increase the max-width cap for this image */
}

.bio-text-container.full-width {
    flex: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.founder-photo {
    width: 100%;
    border-radius: 20px;
    height: auto;
    display: block;
}

.founder-bio-layout p {
    font-family: "Times New Roman", Times, serif;
    font-size: 1.15rem;
    line-height: 1.8;
    color: #3a3a3a;
    margin: 0;
}
/* End of Rewritten Section */


/* Image Styles */
.service-img,
.step-img,
.content-img,
.consulting-img,
.portfolio-img,
.about-hero-img,
.services-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    min-height: 200px;
}

.portfolio-main-img {
    width: 100%;
    height: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 8px;
}

.newsletter-cover,
.newsletter-main-cover {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
    max-height: 400px;
}

.portfolio-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-photo:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.social-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.social-img:hover {
    transform: scale(1.1);
}

.footer-logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

/* Placeholder Images */
.placeholder-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #87CEEB 0%, #98D8C8 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    min-height: 200px;
}

.placeholder-image.laptop {
    background: linear-gradient(135deg, #2C3E50 0%, #34495E 100%);
    border-radius: 12px;
    position: relative;
}

.placeholder-image.laptop::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 10px;
    background: #555;
    border-radius: 0 0 10px 10px;
}

.placeholder-image.landscape {
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, #87CEEB 0%, #98D8C8 100%);
}

/* Services Overview */
.services-overview {
    padding: 80px 0;
    background: #f8f9fa;
}

.services-overview h2 {
    font-size: 36px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 10px;
    color: #000;
}

.services-overview > .container > p {
    text-align: center;
    font-size: 16px;
    margin-bottom: 60px;
    color: #666;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.service-card h3 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 30px;
    color: #000;
    text-align: center;
}

.service-image {
    margin-bottom: 30px;
    height: 250px;
    overflow: hidden;
    border-radius: 8px;
}

.service-types {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-type h4 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #000;
    text-align: center;
}

/* Dropdown Styles */
.dropdown {
    position: relative;
    margin-bottom: 10px;
}

.dropdown-btn {
    width: 100%;
    padding: 12px 20px;
    background: #fff;
    border: 2px solid #000;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
}

.dropdown-btn:hover {
    background: #f8f9fa;
}

.dropdown-btn.active {
    background: #000;
    color: #fff;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 2px solid #000;
    border-top: none;
    border-radius: 0 0 15px 15px;
    padding: 20px;
    z-index: 100;
}

.dropdown-content.show {
    display: block;
}

.dropdown-content p {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
}

.arrow {
    transition: transform 0.3s;
}

.dropdown-btn.active .arrow {
    transform: rotate(180deg);
}

/* Starting Price */
.starting-price {
    text-align: center;
    font-weight: bold;
    font-size: 16px;
    color: #000;
    margin-top: 15px;
}

/* How We Work */
.how-we-work {
    padding: 80px 0;
    background: #fff;
}

.how-we-work h2 {
    font-size: 36px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 60px;
    color: #000;
}

.work-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.carousel-container {
    overflow: hidden;
    border-radius: 12px;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
    width: 500%;
}

.step {
    width: 20%;
    padding: 40px;
    text-align: center;
    background: #f8f9fa;
    border-radius: 12px;
    margin: 0 10px;
    opacity: 0.7;
    transform: scale(0.95);
    transition: all 0.3s ease;
}

.step.active {
    opacity: 1;
    transform: scale(1);
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.step-image {
    margin-bottom: 30px;
    height: 200px;
    overflow: hidden;
    border-radius: 8px;
}

.step h3 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #000;
}

.step p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

.carousel-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    padding: 0 20px;
}

.carousel-btn {
    background: #000;
    color: #fff;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: #333;
    transform: scale(1.1);
}

.carousel-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: scale(1);
}

.step-indicators {
    display: flex;
    gap: 10px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #000;
    transform: scale(1.2);
}

.indicator:hover {
    background: #666;
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: #f8f9fa;
    text-align: center;
}

.cta h2 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 30px;
    color: #000;
}

.cta-btn {
    background: #000;
    color: #fff;
    padding: 15px 40px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    transition: background 0.3s;
    display: inline-block;
}

.cta-btn:hover {
    background: #333;
}

/* Portfolio Teaser */
.portfolio-teaser {
    padding: 60px 0;
    background: #fff;
    text-align: center;
    border-bottom: 2px solid #000;
}

.portfolio-teaser h2 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 30px;
    color: #000;
}

.portfolio-btn {
    background: transparent;
    color: #000;
    padding: 12px 30px;
    border: 2px solid #000;
    border-radius: 25px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.3s;
    display: inline-block;
}

.portfolio-btn:hover {
    background: #000;
    color: #fff;
}

/* Newsletter Section */
.newsletter {
    padding: 4em 0;
    background-color: #f9f9f9;
}

.newsletter .container {
    text-align: center;
}

.newsletter h2 {
    font-family: 'Times New Roman', Times, serif;
    font-size: 2.5rem;
    font-weight: bold;
    letter-spacing: 1px;
    margin-bottom: 0.5em;
}

.newsletter p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2em;
    line-height: 1.5;
}

.newsletter-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3em;
    flex-wrap: wrap;
    margin-bottom: 2em;
}

.newsletter-image {
    flex-shrink: 0;
}

.desktop-monitor {
    position: relative;
    width: 450px;
    height: 280px;
    margin: 0 auto;
}

.monitor-screen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 90%;
    background: #222;
    border-radius: 12px;
    border: 10px solid #111;
    box-sizing: border-box;
    overflow: hidden;
    z-index: 1;
}

.newsletter-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.monitor-stand {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 30px;
    background: #ccc;
    z-index: 0;
}

.monitor-base {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 180px;
    height: 10px;
    background: #bbb;
    border-radius: 4px;
    z-index: 2;
}

.newsletter-form {
    flex: 1;
    max-width: 400px;
    min-width: 300px;
}

.newsletter-form form {
    display: flex;
    flex-direction: column;
    gap: 1em;
}

.newsletter-form input,
.newsletter-form button {
    width: 100%;
    padding: 0.85em;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 1rem;
}

.newsletter-form button {
    background: #222;
    color: #fff;
    border: none;
    font-weight: bold;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.newsletter-form button:hover {
    background-color: #555;
}

.newsletter-description {
    max-width: 800px;
    margin: 2em auto 0;
    font-size: 1rem;
    color: #555;
}

/* Footer */
footer {
    background-color: #222;
    padding: 60px 0 30px;
    border-top: 2px solid #000;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #000;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: #000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    font-size: 20px;
    transition: background 0.3s;
}

.social-icon:hover {
    background: #333;
}

.social-images {
    display: flex;
    gap: 10px;
}

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

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

.footer-section ul li a {
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.footer-logo {
    height: 80px;
    max-width: 350px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.footer-logo-img {
    height: 100%;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    display: block;
}

.footer-bottom p {
    font-size: 12px;
    color: #666;
}

.footer-bottom p a {
    color: #000;
    text-decoration: none;
}

/* Page Specific Styles */

/* About Page */
.about-hero {
    position: relative;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    background-image: url('images/about_us_cover.JPG');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.about-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Dark overlay for readability */
    z-index: 1;
}

.about-hero .about-content {
    position: relative;
    z-index: 2;
}

.about-hero h1 {
    font-family: 'Times New Roman', Times, serif;
    font-size: 5rem;
    font-weight: bold;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.founder-content {
    max-width: 900px;
    margin: 0 auto;
}

.founder-content h2 {
    font-family: 'Times New Roman', Times, serif;
    font-size: 3rem;
    text-align: center;
    letter-spacing: 0.1em;
    margin-bottom: 1.5em;
    font-weight: normal;
    color: #333;
}

.founder-content p {
    font-family: 'Times New Roman', Times, serif;
    font-size: 1.1rem;
    line-height: 1.9;
    color: #444;
    margin-bottom: 1.5em;
}

.founder-content p.has-photo {
    overflow: hidden; /* Clearfix for floated children */
}

.founder-photo {
    border-radius: 20px;
    width: 260px;
    height: auto;
}

.founder-photo-left {
    float: left;
    margin: 5px 30px 10px 0;
}

.founder-photo-right {
    float: right;
    margin: 5px 0 10px 30px;
}

.about-description {
    padding: 4em 2em;
    text-align: center;
    background-color: #fff;
}

.about-description h2 {
    font-family: 'Times New Roman', Times, serif;
    font-size: 2rem;
    margin-bottom: 1em;
}

.about-description p {
    max-width: 800px;
    margin: 0 auto 1.5em;
    line-height: 1.8;
    color: #666;
}

.about-description strong {
    color: #333;
    font-weight: bold;
}


/* Newsletter Page */
.newsletter-page {
    padding: 80px 0;
    background: #f8f9fa;
    text-align: center;
}

.newsletter-page h1 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #000;
}

.newsletter-page > .container > p {
    font-size: 16px;
    margin-bottom: 60px;
    color: #666;
}

.newsletter-hero {
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
}

.newsletter-visual {
    max-width: 600px;
    width: 100%;
}

.newsletter-details {
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-details p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #555;
}

.newsletter-signup {
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-signup form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.newsletter-signup input {
    padding: 15px 20px;
    border: 2px solid #000;
    border-radius: 0;
    font-size: 16px;
    background: #fff;
}

.newsletter-signup button {
    padding: 15px 30px;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 0;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background 0.3s;
}

.newsletter-signup button:hover {
    background: #333;
}

/* Services Page */
.services-hero {
    padding: 80px 0;
    background: #f8f9fa;
}

.services-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.services-image {
    height: 400px;
    overflow: hidden;
    border-radius: 8px;
}

.services-text h1 {
    font-size: 48px;
    font-weight: bold;
    color: #000;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.services-text p {
    font-size: 16px;
    color: #666;
}

.content-creation-section,
.consulting-section {
    padding: 80px 0;
    background: #fff;
}

.content-creation-section h2,
.consulting-section h2 {
    font-size: 36px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 60px;
    color: #000;
}

.content-creation-grid,
.consulting-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.content-type,
.consulting-type {
    text-align: center;
}

.content-type h3,
.consulting-type h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #000;
}

.content-image,
.consulting-image {
    margin-bottom: 20px;
    height: 200px;
    overflow: hidden;
    border-radius: 8px;
}

.portfolio-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.portfolio-section h2 {
    font-size: 36px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 60px;
    color: #000;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.portfolio-category {
    text-align: center;
}

.portfolio-category h3 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 30px;
    color: #000;
}

.portfolio-image {
    margin-bottom: 30px;
    height: 400px;
    max-height: 400px;
    overflow: hidden;
    border-radius: 8px;
}

.portfolio-cta {
    text-align: center;
}

.portfolio-cta h3 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 30px;
    color: #000;
}

.growth-package {
    padding: 80px 0;
    background: #f8f9fa;
}

.package-box {
    max-width: 600px;
    margin: 0 auto;
    padding: 40px;
    background: #fff;
    border: 2px solid #000;
    text-align: center;
    border-radius: 8px;
}

.package-box h2 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #000;
}

.package-box p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #555;
}

.package-box h3 {
    font-size: 18px;
    font-weight: bold;
    margin: 20px 0 10px;
    color: #000;
}

.package-price {
    font-size: 20px;
    font-weight: bold;
    color: #000;
    margin-top: 20px;
}

/* Contact Page */
.contact-page {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact-page h1 {
    font-size: 48px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
    color: #000;
}

.contact-page > .container > p {
    text-align: center;
    font-size: 16px;
    margin-bottom: 60px;
    color: #666;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-form-section {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: bold;
    margin-bottom: 5px;
    color: #000;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 15px 20px;
    border: 2px solid #000;
    border-radius: 0;
    font-size: 16px;
    background: #fff;
    font-family: inherit;
}

.form-group textarea {
    resize: vertical;
}

.submit-btn {
    padding: 15px 30px;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 0;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-btn:hover {
    background: #333;
}

/* Portfolio Page */
.portfolio-header {
    padding: 80px 0 40px;
    background: #f8f9fa;
}

.portfolio-header h1 {
    font-size: 48px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
    color: #000;
}

.portfolio-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 16px;
    color: #666;
}

.portfolio-showcase {
    padding: 60px 0;
    background: #fff;
}

.portfolio-showcase .portfolio-category {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 40px auto;
}

.portfolio-showcase .portfolio-image {
    height: 300px;
    max-height: 300px;
    margin-bottom: 30px;
    overflow: hidden;
    border-radius: 8px;
}

.client-success {
    padding: 60px 0;
    background: #f8f9fa;
    text-align: center;
}

.client-success h2 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 30px;
    color: #000;
}

/* Photography Page */
.photography-header {
    padding: 80px 0;
    background: #f8f9fa;
    text-align: center;
}

.photography-header h1 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 30px;
    color: #000;
}

.photography-header h2 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 30px;
    color: #000;
}

.photography-description {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.photography-description p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

.photography-examples {
    padding: 80px 0;
    background: #fff;
}

.photography-section {
    margin-bottom: 80px;
}

.photography-section h2 {
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 40px;
    color: #000;
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.photo-item {
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 8px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .navbar {
        flex-direction: column;
        gap: 15px;
        padding: 10px 0;
    }
    
    .nav-links {
        gap: 20px;
    }
    
    .founder-content,
    .services-grid,
    .newsletter-content,
    .footer-content,
    .about-content,
    .services-content,
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .content-creation-grid,
    .consulting-grid {
        grid-template-columns: 1fr;
    }
    
    .photo-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero h2,
    .about-text h1,
    .newsletter-page h1,
    .services-text h1,
    .contact-page h1,
    .portfolio-header h1 {
        font-size: 28px;
    }
    
    .founder-text h2 {
        font-size: 32px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .logo {
        height: 50px;
        max-width: 250px;
    }
    
    .footer-logo {
        height: 70px;
        max-width: 300px;
    }
    
    /* Carousel responsive styles */
    .work-carousel {
        max-width: 90%;
    }
    
    .step {
        padding: 30px 20px;
    }
    
    .step h3 {
        font-size: 18px;
    }
    
    .step p {
        font-size: 14px;
    }
    
    .step-image {
        height: 150px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    /* Portfolio responsive styles */
    .portfolio-showcase .portfolio-image,
    .portfolio-image {
        height: 250px;
        max-height: 250px;
    }
    
    .portfolio-main-img {
        max-height: 300px;
    }
}

@media (max-width: 480px) {
    .hero h2,
    .about-text h1,
    .newsletter-page h1,
    .services-text h1,
    .contact-page h1,
    .portfolio-header h1 {
        font-size: 24px;
    }
    
    .founder-text h2 {
        font-size: 28px;
    }
    
    .nav-links {
        flex-direction: column;
        gap: 15px;
    }
    
    .photo-grid {
        grid-template-columns: 1fr;
    }
    
    .logo {
        height: 45px;
        max-width: 200px;
    }
    
    .footer-logo {
        height: 60px;
        max-width: 250px;
    }
    
    /* Mobile carousel styles */
    .step {
        padding: 20px 15px;
    }
    
    .step h3 {
        font-size: 16px;
    }
    
    .step p {
        font-size: 13px;
    }
    
    .step-image {
        height: 120px;
    }
    
    .carousel-nav {
        padding: 0 10px;
    }
    
    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }
    
    /* Portfolio mobile styles */
    .portfolio-showcase .portfolio-image,
    .portfolio-image {
        height: 200px;
        max-height: 200px;
    }
    
    .portfolio-main-img {
        max-height: 250px;
    }
} 

/* Page Loader Styles */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #000;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Loading text */
.loading-text {
    position: absolute;
    bottom: 40%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 16px;
    color: #333;
    font-weight: 500;
    letter-spacing: 1px;
}

/* Progress bar */
.loading-progress {
    position: absolute;
    bottom: 35%;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 4px;
    background: #f0f0f0;
    border-radius: 2px;
    overflow: hidden;
}

.loading-progress-bar {
    height: 100%;
    background: #000;
    width: 0%;
    transition: width 0.3s ease;
    border-radius: 2px;
}

/* Hide content while loading */
body.loading {
    overflow: hidden;
}

body.loading main {
    opacity: 0;
    transition: opacity 0.5s ease;
}

body.loaded main {
    opacity: 1;
} 

/* New Hero Section Styles */
.hero-new {
    padding: 120px 0 80px;
    background: #fafafa;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    text-align: center;
}

.hero-title {
    margin-bottom: 60px;
    line-height: 1;
}

.title-main {
    display: block;
    font-size: 4.5rem;
    font-weight: 900;
    color: #000;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.title-script {
    display: block;
    font-size: 2.5rem;
    font-family: 'Georgia', serif;
    font-style: italic;
    color: #000;
    margin-left: 20px;
}

.hero-gallery {
    position: relative;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    overflow: hidden;
    display: flex;
    align-items: center;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.filmstrip {
    display: flex;
    flex-shrink: 0;
    width: calc(2800px * 2);
    animation: marquee 40s linear infinite;
}

.image-frame {
    width: 400px;
    height: 250px;
    flex-shrink: 0;
    margin: 0 20px;
    border-radius: 12px;
    overflow: hidden;
}

.image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 1200px) {
    .image-frame {
        width: 300px;
        height: 188px;
    }
}

@media (max-width: 768px) {
    .image-frame {
        width: 250px;
        height: 156px;
    }
}

@media (max-width: 480px) {
    .image-frame {
        width: 200px;
        height: 125px;
    }
}
.hero-tagline {
    margin-top: 40px;
}

.hero-tagline p {
    font-size: 1.2rem;
    color: #666;
    font-family: 'Georgia', serif;
    font-style: italic;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Responsive adjustments for filmstrip */
@media (max-width: 1200px) {
    .title-main {
        font-size: 3.5rem;
    }
    .title-script {
        font-size: 2rem;
    }
}
@media (max-width: 768px) {
    .hero-new {
        padding: 100px 0 60px;
    }
    .title-main {
        font-size: 2.5rem;
    }
    .title-script {
        font-size: 1.5rem;
        margin-left: 10px;
    }
    .filmstrip {
        flex-wrap: wrap;
        gap: 6px;
    }
    .hero-tagline p {
        font-size: 1rem;
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .title-main {
        font-size: 2rem;
    }
    .title-script {
        font-size: 1.2rem;
    }
} 

@keyframes marquee-animation {
    from { transform: translateX(-50%); }
    to { transform: translateX(0); }
}

.services-overview-new {
    padding: 4em 0;
    background-color: #f9f9f9;
    position: relative;
    overflow: hidden; /* Important for marquee */
}

.services-marquee {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #000;
    color: #fff;
    padding: 0.5em 0;
    white-space: nowrap;
    z-index: 1;
}

.services-marquee .marquee-inner {
    display: flex;
    animation: marquee-ltr 60s linear infinite;
}

.services-marquee .marquee-text {
    display: inline-block;
    padding-right: 2em; /* spacing between repeating text */
    font-size: 1.2rem;
    font-weight: bold;
    letter-spacing: 2px;
}

@keyframes marquee-ltr {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

.services-overview-new .container {
    position: relative;
    z-index: 2;
    background-color: #f9f9f9;
    padding-top: 5em; /* Make space for marquee */
}

.services-overview-new h2 {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 600;
    margin: 60px 0 40px;
    letter-spacing: 2px;
    font-family: 'Georgia', serif;
}

.services-content-new {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: flex-start;
}

.service-category h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 25px;
    letter-spacing: 2px;
    font-family: 'Georgia', serif;
}

.service-dropdown {
    border-bottom: 2px solid #000;
}

.service-dropdown-btn {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 18px 0;
    font-size: 1rem;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: 'Arial', sans-serif;
    color: #000;
    transition: all 0.3s ease;
}

.service-dropdown-btn .arrow {
    transition: transform 0.3s ease;
}

.service-dropdown-btn.active .arrow {
    transform: rotate(180deg);
}

.service-dropdown-content {
    padding: 0 0 18px;
    font-size: 0.9rem;
    line-height: 1.7;
    display: none;
    color: #333;
}

.see-all-btn {
    display: inline-block;
    margin-top: 2em;
    padding: 0.75em 1.5em;
    background-color: #222;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.see-all-btn:hover {
    background-color: #555;
}

.services-images {
    flex-basis: 50%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 500px;
}

.phone-mockup {
    position: absolute;
    width: 250px;
    height: 500px;
    background-color: #111;
    border-radius: 40px;
    border: 4px solid #333;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
    box-sizing: border-box;
    overflow: hidden; /* To keep the notch inside */
}

.phone-mockup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 130px; /* Width of the notch */
    height: 25px; /* Height of the notch */
    background-color: #111;
    border-radius: 0 0 15px 15px;
    z-index: 2;
}

.phone-mockup img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 25px; /* Inner screen radius */
}

.phone-1 {
    transform: rotate(-10deg) translateX(-140px);
    z-index: 1;
}

.phone-2 {
    transform: rotate(5deg) translateX(140px);
    z-index: 2;
}

/* Testimonials Section */
.testimonials {
    padding: 4em 0;
    background-color: #ffffff;
    text-align: center;
}

.testimonials .section-title {
    font-family: 'Times New Roman', Times, serif;
    font-size: 2.5rem;
    font-weight: normal;
    letter-spacing: 2px;
    margin-bottom: 2em;
    color: #333;
}

.testimonial-slider-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-slider {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 2em;
    transition: transform 0.5s ease-in-out;
}

.testimonial-card {
    background-color: #e3e0d8;
    padding: 2.5em;
    border-radius: 10px;
    width: 320px;
    box-sizing: border-box;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 450px;
}

.testimonial-stars {
    color: #fff;
    font-size: 2rem;
    letter-spacing: 0.2em;
    margin-bottom: 1em;
}

.testimonial-title {
    font-family: 'Times New Roman', Times, serif;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5em;
    color: #555;
}

.testimonial-subtitle {
    font-family: 'Times New Roman', Times, serif;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5em;
    color: #777;
}

.testimonial-text {
    font-family: Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    flex-grow: 1;
    margin-bottom: 2em;
}

.testimonial-client {
    margin-top: auto;
}

.client-logo-wrapper {
    margin-bottom: 1em;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-family: 'Times New Roman', Times, serif;
    font-weight: bold;
}

#skinlocal-logo {
    background-color: #f0f0f0;
    color: #888;
    width: 80px;
    height: 80px;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-align: center;
    line-height: 1.2;
}

#glaudi-logo {
    background-color: #000;
    color: #fff;
    width: 80px;
    height: 80px;
    font-size: 1rem;
}

#gyncare-logo {
    background-color: #f0f0f0;
    color: #d9a7a7;
    width: 80px;
    height: 80px;
    font-size: 0.9rem;
    line-height: 1.1;
    text-align: center;
}

.client-details {
    font-family: Arial, sans-serif;
    font-size: 0.9rem;
    color: #888;
}

.slider-nav {
    text-align: center;
    margin-top: 2em;
}

.slider-arrow {
    background: none;
    border: none;
    font-size: 2.5rem;
    cursor: pointer;
    color: #333;
    padding: 0 0.5em;
}

@media (max-width: 992px) {
    .services-content-new {
        grid-template-columns: 1fr;
    }
    .services-images {
        margin-top: 60px;
        justify-content: center;
        display: flex;
    }
} 

/* Call to Action Section */
.cta {
    padding: 80px 0;
    background: #f8f9fa;
    text-align: center;
}

.cta h2 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 30px;
    color: #000;
}

.cta-btn {
    background: #000;
    color: #fff;
    padding: 15px 40px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    transition: background 0.3s;
    display: inline-block;
}

.cta-btn:hover {
    background: #333;
} 

/* --- Header & Footer (Rewritten for 'about.html' and consistency) --- */

/* Announcement Marquee */
.marquee-announcement {
    background-color: #e3e0d8;
    color: #333;
    padding: 10px 0;
    overflow: hidden;
    white-space: nowrap;
}

.marquee-inner-announcement {
    display: flex;
    animation: marquee-ltr-announcement 20s linear infinite;
}

.marquee-content-announcement {
    display: flex;
    flex-shrink: 0;
}

.marquee-inner-announcement span {
    font-family: Arial, sans-serif;
    font-size: 0.9rem;
    font-weight: bold;
    letter-spacing: 1.5px;
    padding: 0 2em;
}

@keyframes marquee-ltr-announcement {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}


/* General Header Styling */
header {
    background-color: #fff;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

header .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

header .logo {
    flex-shrink: 0;
}

header .logo .logo-img {
    display: block;
    width: 100%;
    max-width: 200px; /* Reduced size */
    height: auto;
}

header .nav-links {
    display: flex;
    gap: 2.5em;
    list-style: none;
    margin: 0;
    padding: 0;
}

header .nav-links a {
    position: relative;
    text-decoration: none;
    color: #333;
    font-weight: bold;
    font-size: 1rem;
    letter-spacing: 1px;
    transition: color 0.3s;
    padding-bottom: 5px; /* Space for the underline */
}

header .nav-links a:hover {
    color: #888;
}

header .nav-links a.active {
    color: #333; /* Keep active link color consistent */
}

header .nav-links a.active::after,
header .nav-links a:hover::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #333;
}

/* Hide the hover effect when the link is active */
header .nav-links a.active:hover::after {
    background-color: #333; /* Keeps the active line solid */
}


header .contact-btn {
    background-color: #333;
    color: #fff;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
}

header .contact-btn:hover {
    background-color: #555;
}


/* Footer - Rewritten V2 */
footer {
    background-color: #f8f5f2;
    padding: 60px 20px 20px;
}

.footer-top {
    display: flex;
    justify-content: space-around;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-column {
    flex-basis: 45%;
}

.footer-column h3 {
    font-family: 'Times New Roman', Times, serif;
    font-size: 1.8rem;
    font-weight: normal;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.social-icons-new {
    display: flex;
    gap: 25px;
    margin-bottom: 25px;
}

.social-icons-new a {
    color: #333;
    font-size: 1.8rem;
    transition: color 0.3s;
}

.social-icons-new a:hover {
    color: #888;
}

.social-previews {
    display: flex;
    gap: 15px;
}

.social-preview-box {
    width: 100px;
    height: 100px;
    background-color: #000;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-family: 'Times New Roman', Times, serif;
    text-decoration: none;
    color: #333;
    font-size: 1.1rem;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #888;
}

.footer-bottom-new {
    text-align: center;
    border-top: 1px solid #ddd;
    padding-top: 30px;
}

.footer-logo-bottom {
    display: block;
    margin: 0 auto 20px;
    max-width: 200px;
}

.footer-logo-bottom img {
    width: 100%;
}

.footer-bottom-new p {
    font-family: 'Times New Roman', Times, serif;
    font-size: 0.8rem;
    color: #888;
    letter-spacing: 0.5px;
}

.footer-bottom-new a {
    color: #888;
    text-decoration: underline;
} 