:root {
    --primary: #0f172a;
    --secondary: #1e293b;
    --accent: #f2b138;
    --light: #f8fafc;
    --dark: #000;
    --text: #334155;
}


/* Base styles and reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family:"Montserrat", sans-serif;
    color: white;
    overflow-x: hidden;
    background-color: #000;
}


/* Container that spans full width */
.full-width-container {
    width: 100%;
    position: relative;
}

/* Hero section styles */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* Hero section styles */
.hero-pages {
    position: relative;
    height: 90vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* Navigation styles */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    position: relative;
    z-index: 10;
    background: linear-gradient(to bottom, rgb(31 31 31 / 76%) 0%, rgb(0 0 0 / 0%) 72% 75%);
    text-transform: none;
}


.nav-left, .nav-right {
    display: flex;
    gap: 2rem;
}

.logo-container {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 11;
}

.logo {
    height: 95px;
    width: auto;
    filter: brightness(0) invert(1);
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.0rem;
    transition: color 0.3s ease;
    position: relative;
}

nav a:hover {
    color: #f2b138;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #f2b138;
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

/* Dropdown styles */
.dropdown {
    position: relative;
}

.dropdown>a {
    display: block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.8);
    min-width: 200px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 12;
    padding: 1rem;
    border-top: 2px solid #f2b138;
}

.dropdown-content a {
    display: block;
    padding: 0.5rem 0;
    color: white;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* Slides wrapper */
.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

/* Each Slide */
.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.05);
    transition: opacity 1.2s ease-in-out, transform 8s ease;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}

/* Arrows (center vertically) */
.slider-arrows {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
    transform: translateY(-50%);
    z-index: 6;
}

.slider-arrows .prev,
.slider-arrows .next {
    background: rgba(0, 0, 0, 0);
    border-radius: 50%;
    color: #ffffff00;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    padding: 0.6rem 0.9rem;

}

.slider-arrows .prev:hover,
.slider-arrows .next:hover {
    background: rgba(255, 255, 255, 0.281);
    border-radius: 50%;
    color: black;
}

/* Dots (stick to bottom center) */
.slider-dots {
    position: absolute;
    bottom: 1.2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 6;
}

.dots {
    display: flex;
    gap: 0.5rem;
}

.dots button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
}

.dots button.active {
    background: #f2b138;
}


.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 2;
}



/* Hero content bottom-left */
.hero-content {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    z-index: 5;
    max-width: 500px;
    text-align: left;
}


.hero h1 {
    font-size: 1.2rem;
    /* smaller */
    font-weight: 700;
    margin-bottom: 0.4rem;
    line-height: 1.2;
}

.hero p {
    font-size: 0.8rem;
    /* smaller */
    margin-bottom: 1.5rem;
    line-height: 1.4;
    font-weight: 400;
}

/* Social Links */
.social-links {
    position: absolute;
    right: 1.5rem;
    top: 80%;
    transform: translateY(-50%);
    z-index: 4;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-links a {
    color: white;
    font-size: 1rem;
    background: rgba(0, 0, 0, 0.5);
    padding: 10px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    background: #d4d4d4;
    /* your brand accent */
    color: black;
    transform: scale(1.1);
}

@media (max-width: 992px) {
.hero h1 {
       
    margin-bottom: 0.2rem;    
}
}


/* Mobile adjustments */
@media (max-width: 768px) {
    
     
.hero {  
    height: 70vh;
    
}

.hero-pages {    
    height: 70vh;    
}

    .hero-content {
        max-width: 100%;
        left: 1rem;
        bottom: 1rem;
    }

    .slider-controls {
        bottom: 0.8rem;
        gap: 0.6rem;
    }

    .social-links {
        right: 0.8rem;
        gap: 0.6rem;
    }

    .social-links a {
        font-size: 0.8rem;
        padding: 8px;
    }
}


.hero-pages-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-pages-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 2;
}

/* Hero content bottom-left */
.hero-pages-content {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    z-index: 3;
    max-width: 500px;
    text-align: left;
}

.hero-pages h1 {
    font-size: 1.2rem;
    /* smaller */
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-pages p {
    font-size: 0.8rem;
    /* smaller */
    margin-bottom: 1.5rem;
    line-height: 1.4;
    font-weight: 400;
}

.cta-button-home {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    /* smaller size */
    background-color: #f2b13800;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.8rem;
    /* smaller font */
    font-weight: 600;
    border-radius: 2px;
    transition: all 0.3s ease;
    border: 2px solid #faf9f6;
}

.cta-button-home:hover {
    background-color: transparent;
    color: #f2b138;
}

/* Mobile menu styles */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 20;
}

/* Fix mobile overlay showing on desktop */
.mobile-nav-overlay {
    display: none;
}

/* Media queries */
@media (max-width: 992px) {
    .nav-left, .nav-right {
        gap: 1.5rem;
    }

    nav a {
        font-size: 1.0rem;
    }
}

