* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Manrope, sans-serif !important;
    font-style: normal !important;
}

/* Custom Scrollbar Styles */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 5px;
    transition: background 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* For Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: #888 #f1f1f1;
}

html {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

body {
    height: 100%;
    width: 100vw;
    background-color: #FAF9F6;
    overflow-x: hidden;
    position: relative;
}

#main {
    width: 100%;
    overflow-x: hidden;
    padding: 1vw 2.8vw;
    position: relative;
}

#nav {
    height: 80px;
    width: 100%;
    /* background-color: rgb(19, 216, 160); */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2vh;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease forwards;
    background-color: rgba(250, 249, 246, 0.95);
}

.nav-scrolled {
    background-color: rgba(250, 249, 246, 0.98) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.05);
    padding: 1vh 3vw !important;
}

#nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

#nav1 img{
    width: 3vw;
    transition: transform 0.5s ease;
}

#nav1 img:hover {
    transform: rotate(5deg) scale(1.1);
}

#nav2 {
    display: flex;
    align-items: center;
    gap: 30px;
}

#nav2 a {
    text-decoration: none;
    font-size: 1.2vw;
    font-weight: 600;
    font-family: Manrope, sans-serif !important;
    font-style: normal !important;
    color: #000;
    position: relative;
    transition: all 0.3s ease;
}

#nav2 a.active {
    font-weight: 700;
    color: #000;
}

#nav2 a.active:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #000;
    bottom: -5px;
    left: 0;
}

#nav2 a:not(.contact-btn):hover {
    color: #333;
}

#nav2 a:not(.contact-btn):after {
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    background-color: #000;
    bottom: -5px;
    left: 0;
    transition: width 0.3s ease;
}

#nav2 a:not(.contact-btn):hover:after {
    width: 100%;
}

#nav2 button {
    padding: 12px 30px;
    font-size: 16px;
    background-color: #000000;
    color: #fff;
    border: none;
    border-radius: 25px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    z-index: 1;
}

#nav2 button:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    z-index: -1;
}

#nav2 button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

#nav2 button:hover:before {
    left: 0;
}

#nav2 .contact-btn {
    padding: 12px 30px;
    font-size: 16px;
    background-color: #000000;
    color: #fff;
    border: none;
    border-radius: 25px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    z-index: 1;
    text-decoration: none;
    display: inline-block;
}

#nav2 .contact-btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    z-index: -1;
}

#nav2 .contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

#nav2 .contact-btn:hover:before {
    left: 0;
}

#hero {
    margin-top: 5px;
    width: 100%;
    height: 90%;
    /* background-color: lightgreen; */
    animation: fadeIn 1s ease 0.3s forwards;
    opacity: 0;
    animation-fill-mode: forwards;
    overflow: hidden;
}

/* #hero img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 1vw;
} */

#hero video{
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: top;
    border-radius: 1vw;
}

#about {
    margin-top: 2.5vw;
    height: fit-content;
    width: 100%;
    /* background-color: red; */
    display: flex;
    animation: fadeInUp 0.8s ease 0.6s forwards;
    opacity: 0;
    animation-fill-mode: forwards;
}

#about-left {
    width: 54.5%;
    height: 50%;
    padding: 3vw 0vw 0vw 6vw; 
    /* background-color: lightsteelblue; */
    line-height: 3vw;
    display: flex;
    /* position: relative; */
    /* background-color: red; */
}

#about-left h2 {
    padding-left: 1.5px;
    width: 70%;
    font-size: 2vw;
    font-family: Manrope, sans-serif !important;
    font-weight: 500;
    font-style: normal !important;
    padding-right: 2px;
    /* background-color: aqua; */
    /* display: flex; */

}
#about-left h2 span {
    font-size: 2vw;
    font-family:  Lora;
    font-weight: 500;
    font-style: italic;
}

#about-left  img{
    position: absolute;
    right: 63.1%;
    margin-top: 3.5vw;
    width: 2.4vw;
    height: 2.4vw;
    /* background-color: #FFD700; */
    /* display: none; */
}

.mobile-Arrow{
    display: none;
}

#line {
    right: 45.5%;
    position: absolute;
    margin-top: 4.7vw;
    width: 16vw;
    border-top: 1.6px solid #000;
    /* background-color: pink; */
}

#about-right {
    width: 45%;
    height: 70%;
    /* background-color: rgb(28, 239, 8); */
    padding-top: 7.1vw;
    padding-left: 1vw;
    position: relative;
}

#about-right h4 {
    /* background-color: pink; */
    width: 80%;
    font-size: 1.3vw;
    font-family: Manrope, sans-serif !important;
    font-weight: 500;
    font-style: normal !important;
    color: #333;
    line-height: 1.8vw;
}

#about-right button {
    padding: 12px 30px;
    font-size: 16px;
    background-color: #000000;
    color: #fff;
    border: none;
    border-radius: 25px;
    text-transform: uppercase;
    margin-top: 2.3vw;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    z-index: 1;
}

#about-right button:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    z-index: -1;
}

#about-right button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

#about-right button:hover:before {
    left: 0;
}

#about-right button i {
    font-size: 20px;
    font-weight: 200;
    padding-left: 5px;
    transition: transform 0.3s ease;
}

#about-right button:hover i {
    transform: translateX(5px);
}

