
@import url('https://fonts.googleapis.com/css2?family=Playwrite+GB+S:ital,wght@1,100..400&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Playwrite GB S", cursive;
}

/* Navbar Style */

#navbar{
    position: sticky;
    top: 0;
    left: 0;
    z-index: 100;
    padding: .5rem .5rem;
    box-shadow: 5px 5px 20px rgb(0,0,0,.5);   
    background-color: rgb(211, 211, 211);
}
.navbar .navbar-brand{
    font-size: 25px;
    font-weight: 800;
    color: #F46B74 !important;
}

#navbarSupportedContent a{
    color: #0c0c0c;
    border-bottom: 2px solid transparent;
}
#navbarSupportedContent a:hover{
    border-bottom: 3px solid #F46B74;
}

#btn{
    background-color: #F46B74;
    width: 5rem;
    border-radius: 15px;
    
}

/* Button  */


/* General styles for input fields */
input[type="text"],
input[type="email"],
input[type="number"],
textarea {
    border: 1px solid #ced4da; /* Light gray border */
    border-radius: .25rem; /* Rounded corners */
    padding: .5rem 1rem; /* Padding inside input fields */
    margin-bottom: 1rem; /* Space below input fields */
    width: 100%; /* Full width */
    box-sizing: border-box; /* Include padding and border in element's total width and height */
}

/* Focus state for input fields */
input[type="text"]:focus,
input[type="email"]:focus,
input[type="number"]:focus,
textarea:focus {
    border-color: #80bdff; /* Blue border on focus */
    outline: none; /* Remove default outline */
}

/* Styles for the submit button */
button.btn {
    background-color: #17a2b8; /* Bootstrap info color */
    color: #fff; /* White text */
    border: none; /* Remove default border */
    border-radius: .25rem; /* Rounded corners */
    padding: .5rem 1rem; /* Padding inside button */
    cursor: pointer; /* Pointer cursor on hover */
    font-size: 1rem; /* Font size */
    transition: background-color 0.2s ease-in-out; /* Smooth transition for background color */
}

/* Hover state for buttons */
button.btn:hover {
    background-color: #138496; /* Darker shade of blue */
}

/* Styles for the contact form */
section#contact .form-control {
    margin-bottom: 1rem; /* Space between form elements */
}

textarea.form-control {
    resize: vertical; /* Allow vertical resize only */
    min-height: 150px; /* Minimum height for textarea */
}




section{
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Home */

#home{
    background:url(img 7.jpg);
    background-position: center;
    background-size: cover;
    flex-direction: column;
    
}
.container h6{
    flex-direction: column;
}
#home h1{
    font-size: 100px;
    color: #0c0c0c;
    font-family: "Playwrite GB S", cursive;
    text-shadow: 0px 1px 0px #F46B74,
                 0px 2px 0px #F46B74,
                 0px 3px 0px #F46B74,
                 0px 4px 0px #F46B74,
                 0px 5px 0px #F46B74,
                 0px 6px 0px #F46B74,
                 0px 7px 0px #F46B74;
                    
}

#home p{
    font-size: 18px;
    color: rgb(5, 5, 5);
}

#home .input-group{
    width: 40%;
    height: 45px;
}


#home .signin{
    background: #F46B74 !important;
    color: rgb(2, 2, 2) !important;
    box-shadow:2px 4px 5px rgba(0,0,0,.3) ;
}

/* About */

section,#about{
    background: linear-gradient(to right,#b9e4e7,lightgray 100%);
}
#about h1{
    font-weight: 800;
    font-size: 50px;
}
#about p{
    color: #F46B74;
}
@media (max-width: 767px) {
    .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    img{
        flex: 0 0 100%;
        max-width: 100%;
    }
}
@media (max-width: 991px) {
    .col-lg-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    img{
        flex: 0 0 100%;
        max-width: 100%;
    }
    .p-lg-5 {
        padding: 3rem !important;
    }
}



/* product */
#product{
   background:lightgrey;
   display: flex;
   flex-wrap: wrap;
   flex-direction: row;
}
#product .container{
    padding-left: 20px;
    margin: 20px;
}