@media (max-width: 768px) {
    .nav-left, .nav-right {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
        position: absolute;
        right: 2rem;
    }

    .logo-container {
        position: static;
        transform: none;
        margin: 0 auto;
    }

    nav {
        justify-content: center;
        padding: 1rem;
        background: transparent;
    }

    .full-width-container .nav {
        justify-content: center;
        padding: 1rem;
        background: transparent;
    }

    .mobile-nav-overlay {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.95);
        z-index: 15;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .mobile-nav-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    .mobile-nav-close {
        position: absolute;
        top: 2rem;
        right: 2rem;
        background: none;
        border: none;
        color: white;
        font-size: 1.5rem;
        cursor: pointer;
    }

    .mobile-nav-menu {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .full-width-container .mobile-nav-menu {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .mobile-nav-menu a {
        color: white;
        text-decoration: none;
        font-size: 1.2rem;
        font-weight: 500;
    }

    .mobile-dropdown-content {
        display: none;
        flex-direction: column;
        gap: 1rem;
        margin-top: 1rem;
    }

    .mobile-dropdown.active .mobile-dropdown-content {
        display: flex;
    }

    /* Mobile hero adjustments */
    .hero-content {
        bottom: 1.9rem;
        left: 1.5rem;
        max-width: 90%;
    }

    .hero h1 {
        font-size: 1rem;
    }

    .hero p {
        font-size: 0.75rem;
    }

    .hero-pages-content {
        bottom: 1.5rem;
        left: 1.5rem;
        max-width: 80%;
    }

    .hero-pages h1 {
        font-size: 1rem;
    }

    .hero-pages p {
        font-size: 0.75rem;
    }

    .cta-button-home {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
        margin-bottom: 1.9rem;
    }
}

@media (max-width: 480px) {

     /* Mobile hero adjustments */
    .hero-content {
        bottom: 2.0rem;
        left: 1.5rem;
        max-width: 70%;
    }
    .hero h1 {
        font-size: 0.9rem;
    }


    .hero p {
        font-size: 0.7rem;
    }

    .hero-pages h1 {
        font-size: 0.9rem;
    }

    .hero-pages p {
        font-size: 0.7rem;
    }

    .cta-button-home {
        padding: 0.4rem 0.8rem;
        font-size: 0.7rem;
        
    }
}

.section-title {
    font-weight: 500;
    text-transform: none;
    letter-spacing: 2px;
    text-align: center;
    margin: 40px 0 30px;
    font-size: 2.2rem;
    color: #2c3e50;
    position: relative;
}

.section-title:after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: #f2b138;
    margin: 10px auto;
}

/* About Section */
.about-section {
    background-color: #f7f7f7;
    padding: 4rem 2rem;
    color: #000000;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
}

.about-left {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-left img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
}

.about-right {
    flex: 1;
}

.about-right h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #222;
    position: relative;
    padding-bottom: 15px;
}

.about-right h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #d4af37;
}

.about-right p {
    font-size: 16px;
    margin-bottom: 25px;
    line-height: 1.8;
    color: #555;
}

.home-about-gallery {
    display: flex;
    gap: 15px;
    margin: 30px 0;
    background-color: white;
}

.home-about-gallery img {
    width: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.home-about-gallery img:hover {
    transform: translateY(-5px);
}

blockquote {
    font-style: italic;
    font-size: 20px;
    padding: 20px;
    background-color: #f8f8f8ff;
    border-left: 4px solid #d4af37;
    margin: 30px 0;
    position: relative;
    color: #222;
}

/*Responsive*/
@media (max-width:992px) {
    .about-container {
        flex-direction: column;
        gap: 2rem;
    }

    .about-left img {
        max-height: 650px;


    }

    .about-right h2 {
        font-size: 28px;
        text-align: center;
        border-left: 4px solid #d4af37;
    }

    .about-right h2::after {
    content: "";
    position:absolute;
    bottom: 0;
    left: 16rem;
    width: 60px;
    height: 3px;
    background-color: #d4af3700;
}

    .about-right p{
    font-size:14px;
    line-height: 1.6rem;
    }

    .home-about-gallery {
        flex-direction: column;
    }

    .home-about-gallery img {
        width: 100%;
    }

    blockquote {
        font-size: 18px;
        text-align: center;
    }
}

/*Responsive*/
@media (max-width:576px) {

    .about-right h2 {
        font-size: 22px;
        font-weight: 600;

    }

    .about-right p {
        font-size: 14px;

    }


    blockquote {
        font-size: 16px;
        padding: 15px;
    }
}


/*'''BEGINING*/
/* Services Section */
.services-section {
    padding: 4rem 2rem;
    background: #fff;
    color: #000;
    text-align: center;
}

.services-section .section-title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
    font-weight: 700;
    color: #111;
}

/* Featured (34-sec style) */
.services-featured {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 3rem;
}

.service-large {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.service-large.reverse {
    flex-direction: row-reverse;
}

.service-large img {
    width: 50%;
    border-radius: 6px;
    object-fit: cover;
}

.service-text {
    width: 50%;
    text-align: left;
}

.service-text h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.service-text p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    color: #444;
}

.read-more {
    font-size: 0.8rem;
    font-weight: 600;
    color: #f2b138;
    text-decoration: none;
}

.read-more:hover {
    text-decoration: underline;
}

/* Grid (21-sec style) */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-card {
    background: #f9f9f9;
    border-radius: 6px;
    padding: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card img {
    width: 100%;
    border-radius: 6px;
    margin-bottom: 1rem;
    object-fit: cover;
}

.service-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.service-card p {
    font-size: 0.85rem;
    color: #555;
}


/*THE END*/

/* Responsive */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service {
        height: 350px;
    }
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .service {
        height: 300px;
    }
}

/* Smooth scroll globally */
html {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    /* iOS smooth scroll */
}



/* Experience Section */
.experience-section {
    padding: 5rem 0;
    background-color: #f2b138;
    color: #000;
    text-align: center;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
}