#scroll {
    height: 20vw;
    width: 100%;
    /* background-color: lightgreen; */
    margin-top: 6vw;
    white-space: nowrap;
    overflow-x: hidden;
    overflow-y: hidden;
}

#contaner {
    width: 100%;
    height: 100%;
    /* background-color: rgb(255, 121, 11); */
    display: inline-block;
    align-items: center;
    animation-name: scroll;
    animation-duration: 10s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

#contaner img{
    /* display: none; */
    height: 80%;
    width: 22%;
    margin: 1.3vw;
    object-fit: cover;
    object-position: 10% 10%;
    border-radius: 20px;
}

@keyframes scroll {
    from{
        transform: translateX(0);
    }
    to{
        transform: translateX(-100%);
    }
}

#scroll-2 {
    height: 20vw;
    width: 100%;
    /* background-color: lightgreen; */
    white-space: nowrap;
    overflow-x: hidden;
    overflow-y: hidden;
}

#contaner-2 {
    width: 100%;
    height: 100%;
    /* background-color: rgb(255, 121, 11); */
    display: inline-block;
    align-items: center;
    animation-name: scroll-2;
    animation-duration: 10s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

#contaner-2 img{
    /* display: none; */
    height: 80%;
    width: 22%;
    margin: 1.3vw;
    object-fit: cover;
    object-position: 8% 18%;
    border-radius: 20px;
}

@keyframes scroll-2 {
    from {
        transform: translateX(-100%);
    }
    to{
        transform: translateX(0);
    }
}

#studio {
    width: 100%;
    height: fit-content;
    background-color: #000;
    border-radius: 10px;
    padding: 4vw 8vw;
}

#std-1 {
    /* background-color: red; */
    display: flex;
    position: relative;
}

#std-1 h5{
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5vw;
    font-weight: 500;
    font-size: 14px;
    font-family: Manrope, sans-serif !important;
    font-style: normal !important;
}

#std-1 img {
    width: 1.2vw;
    height: 1.2vw;
    margin-left: 12px;
}

#std-line {
    position: absolute;
    margin-left: 12px;
    width: 20vw;
    border-bottom: 0.8px solid #fff;
    right: 56%;
    bottom: 42%;
}

#std-2 {
    display: flex;
    justify-content: space-between;
    margin-top: 4vw;
    margin-bottom: 4vw;
}

#std-2 h3 {
    color: white;
    font-size: 2.5vw;
    font-weight: 500;
    font-family: Manrope, sans-serif !important;
    font-style: normal !important;
}

#std-2 h3 span {
    font-family: Lora;
    font-style: italic;
}

#std-2 button {
    padding: 12px 30px;
    font-size: 16px;
    background-color: #fff;
    color: #000;
    border: none;
    border-radius: 25px;
    text-transform: uppercase;
    margin-top: 4vw;
    display: flex;
    align-items: center;
    font-weight: 530;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    z-index: 1;
}

#std-2 button:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    z-index: -1;
}

#std-2 button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

#std-2 button:hover:before {
    left: 0;
}

#std-2 button i {
    font-size: 24px;
    font-weight: 400;
    padding-left: 8px;
    transition: transform 0.3s ease;
}

#std-2 button:hover i {
    transform: translateX(5px);
}

.slider-content {
	padding: 2rem;
}

.slider-wrapper {
	position: relative;
	width: 100%;
	overflow: hidden;
	border-radius: 20px;
}

.slider-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(255, 255, 255, 0.8);
	border: none;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 10;
	transition: all 0.3s ease;
}

.slider-arrow:hover {
	background: rgba(255, 255, 255, 1);
}

.slider-arrow i {
	font-size: 24px;
	color: #333;
}

.left-arrow {
	left: 20px;
}

.right-arrow {
	right: 20px;
}

/* Hide arrows on mobile and tablet */
@media screen and (max-width: 1023px) {
    .slider-arrow {
        display: none;
    }
}

/* Show arrows for desktop and larger tablets */
@media screen and (min-width: 1024px) {
    .slider-arrow {
        display: flex;
    }
}

/* Adjust arrow size for medium screens */
@media screen and (min-width: 1024px) and (max-width: 1366px) {
    .slider-arrow {
        width: 35px;
        height: 35px;
    }
    
    .slider-arrow i {
        font-size: 20px;
    }
    
    .left-arrow {
        left: 15px;
    }
    
    .right-arrow {
        right: 15px;
    }
}

/* Ensure smooth sliding animation */
.slider {
	display: flex;
	transition: transform 0.5s ease;
	border-radius: 20px;
}

.slider img {
	flex: 0 0 100%;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 20px;
}

/* Active state for navigation dots */
.slider-nav a.active {
	background: #fff;
	transform: scale(1.2);
}

/* Footer Styling */
#footer {
    width: 100%;
    background-color: #111;
    color: #fff;
    padding: 5vw 8vw 2vw;
    margin-top: 5vw;
    border-radius: 10px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-logo {
    width: 30%;
}

.footer-logo img {
    width: 8vw;
}

.footer-logo p {
    font-family: Manrope, sans-serif !important;
    font-size: 1vw;
    line-height: 1.6vw;
    opacity: 0.8;
    width: 80%;
    font-style: normal !important;
}

.footer-links {
    width: 25%;
}

.footer-links h4, .footer-contact h4 {
    font-family: Manrope, sans-serif !important;
    font-size: 1.2vw;
    margin-bottom: 1.5vw;
    position: relative;
    font-style: normal;
}