#product h1{
   background: lightgrey;
   padding-top: 10px;
   font-size: 50px;
   letter-spacing: 2px;
   font-weight: 700;
}
#product img{
    width: 250px;
    height: 200px;
    box-shadow: 15px 20px 20px rgba(0,0,0,.3)
                inset 4px 4px 10px lightgrey;
}
.card{
    width: 400px;
    height: 250px;
    background: lightblue !important;
    border: none !important;
    box-shadow: 15px 20px 20px rgba(0,0,0,.3)
                inset 4px 4px 10px lightgrey;
    border-radius: 20px !important;
    overflow: hidden;
    padding-top: 30px;
    padding-bottom: 30px;
    padding-right: 30px;
    padding-left: 30px;
    justify-content: center;
    align-items: center;
    margin: 30px;

}
#btn1{
    border-radius: 10px;
    color: black;
    padding: 7px;
    box-shadow: 15px 20px 20px rgba(0,0,0,.3)
                inset 4px 4px 10px lightgrey;
}
/* style.css */

/* Image hover effect */
.card-img-top {
    transition: transform 0.3s ease;
  }
  
  .card-img-top:hover {
    transform: scale(1.1);
  }
  
  /* Card shadow effect */
  .card {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Adjust the shadow as needed */
    transition: box-shadow 0.3s ease;
  }
  
  .card:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Shadow when hovered */
  }

  /* Our Team */

  .team-body {
    margin: 0;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f7f7f7;
  }
  
  .team-section-heading {
    font-family: "Dancing Script", cursive;
    text-align: center;
    font-size: 64px;
    color: #10996d;
    margin: 0 0 70px;
  }
  
  .team-container {
    display: flex;
    justify-content: center;
    width: 90%;
    max-width: 1440px;
    margin: 0 auto;
  }
  
  .team-profile {
    position: relative;
    transition: all 0.3s;
  }
  
  .team-profile:hover {
    transform: translateY(25px);
  }
  
  .team-profile img {
    max-width: 100%;
    border-radius: 50%;
    border: 5px solid #f7f7f7;
    filter: drop-shadow(-20px 0 10px rgba(0, 0, 0, 0.1));
    cursor: pointer;
  }

  .team-profile:not(:first-child) img {
    margin-left: -20px;
  }
  
  .team-profile .name {
    position: absolute;
    background-color: #10996d;
    color: #fff;
    font-family: "Bebas Neue", cursive;
    padding: 15px 30px;
    border-radius: 100px;
    bottom: -80px; left: 50%;
    white-space: nowrap;
    transform: translate(-50%, -50px);
    letter-spacing: 1px;
    font-size: 20px;
    opacity: 0;
    transition: all 0.3s;
  }
  
  .team-profile .name::before {
    content: "";
    position: absolute;
    width: 15px; height: 15px;
    background-color: #10996d;
    top: 0; left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
  }
  
  .team-profile img:hover + .name {
    opacity: 1;
    transform: translateX(-50%);
    box-shadow: 0 10px 20px rgba(86, 86, 198, 0.3);
  }

  /* Products  */
  @media (min-width: 768px) {
    .col-md-4 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
    .col-lg-4 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
}

/* Extra small devices (phones, less than 768px) */
@media (max-width: 767.98px) {
    .col-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}


/* Media Queries */
@media (max-width: 768px) {
    /* Adjusting Navbar */
    .navbar {
        flex-direction: column;
    }

    /* Adjusting Home Section */
    #home h1 {
        font-size: 2rem;
    }

    #home p {
        font-size: 1rem;
    }

    /* Adjusting About Section */
    #about .col-lg-6 {
        margin-bottom: 20px;
    }

    /* Adjusting Product Section */
    .card-img-top {
        height: 150px;
    }

    /* Adjusting Team Section */
    .team-container {
        flex-direction: column;
        align-items: center;
    }

    .team-profile img {
        width: 120px;
        height: 120px;
    }
}

@media (max-width: 480px) {
    /* Adjusting Home Section */
    #home h1 {
        font-size: 1.5rem;
    }

    #home p {
        font-size: 0.875rem;
    }

    /* Adjusting About Section */
    #about h1 {
        font-size: 1.5rem;
    }

    #about p {
        font-size: 0.875rem;
    }

    /* Adjusting Product Section */
    .card-img-top {
        height: 100px;
    }

    /* Adjusting Team Section */
    .team-profile img {
        width: 100px;
        height: 100px;
    }
}

/* Contact Us */

.container.box {
    margin-top: 50px;
    padding: 30px;
    background-color: lightblue;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}
.img-fluid {
    border-radius: 10px;
}
h1 {
    color: #343a40;
    margin-bottom: 30px;
}
.form-control {
    margin-bottom: 15px;
    border-radius: 5px;
    border: 1px solid lightgrey;
}
.btn-primary {
    background-color: #007bff;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
}
.btn-primary:hover {
    background-color: #0056b3;
}

footer{
    display: flex;
    width: 100%;
    height: 30px;
    background: rgb(0, 175, 234);
    padding-bottom: 20px;
    text-align: center;
    justify-content: center;
}