/* General Styles */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&display=swap');

body {
    padding: 0%;
    margin: 0;
    background-color: #f5f5f5;
    font-family: 'Roboto', sans-serif;
}

/* Container */
.container {
    width: 100vw;
    /* max-width: 1200px;  */
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* padding: 10px 0; */
}

/* Header */
#site-header {
    background-color: #524e4e3b;
    color: #fff;
    position: relative;
    z-index: 10;
    /* padding: 10px 0; */
    width: 100%; 
}

/* ✅ Proper Alignment for wrap-inner-1 */
.wrap-inner-1 {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    width: 100%;
    padding: 0; 
    max-width: 100vw;
}

/* ✅ Proper Alignment for wrap-inner-2 */
.wrap-inner-2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
    padding: 0; 
    max-width: 100vw;
}

/* Header Info */
.header-info {
    display: flex;
    gap: 15px;
    align-items: center;
}

.header-info .email-link, 
.header-info .phone {
    color: #030303;
    text-decoration: none;
}

.header-info a:hover {
    text-decoration: underline;
}

/* Logo */
#site-logo img {
    max-height: 60px;
    margin-top: 10px;
    padding-bottom: 10px;
} 

.mna{
    font-size: 20px;
    color: goldenrod;
    /* font-style: 'knockout'; */
    text-decoration: underline;
}

.energy{
    font-size: 20px;
    color: rgb(56, 56, 255);
    text-decoration: underline;
}

/* Social Icons */
.header-socials {
    display: flex;
    align-items: center;
}

.header-socials-container {
    display: flex;
    gap: 15px;
    align-items: center;
}

/* Social Link Styles */
.header-socials-1 a,
.header-socials-2 a {
    margin: 9px 0px;
    color: black;
    font-size: 20px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px; 
    height: 40px; 
}

/* Circle Icons */
.circle-icon, .circle-icon-insta {
    background-color: #ffffff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hover Effects */
.header-socials-1 a:hover {
    color: #3374ff;
}

.header-socials-2 a:hover {
    color: #ff0095;
}

/* Navigation */
.site-navigation-wrap {
    background-color: #ffffff;
    /* padding: 10px 0; */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 70px;
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
}

/* Main Navigation */
.main-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 100vw; /* ✅ Ensures No Overflow */
}

.main-nav .menu {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin: 0;
}

.main-nav .menu li {
    margin: 0 15px;
    position: relative;
}

.main-nav .menu a {
    display: block;
    padding: 10px 5px;
    color: #000000;
    text-decoration: none;
    font-weight: bold;
    position: relative;
}

/* Underline Animation */
.main-nav .menu a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: #000000;
    transition: width 0.3s ease-in-out, left 0.3s ease-in-out;
}

.main-nav .menu a:hover::after {
    width: 100%;
    left: 0;
}