.footer-links h4:after, .footer-contact h4:after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background-color: #fff;
    bottom: -10px;
    left: 0;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 1vw;
}

.footer-links ul li a {
    color: #fff;
    text-decoration: none;
    font-family: Manrope, sans-serif;
    font-size: 1vw;
    opacity: 0.8;
    transition: all 0.3s ease;
    font-style: normal;
}

.footer-links ul li a:hover {
    opacity: 1;
    padding-left: 5px;
}

.footer-contact {
    width: 25%;
}

.footer-contact p {
    font-family: Manrope, sans-serif;
    font-size: 1vw;
    margin-bottom: 1vw;
    display: flex;
    align-items: center;
    opacity: 0.8;
    font-style: normal;
}

.footer-contact p i {
    margin-right: 10px;
    font-size: 1.2vw;
}

.social-icons {
    display: flex;
    margin-top: 2vw;
    gap: 15px;
    flex-wrap: wrap;
}

.social-icons a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icons a i {
    color: #fff;
    font-size: 1.2vw;
}

.social-icons a:hover {
    background-color: #fff;
    transform: translateY(-3px);
}

.social-icons a:hover i {
    color: #111;
}

.footer-bottom {
    margin-top: 4vw;
    padding-top: 2vw;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-family: Manrope, sans-serif;
    font-size: 0.9vw;
    opacity: 0.7;
    font-style: normal;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    #footer {
        padding: 40px 20px 20px;
        margin-top: 40px;
    }

    .footer-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .footer-logo, .footer-links, .footer-contact {
        width: 100%;
    }
    
    .footer-logo img {
        width: 80px;
    }
    
    .footer-logo p {
        font-size: 14px;
        line-height: 1.6;
        width: 100%;
    }
    
    .footer-links h4, .footer-contact h4 {
        font-size: 18px;
        margin-bottom: 20px;
    }
    
    .footer-links ul li {
        margin-bottom: 12px;
    }
    
    .footer-links ul li a {
        font-size: 14px;
    }
    
    .footer-contact p {
        font-size: 14px;
        margin-bottom: 12px;
    }
    
    .footer-contact p i {
        font-size: 16px;
        margin-right: 12px;
    }
    
    .social-icons {
        margin-top: 25px;
        justify-content: flex-start;
    }
    
    .social-icons a {
        width: 35px;
        height: 35px;
    }
    
    .social-icons a i {
        font-size: 16px;
    }
    
    .footer-bottom {
        margin-top: 40px;
        padding-top: 20px;
    }
    
    .footer-bottom p {
        font-size: 12px;
    }
}

/* For very small screens */
@media (max-width: 380px) {
    #footer {
        padding: 30px 15px 15px;
    }
    
    .footer-container {
        gap: 30px;
    }
    
    .footer-logo img {
        width: 35px;
    }
    
    .footer-logo p {
        font-size: 13px;
    }
    
    .footer-links h4, .footer-contact h4 {
        font-size: 16px;
    }
    
    .footer-links ul li a, .footer-contact p {
        font-size: 13px;
    }
    
    .social-icons a {
        width: 32px;
        height: 32px;
    }
    
    .social-icons a i {
        font-size: 14px;
    }
    
    .footer-bottom p {
        font-size: 11px;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Gallery Page Styling */
#gallery-hero {
    display: flex;
    align-items: center;
    height: 60vh;
    width: 100%;
    position: relative;
    overflow: hidden;
    margin-bottom: 4vw;
    border-radius: 20px;
}

.hero-content {
    width: 50%;
    padding: 0 5vw;
    z-index: 10;
    animation: fadeInLeft 1s ease forwards;
}

.hero-image {
    position: absolute;
    right: 0;
    top: 0;
    width: 60%;
    height: 100%;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(250, 249, 246, 1) 0%, rgba(250, 249, 246, 0.9) 30%, rgba(250, 249, 246, 0) 100%);
}

#gallery-hero h1 {
    font-size: 3.5vw;
    font-family: Manrope, sans-serif;
    font-weight: 600;
    margin-bottom: 1.5vw;
    color: #000;
}

#gallery-hero h1 span {
    font-family: Lora;
    font-style: italic;
}

#gallery-hero p {
    font-size: 1.2vw;
    font-family: Manrope, sans-serif;
    color: #666;
    margin-bottom: 3vw;
    width: 90%;
}

.hero-stats {
    display: flex;
    gap: 2vw;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2.5vw;
    font-weight: 700;
    color: #000;
    font-family: Manrope, sans-serif;
}

.stat-text {
    font-size: 0.9vw;
    color: #666;
    font-family: Manrope, sans-serif;
}

#gallery-filter-container {
    text-align: center;
    margin-bottom: 4vw;
    animation: fadeInUp 0.8s ease 0.2s forwards;
}

#gallery-filter-container h2 {
    font-size: 2.5vw;
    font-family: Manrope, sans-serif;
    margin-bottom: 2vw;
}

#gallery-filter-container h2 span {
    font-family: Lora;
    font-style: italic;
}

#gallery-filter {
    display: none;
    /* display: flex; */
    justify-content: center;
    gap: 1vw;
    margin: 0 auto;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 25px;
    font-size: 0.9vw;
    background-color: transparent;
    color: #333;
    border: 1px solid #ddd;
    border-radius: 30px;
    text-transform: uppercase;
    font-family: Manrope, sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    background-color: #f5f5f5;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.filter-btn.active {
    background-color: #000;
    color: #fff;
    border-color: #000;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

#gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3vw;
    padding: 0 5vw;
    animation: fadeInUp 0.8s ease 0.4s forwards;
}

.gallery-item {
    display: flex;
    background-color: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    flex-direction: column;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.gallery-img {
    width: 100%;
    height: 250px;
    position: relative;
    overflow: hidden;
}

.gallery-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover .gallery-img img {
    transform: scale(1.05);
}

.studio-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 1vw;
    font-family: Manrope, sans-serif;
    font-weight: 600;
    z-index: 5;
}

.studio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .studio-overlay {
    opacity: 1;
}

.quick-view-btn {
    padding: 10px 20px;
    background-color: #fff;
    color: #000;
    border: none;
    border-radius: 25px;
    font-family: Manrope, sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    transform: translateY(20px);
    opacity: 0;
}

.gallery-item:hover .quick-view-btn {
    transform: translateY(0);
    opacity: 1;
}

.quick-view-btn:hover {
    background-color: #000;
    color: #fff;
}

.gallery-info {
    width: 100%;
    padding: 2vw;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.gallery-info h3 {
    font-size: 1.5vw;
    font-family: Manrope, sans-serif;
    margin-bottom: 0.5vw;
}

.gallery-rating {
    display: flex;
    align-items: center;
    margin-bottom: 1vw;
}

.gallery-rating i {
    color: #FFD700;
    font-size: 1vw;
    margin-right: 2px;
}

.gallery-rating span {
    font-size: 0.8vw;
    color: #666;
    margin-left: 0.5vw;
    font-family: Manrope, sans-serif;
}

.gallery-info p {
    font-size: 1.1vw;
    line-height: 1.5vw;
    color: #666;
    margin-bottom: 1.5vw;
    font-family: Manrope, sans-serif;
}

.studio-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8vw;
    margin-bottom: 1.5vw;
}

.studio-features span {
    font-size: 1vw;
    color: #333;
    background-color: #f9f9f9;
    padding: 0.5vw 1vw;
    border-radius: 20px;
    display: flex;
    align-items: center;
    font-family: Manrope, sans-serif;
}

.studio-features span i {
    margin-right: 0.5vw;
    font-size: 1vw;
}

.studio-price {
    display: flex;
    align-items: baseline;
    margin-top: auto;
    margin-bottom: 1.5vw;
}

.studio-price .price {
    font-size: 1.8vw;
    font-weight: 700;
    color: #000;
    font-family: Manrope, sans-serif;
}

.studio-price .period {
    font-size: 0.9vw;
    color: #666;
    margin-left: 0.3vw;
    font-family: Manrope, sans-serif;
}

.book-btn {
    padding: 12px 25px;
    font-size: 0.9vw;
    background-color: #000;
    color: #fff;
    border: none;
    border-radius: 25px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    width: fit-content;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    z-index: 1;
    font-family: Manrope, sans-serif;
    font-weight: 600;
}

.book-btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    z-index: -1;
}

.book-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.book-btn:hover:before {
    left: 0;
}

.book-btn i {
    margin-left: 0.5vw;
    transition: transform 0.3s ease;
}

.book-btn:hover i {
    transform: translateX(5px);
}

#gallery-cta {
    position: relative;
    text-align: center;
    margin: 2vw 5vw 8vw 5vw;
    padding: 5vw;
    background-color: #000;
    color: #fff;
    border-radius: 15px;
    animation: fadeInUp 0.8s ease 0.6s forwards;
    overflow: hidden;
}

.cta-content {
    position: relative;
    z-index: 5;
}

.cta-decoration {
    position: absolute;
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
    opacity: 0.1;
}

.cta-decoration img {
    width: 10vw;
    height: 10vw;
}

#gallery-cta h2 {
    font-size: 2.5vw;
    font-family: Manrope, sans-serif;
    margin-bottom: 1vw;
}

#gallery-cta h2 span {
    font-family: Lora;
    font-style: italic;
}

#gallery-cta p {
    font-size: 1.2vw;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2vw;
    font-family: Manrope, sans-serif;
}

#gallery-cta button {
    padding: 15px 35px;
    font-size: 1vw;
    background-color: #fff;
    color: #000;
    border: none;
    border-radius: 30px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    z-index: 1;
    font-family: Manrope, sans-serif;
    font-weight: 600;
}

#gallery-cta button:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    z-index: -1;
}

#gallery-cta button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

#gallery-cta button:hover:before {
    left: 0;
}

#gallery-cta button i {
    margin-left: 0.8vw;
    transition: transform 0.3s ease;
}

#gallery-cta button:hover i {
    transform: translateX(5px);
}

/* Modal Styling */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    padding: 20px;
    overflow: hidden;
}

.modal-content {
    background-color: #fff;
    width: 90%;
    max-width: 1100px;
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    max-height: 90vh;
    position: relative;
    animation: fadeIn 0.3s ease;
    margin: 0 auto;
}

/* Modal Scrollbar Styles */
.modal-info::-webkit-scrollbar {
    width: 8px;
}

.modal-info::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.modal-info::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.modal-info::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* For Firefox */
.modal-info {
    scrollbar-width: thin;
    scrollbar-color: #888 #f1f1f1;
}