.stats-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
}

.stat-item {
    flex: 1;
    min-width: 200px;
    padding: 1.5rem;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #000;
}

.stat-label {
    font-size: 1.2rem;
    font-weight: 500;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 992px) {

  .stat-label {
    font-size: 0.8rem; 
  } 

  .stat-number {
    font-size: 2.8rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
 
}
}
/* Clients Section */
.clients-section {
    padding: 5rem 0;
    background-color: #000000;
    color: #fff;
    text-align: center;
}

.clients-slider {
    position: relative;
    overflow: hidden;
    padding: 2rem 0;
}

.clients-track {
    display: flex;
    animation: slide 60s linear infinite;
    width: calc(200px * 24); /* keep large screen size */
}

.client-sec-item {
    flex: 0 0 auto;
    width: 200px; /* default big size */
    margin: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: grayscale(0%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.client-sec-item:hover {
    filter: grayscale(100%);
    opacity: 1;
}

.client-logo {
    max-width: 100%;
    max-height: 90px;
    object-fit: contain;
}

@keyframes slide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-200px * 12)); /* move half because duplicated */
    }
}

/* Pause animation on hover */
.clients-slider:hover .clients-track {
    animation-play-state: paused;
}

/* -------- Responsive: show 3 at a time on small screens -------- */
@media (max-width: 992px) {
    .client-sec-item {
        width: 30%;   /* fit 3 in a row */
        margin: 0 0.5rem;
    }
    .client-logo {
        max-height: 60px; /* smaller logo height */
    }

    .clients-track {
        width: auto; /* let flex handle width instead of fixed px calc */
        animation: slide-small 25s linear infinite;
    }

    @keyframes slide-small {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(-50%); /* slide halfway since duplicated */
        }
    }
}



/* CTA Section */
.cta-section {
    display: flex;
    min-height: 500px;
    width: 100%;
}

/* Left side - Content */
.cta-left {
    flex: 1;
    background-color: rgba(20, 20, 20, 0.8);
    /* Slightly black background */
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cta-content {
    max-width: 500px;
}

.cta-subtitle {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #f2b138;
    margin-bottom: 1rem;
    font-weight: 600;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.cta-description {
    font-size: 1rem;
    margin-bottom: 2.5rem;
    color: #ccc;
    line-height: 1.7;
}

/* Right side - Background Image */
.cta-right {
    flex: 1;
    background-image: url('../images/call2action.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
}

.cta-right::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
}

.cta-button-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    background-color: transparent;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    background-color: #fff;
    color: #000;
    border-color: #fff;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    z-index: -1;
}

.cta-button:hover::before {
    left: 0;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .cta-section {
        flex-direction: column;
    }

    .cta-left {
        padding: 3rem 2rem;
    }

    .cta-title {
        font-size: 2rem;
    }

    .cta-right {
        min-height: 400px;
    }
}

@media (max-width: 768px) {
    .cta-left {
        padding: 2.5rem 1.5rem;
    }

    .cta-title {
        font-size: 1.8rem;
    }

    .cta-description {
        font-size: 1rem;
    }

    .cta-button {
        padding: 1rem 2rem;
        font-size: 0.85rem;
       
    }
}

@media (max-width: 480px) {
    .cta-left {
        padding: 2rem 1rem;
    }

    .cta-title {
        font-size: 1.5rem;
    }

    .cta-subtitle {
        font-size: 0.9rem;
    }

    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.8rem;
    }
}


/* Footer Section */
footer {
    background-color: #000;
    overflow: hidden;
    margin-top: auto;
}

/* Part 1: Sliding Images */
.gallery-section {
    padding: 0;
    overflow: hidden;
    position: relative;
}

.gallery-track {
    display: flex;
    width: calc(250px * 14);
    /* Double the items for seamless loop */
    animation: slide 30s linear infinite;
}

.gallery-item {
    flex: 0 0 auto;
    width: 250px;
    height: 180px;
    margin: 0;
    position: relative;
    overflow: hidden;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(24, 24, 26, 0.7) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.view-text {
    color: #000;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.gallery-item:hover .view-text {
    transform: translateY(0);
}

@keyframes slide {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-250px * 7));
        /* Move by half the items */
    }
}

/* Pause animation on hover */
.gallery-section:hover .gallery-track {
    animation-play-state: paused;
}

/* Part 2: Footer Content */
.footer-content {
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    position: relative;
    /* Added for arrow positioning */
}

.back-to-top {
    background-color: #f2b138;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: absolute;
    /* Changed from margin to absolute */
    right: 2rem;
    /* Position from right */
    bottom: 2rem;
    /* Position from bottom */
    z-index: 10;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(242, 177, 56, 0.4);
}

.back-to-top i {
    color: #000;
    font-size: 1.0rem;
}

.footer-menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.footer-menu a {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    text-transform: none;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    position: relative;
}

.footer-menu a:hover {
    color: #f2b138;
}

.footer-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #f2b138;
    transition: width 0.3s ease;
}

.footer-menu a:hover::after {
    width: 100%;
}


