      /* .........Top Section Starts Here............ */


      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: Arial, sans-serif;
    }
    
    .hero {
        position: absolute;
        width: 100%;
        height: 100vh; /* Full screen height */
        overflow: hidden;
    }
    
    .hero video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .hero-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.4); /* Dark overlay for readability */
    }
    
    .hero-content {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        color: #fff;
    }
    
    .hero-content h1 {
        font-size: 50px;
        font-weight: bold;
        text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
    }
    
    @media (max-width: 768px) {
        .hero-content h1 {
            font-size: 32px;
        }
    }
    
    
    /* sidebar starts here..... */
    
    
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }
    
    /* Hero Section */
    .hero-section {
       
        height: 100vh;
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        text-align: center;
        color: white;
    }
    
    /* Overlay Effect */
    .hero-section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
    }
    
    /* Text Styling */
    .hero-overlay{
        padding: 25px;
    }
    .overlay {
        position: relative;
        z-index: 1;
       
    }
    
    .overlay h1 {
        font-size: 3rem;
        margin-bottom: 10px;
    }
    
    .overlay p {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }
    
    /* Menu Button */
    .menu-btn {
        font-size: 18px;
        padding: 10px 20px;
        border: none;
        background: #fcfafa;
        color: rgb(20, 20, 20);
        cursor: pointer;
        border-radius: 95px;
        transition: 0.3s;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.8);
    }
        
        
    
    
    .menu-btn:hover {
        background: #b8b2b2;
        
    }
    
    /* Sidebar Menu */
    .sidebar {
        height: 100%;
        width: 0;
        position: fixed;
        top: 0;
        left: 0;
        background-color: #222;
        overflow-x: hidden;
        transition: 0.4s;
        padding-top: 60px;
    }
    
    .sidebar a {
        padding: 15px 25px;
        text-decoration: none;
        font-size: 22px;
        color: white;
        display: block;
        transition: 0.3s;
    }
    
    .sidebar a:hover {
        background: #3f3636;
    }
    
    .close-btn {
        position: absolute;
        top: 10px;
        right: 25px;
        font-size: 30px;
    }

   /* ........Top Section ends here............ */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f4f4f4;
}

.card-container {
    display: flex;
    gap: 20px;
}


.flip-card {
    width: 250px;
    height: 300px;
    perspective: 1000px;
}

.flip-card-inner {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.6s;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.flip-card-front {
    background-color: #3498db;
    color: white;
    font-size: 24px;
    font-weight: bold;
}

.flip-card-back {
    background-color: #2ecc71;
    color: white;
    font-size: 18px;
    text-align: center;
    padding: 20px;
    transform: rotateY(180deg);
}


.video-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}






/* Signup Form
.signup-form {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.7);
    padding: 30px;
    width: 350px;
    border-radius: 10px;
    color: white;
    text-align: center;
}

.signup-form h2 {
    margin-bottom: 20px;
}

.signup-form input {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: none;
    border-radius: 5px;
}

.signup-form button {
    width: 100%;
    padding: 10px;
    background: #ff6b6b;
    border: none;
    color: white;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    transition: background 0.3s;
}

.signup-form button:hover {
    background: #ff4757;
}

@media (max-width: 768px) {
    .signup-form {
        width: 80%;
    }
} */




* {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            font-style:  Arial, sans-serif;
        }

        body {
            background-color: #f4f4f4;
            text-align: center;
        }

        h2 {
            margin: 20px;
            color: #333;
        }

        .gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            padding: 20px;
            justify-items: center;
        }

        .card {
            width: 250px;
            height: 350px;
            perspective: 1000px;
        }

        .card-inner {
            width: 100%;
            height: 100%;
            position: relative;
            transform-style: preserve-3d;
            transition: transform 0.6s;
        }

        .card:hover .card-inner {
            transform: rotateY(180deg);
        }

        .card-front, .card-back {
            width: 100%;
            height: 100%;
            position: absolute;
            backface-visibility: hidden;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }

        .card-front {
            background-size: cover;
            background-position: center;
        }

        .card-back {
            background: white;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            transform: rotateY(180deg);
            padding: 20px;
        }

        .card-back h3 {
            color: #333;
            margin-bottom: 10px;
        }

        .card-back p {
            margin: 5px 0;
            font-size: 14px;
            color: #555;
        }




/* Fullscreen Video */
.video-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/*........... Contact Form starts here........ */
.contact-form {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.7);
    padding: 30px;
    width: 400px;
    border-radius: 10px;
    color: white;
    text-align: center;
}

.contact-form h2 {
    margin-bottom: 20px;
}

.contact-form input, 
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: none;
    border-radius: 5px;
}

.contact-form textarea {
    height: 100px;
    resize: none;
}

.contact-form button {
    width: 100%;
    padding: 10px;
    background: #FCC608;

    border: none;
    color: white;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    transition: background 0.3s;
}

.contact-form button:hover {
    background: #d6ab10;

}

.success-message {
    display: none;
    color: #2ecc71;
    margin-top: 15px;
}

@media (max-width: 768px) {
    .contact-form {
        width: 80%;
    }
}


 /* ............Main Section Styling starts here.......... */
 .gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    padding: 40px;
    background-color: #f8f8f8;
}

.gallery-item {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .gallery {
        grid-template-columns: repeat(1, 1fr);
    }
}