.close-modal {
    position: absolute;
    top: 18px;
    right: 20px;
    font-size: 26px;
    cursor: pointer;
    color: #000000;
    z-index: 10;
    transition: all 0.3s ease;
    background-color: #fff;
    opacity: 40%;
    padding: 2px 12px;
    border-radius: 50%;
}

.close-modal:hover {
    transform: rotate(90deg);
}

.modal-gallery {
    width: 50%;
    padding: 20px;
    background-color: #f9f9f9;
}

#modal-main-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

.modal-thumbnails {
    display: flex;
    gap: 10px;
}

.modal-thumbnails img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.7;
    border: 2px solid transparent;
}

.modal-thumbnails img:hover {
    opacity: 1;
}

.modal-thumbnails img.active {
    opacity: 1;
    border-color: #000;
}

.modal-info {
    width: 50%;
    padding: 40px 30px;
    overflow-y: auto;
}

#modal-title {
    font-size: 2vw;
    font-family: Manrope, sans-serif;
    margin-bottom: 15px;
}

.modal-tags {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-bottom: 5px;
}

.modal-tag {
    background-color: #f0f0f0;
    color: #000;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8vw;
    font-family: Manrope, sans-serif;
    font-weight: 600;
    margin-right: 15px;
}

.modal-tags span:nth-child(1) {
    padding-left: 10px;
}

.modal-rating {
    display: flex;
    align-items: center;
}

.modal-rating i {
    color: #FFD700;
    font-size: 1vw;
    margin-right: 2px;
}

.modal-rating span {
    font-size: 0.8vw;
    color: #666;
    margin-left: 2px;
    font-family: Manrope, sans-serif;
}

#modal-description {
    font-size: 0.9vw;
    line-height: 1.6vw;
    color: #666;
    margin-bottom: 30px;
    font-family: Manrope, sans-serif;
}

.modal-features {
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    margin-bottom: 15px;
}

.feature-item i {
    font-size: 1.5vw;
    margin-right: 15px;
    color: #000;
}

.feature-item h4 {
    font-size: 1vw;
    font-family: Manrope, sans-serif;
    margin-bottom: 5px;
}

.feature-item p {
    font-size: 0.8vw;
    color: #666;
    font-family: Manrope, sans-serif;
}

.modal-pricing {
    display: none;
    /* display: flex; */
    justify-content: space-between;
    margin-bottom: 30px;
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
}

.pricing-item h4 {
    font-size: 0.8vw;
    font-family: Manrope, sans-serif;
    margin-bottom: 5px;
    color: #666;
}

.pricing-item p {
    font-size: 1.2vw;
    font-weight: 700;
    font-family: Manrope, sans-serif;
}

.modal-buttons {
    display: flex;
    gap: 15px;
}

