
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
    color: #333;
}

header {

    color: #fff;
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}





.logo {
    font-size: 30px;
    font-weight: 600;
    
}
.logo:hover {
    color: #FF8800;
    
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links li a {
    color: #fff;
    text-decoration: none;
    font-weight: 400;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    height: 3px;
    width: 25px;
    background: #fff;
    margin-bottom: 4px;
    border-radius: 5px;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
    padding: 0 20px;
    overflow: hidden; 
}

.background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1; 
}

.content {
    position: relative; 
    z-index: 1;
}


.hero-content {
    max-width: 600px;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 600;
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
}

.btn {
    background-color: #FFA300;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: 0.3s;
}

.btn:hover {
    background-color: #FF8800;
}

/* About Section */
.about {
    padding: 100px 20px;
    background-color: black;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-content {
    display: flex;
    flex-direction: row;
    max-width: 1200px;
    width: 100%;
    align-items: center;
}
#readMore {
    width: 150px ;
    background-color:#FFA300;
    color: white;
    border-radius: 10px;
    padding: 10px;
    border: none;
    cursor: pointer;
    margin-top: 20px;

}
#readMore:hover {
    background-color: #FF8800;
}
#readMoreContent{
    background-color:#FFA300; 
    color: black; 
    padding: 20px;
    width: 90%;
    font-size: medium;
    font-family: sans-serif;
    margin-top: 20px;
    border-radius: 5px;
    display: none;
}



.about-text {
    flex: 1;
    padding-right: 40px;
    text-align: left;
}

.about-text h2 {
    color: #FF8800;
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 600;
}

.about-text p {
    font-size: 18px;
    line-height: 1.6;
}

.about-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.about-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .about-content {
        flex-direction: column;
    }

    .about-text {
        padding-right: 0;
        text-align: center;
    }

    .about-image img {
        margin-top: 20px;
    }
}


/* Projects Section */
.projects {
    padding: 100px 20px;
    text-align: center;
    color: #FF8800;
    
}

.projects h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 600;
    
}

.hamburgerList{
    background: white;
    width: 100vh;
    padding: 20px;
    height: 50vh;
    display: none;
    flex-direction: column;
    gap: 40px;
    font-size: large;
   
}



/* Responsive Design */
@media screen and (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        text-align: center;
        background-color: #333;
        position: absolute;
        top: 60px;
        right: 20px;
        width: 200px;
        border-radius: 5px;
    }

    .nav-links li {
        margin: 20px 0;
    }

    .hamburger {
        display: flex;
       
    }
   

    .hero h1 {
        font-size: 36px;
    }

    .about, .projects {
        padding: 80px 20px;
    }
}

/* From Uiverse.io by vinodjangid07 */ 
.card {
    width: fit-content;
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px 25px;
    gap: 20px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.055);
}

/* Social Containers */
.socialContainer {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgb(44, 44, 44);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition-duration: .3s;
    margin: 0 10px; 
}

/* Instagram */
.containerOne:hover {
    background-color: #d62976;
    transition-duration: .3s;
}

/* Twitter */
.containerTwo:hover {
    background-color: #00acee;
    transition-duration: .3s;
}

/* LinkedIn */
.containerThree:hover {
    background-color: #0072b1;
    transition-duration: .3s;
}

/* WhatsApp */
.containerFour:hover {
    background-color: #128C7E;
    transition-duration: .3s;
}

.socialContainer:active {
    transform: scale(0.9);
    transition-duration: .3s;
}

.socialSvg {
    width: 17px;
}

.socialSvg path {
    fill: rgb(255, 255, 255);
}

.socialContainer:hover .socialSvg {
    animation: slide-in-top 0.3s both;
}