/* Mobile Menu Button */
.mobile-button {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.mobile-button span {
    display: block;
    width: 30px;
    height: 3px;
    background-color: black;
}

/* Responsive */
@media (max-width: 1024px) {
    .wrap-inner-1,
    .wrap-inner-2 {
        justify-content: center;
        text-align: center;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .wrap-inner-1,
    .wrap-inner-2 {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .header-info {
        justify-content: center;
        width: 100%;
        margin-top: 15px;
    }

    .header-socials {
        width: 100%;
        text-align: center;
    }

    .site-navigation-wrap {
        text-align: center;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: white;
        box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
        text-align: center;
        padding: 10px 0;
    }

    .main-nav .menu {
        flex-direction: column;
        width: 100%;
    }

    .main-nav .menu li {
        margin: 10px 0;
    }

    .main-nav.show {
        display: flex;
    }

    .mobile-button {
        display: flex;
    }
}
/*////////////////////////////////////////////// banner /////////////////////////////////////////////*/

.banner {
    width: 100%;
    height: 500px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-width: 100%;
    transition: transform 0.5s ease-in-out;
}
.swiper-pagination {
    position: absolute;
    margin-bottom: 15%;
    margin-left: 40%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.swiper-pagination-bullet {
    width: 50px;
    height:50px;
    background: rgba(255, 255, 255, 0);
    border: 1px solid white;
    opacity: 0.7;
    margin: 5px 0;
    transition: opacity 0.3s ease-in-out;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: rgb(255, 255, 255); /* Change active dot color */
}
/*//////////////////////////////////////////////// about section /////////////////////////////////*/
/* Ensure section adapts dynamically */
/* About Section Main Container */
.about-section-container {
    width: 100%;
    display: flex;
    justify-content: center;
}

/* About Section */
.about-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 50px 20px;
    background-color: #ffffff;
    height: auto;
    text-align: center;
}

/* Parallax Container */
.parallax-container {
    position: relative;
    width: 100%;
    max-width: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
/* Button Styling */
.custom-button {
    background-color: #6d6b67; /* Base color */
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
}

/* Hover Effect */
.custom-button:hover {
    background-color: #292827; /* Darker shade on hover */
    transform: translateY(-3px); /* Slight lift effect */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Optional: Add a glowing effect */
.custom-button::after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 300%;
    height: 300%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 10%, transparent 10%);
    transition: all 0.5s ease-in-out;
    transform: translate(-50%, -70%) scale(0.5);
    opacity: 0;
}

/* On Hover - Glow Effect */
.custom-button:hover::after {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}
/* Image 1 (Back Image) */
.parallax-item.image-1 {
    position: absolute;
    top: 0;
    /* right: 15%; */
    width: 50%;
    max-width: 400px;
    height: 500px; /* Set an explicit height */
}

.parallax-item.image-1 img {
    width: 100%;
    height: 80%; /* Force it to fill the container */
    object-fit: cover;
    border-radius: 10px;
}

/* Content Box */
.content-box {
    width: 100%;
    max-width: 700px;
    text-align: center;
    line-height: 1.8;
    padding: 20px;
    margin: auto;
}
.leader-head {
    color: rgb(0, 0, 0);
    text-align: center;
}

/* Responsive Design */

@media (max-width: 768px) {
    .about-section-container{
        flex-direction: column;
    }
    .parallax-container {
        display: flex;
        flex-direction: column-reverse; /* Moves the image below the content */
        align-items: center;
        text-align: center;
    }

    .parallax-item.image-1 {
        order: 2; /* Ensures the image comes after content */
        width: 100%;
        max-width: 350px;
        position: relative;
    }

    .content-box {
        order: 1; /* Ensures the content stays above the image */
        width: 90%;
        padding: 20px;
    }
}

@media (max-width: 1024px) {
    .about-section {
        flex-direction: column;
        text-align: center;
        height: auto;
        padding: 50px 20px;
    }

    .parallax-container {
        flex-direction: column;
        align-items: center;
        height: auto;
        gap: 20px;
    }

    .parallax-item.image-1 {
        position: relative;
        width: 80%;
        max-width: 350px;
        top: 0;
        left: 0;
        right: 0;
    }

    .content-box {
        width: 90%;
        padding: 20px;
    }
}

/*//////////////////////////////////////////// Mission Section //////////////////////////////////////*/
.mission-section {
    padding: 50px 20px;
    background-color: #524e4e3b;
    text-align: center;
}

/* Spacing */
/* .spacer {
    height: 60px;
} */

/* Heading Styling */
.mission-pre-heading {
    font-weight: 600;
    color: #1e73be;
    font-size: 14px;
    /* letter-spacing: 3px; */
    text-transform: uppercase;
    margin-top: 100px;
}

.mission-heading {
    font-size: 70px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #222;
}

.mission-p {
    line-height: 1.8;
}

/* Mobile Screens */
@media (max-width: 768px) {
    .about-section {
    /* display: flex; */
    flex-direction: row;    
    }
    .parallax-item.image-1,
    .parallax-item.image-2 {
        width: 90%;
        max-width: 300px;
        top: 0;
    }

    .parallax-container {
        flex-direction: column;
        gap: 20px;
    }


    .heading {
        font-size: 28px;
    }

    .mission-heading {
        font-size: 40px;
    }

    .features {
        flex-direction: column;
        align-items: center;
    }

    .feature-box {
        flex-direction: column;
        text-align: center;
    }
}

/*/////////////////////////////////////////////// owl carsousel //////////////////////////////////*/
.team-main-sec{
    background-color: #ffffff;
    width: 90%;
    height: auto;
    padding: 5%;
    margin-top: 30px;
}

.first {
    text-align: center;
}

.lane {
    border: 1px solid black;
    width: 30%;
    margin-left: 35%;
}

h2, h3, p {
    font-family: 'Roboto', sans-serif;
    /* font-style: italic; */
}

.heady {
    font-size: 30px;
    color: #000000;
    margin-bottom: 15px;
}

.heada {
    font-size: 18px;
    color: #636262;
    margin-bottom: 10px;
}

.pera {
    font-size: 12px;
    color: #000000;
    line-height: 1.5;
}

/*///////////////////////////////////////////// products ////////////////////////////////////////*/

.pro-content-section {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 40px;
    flex-wrap: wrap; /* Allows stacking on smaller screens */
}

.pro-content-box {
    background-color: #5b8c51;
    padding: 20px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 450px;
    height: 150px;
    text-align: center;
    flex-direction: row;
    justify-content: center;
}

.pro-content-image {
    width: 100px;
    height: auto;
    margin-right: 20px; /* Adds space between image and text */
}

.pro-content-heading {
    color: white;
    font-size: 18px;
    margin: 0; /* Remove default margin */
    text-align: center;
}

/* Video Section */
.video-section {
    text-align: center;
    padding: 50px 0;
    background-color: #524e4e3b;
    color: white;
    height: auto;
    border-radius: 5px;
    margin-bottom: 50px;
}

.play-button {
    display: inline-block;
    font-size: 24px;
    background-color: #ffffff;
    color: #1e73be;
    padding: 10px 20px;
    border-radius: 5px;
    margin-top: 40px;
    text-decoration: none;
}

.video-heading {
    margin-top: 20px;
    font-size: 32px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .pro-content-section {
        /* flex-direction: column; */
        align-items: center;
    }

    .pro-content-box {
        flex-direction: column;
        text-align: center;
        height: auto;
        padding: 20px;
    }

    .pro-content-image {
        margin: 0 0 10px 0; /* Adjust spacing for stacked layout */
    }

    .video-heading {
        font-size: 24px;
    }

    .play-button {
        font-size: 20px;
        padding: 8px 16px;
    }
}

/*/////////////////////////////////////////// footer ////////////////////////////////////////*/
.footer {
    background-color: #524e4eb2;
    color: white;
    padding: 30px 50px;
}

.footer-content {
    display: flex;
    justify-content: space-between; /* Adjust alignment */
    flex-wrap: wrap; /* Allow wrapping for smaller screens */
    gap: 20px;
}

.footer-about,
.footer-links,
.footer-contact {
    width: 30%; /* Adjust width for better spacing */
    text-align: center;
}

/* Ensure full width on smaller screens */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-about,
    .footer-links,
    .footer-contact {
        width: 100%;
    }
}

.footer h2 {
    font-size: 20px;
    margin-bottom: 10px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin: 5px 0;
}

.footer-links ul li a {
    color: white;
    text-decoration: none;
}

.footer-contact p {
    margin: 5px 0;
}

.bottom-bar {
    text-align: center;
    padding-top: 15px;
    border-top: 1px solid #555;
    margin-top: 20px;
    font-size: 14px;
}

/*//////////////////////////////////////////// aboutus page css ///////////////////////////////////*/
/* Hero Section */
/* Hero Section */
.hero-section {
    background: url('img/img2.jpeg') center top no-repeat fixed;
    background-size: cover;
    text-align: center;
    padding: 120px 20px;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Hero Container */
.hero-section .container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Inner Wrapper */
.inner-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Breadcrumb Navigation */
.breadcrumb-trail {
    margin-top: 10px;
    font-size: 16px;
    display: flex;
    justify-content: center;
    width: 100%;
}

.breadcrumb-trail a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

.breadcrumb-trail a:hover {
    color: #ffd700; /* Gold color on hover */
}

.breadcrumb-trail span {
    color: #ccc;
}

/* Main Content */
#main-content {
    padding: 50px 20px;
    background: #f9f9f9; /* Light neutral background */
    line-height: 1.5;
}

/* General Container */
.container {
    width: 100%;
    /* max-width: 1500px; */
    margin: auto;
}

/* Layout */
.content-wrap {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #ddd; /* Subtle border for structure */
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08); /* Light shadow for depth */
}

/* Flexbox Layout */
.row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px; /* Space between columns */
    flex-wrap: wrap;
}