.modal-book {
    padding: 12px 30px;
    font-size: 0.9vw;
    background-color: #000;
    color: #fff;
    border: none;
    border-radius: 25px;
    flex: 1;
    font-family: Manrope, sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-tour {
    padding: 12px 30px;
    font-size: 0.9vw;
    background-color: transparent;
    color: #000;
    border: 1px solid #000;
    border-radius: 25px;
    flex: 1;
    font-family: Manrope, sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-book:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.modal-tour:hover {
    background-color: #f9f9f9;
}

/* New Animation */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}



/* Mobile Responsiveness */
@media (max-width: 768px) {
    body.modal-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
        height: 100%;
    }
    
    .studio-tag {
        position: absolute;
        top: 15px;
        left: 15px;
        background-color: rgba(0, 0, 0, 0.8);
        color: #fff;
        padding: 5px 12px;
        border-radius: 20px;
        font-size: 1.8vw;
        font-family: Manrope, sans-serif;
        font-weight: 600;
        z-index: 5;
    }

    .modal {
        padding: 10px;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .modal-content {
        width: 95%;
        margin: 20px auto;
        height: auto;
        min-height: 85vh;
        flex-direction: column;
    }

    #about {
        margin-top: 2.5vw;
        height: fit-content;
        width: 100%;
        /* background-color: red; */
        display: flex;
        flex-direction: column;
        animation: fadeInUp 0.8s ease 0.6s forwards;
        opacity: 0;
        animation-fill-mode: forwards;
    }

    #about-left {
        width: 100%;
        height: 50%;
        padding: 3vw 0vw 0vw 6vw; 
        /* background-color: lightsteelblue; */
        line-height: 5.5vw;
        display: flex;
        position: relative;
        /* background-color: red; */
    }

    #about-left h2 {
        padding-left: 1.5px;
        width: 100%;
        font-size: 5vw;
        font-family: Manrope, sans-serif;
        font-weight: 500;
        padding-right: 2px;
        /* background-color: aqua; */
        /* display: flex; */

    }
    #about-left h2 span {
        font-size: 5vw;
        font-family:  Lora;
        font-weight: 500;
        font-style: italic;
    }

    #about-left  img{
        position: absolute;
        right: 22%;
        margin-top: 7vw;
        width: 4vw;
        height: 4vw;
        /* background-color: #FFD700; */
        /* display: none; */
    }


    #line {
        display: initial;
        position: absolute;
        right: 4%;
        bottom: 15%;
    }

    #about-right {
        width: 50%;
        height: 70%;
        /* background-color: rgb(28, 239, 8); */
        padding: 3vw 0vw 0vw 6vw;
        position: relative;
    }

    #about-right h4 {
        /* background-color: pink; */
        width: 200%;
        height: 30%;
        font-size: 3.6vw;
        font-weight: 500;
        color: #333;
        line-height: 4vw;
        position: relative;
    }

    #about-right button {
        padding: 1.5vw 2.5vw;
        font-size: 2.6vw;
        background-color: #000000;
        color: #fff;
        border: none;
        border-radius: 25px;
        text-transform: uppercase;
        margin-top: 5vw;
        display: flex;
        align-items: center;
        position: relative;
        overflow: hidden;
        transition: all 0.3s ease;
        z-index: 1;
    }

    #about-right button:before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background-color: rgba(255, 255, 255, 0.2);
        transition: all 0.4s ease;
        z-index: -1;
    }

    #about-right button:hover {
        transform: translateY(-3px) scale(1.05);
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    }

    #about-right button:hover:before {
        left: 0;
    }

    #about-right button i {
        font-size: 3.8vw;
        font-weight: 200;
        padding-left: 5px;
        transition: transform 0.3s ease;
    }

    #about-right button:hover i {
        transform: translateX(5px);
    }   

    #scroll {
        height: 30vw;
        width: 180%;
        /* background-color: lightgreen; */
        margin-top: 6vw;
        white-space: nowrap;
        overflow-x: hidden;
        overflow-y: hidden;
    }

    #contaner {
        width: 100%;
        height: 100%;
        /* background-color: rgb(255, 121, 11); */
        display: inline-block;
        align-items: center;
        animation-name: scroll;
        animation-duration: 10s;
        animation-iteration-count: infinite;
        animation-timing-function: linear;
    }

    #contaner img{
        /* display: none; */
        height: 80%;
        width: 22%;
        margin: 2.3vw;
        object-fit: cover;
        object-position: 10% 10%;
        border-radius: 10px;
    }

    @keyframes scroll {
        from{
            transform: translateX(0);
        }
        to{
            transform: translateX(-100%);
        }
    }

    #scroll-2 {
        height: 30vw;
        width: 180%;
        /* background-color: lightgreen; */
        white-space: nowrap;
        overflow-x: hidden;
        overflow-y: hidden;
    }

    #contaner-2 {
        width: 100%;
        height: 100%;
        /* background-color: rgb(255, 121, 11); */
        display: inline-block;
        align-items: center;
        animation-name: scroll-2;
        animation-duration: 10s;
        animation-iteration-count: infinite;
        animation-timing-function: linear;
    }

    #contaner-2 img{
        /* display: none; */
        height: 80%;
        width: 22%;
        margin: 2.3vw;
        object-fit: cover;
        object-position: 8% 18%;
        border-radius: 10px;
    }

    @keyframes scroll-2 {
        from {
            transform: translateX(-100%);
        }
        to{
            transform: translateX(0);
        }
    }

    #studio {
        width: 100%;
        height: fit-content;
        background-color: #000;
        border-radius: 10px;
        padding: 4vw 3vw;
    }

    #std-1 {
        /* background-color: red; */
        display: flex;
        position: relative;
    }

    #std-1 h5{
        color: white;
        text-transform: uppercase;
        letter-spacing: 0.8vw;
        font-weight: 200;
        font-size: 2.2vw;
    }

    #std-1 img {
        width: 3vw;
        height: 3vw;
        margin-left: 1.2vw;
    }

    #std-line {
        position: absolute;
        width: 20vw;
        border-bottom: 0.8px solid #fff;
        right: 46%;
        bottom: 44%;
    }

    #std-2 {
        display: flex;
        justify-content: space-between;
        margin-top: 4vw;
        margin-bottom: 4vw;
    }

    #std-2 h3 {
        color: white;
        font-size: 4vw;
        font-weight: 400;
        font-family: Manrope, sans-serif;
    }

    #std-2 h3 span {
        font-family: Lora;
        font-style: italic;
    }

    #std-2 button {
        padding: 1vw 1.5vw;
        font-size: 2.8vw;
        background-color: #fff;
        color: #000;
        border: none;
        border-radius: 25px;
        text-transform: uppercase;
        margin-top: 4vw;
        display: flex;
        align-items: center;
        font-weight: 600;
        position: relative;
        overflow: hidden;
        transition: all 0.3s ease;
        z-index: 1;
    }

    #std-2 button:before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.1);
        transition: all 0.4s ease;
        z-index: -1;
    }

    #std-2 button:hover {
        transform: translateY(-3px) scale(1.05);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    }

    #std-2 button:hover:before {
        left: 0;
    }

    #std-2 button i {
        font-size: 3.8vw;
        font-weight: 400;
        padding-left: 3px;
        transition: transform 0.3s ease;
    }

    #std-2 button:hover i {
        transform: translateX(5px);
    }

    .slider-content {
        padding: 2rem;
    }

    .slider-wrapper {
        position: relative;
        max-width: 75rem;
        margin: 0 auto;
    }

    .slider {
        display: flex;
        height: 40vw;
        width: 100%;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        box-shadow: 0 1.5rem 3rem -0.75rem hsla(0, 0%, 0%, 0.25);
        border-radius: 0.5rem;
        -ms-overflow-style: none; /* Hide scrollbar IE and Edge */
        scrollbar-width: none; /* Hide scrollbar Firefox */
        border-radius: 1.5vw;
    }

    /* Hide scrollbar for Chrome, Safari and Opera */
    .slider::-webkit-scrollbar {
        display: none;
    }

    .slider img {
        flex: 1 0 100%;
        scroll-snap-align: start;
        object-fit: cover;
    }

    .slider-nav {
        display: flex;
        column-gap: 1rem;
        position: absolute;
        bottom: 1rem;
        left: 50%;
        transform: translateX(-50%);
        z-index: 1;
    }

    .slider-nav a {
        width: 0.4rem;
        height: 0.4rem;
        border-radius: 50%;
        background-color: #fff;
        opacity: 0.75;
        transition: opacity ease 250ms;
    }

    .slider-nav a:hover {
        opacity: 1;
    }

    #nav {
        padding: 2vh 5vw;
    }

    #nav1 img{
        width: 7vw;
        transition: transform 0.5s ease;
    }
    
    #nav2 {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: #FAF9F6;
        flex-direction: column;
        justify-content: flex-start;
        padding: 2rem;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 1000;
    }
    
    #nav2.mobile-active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    #nav2 a {
        font-size: 18px;
        margin: 15px 0;
        opacity: 0.9;
    }
    
    #nav2 a:not(.contact-btn):after {
        bottom: -2px;
    }
    
    #nav2 .contact-btn {
        margin-top: 20px;
        font-size: 16px;
        padding: 10px 25px;
    }
    
    /* Add overlay when menu is active */
    .menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    
    #gallery-hero {
        flex-direction: column;
        height: auto;
        padding-top: 30px;
    }
    
    .hero-content {
        width: 100%;
        padding: 5vw;
        order: 2;
    }
    
    .hero-image {
        position: relative;
        width: 100%;
        height: 40vh;
        order: 1;
    }
    
    .hero-overlay {
        background: linear-gradient(0deg, rgba(250, 249, 246, 1) 0%, rgba(250, 249, 246, 0) 100%);
    }
    
    #gallery-hero h1 {
        font-size: 8vw;
    }
    
    #gallery-hero p {
        font-size: 3.5vw;
        width: 100%;
    }
    
    .stat-number {
        font-size: 6vw;
    }
    
    .stat-text {
        font-size: 2.5vw;
    }
    
    #gallery-filter-container h2 {
        font-size: 6vw;
        margin-bottom: 5vw;
    }
    
    .filter-btn {
        font-size: 3vw;
        padding: 10px 20px;
    }
    
    #gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-info h3 {
        font-size: 5vw;
    }
    
    .gallery-rating i {
        font-size: 3.2vw;
    }
    
    .gallery-rating span {
        font-size: 2.5vw;
    }
    
    .gallery-info p {
        font-size: 3vw;
        line-height: 5vw;
    }
    
    .studio-features span {
        font-size: 2.5vw;
        padding: 1vw 3vw;
    }
    
    .studio-features span i {
        font-size: 3.2vw;
    }
    
    .studio-price .price {
        font-size: 4vw;
    }
    
    .studio-price .period {
        font-size: 3vw;
    }
    
    .book-btn {
        font-size: 3vw;
        padding: 10px 25px;
        width: 100%;
        justify-content: center;
    }
    
    #gallery-cta {
        padding: 10vw 5vw;
    }
    
    #gallery-cta h2 {
        font-size: 6vw;
        margin-bottom: 3vw;
    }
    
    #gallery-cta p {
        font-size: 3vw;
        margin-bottom: 3vw;
    }
    
    #gallery-cta button {
        font-size: 3vw;
        padding: 8px 2px;
        width: 100%;
        justify-content: center;
    }
    
    .modal-gallery {
        width: 100%;
        padding: 15px;
    }
    
    .modal-info {
        width: 100%;
        padding: 20px;
    }
    
    #modal-main-img {
        height: 200px;
    }
    
    #modal-title {
        font-size: 20px;
        margin-bottom: 0px;
    }
    
    .modal-tag {
        font-size: 14px;
        padding-left: 0px;
        margin-right: 0px;
        margin-bottom: 0px;
    }
    
    .modal-rating i {
        font-size: 14px;
    }
    
    .modal-rating span {
        font-size: 14px;
    }
    
    #modal-description {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 20px;
    }
    
    .modal-pricing {
        display: none;
        /* display: grid; */
        grid-template-columns: repeat(3, 1fr);
        gap: 1px;
        padding: 0px;
        margin-bottom: 20px;
    }
    
    .pricing-item {
        text-align: center;
        padding: 10px;
        background: #fff;
        border-radius: 8px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    }
    
    .pricing-item h4 {
        font-size: 11px;
        margin-bottom: 8px;
        color: #666;
    }
    
    .pricing-item p {
        font-size: 14px;
        font-weight: 700;
    }
    
    .modal-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .modal-book, .modal-tour {
        width: 100%;
        padding: 12px;
        font-size: 14px;
    }
    
    .feature-item {
        margin-bottom: 10px;
    }
    .feature-item:nth-child(4) {
        margin-bottom: 0px;
    }
    
    .feature-item i {
        font-size: 20px;
    }
    
    .feature-item h4 {
        font-size: 14px;
    }
    
    .feature-item p {
        font-size: 12px;
        color: #666;
    }
}