@keyframes slide-in-top {
    0% {
        transform: translateY(-50px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Footer */
footer {
    background-color:gainsboro;
    color: #333;
    text-align: center;
    padding: 10px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

footer .social-media {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px; /* Adds spacing between icons and text */
}

footer p {
    margin: 0;
    font-size: 14px;
}

@keyframes square-animation {
    0% {
        left: 0;
        top: 0;
    }

    10.5% {
        left: 0;
        top: 0;
    }

    12.5% {
        left: 16px;
        top: 0;
    }

    23% {
        left: 16px;
        top: 0;
    }

    25% {
        left: 32px;
        top: 0;
    }

    35.5% {
        left: 32px;
        top: 0;
    }

    37.5% {
        left: 32px;
        top: 16px;
    }

    48% {
        left: 32px;
        top: 16px;
    }

    50% {
        left: 16px;
        top: 16px;
    }

    60.5% {
        left: 16px;
        top: 16px;
    }

    62.5% {
        left: 16px;
        top: 32px;
    }

    73% {
        left: 16px;
        top: 32px;
    }

    75% {
        left: 0;
        top: 32px;
    }

    85.5% {
        left: 0;
        top: 32px;
    }

    87.5% {
        left: 0;
        top: 16px;
    }

    98% {
        left: 0;
        top: 16px;
    }

    100% {
        left: 0;
        top: 0;
    }
}

.loader {
    position: relative;
    width: 48px;
    height: 48px;
    transform: rotate(45deg);
}

.loader-square {
    position: absolute;
    top: 0;
    left: 0;
    width: 14px;
    height: 14px;
    margin: 1px;
    border-radius: 0px;
    background: white;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    animation: square-animation 10s ease-in-out infinite both;
}

.loader-square:nth-of-type(0) {
    animation-delay: 0s;
}

.loader-square:nth-of-type(1) {
    animation-delay: -1.4285714286s;
}

.loader-square:nth-of-type(2) {
    animation-delay: -2.8571428571s;
}

.loader-square:nth-of-type(3) {
    animation-delay: -4.2857142857s;
}

.loader-square:nth-of-type(4) {
    animation-delay: -5.7142857143s;
}

.loader-square:nth-of-type(5) {
    animation-delay: -7.1428571429s;
}

.loader-square:nth-of-type(6) {
    animation-delay: -8.5714285714s;
}

.loader-square:nth-of-type(7) {
    animation-delay: -10s;
}
.container {
    display: flex;
    justify-content: center;
    gap: 20px; 
    padding: 20px; 
}
.container {
    display: flex;
    justify-content: center;
    gap: 20px; 
    flex-wrap: wrap; 
    padding: 20px; 
}.card2 {
    width: 190px;
    background: white;
    padding: 0.4em;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); 
    margin-bottom: 20px; 
}

.card-image {
    background-color: rgb(236, 236, 236);
    width: 100%;
    height: 130px;
    border-radius: 6px 6px 0 0;
    overflow: hidden; 
    transition: transform 0.3s ease; 
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    border-radius: 6px 6px 0 0; 
}

.card-image:hover {
    transform: scale(0.98);
}

.category {
    text-transform: uppercase;
    font-size: 0.7em;
    font-weight: 600;
    color: #FF8800;
    padding: 10px 7px 0;
}

.category:hover {
    cursor: pointer;
}

.heading {
    font-weight: 600;
    color: rgb(88, 87, 87);
    padding: 7px;
}

.heading:hover {
    cursor: pointer;
}

.price {
    color: gray;
    font-weight: 400;
    font-size: 11px;
    padding-top: 20px;
}

.amount {
    font-weight: 600;
    color: rgb(63, 121, 230);
}

.amount:hover {
    cursor: pointer;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .container {
        gap: 15px; 
        padding: 15px;
    }

    .card2 {
        width: 150px; 
    }

    .card-image {
        height: 100px; 
    }

    .card-image img {
        height: 100%;
    }

    .heading {
        font-size: 0.9em; 
    }

    .price {
        font-size: 10px; 
    }
}

@media screen and (max-width: 480px) {
    .container {
        flex-direction: column; 
        align-items: center;
    }

    .card2 {
        width: 90%; 
    }

    .card-image {
        height: 120px; 
    }

    .card-image img {
        height: 100%;
    }
}


/* Styling for .Big class */
.Big {
    position: relative; 
    overflow: hidden; 
    z-index: 1; 
}

/* Styling for the background video */
.background-video2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; 
    z-index: -1; 
}

/* Additional styling to make sure the content remains readable */
.Big section,
.Big .container {
    position: relative;
    z-index: 2;
    color: white; 
}

.Big h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 2em;
    color: #ffffff; 
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .Big h2 {
        font-size: 1.5em;
    }

    .container {
        padding: 10px;
    }
}