/* Columns */
.col {
    flex: 1;
    max-width: 50%; /* Each takes 50% space */
}

/* Headings */
.heading h5 {
    color: #004085;
    font-weight: 500;
    margin-bottom: 5px;
}

.heading h2 {
    font-size: 28px;
    color: #222;
    font-weight: 600;
    margin-bottom: 15px;
}

/* Separator */
.separator img {
    width: 100px;
    margin: 15px 0;
}

/* Highlights */
.highlights {
    background: #f0f0f0;
    padding: 15px;
    border-radius: 8px;
    font-size: 16px;
    margin: 20px 0;
}

/* List Styling */
.highlights ul {
    list-style: none;
    padding: 0;
}

.highlights li {
    margin-bottom: 8px;
}

/* Paragraph Styling */
.main-content p {
    font-size: 16px;
    color: #363636;
    text-align: justify;
    margin-bottom: 15px;
}

/* Section Headings */
.col h3 {
    color: #555555;
    text-decoration: underline;
    margin-top: 20px;
}

/* Commitment List */
.col ul {
    list-style: none;
    padding: 0;
}

.col ul li {
    /* background: url('https://cdn-icons-png.flaticon.com/16/1828/1828640.png') no-repeat left center; */
    background-size: 16px;
    padding-left: 25px;
    margin-bottom: 10px;
    font-size: 16px;
}