/* For very small screens */
@media (max-width: 380px) {
    .modal-pricing {
        display: none;
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .pricing-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 12px;
    }

    .pricing-item h4 {
        margin-bottom: 0;
    }
}

#mobile-menu-btn {
    display: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    background: transparent;
    border: none;
}

.hamburger {
    width: 24px;
    height: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #000000;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Active state for hamburger menu */
#mobile-menu-btn.active .hamburger span:nth-child(1) {
    transform: translateY(8px) rotate(46deg);
}

#mobile-menu-btn.active .hamburger span:nth-child(2) {
    opacity: 0;
}

#mobile-menu-btn.active .hamburger span:nth-child(3) {
    transform: translateY(-8px) rotate(-46deg);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    #mobile-menu-btn {
        display: block;
    }

    #nav2 {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: #FAF9F6;
        flex-direction: column;
        justify-content: flex-start;
        padding: 2rem;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 1000;
    }

    #nav2.mobile-active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    #nav2 a {
        font-size: 18px;
        margin: 15px 0;
        opacity: 0.9;
    }

    #nav2 a:not(.contact-btn):after {
        bottom: -2px;
    }

    #nav2 .contact-btn {
        margin-top: 20px;
        font-size: 16px;
        padding: 10px 25px;
    }

    /* Add overlay when menu is active */
    .menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s ease;
        z-index: 999;
    }

    .menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }
}

