/* General Reset */
* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
    font-family: 'Segoe UI', sans-serif; 

    /* FUNKY CUSTOM CURSOR (Hot Pink Arrow) */
    cursor: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 24 24'><path fill='%23FF1493' stroke='white' stroke-width='2' d='M5.5 3.21l10.8 15.65-5.65.65L14.5 24l-3.62.9-2.5-6.63-4.13 3.63V3.21z'/></svg>"), auto;
}

body { background: #fcfcfc; overflow-x: hidden; }

/* HOVER RAISE EFFECT */
.hover-effect {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    background: #fff;
    position: relative;
    z-index: 1;
}
.hover-effect:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    z-index: 10;
}

/* 1. HEADER */
.main-header {
    background: #9b240f; 
    padding: 2rem 5%; 
    display: flex;
    justify-content: left; 
    align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.logo { 
    height: 30px; 
}

/* 2. HERO SECTION (UNIVERSAL SHRINK-WRAP FIX) */
/* We removed all fixed heights (vh/px) so the box perfectly hugs the image */
.hero-section {
    width: 100%;
    position: relative;
    overflow: hidden;
    background: transparent; /* KILLED the red background completely */
    height: auto; 
}

.carousel-container { 
    width: 100%; 
    position: relative;
    height: auto; 
}

.carousel-track {
    display: flex;
    width: 100%;
    align-items: center; /* Keeps images vertically centered if they are different sizes */
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.slide {
    min-width: 100%;
    position: relative; 
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    height: auto;
}

/* IMAGE STYLING */
.banner-img {
    position: relative; /* Image dictates the height of the slide */
    display: block; 
    width: 100%; 
    height: auto; /* Scales perfectly proportionally */
    object-fit: contain; /* Guarantees 100% of the image is always visible */
    z-index: 0;
    filter: brightness(0.8);
}

/* Slide 1 Specific (The one with text) */
.slide-1 { background-color: transparent; }
.slide-1 .banner-img {
    filter: none !important;
}

/* Content Styling (Text & Buttons) */
.content {
    position: absolute; 
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); 
    z-index: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white; 
    width: 90%; 
}

/* Buttons */
.btn-hero {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 25px;
    background: white;
    color: #333;
    font-size: 1rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
}
.prev-btn, .next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.3);
    color: white;
    border: none;
    padding: 15px;
    cursor: pointer;
    font-size: 1.5rem;
    border-radius: 50%;
    margin: 0 20px;
    z-index: 2;
}
.next-btn { right: 0; }

/* Precise spacing for the bottom navigation links */
.footer-nav-links {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 2rem !important; /* This creates the wide spacing you asked for */
    margin-bottom: 0.5rem !important;
    flex-wrap: nowrap !important; 
}

/* This kills the blue and visited purple colors for these specific links */
.footer-nav-links a, 
.footer-nav-links a:visited {
    color: #aaa !important;
    text-decoration: none !important;
    transition: color 0.3s ease;
}

.footer-nav-links a:hover {
    color: #fff !important;
}

/* --- MOBILE ADJUSTMENTS --- */
@media (max-width: 768px) {
    /* Header Slimming */
    .main-header {
        padding: 1rem 5% !important; 
        justify-content: center !important; 
    }
    .logo {
        height: 24px !important; 
    }

    /* Content Scaling */
    .content h1 {
        font-size: 1.5rem !important;
    }
    .btn-hero {
        padding: 8px 20px !important;
        font-size: 0.9rem !important;
        margin-top: 10px !important;
    }
    .prev-btn, .next-btn {
        padding: 10px;
        font-size: 1.2rem;
        margin: 0 5px; 
    }
}