/* ............about section starts here.............. */

/* body {
    background-color: #f4f4f4;
    color: #333;
    text-align: center;
} */

/* .container-fluid {
    max-width: 900px;
    margin: 50px auto;
    padding: 20px;
} */

h2 {
    margin-bottom: 10px;
    color: #2c3e50;
    justify-content: center;
    text-align: center;
}
p{
    margin-bottom: 10px;
    color: #c0c2c4;
    justify-content: center;
    text-align: center;

}

.contact-info {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    margin-bottom: 20px;
}

.contact-info p {
    margin: 10px 0;
    font-size: 18px;
}

.contact-info a {
    color: #3498db;
    text-decoration: none;
    font-weight: bold;
}

.contact-info a:hover {
    text-decoration: underline;
}

.map-container {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

iframe {
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 600px) {
    .container {
        padding: 10px;
    }
}
.addressbox{
    display: flex;
    justify-content: center;
    align-items: center;
    justify-content: space-around;
    width: 100%;
    max-width: 1900px;
    height: 35vh;
    /* width: 352.66668701171875px;
height: 314px; */
border-radius: 12px;
gap: 24px;
padding: 32px;


}
h3{
    width: 288.6666564941406px;
height: 42px;

font-weight: 700px;
font-size: 32px;
line-height: 130%;
letter-spacing: 0%;

font-weight: bold;


}
.supporting-text{
    width: 288.6666564941406px;
height: 72px;

font-weight: 400;
font-size: 16px;
line-height: 150%;
letter-spacing: 0%;
color: #000000;




}
.reference{
    width: 288.6666564941406px;
    height: 24px;
    
    
    font-family: Arial, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 0%;
    text-decoration: underline;
    text-decoration-style: solid;
    text-decoration-offset: 0%;
    text-decoration-thickness: 0%;
    
    color: #000000;
}
.box {
    width: 500px;
    height: 250px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    justify-content: center;
   
    
    padding:20px;
   
    font-size: 20px;
    font-weight: bold;
    transition: transform 0.3s, box-shadow 0.3s;
    
}

.box:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

@media (max-width: 900px) {
    .container {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 20px;
    }
}


/* ......... Footer starts here.............. */
* {
           
            box-sizing: border-box;
            font-family: Arial, sans-serif;
        }

        body {
            background-color: #fffbfb;
        }

        .footer {
            background-color: #22ac8e;
            color: rgb(48, 41, 41);
            
        }

        .footer-container-fluid {
            width: 80%;
            max-width: 1900px;
            margin: auto;
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
        }

        .footer-column {
            flex: 1;
            min-width: 250px;
            margin: 10px;
        }

        .footer h3 {
            margin-bottom: 20px;
            border-bottom: 2px solid #f39c12;
            display: inline-block;
            padding-bottom: 5px;
            color: #413838;
        }

        .quick-links ul {
            list-style: none;
        }

        .quick-links ul li {
            margin-bottom: 10px;
        }

        .quick-links ul li a {
            color: white;
            text-decoration: none;
            transition: 0.3s;
        }

        .quick-links ul li a:hover {
            color: #f39c12;
        }

        .address p {
            line-height: 1.6;
        }

        .gallery {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .gallery img {
            width: 70px;
            height: 70px;
            object-fit: cover;
            border-radius: 5px;
            transition: 0.3s;
        }

        .gallery img:hover {
            transform: scale(1.1);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #444;
            margin-top: 20px;
        }

        @media (max-width: 768px) {
            .footer-container {
                flex-direction: column;
                text-align: center;
            }

            .gallery {
                justify-content: center;
            }
        }


        /*.......Sign Up Starts Here...... */
        /* * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            font-family: Arial, sans-serif;
        } */
        
        /* Fullscreen Video */
        .video-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: -1;
        }
        
        .video-container video {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        
        
        /* Signup Form */
        .signup-form {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: rgba(0, 0, 0, 0.7);
            padding: 30px;
            width: 350px;
            border-radius: 10px;
            color: white;
            text-align: center;
        }
        
        .signup-form h2 {
            margin-bottom: 20px;
        }
        
        .signup-form input {
            width: 100%;
            padding: 10px;
            margin: 10px 0;
            border: none;
            border-radius: 5px;
        }
        
        .signup-form button {
            width: 100%;
            padding: 10px;
            background:  #FCC608;
            ;
            border: none;
            color: white;
            font-size: 16px;
            font-weight: 78px;
            cursor: pointer;
            border-radius: 5px;
            transition: background 0.3s;
        }
        
        .signup-form button:hover {
            background:  #dfb20f;
            ;
        }
        
        @media (max-width: 768px) {
            .signup-form {
                width: 80%;
            }
        }




        /* ............Top Collection starts here.......... */

        /* Reset styles */


/* Container */
.container {
    text-align: center;
    padding: 20px;
    background: #F2FFFD;

}

/* Title */
h1 {
    margin-bottom: 20px;
}

/* Grid Layout */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px;
}

/* Card Styling */
.card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
}

.card:hover {
    transform: scale(1.05);
}

/* Card Image */
.card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

/* Overlay (Details) */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 15px;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

/* Show Details on Hover */
.card:hover .overlay {
    opacity: 1;
}

/* Responsive Grid */
@media (max-width: 768px) {
    .grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}