/* For very small screens */
@media (max-width: 380px) {
    .hamburger {
        width: 22px;
        height: 18px;
    }

    #nav2 {
        width: 100%;
    }
}

body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

@media (min-width: 769px) and (max-width: 1024px) {
    #nav2 a {
        text-decoration: none;
        font-size: 1.7vw;
        font-weight: 600;
        font-family: Manrope, sans-serif;
        color: #000;
        position: relative;
        transition: all 0.3s ease;
    }
    #about-right h4 {
        /* background-color: pink; */
        width: 80%;
        font-size: 1.5vw;
        font-weight: 500;
        color: #333;
        line-height: 1.8vw;
    }
    #std-1 {
        /* background-color: red; */
        display: flex;
        position: relative;
    }

    #std-1 h5{
        color: white;
        text-transform: uppercase;
        letter-spacing: 0.5vw;
        font-weight: 500;
        font-size: 14px;
    }

    #std-1 img {
        width: 1.6vw;
        height: 1.6vw;
        margin-left: 12px;
    }

    #std-line {
        position: absolute;
        margin-left: 10px;
        width: 18vw;
        border-bottom: 0.8px solid #fff;
        right: 48%;
        bottom: 47%;
    }
	
    .social-icons {
        display: flex;
        margin-top: 2vw;
        gap: 12px;
        flex-wrap: wrap;
    }
	
    .social-icons a {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 30px;
        height: 30px;
        background-color: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        transition: all 0.3s ease;
        text-decoration: none;
    }

    .social-icons a i {
        color: #fff;
        font-size: 1.2vw;
    }
}

@media (min-width: 1024px) and (max-width: 1366px) {
    #std-1 {
        /* background-color: red; */
        display: flex;
        position: relative;
    }

    #std-1 h5{
        color: white;
        text-transform: uppercase;
        letter-spacing: 0.5vw;
        font-weight: 500;
        font-size: 14px;
    }

    #std-1 img {
        width: 1.6vw;
        height: 1.6vw;
        margin-left: 12px;
    }

    #std-line {
        position: absolute;
        margin-left: 5px;
        width: 20vw;
        border-bottom: 0.8px solid #fff;
        right: 50%;
        bottom: 42%;
    }
}

/* Equipment Showcase Section */
#equipment-showcase {
    padding: 60px 30px;
    background-color: #f8f9fa;
}

#equipment-showcase h2 {
    text-align: center;
    font-size: 2vw;
    margin-bottom: 2vw;
    color: #1a1a1a;
}

.equipment-container {
    max-width: 100%;
    overflow: hidden;
    padding: 20px 0;
}

.equipment-scroll {
    display: flex;
    gap: 40px;
    overflow-x: auto;
    padding: 30px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

/* Styling the scrollbar */
.equipment-scroll::-webkit-scrollbar {
    height: 8px;
}

.equipment-scroll::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.equipment-scroll::-webkit-scrollbar-thumb {
    background: #000;
    border-radius: 10px;
}

.equipment-scroll::-webkit-scrollbar-thumb:hover {
    background: #000;
}

/* Firefox scrollbar styling */
.equipment-scroll {
    scrollbar-width: thin;
    scrollbar-color: #000 #f1f1f1;
}

.equipment-item {
    min-width: 350px;
    background: white;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.equipment-item:hover {
    transform: translateY(-5px);
}

.equipment-img {
    width: 100%;
    height: 250px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 20px;
}

.equipment-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.equipment-item h4 {
    font-size: 1.5rem;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.equipment-item p {
    font-size: 1.1rem;
    color: #666;
}

/* Media Queries for Equipment Section */
@media (max-width: 768px) {
    #equipment-showcase {
        padding: 40px 20px;
    }

    #equipment-showcase h2 {
        font-size: 2rem;
    }

    .equipment-item {
        min-width: 280px;
        padding: 20px;
    }

    .equipment-img {
        height: 200px;
    }

    .equipment-item h4 {
        font-size: 1.3rem;
    }

    .equipment-item p {
        font-size: 1rem;
    }
}

/* Image Loading Optimization */
.gallery-img, .equipment-img {
    position: relative;
    background: #f0f0f0;
}

.gallery-img::before, .equipment-img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #f0f0f0 0%, #e0e0e0 50%, #f0f0f0 100%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

.gallery-img img, .equipment-img img {
    position: relative;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-img img.loaded, .equipment-img img.loaded {
    opacity: 1;
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}