.copyright {
    color: #aaa;
    font-size: 0.8rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.copyright a {
    color: #aaa;
    text-decoration: none;
    font-size: 0.8rem;
    text-transform: none;
    transition: color 0.3s ease;

}

.copyright a:hover {
    color: #f2b138;
    text-decoration: none;

}



.social-icons {
    display: flex;
    gap: 1.3rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background-color: #222225;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: #f2b138;
    color: #000;
    transform: translateY(-3px);
}

.social-icons i {
    font-size: 1.0rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .gallery-item {
        width: 200px;
        height: 150px;
    }

    .gallery-track {
        width: calc(200px * 14);
        animation: slide-mobile 30s linear infinite;
    }

    @keyframes slide {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(calc(-200px * 7));
        }
    }

    .footer-menu {
        gap: 1.5rem;
    }

    .footer-menu a {
        font-size: 0.8rem;
    }

    .back-to-top {
        right: 1rem;
        bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .gallery-item {
        width: 150px;
        height: 120px;
    }

    .gallery-track {
        width: calc(150px * 14);
    }

    @keyframes slide {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(calc(-150px * 7));
        }
    }

    .footer-menu {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .footer-content {
        padding: 2rem 1rem;
    }

    .back-to-top {
        right: 1rem;
        bottom: 1rem;
        width: 25px;
        height: 25px;
    }

    .back-to-top i {
        font-size: 0.8rem;
    }
}


/* Contact Page Styles */
.contact-page {
    padding: 0 0;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

/* Contact Form */
.contact-form {
    background-color: #fff;
    padding: 3rem;
}

.form-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #000;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #000;
}

.form-input, .form-textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #000;
    background: transparent;
    font-family: 'Eastman', sans-serif;
    font-size: 0.9rem;
    outline: none;
    transition: border 0.3s ease;
    border-radius: 0;
}

.form-input:focus, .form-textarea:focus {
    border-color: #f2b138;
}

.form-textarea {
    min-height: 150px;
    resize: vertical;
}

.submit-btn {
    padding: 1rem 2.5rem;
    background-color: transparent;
    color: #000;
    border: 1px solid #000;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Eastman', sans-serif;
    border-radius: 0;
}

.submit-btn:hover {
    background-color: #000;
    color: #fff;
}

/* Contact Form */
.contact-form {
    background-color: #fff;
    padding: 3rem;
    margin-bottom: 3rem;
}

.form-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #000;
    text-align: center;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group-full {
    grid-column: 1 / -1;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #000;
}

.form-input, .form-textarea, .form-select {
    width: 100%;
    padding: 1rem;
    border: 1px solid #000;
    background: transparent;
    font-family: 'Eastman', sans-serif;
    font-size: 0.9rem;
    outline: none;
    transition: border 0.3s ease;
    border-radius: 0;
}

.form-input:focus, .form-textarea:focus, .form-select:focus {
    border-color: #f2b138;
}

.form-textarea {
    min-height: 150px;
    resize: vertical;
}

.form-submit {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 1rem;
}

.submit-btn {
    padding: 1rem 2.5rem;
    background-color: transparent;
    color: #000;
    border: 1px solid #000;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Eastman', sans-serif;
    border-radius: 0;
}

.submit-btn:hover {
    background-color: #000;
    color: #fff;
}

/* Contact Info */
.contact-info {
    background-color: #fff;
    padding: 3rem;
}

.info-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #000;
    text-align: center;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.info-item {
    text-align: center;
    padding: 1.5rem;
    transition: transform 0.3s ease;
}

.info-item:hover {
    transform: translateY(-5px);
}

.info-icon {
    width: 60px;
    height: 60px;
    background-color: #f2b138;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.info-icon i {
    color: #000;
    font-size: 1.5rem;
}

.info-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #000;
}

.info-content p {
    color: #1f1f20;
    line-height: 1.0;
}

/* FAQ Section */
.faq-section {
    background-color: #000;
    padding: 5rem 2rem;
    margin-top: 4rem;
}

.faq-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #fff;
    text-align: center;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #333;
    margin-bottom: 1rem;
}

.faq-question {
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: #fff;
    font-weight: 500;
    font-size: 0.9rem;
}

.faq-question span {
    flex: 1;
    padding-right: 1rem;
}