.learn-more {
    text-align: center;
    margin-top: 20px;
    padding: 0 15px; /* Adds padding for better spacing */
}

.learn-more p {
    font-size: 18px;
    color: #333;
    max-width: 600px;
    margin: auto; /* Centers text for better readability */
}

.download-btn {
    display: inline-block;
    padding: 12px 20px;
    font-size: 16px;
    color: #fff;
    background-color: #1e73be;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px;
    font-weight: bold;
    transition: background 0.3s;
}

.download-btn:hover {
    background-color: #155a8a;
}

/* Responsive Design */
.dpdf {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 87%;
    margin: 50px auto;
    height: auto;
    padding: 5%;
    background-color: #a7a7a791;
    border-radius: 10px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .learn-more p {
        font-size: 16px;
        padding: 0 10px; /* Reduces padding for smaller screens */
    }

    .download-btn {
        font-size: 14px;
        padding: 10px 16px; /* Adjusts button size */
    }
}

@media (max-width: 480px) {
    .learn-more p {
        font-size: 14px;
        padding: 0 5px;
    }

    .download-btn {
        font-size: 14px;
        padding: 8px 14px;
    }

}

/* Responsive Design */
@media (max-width: 768px) {
    .row {
        flex-direction: column;
    }

    .col {
        max-width: 100%;
    }

    .heading h2 {
        font-size: 24px;
    }

    p {
        font-size: 15px;
    }
}

/*////////////////////////////////////////////// contact us page css //////////////////////////////*/