/* 3. MAIL SECTION (Home) */
.mail-section {
    padding: 5rem 2rem;
    text-align: center; 
    border-bottom: 1px solid #eee;
}
.mail-section h2 { margin-bottom: 0.5rem; }
.mail-section p { margin-bottom: 1.5rem; color: #666; }
.btn-primary {
    display: inline-block; 
    padding: 12px 30px;
    background: #333;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

/* 4. PROJECTS SECTION */
.projects-section { padding: 5rem 5%; background: #fff; }
.projects-section h2 { text-align: center; margin-bottom: 2rem; }
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
.project-card {
    background: #f9f9f9;
    border-radius: 12px;
    border: 1px solid #eee;
    overflow: hidden; 
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s;
    cursor: pointer; 
    padding-bottom: 1.5rem; 
}
.project-card:hover {
    transform: translateY(-10px); 
    box-shadow: 0 10px 20px rgba(0,0,0,0.1); 
    background: #fff; 
    border-color: #ddd;
}
.project-slider {
    display: flex;
    overflow-x: auto; 
    scroll-snap-type: x mandatory; 
    scrollbar-width: none; 
}
.project-slider::-webkit-scrollbar { display: none; }
.project-slider img {
    min-width: 100%; 
    height: 200px; 
    object-fit: cover; 
    scroll-snap-align: center; 
}
.project-info { padding: 1.5rem; text-align: center; }
.project-info h3 { margin-bottom: 10px; font-size: 1.5rem; }
.project-info p { color: #666; margin-bottom: 20px; font-size: 0.9rem; }
.project-link {
    color: #3498db;
    font-weight: bold;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: border 0.3s;
}
.project-link:hover { border-bottom: 2px solid #3498db; }

/* 5. REVIEWS SECTION */
.reviews-section { padding: 5rem 0; background: #eee; overflow: hidden; }
.reviews-section h2 { text-align: center; margin-bottom: 3rem; }
.marquee-container { width: 100%; overflow: hidden; white-space: nowrap; }
.marquee-content { display: inline-flex; animation: scroll 20s linear infinite; }
.marquee-content:hover { animation-play-state: paused; }
.review-card {
    background: white;
    width: 300px;
    padding: 2rem;
    margin: 0 1rem;
    border-radius: 12px;
    white-space: normal;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* 6. FOUNDER SECTION */
.founder-section { padding: 5rem 5%; background: #fff; }
.founder-section h2 { text-align: center; margin-bottom: 2rem; }
.founder-content { display: flex; gap: 3rem; align-items: center; justify-content: center; flex-wrap: wrap; }
.founder-carousel img { width: 250px; height: 250px; object-fit: cover; border-radius: 50%; }


/* =========================================
   7. EXPANDED FOOTER STYLING
   ========================================= */

.main-footer { 
    background: #222; 
    color: #aaa; 
    padding: 5rem 5%; /* Expanded size */
    text-align: center; 
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem; /* Increased spacing between sections */
}

/* The Social Icons Container */
.social-links {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 1rem !important; /* This creates the even spacing between symbols */
    flex-wrap: wrap;
}

/* TARGETING THE LINKS DIRECTLY TO KILL THE BLUE */
.social-links a, 
.social-links a:visited, 
.social-links a:active,
.footer-bottom a,
.footer-bottom a:visited {
    color: inherit !important; /* Takes the grey/white color from the parent */
    text-decoration: none !important;
}

/* Individual Icon Circle Styling */
.social-links a {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 50px !important;
    height: 50px !important;
    background: #333 !important;
    border-radius: 50% !important;
    font-size: 1.4rem !important;
    transition: all 0.3s ease !important;
}

/* Hover effects for brand colors */
.social-links a:hover {
    transform: translateY(-5px) !important;
    background: #444 !important;
}

.social-links a:hover .fa-instagram { color: #E1306C !important; }
.social-links a:hover .fa-linkedin-in { color: #0077b5 !important; }
.social-links a:hover .fa-whatsapp { color: #25D366 !important; }
.social-links a:hover .fa-facebook-f { color: #1877F2 !important; }

/* Bottom Links & Copyright Alignment */
.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    font-size: 0.95rem;
    margin-top: 1rem;
}

.footer-bottom a {
    color: #aaa !important;
}

.footer-bottom a:hover {
    color: #fff !important;
}
/* =========================================
   8. CONTACT US PAGE STYLING
   ========================================= */

.contact-page-wrapper {
    background: #f8f8f8;
    min-height: 80vh; 
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3rem 1rem;
}

.contact-container {
    background: #fff;
    padding: 3rem;
    width: 100%;
    max-width: 600px; 
    border-radius: 15px;
    border: 1px solid #eee;
    text-align: center;
}
.contact-container h2 { font-size: 2rem; margin-bottom: 0.5rem; color: #333; }
.contact-subtitle { color: #777; margin-bottom: 2rem; font-size: 0.95rem; }

.sophisticated-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem; 
    text-align: left; 
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    font-size: 0.9rem;
    color: #444;
}

.form-group input[type="text"], 
.form-group input[type="email"], 
.form-group textarea {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    background: #fafafa;
    transition: all 0.3s ease;
    width: 100%;
    outline: none; 
}

.form-group input:focus, 
.form-group textarea:focus {
    border-color: #333;
    background: #fff;
}

/* --- FIXED CHECKBOX GRID --- */
.checkbox-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; 
    gap: 15px;
    margin-top: 5px;
}

.checkbox-grid label.checkbox-item {
    display: flex;       
    flex-direction: row; 
    align-items: center; 
    gap: 10px;           
    cursor: pointer;
    font-weight: normal; 
    font-size: 0.95rem;
    color: #555;
    margin: 0;           
}

.checkbox-grid label.checkbox-item:hover { color: #000; }

.checkbox-item input[type="checkbox"] { display: none; }

.custom-checkbox {
    width: 20px;
    height: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fafafa;
    transition: all 0.3s;
    flex-shrink: 0; 
}

.checkbox-item input[type="checkbox"]:checked + .custom-checkbox {
    background: #333;
    border-color: #333;
}

.checkbox-item input[type="checkbox"]:checked + .custom-checkbox::after {
    content: '\2713'; 
    color: white;
    font-size: 14px;
    font-weight: bold;
    display: block; 
}

.btn-submit {
    padding: 15px;
    background: #333;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 1rem;
}
.btn-submit:hover { background: #000; }

@media (max-width: 500px) {
    .checkbox-grid {
        grid-template-columns: 1fr; 
    }
}

/* =========================================
   9. ABOUT US PAGE STYLING
   ========================================= */

.about-hero {
    padding: 6rem 5%;
    background: #f4f4f4;
    text-align: center;
    border-bottom: 1px solid #ddd;
}

.hero-title {
    font-size: 3rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #9b240f; 
    font-weight: bold;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

.story-section {
    padding: 5rem 5%;
    background: #fff;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; 
    gap: 4rem;
    align-items: center;
}

.story-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.story-text p {
    margin-bottom: 1rem;
    color: #666;
    font-size: 1.05rem;
    line-height: 1.7;
}

.story-image-wrapper {
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.story-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.story-image-wrapper:hover img { transform: scale(1.05); }

.values-section {
    padding: 5rem 5%;
    background: #fafafa;
    text-align: center;
}

.values-section h2 { margin-bottom: 3rem; font-size: 2.2rem; }

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); 
    gap: 2rem;
}

.value-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid #eee;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    border-color: #9b240f; 
}

.value-card i {
    font-size: 2.5rem;
    color: #9b240f;
    margin-bottom: 1rem;
}

.value-card h3 { margin-bottom: 0.8rem; color: #333; }
.value-card p { font-size: 0.95rem; color: #666; }

.team-section {
    padding: 5rem 5%;
    background: #fff;
    text-align: center;
}

.team-section h2 { margin-bottom: 3rem; font-size: 2.2rem; }

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
}

.team-member { text-align: center; }

.team-image-wrapper {
    width: 180px;
    height: 180px;
    margin: 0 auto 1.5rem auto;
    border-radius: 50%; 
    overflow: hidden;
    border: 3px solid #f4f4f4;
    transition: border-color 0.3s ease;
}

.team-member:hover .team-image-wrapper { border-color: #9b240f; }

.team-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-name {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 0.3rem;
}

.team-info {
    color: #777;
    font-size: 0.95rem;
    font-style: italic;
}

@media (max-width: 768px) {
    .story-grid {
        grid-template-columns: 1fr; 
        gap: 2rem;
    }
    .hero-title { font-size: 2.2rem; }
}

/* =========================================
   11. PROJECTS PAGE STYLING (REVISED)
   ========================================= */

.projects-main-wrapper {
    padding: 3rem 5%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4rem; 
}

.page-header-container {
    display: flex;             
    justify-content: center;   
    align-items: center;       
    gap: 1.5rem;               
    padding: 4rem 1rem 2rem 1rem;
    background: #fcfcfc;
}

.page-header-logo {
    display: block;
    max-width: 80px;  
    height: auto;
}

.header-text { text-align: left; }

.header-text h1 { 
    font-size: 3rem; 
    color: #333; 
    margin-bottom: 0.2rem;
    line-height: 1;
}

.header-text p { 
    color: #777; 
    font-size: 1.2rem;
    margin: 0;
}

@media (max-width: 600px) {
    .page-header-container {
        flex-direction: column;
        text-align: center;
    }
    .header-text h1 { text-align: center;
            font-size:1.5rem;
        
    }
}

.projects-row {
    display: grid;
    grid-template-columns: 1fr 1fr; 
    gap: 2rem; 
    width: 100%;
}

.project-split-card {
    position: relative;
    height: 400px; 
    border-radius: 15px; 
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05); 
}

.project-split-card .bg-img {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: 0;
    transition: transform 0.6s ease;
}

.project-split-card .overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.4); 
    z-index: 1;
    transition: background 0.3s;
}

.card-content {
    position: relative;
    z-index: 2;
}

.card-content h2 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.project-split-card:hover .bg-img { transform: scale(1.1); }
.project-split-card:hover .overlay { background: rgba(0,0,0,0.6); }

.photoshoot-section {
    background: #fff;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #333;
}

.collage-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); 
    grid-auto-rows: 200px;
    gap: 15px;
}

.collage-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.collage-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}
.collage-item:hover img { transform: scale(1.05); }

.collage-item.large { grid-column: span 2; grid-row: span 2; }
.collage-item.wide { grid-column: span 2; }
.collage-item.tall { grid-row: span 2; }

.btn-outline {
    display: inline-block;
    padding: 12px 30px;
    border: 2px solid white;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 30px;
    transition: all 0.3s;
}
.btn-outline:hover {
    background: white;
    color: #333;
}

@media (max-width: 768px) {
    .projects-row {
        grid-template-columns: 1fr; 
        gap: 2rem;
    }
    .collage-grid {
        grid-template-columns: 1fr 1fr; 
    }
    .project-split-card {
        height: 300px;
    }
}