.faq-toggle {
    color: #f2b138;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    color: #ccc;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    padding: 0 0 .9rem 0;
    max-height: 300px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .info-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .form-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-page {
        padding: 0 0;
    }

    .contact-form, .contact-info {
        padding: 2rem;
    }

    .form-title, .info-title, .faq-title {
        font-size: 1.8rem;
    }

    .faq-question {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .info-grid {
        grid-template-columns: 1fr;
    }

    .contact-container {
        padding: 0 1rem;
    }

    .contact-form, .contact-info {
        padding: 1.5rem;
    }

    .form-title, .info-title, .faq-title {
        font-size: 1.5rem;
    }

    .submit-btn {
        width: 100%;
    }
}


/* Packages Section */
.packages-section {
    max-width: 1200px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.package-section-title {
    text-align: center;
    margin-bottom: 4rem;
    Color: #f1f1f1;
}

.section-title h2 {
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--accent);
}

.package-item {
    background: transparent;
    padding: 20px 0;
    text-align: center;
    border-bottom: 1px solid #f2b138;
    /* yellowish separator */
}

.package-item:last-child {
    border-bottom: none;
    /* remove line after last item */
}

.package-item h2 {
    margin-bottom: 10px;
    color: #fff;
    /* adjust text color depending on background */
    font-size: 1.2rem;
    text-transform: uppercase;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}



.package-item a {
    display: inline-block;
    padding: 8px 16px;
    background: #0e0e0d;
    color: #f2b138;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}


.package-item a:hover {
    background: #000000;
    color: #fff;
    transform: scale(1.05);
}


.feature {
    margin-bottom: 0.2rem;
    color: hsl(0, 0%, 11%);
    font-size: 0.85rem;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.feature-title {
    font-weight: 500;
    color: #000;
    margin-bottom: 0.6rem;
    font-size: 1.0rem;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    padding: 5px 0;
    padding-left: 30px;
    position: relative;
    border-bottom: 1px solid #f5f5f5;
}

.feature-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
    height: 22px;
    background: #e8f4fc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4a6fa5;
    font-weight: bold;
}

.package-price {
    font-size: 1.3rem;
    font-weight: 600;
    color: #f2b138;
}

.price-amount {
    color: #000;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .package {
        min-height: 550px;
    }

    .package-image {
        height: 450px;
    }

    .package-content {
        height: 550px;
        padding: 3rem;
    }
}

@media (max-width: 992px) {
    .package {
        flex-direction: column !important;
        margin-bottom: 6rem;
        min-height: auto;
    }

    .package-image,
    .package-content {
        width: 100%;
        height: auto;
    }

    .package-image {
        height: 400px;
        transform: none !important;
        margin-top: 0 !important;
    }

    .package-content {
        margin: -100px 20px 0 20px !important;
        text-align: left !important;
        padding: 2.5rem;
    }

    .package-name::after {
        left: 0 !important;
    }
}

@media (max-width: 768px) {


    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .package-image {
        height: 350px;
    }

    .package-content {
        padding: 2rem;
        margin: -80px 15px 0 15px !important;
    }

    .package-name {
        font-size: 1.8rem;
    }

    .package-price {
        font-size: 1.6rem;
    }
}


/* Our Story Section */
.story-section {
    position: relative;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url("../images/about-1.jpg") no-repeat center center/cover;
    padding: 6rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.package-section {
    position: relative;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url("../images/7.jpg") no-repeat center center/cover;
    padding: 6rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.story-overlay {
    max-width: 1400px;
    width: 100%;
    display: flex;
    justify-content: center;
}

/* Story box with two columns */
.story-text-box {
    display: flex;
    background-color: rgba(242, 177, 56, 0.2);
    max-width: 1200px;
    width: 100%;
    color: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.title-column {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(242, 177, 56, 0.3);
    padding: 3rem;
}

.title-column h2 {
    font-size: 4rem;
    writing-mode: vertical-lr;
    transform: rotate(180deg);
    text-transform: uppercase;
    letter-spacing: 0.5rem;
    color: #fff;

}

.content-column {
    flex: 2;
    padding: 4rem;
}

.content-column h3 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #f2b138;
    position: relative;
    padding-bottom: 1rem;
}

.content-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: #f2b138;
}

.content-column p {
    font-size: 1.0rem;
    line-height: 1.8;
    color: #fff;
    margin-bottom: 2rem;
}

.content-column .quote {
    font-style: italic;
    border-left: 4px solid #f2b138;
    padding-left: 1.5rem;
    margin: 2rem 0;
    color: #e6e6e6;
}

/* Responsive design */
@media (max-width: 900px) {
    .story-text-box {
        flex-direction: column;
    }

    .title-column {
        padding: 2rem;
    }

    .title-column h2 {
        writing-mode: horizontal-tb;
        transform: none;
        font-size: 2.0rem;
        text-align: center;
    }

    .content-column {
        padding: 2.5rem;
    }
}



/* Mission Section */
.mission-section {
    position: relative;
    background: url("../images/mission.jpg") no-repeat center center/cover;
    padding: 6rem 2rem;
    display: flex;
    justify-content: flex-start;
    /* box aligned left */
    align-items: center;
}

.mission-overlay {
    max-width: 1200px;
    width: 100%;
    display: flex;
    justify-content: flex-start;
}

/* Transparent mission box */
.mission-text-box {
    position: relative;
    background-color: rgba(242, 177, 56, 0.2);
    /* semi-transparent yellow */
    padding: 2rem 3rem;
    max-width: 500px;
    color: #fff;
    z-index: 1;
}

/* Decorative border line */
.mission-text-box::before {
    content: "";
    position: absolute;
    top: 1rem;
    /* start 1rem down from top */
    left: -1rem;
    /* offset border slightly left */
    right: -1rem;
    bottom: -1rem;
    border: 3px solid #f2b138;
    pointer-events: none;
    z-index: -1;
}

.mission-text-box h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.mission-text-box p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #fff;
}


/* Vision Section */
.vision-section {
    position: relative;
    background: url("../images/vision.jpg") no-repeat center center/cover;
    padding: 6rem 2rem;
    display: flex;
    justify-content: flex-end;
    /* align box to the right */
    align-items: center;
}

.vision-overlay {
    max-width: 1200px;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    /* box right aligned */
}

/* Transparent vision box */
.vision-text-box {
    position: relative;
    background-color: rgba(242, 177, 56, 0.2);
    /* semi-transparent yellow */
    padding: 2rem 3rem;
    max-width: 500px;
    color: #fff;
    z-index: 1;
}

/* Decorative border line */
.vision-text-box::before {
    content: "";
    position: absolute;
    top: 1rem;
    /* start 1rem down from top */
    left: -1rem;
    right: -1rem;
    bottom: -1rem;
    border: 3px solid #f2b138;
    pointer-events: none;
    z-index: -1;
}

.vision-text-box h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.vision-text-box p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #fff;
}