/* Contact Section */
.contact-section {
    color: rgb(0, 0, 0);
    padding: 50px 5px;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-container {
    display: flex;
    max-width: 1000px;
    width: 100%;
    gap: 80px;
    text-align: center;
    position: relative; /* Required for absolute positioning */
    padding: 20px;
}

/* Top border (20% width) */
.contact-container::before {
    content: "";
    position: absolute;
    background-color: black;
    top: 0;
    left: 40%; /* Center it */
    width: 20%; /* 20% of the container width */
    height: 1px; /* Border thickness */
}

/* Bottom border (20% width) */
.contact-container::after {
    content: "";
    position: absolute;
    background-color: black;
    bottom: 0;
    left: 40%; /* Center it */
    width: 20%; /* 20% of the container width */
    height: 1px; /* Border thickness */
}

/* Left Side: Contact Form */
.contact-form {
    flex: 1;
    color: #000000;
    /* padding: 80px; */
    border-radius: 10px;
    position: relative; /* Required for absolute positioning */
}

.contact-form h3 {
    font-size: 16px;
    letter-spacing: 2px;
    font-weight: bold;
}

.contact-form h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.form {
    display: flex;
    flex-direction: column;
    /* align-items: center; */
}

.input-group {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.input-group input,
textarea {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid black;
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.2); /* Adding shadow effect */
}

textarea {
    resize: none;
}

.mess{
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid black;
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.2); /* Adding shadow effect */
}

.submit-btn {
    background-color: #a19b9b;
    color: white;
    padding: 10px 180px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    margin-top: 20px;
    
}

.submit-btn:hover {
    background-color: #4e4646;
}

/* Right Side: Office Info */
.office-info {
    flex: 1;
    text-align: left;
}

.office-info img {
    max-width: 250px;
    margin-bottom: 20px;
}

.office-info h3 {
    font-size: 16px;
    letter-spacing: 2px;
    font-weight: bold;
    color: #dd3333;
}

.office-info h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.office-info p {
    font-size: 16px;
    margin: 5px 0;
    line-height: 2.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
        text-align: center;
    }

    .input-group {
        flex-direction: column;
    }
    .submit-btn {
        padding: 10px 40%;
    }
}

/* servvices page css */

.main-content {
    text-align: center;
    padding: 50px 20px;
}

/* Incident Header */
.incident-header {
    max-width: 800px;
    margin: 0 auto;
    padding: 30px;
}

.pre-heading {
    font-weight: 600;
    color: #c5c9c4;
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

h1 {
    color: #ffffff;
    font-size: 48px;
    margin: 10px 0;
}

.separator {
    margin: 10px 0;
}

.incident-description {
    font-size: 18px;
    line-height: 1.6;
}

/* Incident Details Section */
.incident-details {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.detail-box {
    width: 300px;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: transform 0.3s ease-in-out;
}

.detail-box i {
    font-size: 50px;
    margin-bottom: 10px;
}

.detail-box h3 {
    font-size: 22px;
}

.detail-box:hover {
    transform: translateY(-5px);
}

/* Different Colors for Boxes */
.operation {
    background-color: #404a3d;
    color: white;
}

.safety {
    background-color: #ecdd5e;
    color: #404a3d;
}

.rewards {
    background-color: #404a3d;
    color: white;
}

/* Operation Section */
.operation-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    max-width: 1000px;
    margin: 50px auto;
    padding: 20px;
}

.image-container img {
    width: 100%;
    border-radius: 5px;
}

.operation-info {
    text-align: left;
    max-width: 500px;
}

.operation-info h2 {
    font-size: 36px;
    margin: 10px 0;
    color: white;
}

ul {
    list-style: none;
    padding: 0;
}

ul li {
    font-size: 18px;
    margin: 10px 0;
}

ul li i {
    color: #5b8c51;
    margin-right: 10px;
}
/*//////////////////////////////////////// images and video css /////////////////////////////////*/

/* General Styling */
.gallery-body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #f8f9fa;
    text-align: center;
}

/* Header */
.gallery-header {
    background: #333;
    color: white;
    padding: 20px;
}

.gallery-title {
    font-size: 24px;
    margin: 0;
}

/* Gallery Section */
.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    padding: 20px;
    max-width: 1200px;
    margin: auto;
}

/* Image Styling */
.gallery-item {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}
