@import url('https://fonts.googleapis.com/css2?family=Prata&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Prata&display=swap');
/* General styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html{
    font-size: 62.5%;
}
body {
    font-family: "Poppins", sans-serif;
    font-size: 1.8rem;
    overflow-x: hidden ;
    scroll-behavior: smooth;
}
h1{
    font-family: "Prata", serif;
}
/* navbar start  */

.nav_link {
    text-decoration: none;
    color: white;
}
.text-center{
    text-align: center;
}
nav {
    background: linear-gradient(to right, #F47216, #f79752);
    display: flex;
    justify-content: space-between;
    align-items: center; 
    padding: 1rem 5rem 1rem 5rem; 
    position: fixed;
    width: 100vw;
    z-index: 100;
}
.contact_btn{
    color: white;
    text-decoration: none;
    background: linear-gradient(to bottom, #00A650,#4ae896);
    padding: 0.3rem 2rem;
    border-radius: .5rem;
    border: 1px solid white;
}
#navlogo {
    width: 8rem;
    height: 8rem;
}

#logo_container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

#name {
    font-weight: 700;
    font-size: 2.5rem;
    color: white;
}

#nav_links_container {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.nav_link {
    position: relative;
    padding-bottom: .4rem;
    border-bottom: .2rem solid transparent;
    font-weight: bold;
}

.nav_link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: white;
    transition: width 0.4s ease;
}

.nav_active::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    /* width: 100%; */
    height: 2px;
    background-color: white;
}

.nav_link:hover::before {
    /* width: 100%; */
}

#hamburger_menu {
    display: none; 
    cursor: pointer;
    font-size: 3.5rem;
    color: white;
}

/* navbar end  */

.main_container{
    padding: 15rem 10rem;
}
.hero_section{
    display: flex;
    /* height: 90vh; */
    align-items: center;
    gap: 3rem;
}
.hero_text p{
    text-align: justify;
}
.hero_section img{
    width: 50vw;
}
.about{
    padding-left: 2rem;
    list-style: square;
    text-align: justify;
}
.works_container{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 4rem;
}
.works_container li{
    list-style: none;
    width: 30rem;
    background-color: #fff;
    border: 3px solid #00A650;
    color: #F47216;
    font-weight: bold;
    border-radius: .5rem;
    padding: 2rem;
    height: 6rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.works_container li a{
    text-decoration: none;
    color: #F47216;
}
.social_works {
    display: flex;
    gap: 2rem;
    /* margin-bottom: ; */
}

.social_works > div {
    flex: 1;
    padding: 20px;
    border: 3px solid #F47216;
    border-radius: 10px;
}

ul {
    padding-left: 0;
    list-style: none;
}

ul li {
    margin-bottom: 10px;
}

.social_works div ul li ul li::before {
    content: '\2714'; /* Unicode for checkmark symbol */
    display: inline-block;
    width: 1em; /* Adjust as needed for spacing */
    margin-left: 0em; /* Move the checkmark to the left of the list item */
}
.video_container{
    display: flex;
    justify-content: center;
}

/* marquee  */
#gallery {
    text-align: center;
    overflow-x: hidden !important;
    /* height: 100vh; */
    margin-top: 10rem;
  }

  .marquee {
    display: flex;
    white-space: nowrap;
    animation: marqueeAnimation 20s linear infinite;
    padding-top: 5rem;
    overflow-x: hidden;
  }

  .marquee__img {
    width: 300px; 
    height: 250px; 
    object-fit: cover;
    margin-right: 20px; /* Adjust spacing between images */
  }
  .marquee:hover {
    animation-play-state: paused;
  }
  @keyframes marqueeAnimation {
    0% {
      transform: translateX(-100%);
    }
    100% {
      transform: translateX(100%);
    }
  }


  .images_container img{
    height: 300px;
    width: 300px;
    object-fit: cover;

  }
  .images_container{
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    width: 100vw;
  }


  .modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    overflow: auto;
}

.modal-content {
    margin: auto;
    display: block;
    transform: translateY(20%);
    max-width: 80%;
    max-height: 80%;
}