@media (max-width: 480px) {

    
.content-column p {
    font-size: 0.9rem; 
}

    .vision-text-box h2 {
    font-size: 2.0rem;
    
}

.vision-text-box p {
    font-size: 0.9rem;
}

.mission-text-box h2 {
    font-size: 2.0rem;
   
}

.mission-text-box p {
    font-size: 0.9rem;
}

}

/* CEO Section */
.ceo-section {
    display: flex;
    min-height: 400px;
}

.ceo-left {
    flex: 1;
    background-size: cover;
    background-position: center;
}

.ceo-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    background: #f9f9f9;
}

.ceo-photo {
    height: 80px;
    width: 80px;
    border-radius: 20%;
    margin-right: 20px;
    object-fit: cover;
}

.ceo-info h3 {
    margin: 0;
    font-size: 1.4rem;
    color: #0f172a;
}

.ceo-info p {
    margin: 5px 0 0;
    font-size: 1rem;
    color: #555;
}

/* Staff Section */
.staff-section {
    display: flex;
    min-height: 400px;
}

.staff-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    padding: 40px;
    background: #f9f9f9;
}

.staff-member {
    display: flex;
    align-items: center;
}

.staff-photo {
    height: 70px;
    width: 70px;
    border-radius: 20%;
    margin-right: 20px;
    object-fit: cover;
}

.staff-info h3 {
    margin: 0;
    font-size: 1.3rem;
    color: #0f172a;
}

.staff-info p {
    margin: 5px 0 0;
    font-size: 1rem;
    color: #555;
}

.staff-right {
    flex: 1;
    background-size: cover;
    background-position: center;
}




/* Team Section */
.team {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 30px;
}

.team-member {
    background-color: rgb(255, 255, 255);
    border-radius: 0px;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.member-image {
    height: 300px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-member:hover .member-image img {
    transform: scale(1.1);
}

.member-info {
    padding: 1.5rem;
    background-color: #fafafa;
}

.member-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.member-info .role {
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 1rem;
    display: block;
}

.member-info .specialty {
    background-color: #e5e8f7;
    color: #6b6b6b;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 1rem;
    font-size: 0.7rem;
}

.member-info p {
    margin-bottom: 1rem;
    color: #4b4b4d;
    font-size: .7rem;
}


/* About Gallery Section */
.about-gallery {
    padding: 0 0;
    background: #0f0f0f;
    overflow: hidden;
}

.gallery-container {
    position: relative;
    width: 100%;
    margin: 5px auto;
}

.gallery-track {
    display: flex;
    width: 200%;
    animation: slide 30s linear infinite;
}

.gallery-row {
    display: flex;
    width: 100%;
    gap: 3px;
    padding: 0 0;
}

.gallery-item-about {
    flex: 0 0 auto;
    width: 200px;
    height: 130px;
    overflow: hidden;
    border-radius: 8px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.5s ease;
    cursor: pointer;
}

.gallery-item-about img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item-about:hover img {
    transform: scale(1.1);
}

.gallery-item-about::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.gallery-item-about:hover::after {
    opacity: 1;
}

.gallery-item-about .view-text {
    position: absolute;
    bottom: 10px;
    left: 10px;
    font-size: 0.8rem;
    color: #fff;
    z-index: 2;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.5s ease;
}

.gallery-item-about:hover .view-text {
    opacity: 1;
    transform: translateY(0);
}

/* Animation for sliding */
@keyframes slide {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Pause animation on hover */
.gallery-container:hover .gallery-track {
    animation-play-state: paused;
}

/* Responsive Design */
@media (max-width: 768px) {
    .gallery-item-about {
        width: 150px;
        height: 100px;
    }

    .gallery-row {
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .gallery-item-about {
        width: 120px;
        height: 80px;
    }

    .section-title {
        font-size: 1.6rem;
    }
}

/* Portfolio page */
.portfolio {
    padding: 4rem 2rem;
    text-align: center;
}

.portfolio-filters {
    margin-bottom: 2rem;
}

.filter-btn {
    padding: 0.5rem 1rem;
    margin: 0.2rem;
    border: none;
    border-radius: 30%;
    background: #333;
    color: white;
    cursor: pointer;
    transition: background 0.3s;
}

.filter-btn.active,
.filter-btn:hover {
    background: #f2b138;
    color: black;
}

.portfolio-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    /* spacing between items */
    justify-content: flex-start;
}

/* Each item will grow/shrink equally to fill row */
.portfolio-item {
    flex: 1 1 calc(25% - 10px);
    /* default: 4 items per row */
    max-width: calc(25% - 10px);
    /* prevents oversizing */
    height: 250px;
    overflow: hidden;
    position: relative;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .portfolio-item {
        flex: 1 1 calc(33.333% - 10px);
        /* 3 per row */
        max-width: calc(33.333% - 10px);
    }
}

@media (max-width: 900px) {
    .portfolio-item {
        flex: 1 1 calc(50% - 10px);
        /* 2 per row */
        max-width: calc(50% - 10px);
    }
}

@media (max-width: 600px) {
    .portfolio-item {
        flex: 1 1 100%;
        /* 1 per row */
        max-width: 100%;
    }
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.portfolio-item:hover img {
    transform: scale(1.1);
}



/* Lightbox Overlay */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1000;
}

/* Show lightbox */
.lightbox.active {
    visibility: visible;
    opacity: 1;
}

/* Lightbox image */
.lightbox-img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 6px;
}

/* Close button */
.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 2rem;
    color: white;
    cursor: pointer;
    font-weight: bold;
    transition: color 0.3s ease;
}

.lightbox-close:hover {
    color: #f2b138;
}

.see-more-container {
    text-align: center;
    margin: 30px 0;
}

.see-more-btn {
    padding: 12px 30px;
    background-color: #f2b138;
    color: #000;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.see-more-btn:hover {
    background-color: #e0a12c;
}

.no-photos {
    text-align: center;
    grid-column: 1 / -1;
    padding: 40px;
    color: #777;
}

/* Clients Page */

.client {
    padding: 4rem 2rem;
    text-align: center;
    max-width: 1800px;
    /* Significantly increased max width */
    margin: 0 auto;
}

/* Grid layout: 3 per row on desktop with 2px gap */
.client-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(350px, 1fr));
    /* Increased minimum width */
    gap: 2px;
}

