* {
    margin: 0;       
    padding: 0;       
    box-sizing: border-box;
}
body {
    font-family: Arial, sans-serif;
    background-color: #0c2610;
overflow-x: hidden;

}
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
/* navbar hero section */
/* NAVBAR HERO SECTION */

/* Base Navbar Styling */
.navbar {
    padding: 20px 0;
    position: fixed;
    width: 100%;
    z-index: 1000;
    background-color: transparent;
    transition: background-color 0.4s ease; /* Slightly slower transition for smoothness */
}

/* Scroll Effect */
.navbar.scrolled {
    background-color: #000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5); /* Attractive shadow when scrolled */
    padding: 15px 0; /* Slightly reduce padding when scrolled */
}

.navbar-brand {
    color: #2ecc71 !important;
    font-weight: 700; /* Bolder font */
    font-size: 26px; /* Slightly larger */
    letter-spacing: -0.5px;
    padding: 0;
}

/* Navigation Links */
.nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 16px; /* Slightly larger links */
    font-weight: 500;
    padding: 8px 20px !important;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #2ecc71 !important;
}

/* Subscribe Button */
.subscribe-btn {
    border: 1px solid #2ecc71; /* Use the brand color for the border */
    color: #2ecc71 !important;
    border-radius: 25px; /* More rounded */
    margin-left: 15px; /* Increased margin */
    padding: 8px 30px !important;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.subscribe-btn:hover {
    background-color: #2ecc71;
    color: #000 !important;
}

/* Search Icon */
.search-icon {
    margin-left: 25px;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.search-icon:hover {
    opacity: 0.8;
}

/* --- CUSTOM HAMBURGER/CLOSE ICON STYLING (The Fix) --- */

.navbar-toggler {
    border: none !important;
    padding: 0 !important;
    background: transparent !important;
}

.navbar-toggler:focus {
    box-shadow: none !important;
}

/* Container for the bars */
.navbar-toggler-icon-custom {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 25px;
    height: 25px;
    cursor: pointer;
}

/* Individual Bar Styling */
.navbar-toggler-icon-custom .bar {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #fff; /* White bars */
    border-radius: 1px;
    transition: all 0.3s ease-in-out;
}

/* Hamburger to Close Icon Transition */
/* When the navbar is NOT collapsed (i.e., open), Bootstrap adds the .collapsed class. */
.navbar-toggler[aria-expanded="true"] .top-bar {
    transform: translateY(11px) rotate(45deg); /* Move down and rotate */
}

.navbar-toggler[aria-expanded="true"] .middle-bar {
    opacity: 0; /* Hide middle bar */
}

.navbar-toggler[aria-expanded="true"] .bottom-bar {
    transform: translateY(-11px) rotate(-45deg); /* Move up and rotate */
}


/* --- MOBILE RESPONSIVE ENHANCEMENTS (max-width: 991px) --- */
@media (max-width: 991px) {
    .navbar {
        background-color: #000; /* Ensure mobile view is always black background */
        padding: 15px 0;
    }

    .navbar-collapse {
        background-color: #111; /* Darker background for the dropdown */
        border-radius: 10px;
        margin-top: 10px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    }

    .navbar-nav {
        align-items: center;
        width: 100%;
        padding: 10px 0;
    }

    .nav-item {
        width: 90%; /* Give it some width for better touch targets */
        text-align: center;
        margin: 5px 0;
    }

    .nav-link {
        font-size: 16px;
        color: rgba(255, 255, 255, 0.9) !important;
        padding: 10px 15px !important;
        border-radius: 5px;
        transition: background-color 0.3s ease;
    }

    .nav-link:hover {
        background-color: rgba(46, 204, 113, 0.2);
        color: #2ecc71 !important;
    }

    .d-flex {
        flex-direction: column;
        align-items: center;
        width: 100%;
        margin-top: 15px;
        padding-bottom: 20px;
    }

    .subscribe-btn {
        width: 80%; /* Make the button wider */
        max-width: 250px;
        text-align: center;
        margin: 10px 0;
        padding: 12px 30px !important; /* Larger padding for better touch */
        border: 2px solid #2ecc71; /* Thicker border */
        color: #2ecc71 !important;
        border-radius: 30px;
    }

    .search-icon {
        margin-top: 15px;
        margin-left: 0; /* Remove left margin in mobile view */
        opacity: 0.9;
    }
}
/* Hero Section Styles */
.hero-section {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('./cipherproducts/banner1.png') no-repeat center center;
    background-size: cover;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    text-align: center;
    color: white;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 64px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease-out forwards;
}

.hero-subtitle {
    color: #2ecc71;
    font-size: 24px;
    font-weight: 400;
    margin: 0;
    letter-spacing: 0.5px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease-out 0.5s forwards;
}

/* Keyframe animations */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* navbar hero section */
.hero-snd-sec {
    background-color: #2ecc71;
    color: white;
}

.hero-section-1 {
    display: flex;
    align-items: center;
    padding: 40px 0;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.hero-section-1.is-visible {
    opacity: 1;
    transform: translateY(0);
}
.logo-column {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.content-column {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.hero-section-1.is-visible .logo-column,
.hero-section-1.is-visible .content-column {
    opacity: 1;
    transform: translateX(0);
}
.logo-column {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 50px;
}

.logo {
    font-size: 8rem;
    font-weight: bold;
    color: white;
    line-height: 1;
    font-family: Arial, sans-serif;
}

.logo-wrapper {
    position: relative;
    padding: 20px;
}

.triangle {
    display: inline-block;
    transform: rotate(180deg);
    font-size: 6rem;
    position: relative;
    top: -10px;
    margin-left: -10px;
}

.content-column {
    padding-left: 30px;
    padding-right: 80px;

}

.description {
    font-size: 1.1rem;
    margin-bottom: 25px;
    line-height: 1.6;
    opacity: 0.95;
}

.contact-btn {
    display: inline-block;
    background-color: transparent;
    border: 1px solid white;
    color: white;
    padding: 8px 30px;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    margin-top: 10px;
}

.contact-btn:hover {
    background-color: white;
    color: #2ecc71;
    text-decoration: none;
}

@media (max-width: 991px) {
    .logo-column {
        justify-content: center;
        padding-right: 0;
        margin-bottom: 40px;
    }

    .content-column {
        padding: 0 20px;
        border-left: none;
        text-align: center;
    }

    .logo {
        font-size: 6rem;
    }
}


/* show reels */
  .show-stils-bkg {
    background-image: 
      url('./cipherproducts/Vector\ 2a.png'), 
      linear-gradient(
        135deg, 
        #000000 0%, 
        #05110a 30%, 
        #0c2111 70%, 
        #000000 100%
    );
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover; 

}

                .header-section {
                    text-align: center;
                    padding: 60px 20px 40px;
                }
        
                .header-section h1 {
                    font-size: 3.5rem;
                    color: #FFFFFF;
                    font-weight: 500;
                    margin-bottom: 15px;
                    letter-spacing: 2px;
                }
        
                .header-section p {
                    color: #39B54A;
                    font-size: 1.1rem;
                    font-weight: 300;
                }
        
                .nav-filters {
                    display: flex;
                    justify-content: center;
                    gap: 30px;
                    margin: 40px 0;
                    flex-wrap: wrap;
                }
        
                .nav-filters a {
                    color: #7dd3c0;
                    text-decoration: none;
                    font-size: 0.95rem;
                    transition: color 0.3s;
                    position: relative;
                    cursor: pointer;
                }
        
                .nav-filters a:hover,
                .nav-filters a.active {
                    color: #ffffff;
                }
        
                .nav-filters a.active::after {
                    content: '';
                    position: absolute;
                    bottom: -5px;
                    left: 0;
                    right: 0;
                    height: 1px;
                    background: #7dd3c0;
                }
        
                .video-grid {
                    max-width: 1350px;
                    margin: 0 auto;
                    padding: 20px;
                }
        
                .video-card {
                    position: relative;
                    margin-bottom: 30px;
                    overflow: hidden;
                    border-radius: 8px;
                    cursor: pointer;
                    transition: all 0.3s;
                }
        
                .video-card.hidden {
                    display: none;
                }
        
                .video-card:hover {
                    transform: translateY(-5px);
                }
        
                .video-thumbnail {
                    position: relative;
                    width: 100%;
                    padding-top: 56.25%;
                    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
                    overflow: hidden;
                }
        
                .video-thumbnail img {
                    position: absolute;
                    top: 0;
                    left: 0;
                    width: 100%;
                    height: 100%;
                    object-fit: cover !important;
                }
        
                .video-overlay {
                    position: absolute;
                    top: 0;
                    left: 0;
                    right: 0;
                    bottom: 0;
                    background: rgba(0, 0, 0, 0.4);
                }
        
                .video-duration {
                    position: absolute;
                    bottom: 10px;
                    right: 10px;
                    color:white;
                    background: rgba(0, 0, 0, 0.8);
                    padding: 3px 8px;
                    border-radius: 3px;
                    font-size: 0.8rem;
                    z-index: 2;
                }
        
                .video-description {
                    padding: 15px 0;
                    font-size: 0.9rem;
                    color: #cccccc;
                }
        
                .view-all-btn {
                    text-align: center;
                    margin: 50px 0;
                }
        
                .view-all-btn a {
                    background: transparent;
                    border: 1px solid #7dd3c0;
                    color: #7dd3c0;
                    padding: 12px 40px;
                        text-decoration: none;
                    border-radius: 25px;
                    cursor: pointer;
                    transition: all 0.3s;
                    font-size: 0.9rem;
                    text-transform: uppercase;
                    letter-spacing: 1px;
                }
        
                .view-all-btn a:hover {
                    background: #7dd3c0;
                    color: #000000;
                }
        
                @media (max-width: 768px) {
                    .header-section h1 {
                        font-size: 2.5rem;
                    }
        
                    .nav-filters {
                        gap: 15px;
                    }
                }
/* show reels */

/* show skills */

        .gallery-container {
            max-width: 1350px;
            margin: 0 auto;
            padding: 0 40px 80px 40px;
            position: relative;
            z-index: 1;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            grid-template-rows: repeat(2, 290px);
            gap: 20px;
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 16px;
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            background: #1a1a1a;
        }

        .gallery-item:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 40px rgba(125, 211, 192, 0.3);
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.85) 100%);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 30px;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }

        .gallery-title {
            font-size: 1.8rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 10px;
            line-height: 1.1;
        }

        .gallery-subtitle {
            font-size: 0.75rem;
            color: #7dd3c0;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            line-height: 1.5;
        }

        /* Grid Layout - All Tab (4 items) */
        .layout-all .item-1 {
            grid-column: 1 / 3;
            grid-row: 1 / 3;
        }

        .layout-all .item-2 {
            grid-column: 3 / 5;
            grid-row: 1 / 2;
        }

        .layout-all .item-3 {
            grid-column: 3 / 5;
            grid-row: 2 / 3;
        }

        .layout-all .item-4 {
            grid-column: 5 / 6;
            grid-row: 1 / 3;
        }

        /* Grid Layout - Single Tab (1 item centered) */
        .layout-single {
            display: flex;
            justify-content: center;
            align-items: flex-start;
            min-height: 500px;
            padding-top: 20px;
        }

        .layout-single .gallery-item {
            width: 450px;
            height: 450px;
            grid-column: auto;
            grid-row: auto;
        }

        .load-more-btn {
            text-align: center;
            margin: 50px 0;
            position: relative;
            z-index: 1;
        }

        .load-more-btn a {
            background: transparent;
            border: 1px solid #7dd3c0;
            color: #7dd3c0;
            padding: 14px 50px;
            border-radius: 30px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            font-weight: 500;
        }

        .load-more-btn a:hover {
            background: #7dd3c0;
            color: #000000;
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(125, 211, 192, 0.3);
        }

        @media (max-width: 1200px) {
            .gallery-grid {
                grid-template-columns: repeat(4, 1fr);
                grid-template-rows: repeat(2, 300px);
            }

            .layout-all .item-1 {
                grid-column: 1 / 3;
                grid-row: 1 / 3;
            }

            .layout-all .item-2 {
                grid-column: 3 / 5;
                grid-row: 1 / 2;
            }

            .layout-all .item-3 {
                grid-column: 3 / 4;
                grid-row: 2 / 3;
            }

            .layout-all .item-4 {
                grid-column: 4 / 5;
                grid-row: 2 / 3;
            }
        }

        @media (max-width: 768px) {
      

            .gallery-container {
                padding: 0 20px 60px 20px;
            }

            .gallery-grid {
                grid-template-columns: 1fr;
                grid-template-rows: auto;
                gap: 20px;
            }

            .layout-all .item-1,
            .layout-all .item-2,
            .layout-all .item-3,
            .layout-all .item-4 {
                grid-column: 1 / 2 !important;
                grid-row: auto !important;
                min-height: 300px;
            }

            .layout-single .gallery-item {
                width: 100%;
                max-width: 450px;
                height: 400px;
            }

            .gallery-title {
                font-size: 1.4rem;
            }

            .gallery-subtitle {
                font-size: 0.7rem;
            }
        }

        /* show skills */



.footer-bkg {
    background: 
        url('./cipherproducts/Vector\ 2.png') no-repeat center center, 
        linear-gradient(
            135deg, 
            #000000 0%, 
            #0c3b1f 30%, 
            #000000 70%, 
            #000000 100%
        );
    background-size: cover;
    color: white;
}


.subscribe-section {
    padding: 60px 20px;
    background: linear-gradient(to right, rgba(12, 69, 47, 0.3), rgba(0, 76, 47, 1));


    border-radius: 20px;
    /* backdrop-filter: blur(2px); */
    max-width: 1300px;
    margin: 40px auto;
}

.section-title {
    font-size: 42px;
    text-align: center;
    margin-bottom: 10px;
    color: white;
}

.section-subtitle {
    color: #2ecc71;
    text-align: center;
    font-size: 18px;
    margin-bottom: 40px;
}

.form-control {
    background: rgba(0, 40, 16, 0.3);
    border: 1px solid #39B54A;
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    height: auto;
}

.form-control:focus {
    background: rgba(0, 40, 16, 0.5);
    border-color: #2ecc71;
    color: white;
    box-shadow: 0 0 0 0.25rem rgba(46, 204, 113, 0.25);
}

.form-control::placeholder {
    color:#39B54A;
}

.btn-signup {
    background: #39B54A4D;
    color: white;
    padding: 12px 40px;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-signup:hover {
    background: #27ae60;
    color: white;
}

.privacy-text {
    text-align: center;
    color: #DBDBDB99;
    font-size: 14px;
    margin-top: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.social-links {
    text-align: center;
    margin-top: 40px;
}

.social-links a {
    color: white;
    font-size: 24px;
    margin: 0 15px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.social-links a:hover {
    opacity: 1;
}

.copyright {
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .subscribe-section {
        padding: 40px 20px;
    }

    .section-title {
        font-size: 32px;
    }

    .form-group {
        margin-bottom: 15px;
    }
}

/* stills */

.skils-bkg {
    /* background: linear-gradient(
      180deg, 
      #000000 0%, 
      #000000 30%, 
      #000000 70%, 
      #07491d 100%
    ); */
    min-height: 100vh;
    color: white;
  }
.stills-section {
    padding: 60px 0;
    max-width: 1300px;
    margin: 0 auto;
}

.section-title {
    font-size: 42px;
    text-align: center;
    margin-bottom: 10px;
    color: white;
}

.section-subtitle {
    color: #2ecc71;
    text-align: center;
    font-size: 18px;
    margin-bottom: 40px;
}

.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 48px;
    list-style: none;
    padding: 0;
}

.filter-tabs button {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    padding: 8px 0;
    font-size: 16px;
    cursor: pointer;
    transition: color 0.3s ease;
    position: relative;
}

.filter-tabs button.active {
    color: #2ecc71;
}

.filter-tabs button:hover {
    color: #2ecc71;
}


.load-more {
    display: block;
    width: fit-content;
    margin: 40px auto 0;
    color: #2ecc71;
    border: 1px solid #2ecc71;
    padding: 8px 38px;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    background: transparent;
    font-size: 16px;
    cursor: pointer;
}

.load-more:hover {
    background: #2ecc71;
    color: white;
}

.hidden {
    display: none !important;
}

.gallery-item {
    transition: all 0.3s ease;
}


@media (max-width: 768px) {
 

    .filter-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 10px;
        gap: 20px;
    }
}

/* skills */

/* follow */

.follow-banner {
    position: relative;
    background-color: #101010;
    color: white;
    border-radius: 10px;
    padding: 3rem 3rem;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Background icons */
.follow-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('./cipherproducts/varunmohan_doodle_of_camera_follow_button_movies_and_videos_dar_c6d54db9-5ef7-435f-a9cb-f9612bed0c1e\ \(2\).png') no-repeat center center;
    background-size: cover;
    opacity: 0.1;
    z-index: 1;
}

/* Content styling */
.follow-banner .content {
    z-index: 2;
    max-width: 60%;
}

.follow-banner h1 {
    font-size: 2.5rem;
    font-family: "Open Sans", serif;
    font-weight: bold;
    margin-bottom: 1rem;
}

.follow-banner p {
    font-size: 1rem;
    font-family: "Open Sans", serif;
    margin-bottom: 1.5rem;
}

.follow-banner .btn-custom {
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
    background-color: transparent;
    border: 2px solid white;
    color: white;
    border-radius: 30px;
    transition: 0.3s ease;
}

.follow-banner .btn-custom:hover {
    background-color: white;
    color: #101010;
}

/* YouTube icon */
.follow-banner .youtube-icon {
    z-index: 2;
    width: 240px;
    height: auto;
    position: relative;
}

@media (max-width: 768px) {
    .follow-banner {
        flex-direction: column;
        text-align: center;
    }

    .follow-banner .content {
        max-width: 100%;
        margin-bottom: 2rem;
    }

    .follow-banner .youtube-icon {
        width: 90px;
    }
}

/* follow */

/* fade in */

@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.5s ease;
}

.fade-in.animate {
    animation: fadeSlideUp 0.8s ease forwards;
}
/* fade in */


/* Hero showreels Section Styles */
.hero-show-section {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('./cipherproducts/banner1.png') no-repeat center center;
    background-size: cover;
    min-height: 51vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-show-content {
    text-align: center;
    color: white;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.hero-show-title {
    font-size: 64px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease-out forwards;
}

.hero-show-subtitle {
    color: #2ecc71;
    font-size: 24px;
    font-weight: 400;
    margin: 0;
    letter-spacing: 0.5px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease-out 0.5s forwards;
}

/* Keyframe animations */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