.close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 55px;
    font-weight: bold;
    cursor: pointer;
}
footer{
    display: flex;
    flex-wrap: wrap;
    align-items: left;
    justify-content: space-around;
    background:linear-gradient(to right,#F47216,#f79752);
    padding: 2rem 10rem;
    color: white;
}
footer h1{
    font-size: 24px;
}
footer form{
    display: flex;
    flex-direction: column;
    
    gap: 2rem;
}
footer form input{
    padding: 1rem 3rem;
    font-family: 'Poppins',sans-serif;
    border-radius: 4px;
    width: 40rem;
    border: none;
}
footer form button{
    width: 15rem;
    padding: 1rem;
    margin: auto;
    font-family: 'Poppins',sans-serif;
    font-weight: bold;
    border-radius: 4px;
    border: none;
}
footer form button:hover{
    cursor: pointer;
}
footer form textarea{
    padding: 1rem 3rem;
    font-family: 'Poppins',sans-serif;
    border-radius: 4px;
    border: none;
}

.image-container {
        width: 300px; /* Width of the border container */
        border: 4px solid #ccc; /* Border style and width */
        border-radius: 10px; /* Border radius */
        padding: 10px; /* Padding around the image */
        display: inline-block;
	 /* Use flexbox for alignment */
       text-align: center; 		/* Ensure inline display */
       }

.image-container img {
        width: 200px; /* Image width */
        height: 200px; /* Image height */
        border-radius: 10%; /* Rounded corners for the image */
        overflow: hidden;
		justify-content: center; /* Center-align horizontally */
        align-items: center; 
		/* Hide overflowing content (if any) */
    }

.scan-me {
        text-align: center; /* Center-align text */
        margin-top: 5px; /* Margin from the image */
        font-weight: bold; /* Make text bold */
    }
/* custom scrollbar  */

::-webkit-scrollbar {
    width: 10px;
    height: 10px;
  }
  
  ::-webkit-scrollbar-track {
    /* box-shadow: inset 0 0 5px grey;  */
    border-radius: 10px;
  }
   
  ::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom,#F47216, #fb934a); 
    border-radius: 10px;
  }
  
  ::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(to bottom,#00A650, #44a975); 
  }

/* Media query for smaller screens */
@media screen and (max-width: 768px) {

    html{
        font-size: 50% ;
    }

    #hamburger_menu {
        display: block; 
    }
    .main_container{
        padding: 10rem 5rem;
    }
    #nav_links_container {
        display: none; 
        flex-direction: column;
        position: absolute;
        top: 8rem; 
        left: 0;
        width: 100%;
        background: linear-gradient(to right, #F47216, #fb934a);
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
        padding: 3rem 0;
    }
    #nav_links_container{
        
    }
    #navlogo{
        width: 6rem;
        height: 6rem;
    }
    #name {
        font-size: 1.3rem;
    }
    #name_tag{
        font-size: 1rem !important;

    }
    nav {
        padding: 1rem 3rem;
    }
    .nav_link {
        display: block;
        padding: 1rem;
        text-align: center;
    }
    #logo_container{
        gap: 2rem;
    }
    .nav_link:hover {
        background-color: rgba(255, 255, 255, 0.1);
    }

    #nav_links_container.active {
        display: flex;
    }

    .hero_text h1{
        text-align: center;
    }
    .hero_section{
    flex-wrap: wrap;
    flex-direction: column-reverse;
    justify-content: flex-end;
    }
    .hero_section img
    {
        width: 80vw;
    }

    .social_works {
        flex-direction: column;
    }

    .social_works > div {
        width: 100%;
        margin: 0;
    }
    .marquee__img {
        width: 200px; 
        height: 150px; 
        object-fit: cover;
        margin-right: 20px; /* Adjust spacing between images */
      }
      footer{
        padding: 4rem 5rem;
        justify-content: flex-start;
      }

      footer form input{
        padding: 1rem 3rem;
        font-family: 'Poppins',sans-serif;
        border-radius: 4px;
        width: 25rem;
        border: none;
    }
    footer form button{
        width: 15rem;
        padding: 1rem;
        margin: auto;
        font-family: 'Poppins',sans-serif;
        font-weight: bold;
        border-radius: 4px;
        border: none;
    }
    footer form button:hover{
        cursor: pointer;
    }
    footer form textarea{
        padding: 1rem 3rem;
        font-family: 'Poppins',sans-serif;
        border-radius: 4px;
        border: none;
    }
}