/* Maintained height, increased width */
/* Client item relative */
.client-item {
    position: relative;
    overflow: hidden;
    height: 300px;
    width: 100%;
    cursor: pointer;
    border-radius: 4px;
}

/* Overlay hidden by default */
.client-item .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: center;
    gap: 0.1rem;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 1rem;
    box-sizing: border-box;
    text-transform: uppercase;
    font-size: 0.6rem;
    border-radius: 4px;
}

/* On hover show overlay */
.client-item:hover .overlay,
.client-item.active .overlay {
    /* for click toggle */
    opacity: 1;
    background: rgba(0, 0, 0, 0.514);
    /* subtle transparent background */
    filter: none;
    /* ensures full original colors */
}

/* Overlay text */
.client-item .overlay h3 {
    margin: 0;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.client-item .overlay p {
    margin: 0;
    font-size: 0.7rem;
    text-transform: uppercase;
}

/* View More button */
.client-item .overlay .view-more {
    display: inline-block;
    margin-top: 0.5rem;
    padding: 0.4rem 0.8rem;
    background: #f2b138;
    color: #000;
    text-decoration: none;
    font-weight: 500;
    border-radius: 4px;
    transition: background 0.3s;
}

.client-item .overlay .view-more:hover {
    background: #ffc857;
}

/* Image styling */
.client-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    filter: none;
    /* ensures full original colors */
}


/* Responsive adjustments */
@media (max-width: 1200px) {
    .client {
        padding: 3rem 1.5rem;
    }

    .client-grid {
        grid-template-columns: repeat(3, minmax(300px, 1fr));
    }
}

@media (max-width: 992px) {
    .client-grid {
        grid-template-columns: repeat(2, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .client-grid {
        grid-template-columns: repeat(2, minmax(240px, 1fr));
        /* Responsive adjustments (keep same as before) */

        .client-item {
            height: 280px;
        }

    }

    .client-item {
        height: 280px;
    }
}

@media (max-width: 600px) {
    .client {
        padding: 2rem 1rem;
    }

    .client-grid {
        grid-template-columns: 1fr;
    }

    .client-item {
        height: 300px;
        max-width: 500px;
        margin: 0 auto;
    }
}

/* Photoshoot Services Section */
.photo-services-section {
    padding: 80px 40px;
    background-color: #fff;
    color: rgb(0, 0, 0);
}

.photo-services-container {
    max-width: 1200px;
    margin: 0 auto;
}

.photo-services-header {
    text-align: center;
    margin-bottom: 60px;
}

.photo-services-header h2 {
    font-size: 36px;
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-bottom: 20px;
    color: rgb(0, 0, 0);
}

.photo-services-header p {
    max-width: 600px;
    margin: 0 auto;
    color: #1b1b1b;
}

.photo-services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.photo-service-item {
    padding: 30px 20px;
    border-bottom: 1px solid #333;
    position: relative;
    transition: all 0.3s ease;
}


.photo-service-item:nth-child(odd) {
    border-right: 1px solid #333;
    padding-right: 40px;
}

.photo-service-item:nth-child(even) {
    padding-left: 40px;
}

.photo-service-item:last-child, .service-item:nth-last-child(2) {
    border-bottom: none;
}

.photo-service-icon {
    font-size: 24px;
    color: #f2b138;
    margin-bottom: 15px;
}

h3.photo-service-title {
    font-size: 22px;
    margin-bottom: 15px;
    color: rgb(19, 19, 19);
}

.photo-service-desc {
    color: #242424;
    font-size: 15px;
    line-height: 1.6;
}

/* 
        .photo-service-desc:hover {
            color: #ffffff;
            font-size: 15px;
            line-height: 1.6;
        }

        .photo-service-item:hover {
            background-color: #111;
            color:#fff;
        }
        
             */

/* Responsive Design */
@media (max-width: 992px) {


    .about-left {
        height: auto;
        margin-bottom: 40px;
    }

    .photo-services-header {
        margin-bottom: 35px;
    }
    .photo-services-header h2 {
        font-size: 22px;
        margin-bottom: 16px;
    }
    .photo-services-header p {
        font-size: 14px;
    }
    h3.photo-service-title {
    font-size: 16px;
    margin-bottom: 6px;
   
}

    .photo-service-desc{
        font-size: 14px;
        line-height: 1.3;
    }

    .photo-service-item {
    padding: 20px 12px;
    border-bottom: 1px solid #333;
    }



    .creative-text {
        flex-direction: row;
        gap: 10px;
    }

    .creative-word {
        writing-mode: horizontal-tb;
        transform: none;
        padding: 10px 5px;
    }

    .creative-word:hover {
        transform: scale(1.1);
    }

    .creative-word::after {
        width: 30px;
        height: 3px;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
    }

    .creative-word:nth-child(odd) {
        margin-left: 0;
        margin-top: 20px;
    }

    .creative-word:nth-child(even) {
        margin-right: 0;
        margin-bottom: 20px;
    }

    .photo-services-grid {
        grid-template-columns: 1fr;
    }

    .photo-service-item:nth-child(odd) {
        border-right: none;
        padding-right: 20px;
    }

    .photo-service-item:nth-child(even) {
        padding-left: 20px;
    }
}

@media (max-width: 576px) {
    .photo-services-section {
        padding: 60px 20px;
    }

    .creative-text {
        flex-wrap: wrap;
        justify-content: center;
    }

    .creative-word {
        font-size: 18px;
        letter-spacing: 3px;
    }


}


/**index service gallery*/

/* Gallery Container */
/* Gallery Container */
.gallery-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 0.5rem;
    padding-bottom: 1rem;
    width: 100%;
}

/* Creative Grid Layout */
.creative-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: minmax(150px, auto);
    gap: 5px;
    margin-top: 2rem;
}

.grid-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Unique grid item sizes and positions (Desktop only) */
.item-1 {
    grid-column: span 6;
    grid-row: span 2;
}

.item-2 {
    grid-column: span 3;
    grid-row: span 1;
}

.item-3 {
    grid-column: span 3;
    grid-row: span 1;
}

.item-4 {
    grid-column: span 2;
    grid-row: span 1;
}

.item-5 {
    grid-column: span 4;
    grid-row: span 1;
}

.item-6 {
    grid-column: span 4;
    grid-row: span 1;
}

.item-7 {
    grid-column: span 5;
    grid-row: span 2;
}

.item-8 {
    grid-column: span 3;
    grid-row: span 2;
}

.item-9 {
    grid-column: span 4;
    grid-row: span 1;
}

.item-10 {
    grid-column: span 3;
    grid-row: span 1;
}

/* Hover Effects */
.grid-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    z-index: 10;
}

.grid-item:hover img {
    transform: scale(1.05);
}

/* Caption Overlay */
.caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    color: white;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.grid-item:hover .caption {
    transform: translateY(0);
}

/* ✅ Responsive: make each image full-width on mobile/tablet */
@media (max-width: 845px) {
    .creative-grid {
        grid-template-columns: 1fr;
        /* one column */
        gap: 15px;
    }

    .grid-item {
        grid-column: span 1 !important;
        /* force full width */
        grid-row: auto !important;
    }

    .grid-item img {
        height: auto;
        /* allow natural height for smaller screens */
    }
}

/* Gallery Section */
.extra-home-gallery {
    max-width: 1600px;
    margin: 0 auto;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

.extra-home-gallery-row {
    display: flex;
    margin-bottom: 1rem;
    gap: 5px;
    height: 300px;
    width: 100%;
    box-sizing: border-box;
}

/* Row 1 - 2 large images */
.row-1 .extra-home-gallery-item {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
}

/* Row 2 - 3 medium images */
.row-2 .extra-home-gallery-item {
    flex: 1; /* evenly distribute */
    max-width: none; /* remove calc(...) */
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
}

/* Row 3 - 1 large left, 2 small right */
.row-3 {
    height: 400px;
}

.row-3 .extra-home-gallery-item:first-child {
    flex: 2;
}

.row-3 .extra-home-gallery-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.row-3 .extra-home-gallery-item {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
}

/* Row 4 - 4 square images */
.row-4 .extra-home-gallery-item {
    flex: 1; /* evenly distribute */
    max-width: none; /* remove calc(...) */
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
}

/* Row 5 - Many small images (masonry style) */
.row-5 {
    height: auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    grid-auto-rows: 150px;
    grid-gap: 8px;
    margin-bottom: 0;
}

.row-5 .extra-home-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
}

/* Span some items for masonry effect */
.row-5 .extra-home-gallery-item:nth-child(3n) {
    grid-row: span 1;
}

.row-5 .extra-home-gallery-item:nth-child(7n) {
    grid-column: span 1;
}

/* Common extra-home-gallery item styles */
.extra-home-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.extra-home-gallery-item:hover {
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.extra-home-gallery-item:hover img {
    transform: scale(1.1);
}

.extra-home-gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: white;
    padding: 1rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.extra-home-gallery-item:hover .extra-home-gallery-caption {
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .extra-home-gallery-row {
        flex-wrap: wrap;
        height: auto;
    }
    
    .extra-home-gallery-item {
        flex: 1 1 45% !important;
        max-width: none !important;
        height: 250px;
        margin-bottom: 1rem;
    }
    
    .row-3 .row-5 {
        height: auto;
    }
    
    .row-3 .extra-home-gallery-col {
        flex: 1 1 100%;
    }
    
    .row-5 {
        flex: 1 1 100%;
        gap: 5px;
        margin-bottom: 8px;
    }
}

@media (max-width: 768px) {
     
    
    .extra-home-gallery-item {
        flex: 1 1 100% !important;
        height: 200px;
        margin-bottom:0.3rem;
    }
    
    .row-5 {
        grid-template-columns: no-repeat(auto-fill, minmax(150px, 1fr));
        grid-auto-rows: 120px;
    }
}
