
html, body {
    cursor: url(cursor.png), auto !important;
}

* {
    box-sizing: border-box;
    margin: 0%;
    padding: 0%;
    font-family: "Darker Grotesque" !important;
}

/*--------------- hero section --------------- */

.video-container {
    position: absolute;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}
.img-container{
    position: absolute;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}
.img-container::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background:rgba(27, 27, 27, 0.6);
    opacity: 0.8;
}
.main_img{
    object-fit: cover;
    width: 100vw;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
}

video {
    object-fit: cover;
    width: 100vw;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
}

.video-container::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background:#1b1b1b
}

.header {
    position: absolute;
    top: 47%;
    left: 48%;
    transform: translate(-50%, -50%);
}

.header h1 {
    /* color: #d3ae87; */
    color: #eeeeee;
    font-size: 80px !important;
}

@media(max-width: 900px) {
    .header {
          left: 50%;
    }

    .header h1 {
          font-size: 30px !important;
          text-align: center;
    }
}

/*--------------- navigation --------------- */

.nav {
    width: 100%;
    height: 80px;
    position: fixed;
    z-index: 2;
}

.nav.scrolled {
    background-color: #161616 !important;
    transition: background-color 500ms linear;
}
.nav{
    width: 100%;
    height: 80px;
    position: fixed;
    z-index: 2;
    background-color: #161616 !important;

}

.nav #brand {
    float: left;
    display: block;
    margin-left: 40px;
    line-height: 80px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 18px;
}

.nav #brand a {
    color: #fff;
    font-family: Poppins !important;
    transition: all 500ms ease-out;
}

.nav #brand a:hover {
    text-decoration: none;
}

.nav #menu {
    float: left;
    right: 40px;
    position: fixed;
}

.nav #menu li {
    padding-left: 40px;
    display: inline-block;
    font-weight: lighter !important;
    text-transform: uppercase;
    font-size: 14px;
    line-height: 80px;
    position: relative;
    transition: all 500ms ease-out;
}

.nav #menu li a {
    font-family: Poppins !important;
    color: rgb(156, 156, 156);
    transition: all 500ms ease-out;
}

.nav #menu li a:hover {
    text-decoration: none;
    color: #fff;
    transition: all 500ms ease-out;
}

#toggle {
    position: absolute;
    right: 40px;
    top: 20px;
    font-weight: 300;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    z-index: 2;
    width: 30px;
    height: 30px;
    float: right;
    transition: all 0.3s ease-out;
    visibility: hidden;
    opacity: 0;
}

.close-btn {
    position: absolute;
    right: 30px;
    font-weight: 300;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    z-index: 2;
    top: -2px;
    line-height: 80px;
}

#resize {
    z-index: 2;
    top: 0px;
    position: fixed;
    background: #0f0f0f;
    width: 100%;
    height: 100%;
    visibility: hidden;
    opacity: 0;
    transition: all 1s ease-out;
}

#resize #menu {
    height: 90px;
    position: absolute;
    left: 45%;
    transform: translateX(-40%);
    text-align: center;
    display: table-cell;
    vertical-align: center;
}

#resize #menu li {
    display: block;
    text-align: center;
    padding: 10px 0;
    font-size: 50px;
    text-transform: uppercase;
    min-height: 50px;
    font-weight: bold;
    transition: all 0.3s ease-out;
}

#resize li:nth-child(1) {
    margin-top: 140px;
}

#resize #menu li a {
    color: #fff;
}

#resize #menu li a:hover {
    text-decoration: none;
}

#resize.active {
    visibility: visible;
    opacity: 1;
}

@media(max-width: 900px) {
    #toggle {
          visibility: visible;
          opacity: 1;
          margin-top: 6px;
          margin-right: 4px;
    }

    nav #brand {
          margin-left: 10px;
    }

    #resize ul li a {
          font-size: 15px;
          font-family: "Poppins" !important;
          font-weight: lighter !important;
          color: rgb(156, 156, 156) !important;
          transition: all 500ms ease-out;
    }

    nav #menu {
          display: none;
    }
}

@media(min-width: 900px) {
    #resize {
          visibility: hidden !important;
    }
}

/*--------------- about section starts  --------------- */
.story {
    padding: 90px;
}

.section-image img {
    max-width: 100%;
    height: auto;
    margin-top: 15%!important;
}

.section-info {
    font-size: 22px;
    color: grey;
    margin-top: 15px;
}
.content {
    position: absolute;
    margin-top: 100vh;
    width: 100%;
}

section {
    padding: 80px 0!important;
}

.section-index {
    color: #d3ae87;
    font-weight: bolder;
    font-size: 20px;
    font-family: Poppins !important;
}

.section-heading {
    color: grey;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 45px;
    margin-bottom: 5%!important;
}

.section-subheading {
    color: grey;
    margin: 10px 0;
}

.more {
    margin: 40px 0;
}

button {
    background: none;
    border: .3pt solid rgba(184, 140, 93, 0.7);
    text-transform: uppercase !important;
    font-size: 12px !important;
    letter-spacing: 2px;
    padding: 18px 36px;
}

/* ---------- best selling products--------- */
.best-selling-products-section {
    position: relative;
    padding: 60px 5vw !important;
}


  
.section-title {
    text-transform: capitalize;
    font-size: 30px;
    margin-bottom: 40px !important;
}
  
.wrapperz{
    width: calc(33.33% - 20px);
    height: 550px;
    background: whitesmoke;
    margin: 0 10px 20px 10px;
    position: relative;
    float: left;
    overflow: hidden;
    box-sizing: border-box;
    border-radius: 10px 10px 10px 10px;
    box-shadow: 0;
    transform: scale(0.95);
    transition: box-shadow 0.5s, transform 0.5s;
    &:hover{
      transform: scale(1);
      box-shadow: 5px 20px 30px rgba(0,0,0,0.2);
    }
    .wrapperz:nth-child(3n+1) {
        clear: left;
    }
    .product-img {
      width: 100%;
      height: 94%; /* Adjust the height as needed */
      object-fit: cover; /* Maintain aspect ratio while covering the entire container */
  }
    
    .con{
      width:100%;
      height:100%;
      .top{
        height: 80%;
        width:100%;
      }
      .bottom{
        width: 200%;
        height: 20%;
        transition: transform 0.5s;
        &.clicked{
          transform: translateX(-50%);
        }
        h1{
            margin:0;
            padding:0;
        }
        p{
            margin:0;
            padding:0;
        }
        .left{
          height:100%;
          width: 50%;
          background: #f4f4f4;
          position:relative;
          float:left;
          .details{
            padding: 20px;
            float: left;
            width: calc(70% - 40px);
          }
          .buy{
            float:right;
            width: calc(30% - 2px);
            height:100%;
            background: #f1f1f1;
            transition: background 0.5s;
            border-left:solid thin rgba(0,0,0,0.1);
            i{
              font-size:30px;
              padding:30px;
              color: #254053;
              transition: transform 0.5s;
            }
            &:hover{
              background: #A6CDDE;
            }
            &:hover i{
              transform: translateY(5px);
              color:#00394B;
            }
          }
        }
        .right{
          width: 50%;
          background: #A6CDDE;
          color: white;
          float:right;
          height:200%;
          overflow: hidden;
          .details{
            padding: 20px;
            float: right;
            width: calc(70% - 40px);
          }
          .done{
            width: calc(30% - 2px);
            float:left;
            transition: transform 0.5s;
            border-right:solid thin rgba(255,255,255,0.3);
            height:50%;
            i{
              font-size:30px;
              padding:30px;
              color: white;
            }
          }
          .remove{
            width: calc(30% - 1px);
            clear: both;
            border-right:solid thin rgba(255,255,255,0.3);
            height:50%;
            background: #BC3B59;
            transition: transform 0.5s, background 0.5s;
            &:hover{
              background: #9B2847;
            }
            &:hover i{
              transform: translateY(5px);
            }
            i{
              transition: transform 0.5s;
              font-size:30px;
              padding:30px;
              color: white;
            }
          }
          &:hover{
            .remove, .done{
              transform: translateY(-100%);
            }
          }
        }
      }
    }
    
    .inside{
      z-index:9;
      background: #92879B;
      width:140px;
      height:140px;
      position: absolute;
      top: -70px;
      right: -70px;
      border-radius: 0px 0px 200px 200px;
      transition: all 0.5s, border-radius 2s, top 1s;
      overflow: hidden;

      .icon{
        position:absolute;
        font-size: 23px;
        right:70px;
        top:83px;
        color:white;
        opacity: 1;
      }
      &:hover{
        width:100%;
        right:0;
        top:0;
        border-radius: 0;
        height:80%;
        .icon{
          opacity: 0;
          right:15px;
          top:15px;
        }
        .contents{
          opacity: 1;
          transform: scale(1);
          transform: translateY(0);
        }
      }
      .contents{
        padding: 5%;
        font-size: 26px;
        opacity: 0;
        transform: scale(0.5);
        transform: translateY(-200%);
        transition: opacity 0.2s, transform 0.8s;
        
        table{
          text-align:left;
          width:100%;
        }
        table{
          color: white;
        }
      }
    }
  }

  @media screen and (max-width: 768px) {
    .wrapperz {
        width: 100%;
        height:500px!important;
        margin: 0 0 20px 0;
        float: none;
    }
    .product-img {
      width: 100%;
      height: auto;
  }
 


    .inside {
        display: block; /* Display the contents */
    }

    .wrapperz:hover .contents {
        opacity: 1;
        transform: scale(1);
        transform: translateY(0);
    }

    .wrapperz {
        transition: box-shadow 0.5s, transform 0.5s;
        cursor: pointer;
    }

    .wrapperz:hover {
        box-shadow: 5px 20px 30px rgba(0, 0, 0, 0.2);
        transform: scale(1.05);
    }
}
@media screen and (max-width: 480px) {
    .best-selling-products-section .wrapperz {
        width: calc(100% - 20px);
        height: auto; /* Reset height */
        margin: 0 10px 20px 10px;
    }
    .best-selling-products-section .contents {
        font-size: 20px; /* Adjust font size as needed */
    }
}

/* For iPad Mini and similar smaller tablets */
@media screen and (min-width: 481px) and (max-width: 768px) {
    .best-selling-products-section .wrapperz {
        width: calc(95% - 20px); /* Adjust width for full width on smaller tablets */
        height: auto!important;
        margin: 0 10px 20px 10px;
    }
    .best-selling-products-section .contents {
        font-size: 35px;
    }
}
@media screen and (max-width: 768px) {
    .inside {
        position: relative; /* Remove absolute positioning */
    }

    .close-icon {
        position: absolute;
        top: 10px; /* Adjust as needed */
        right: 10px; /* Adjust as needed */
        font-size: 24px; /* Adjust icon size */
        color: #fff; /* Icon color */
        cursor: pointer; /* Show pointer cursor on hover */
        z-index: 10; /* Ensure it's above other content */
    }
}
@media screen and (min-width: 769px) {
    /* Close icon */
    .close-icon {
      display: none; /* Hide the close icon */
    }
  }
/* For iPad Air and similar sized tablets */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .best-selling-products-section .wrapperz {
        width: calc(50% - 20px); /* Adjust width for better alignment on tablets */
        height: 480px;
        margin: 0 10px 20px 10px;
    }
    .best-selling-products-section .contents {
        font-size: 27px;
    }
}
/* For mobile phones */
@media screen and (max-width: 480px) {
  .best-selling-products-section .wrapperz .details {
      font-size: 12px !important; /* Smaller font size for mobile phones */
  }
}

/* For iPad Mini and similar smaller tablets */
@media screen and (min-width: 481px) and (max-width: 768px) {
  .best-selling-products-section .wrapperz .details {
      font-size: 13px !important; /* Slightly larger font size for smaller tablets */
  }
}

/* For iPad Air and similar sized tablets */
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .best-selling-products-section .wrapperz .details {
      font-size: 15px !important; /* Moderate font size for larger tablets */
  }
}

/*--------------- services section starts  --------------- */

.services{
    margin: 30px 0;
}

.section-title {
    font-size: 38px;
    color: #333;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.section-title-divider {
    width: 170px;
    height: 2px;
    background-color: #333;
    margin-bottom: 15px;
}
 .section-description{
    font-size: 25px!important;
    color: #777;
    line-height: 1.3;
    margin-bottom: 25px;
    margin-left:40px!important; 
}

.row {
    display: flex;
    justify-content: space-between;
}

.col-md-3 {
    flex: 0 0 25%;
    max-width: 35%;
    padding-left: 30px;
    padding-top: 0;
    padding-right: 90px;
}

.col-md-4 {
    flex: 0 0 32%; 
    padding: 0 15px; 
    box-sizing: border-box; 
}

.col-md-12{
    justify-content: center;
}

.portfolio-item {
    display: flex;
    position: relative;
    width: 100%;
    height: 300px; /* Set a specific height */
    padding-bottom: 300px; /* Maintain the aspect ratio */
    background-size: cover;
    background-position: center;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}

.portfolio-item:hover {
    transform: scale(1.05);
}

.portfolio-item .details {
    position: absolute;
    bottom: 0;
    width: 99.70%;
    padding: 7px;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    text-align: center;
    transform: translateY(100%);
    transition: all 0.3s ease-in-out;
}

.portfolio-item:hover .details {
    transform: translateY(0)
}

.portfolio-item .details h4 {
    margin-bottom: 30px;
}

@media (max-width: 767.98px) {
    .col-md-3,
    .col-md-4 {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 0;
    }

    .portfolio-item {
        height: 200px;
        padding-bottom: 200px; /* Maintain the aspect ratio */
    }

    .col-md-3 {
        padding: 0 15px;
    }

    .col-md-4 {
        padding: 0 15px;
    }

    .row {
        margin: 0 -15px;
    }

    .row > * {
        padding: 0 15px;
    }

    /* Add more space between the photos */
    .col-md-3,
    .col-md-4 {
        margin-bottom: 40px; /* Adjust this value to increase/decrease the space between the photos */
    }
}
/*--------------- Esteemed Clients  --------------- */
.logo-container {
    position: relative;
    width: 100%;
    height: 340px; /* Set a fixed height for the logo container */
    max-width: 600px; /* Adjust as needed */
    margin: auto;
    overflow: hidden;
  }

  /* Logo styles */
  .logo {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain; /* Maintain aspect ratio while fitting within the container */
}

  /* Navigation styles */
  .navigation {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
  }

  .navigation button {
    background: transparent;
    border: none;
    font-size: 24px!important;
    cursor: pointer;
    padding: 1px !important;
  }


  /*--------------- Testimonals section starts  --------------- */
  #testimonials{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width:100%;
}
.testimonial-heading{
    letter-spacing: 1px;
    margin: 30px 0px;
    padding: 10px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.testimonial-heading h1{
    font-size: 2.2rem;
    font-weight: 500;
    background-color: #202020;
    color: #ffffff;
    padding: 10px 20px;
}
.testimonial-heading span{
    font-size: 1.3rem;
    color: #252525;
    margin-bottom: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.testimonial-box-container{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width:100%;
}
.testimonial-box{
    width:500px;
    box-shadow: 2px 2px 30px rgba(0,0,0,0.1);
    background-color: #ffffff;
    padding: 20px;
    margin: 15px;
    cursor: pointer;
}
.profile-img{
    width:50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 10px;
}
.profile-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.profile{
    display: flex;
    align-items: center;
}
.name-user{
    display: flex;
    flex-direction: column;
}
.name-user strong{
    color: #3d3d3d;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}
.name-user span{
    color: #979797;
    font-size: 0.8rem;
}
.reviews{
    color: #f9d71c;
}
.box-top{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.client-comment p{
    font-size: 0.9rem;
    color: #4b4b4b;
}
.testimonial-box:hover{
    transform: translateY(-10px);
    transition: all ease 0.3s;
}
 
@media(max-width:1060px){
    .testimonial-box{
        width:45%;
        padding: 10px;
    }
}
@media(max-width:790px){
    .testimonial-box{
        width:100%;
    }
    .testimonial-heading h1{
        font-size: 1.4rem;
    }
}
@media(max-width:340px){
    .box-top{
        flex-wrap: wrap;
        margin-bottom: 10px;
    }
    .reviews{
        margin-top: 10px;
    }
}
::selection{
    color: #ffffff;
    background-color: #252525;
}



/*--------------- Gallery section starts  --------------- */
* {
    box-sizing: border-box;
  }
  
  body {
    margin: 0;
    padding: 0;
  }
  
  .gallery {
    width: 100%;
    padding: 2rem;
    display: flex;
    flex-direction: column;
  }
  
  .tags {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
  }
  
  .tag {
    display: inline-block;
    background-color: #ddd;
    padding: 0.5rem 1rem;
    margin-right: 0.5rem;
    cursor: pointer;
  }
  
  .gallery-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }
  
  .image-container {
    position: relative;
    overflow: hidden;
    cursor: zoom-in;
    width: calc(33.333% - 2px); /* Adjusted to fit three columns */
  }
  
  img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform .3s;
  }
  .see-more-container {
    display: flex;
    justify-content: center;
    margin-top: 25px; /* Adjust as needed */
}
.see-more-container button {
    background-color: transparent;
    padding: 15px 30px;
    transition: background-color 0.3s, border-color 0.3s;
    cursor: pointer;
    font-size: 14px!important;
}
.see-more-container button:hover {
    background-color:#b88c5d ; /* Change the background color on hover */
    opacity: 0.7;
    border-color: solid rgba(184, 140, 93, 0.7); /* Match the border color to the background color on hover */
    color: #fff; /* Change the text color on hover */
}
  .zoom {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    opacity: 0; /* Initial opacity set to 0 */
    visibility: hidden;
    transition: opacity .3s, visibility .3s;
  }
  
  .zoom-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(2);
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    transition: transform .3s;
  }
  
  .image-container:hover .zoom {
    opacity: 1;
    visibility: visible;
  }
  
  .image-container:hover .zoom-image {
    transform: translate(-50%, -50%);
  }
  
  .zoom .close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    cursor: pointer;
    font-size: 1.5rem;
    color: white;
    transition: transform .3s;
  }
  /* Modal styles */
  .zoom-modal {
    display: none; /* Set the initial display to none */
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
}
 
 .zoom-content {
    position: relative;
    padding: 20px;
    width: 80%;
    max-width: 800px;
    background-color: #fefefe;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: flex-end; /* Align the close button to the right */
 }
 
 .zoomed-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: 70vh;
    object-fit: contain;
 }
 
 .zoom-close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 3.5rem; /* Increase the font size for a larger 'X' button */
    color: black;
    cursor: pointer;
    background-color: rgb(226, 238, 244); /* Add a background color for better visibility */
    padding: 10px;
    border-radius: 50%; /* Make the button circular */
 }
 
 .zoom-close:hover {
    color: red;
    transform: scale(1.1);
 }
  
  @media (max-width: 768px) {
    .image-container {
      width: calc(50% - 2px);
    }
  }
  
  @media (max-width: 480px) {
    .image-container {
      width: 100%;
    }
  }
/*--------------- newsletter section starts  --------------- */


.newsletter {
    padding: 140px 0;
    background: #161616;
}

.newsletter input {
    text-transform: uppercase;
}

.newsletter .news-data {
    max-width: 650px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.newsletter h1 {
    color: #fff;
    margin-bottom: 40px;
}

.newsletter .form-control {
    height: 50px;
    border-color: #fff;
    border-radius: 0 !important;
}

.form-control:focus {
    box-shadow: none !important;
    border: none !important;
}

::placeholder {
    letter-spacing: 4px;
}

.newsletter .btn {
    min-height: 50px;
    padding: 0 30px;
    border-radius: 0;
    background: #000;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    font-family: Poppins !important;
}

/* -----------Catalogue styles -------------*/
#catalogue {
    background-color: #f8f8f8;
    padding: 70px 0;
}

.catalogue-menu {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 30px;
}

.catalogue-item {
    cursor: pointer;
    text-align: center;
    margin-bottom: 20px;
}

.catalogue-item img {
    width: 100%;
    border-radius: 10px;
}

.hidden-catalogue {
    display: none;
}

/*--------------- Location starts  here --------------*/
.location {
    margin: 10px 0;
    padding: 20px;
    position: relative;
}
.locate{
    padding: 140px 0;
    margin-top: 0;
    position: relative;
}

#map1, #map2, #map3 {
    margin-top: 20px;
}



/*--------------- contact section starts here -
.containers {
    position: relative;
    width: 100%;
    min-height: 100vh;
    padding: 2rem;
    background-color: whitesmoke;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .form {
    width: 100%;
    max-width: 820px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.1);
    z-index: 1;
    overflow: hidden;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  
  .contact-form {
    background-color: orange;
    position: relative;
  }
  
  
  
  .contact-form:before {
    content: "";
    position: absolute;
    width: 26px;
    height: 26px;
    background-color: orange;
    transform: rotate(45deg);
    top: 50px;
    left: -13px;
  }
  
  form {
    padding: 2.3rem 2.2rem;
    z-index: 10;
    overflow: hidden;
    position: relative;
  }
  
  .title {
    color: #fff;
    font-weight: 500;
    font-size: 1.5rem;
    line-height: 1;
    margin-bottom: 0.7rem;
  }
  
  .input-containers {
    position: relative;
    margin: 1rem 0;
  }
  
  .input {
    width: 100%;
    outline: none;
    border: 2px solid #fafafa;
    background: none;
    padding: 0.6rem 1.2rem;
    color: #fff;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    border-radius: 25px;
    transition: 0.3s;
  }
  
  textarea.input {
    padding: 0.8rem 1.2rem;
    min-height: 150px;
    border-radius: 22px;
    resize: none;
    overflow-y: auto;
  }
  
  .input-containers label {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    padding: 0 0.4rem;
    color: #fafafa;
    font-size: 0.9rem;
    font-weight: 400;
    pointer-events: none;
    z-index: 1000;
    transition: 0.5s;
  }
  
  .input-containers.textarea label {
    top: 1rem;
    transform: translateY(0);
  }
  
  .btn {
    padding: 0.7rem 2.5rem!important;
    background-color: #fff!important;
    border: 2px solid #fafafa!important;
    font-size: 0.95rem!important;
    color: orange!important;
    line-height: 1!important;
    border-radius: 25px!important;
    outline: none!important;
    cursor: pointer;
    transition: 0.3s;
    margin: 0;
  }
  
  .btn:hover {
    background-color: transparent!important;
    color: #fff!important;
  }
  
  .input-containers span {
    position: absolute;
    top: 0;
    left: 25px;
    transform: translateY(-50%);
    font-size: 0.8rem;
    padding: 0 0.4rem;
    color: transparent;
    pointer-events: none;
    z-index: 500;
  }
  
  .input-containers span:before,
  .input-containers span:after {
    content: "";
    position: absolute;
    width: 10%;
    opacity: 0;
    transition: 0.3s;
    height: 5px;
    background-color: orange;
    top: 50%;
    transform: translateY(-50%);
    border: orange 2px solid;
  }
  
  .input-containers span:before {
    left: 50%;
  }
  
  .input-containers span:after {
    right: 50%;
  }
  
  .input-containers.focus label {
    top: 0;
    transform: translateY(-50%);
    left: 25px;
    font-size: 0.8rem;
  }
  
  .input-containers.focus span:before,
  .input-containers.focus span:after {
    width: 50%;
    opacity: 1;
  }
  
  .contact-info {
    padding: 2.3rem 2.2rem;
    position: relative;
    background-color: #161616;
    border: orange 2px solid;
  }
  
  .contact-info .title {
    color: orange;
  }
  
  .text {
    color: #fff;
    margin: 1.5rem 0 2rem 0;
  }
  
  .information {
    display: flex;
    color: #fff;
    margin: 0.7rem 0;
    align-items: center;
    font-size: 0.95rem;
  }
  
  .icon {
    width: 28px;
    margin-right: 0.7rem;
    color: orange;
  }
  
  .social-media {
    padding: 2rem 0 0 0;
    color: orange;
  }
  
  .social-media p {
    color: #fff;
  }
  
  .social-icons {
    display: flex;
    margin-top: 0.5rem;
  }
  
  .social-icons a {
    width: 35px;
    height: 35px;
    border-radius: 5px;
    background: linear-gradient(45deg, orange, red);
    color: #fff;
    text-align: center;
    line-height: 35px;
    margin-right: 0.5rem;
    transition: 0.3s;
  }
  
  .social-icons a:hover {
    transform: scale(1.05);
  }
  
  .square {
    position: absolute;
    height: 400px;
    top: 50%;
    left: 50%;
    transform: translate(181%, 11%);
    opacity: 0.2;
  }
  
  @media (max-width: 850px) {
    .form {
      grid-template-columns: 1fr;
    }
  
    .contact-info:before {
      bottom: initial;
      top: -75px;
      right: 65px;
      transform: scale(0.95);
    }
  
    .contact-form:before {
      top: -13px;
      left: initial;
      right: 70px;
    }
  
    .square {
      transform: translate(140%, 43%);
      height: 350px;
    }
  
    .big-circle {
      bottom: 75%;
      transform: scale(0.9) translate(-40%, 30%);
      right: 50%;
    }
  
    .text {
      margin: 1rem 0 1.5rem 0;
    }
  
    .social-media {
      padding: 1.5rem 0 0 0;
    }
  }
  
  @media (max-width: 480px) {
    .containers {
      padding: 1.5rem;
    }
  
    .contact-info:before {
      display: none;
    }
  
    .square,
    .big-circle {
      display: none;
    }
  
    form,
    .contact-info {
      padding: 1.7rem 1.6rem;
    }
  
    .text,
    .information,
    .social-media p {
      font-size: 0.8rem;
    }
  
    .title {
      font-size: 1.15rem;
    }
  
    .social-icons a {
      width: 30px;
      height: 30px;
      line-height: 30px;
    }
  
    .icon {
      width: 23px;
    }
  
    .input {
      padding: 0.45rem 1.2rem;
    }
  
    .btn {
      padding: 0.45rem 1.2rem;
    }
  }
  
  
  
  .credit{
    text-align: center;
    color: #fff;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  }
  
  .credit a{
    text-decoration: none;
    color:#FBAB7E;
    font-weight: bold;
  } 

  --------------- */
  
  
/*--------------- footer section starts here --------------- */

.footer {
    background: #161616;
    margin-top: 0; /* Remove any top margin */
    position: relative; /* Change the position to absolute */
    width: 100%; /* Make the footer take up the full width */
    bottom: 0; /* Position the footer at the bottom of the page */
}


#media, #address, #mail {
    text-align: center !important;
}

.footer .container {
    padding: 160px 0;
}

.footer li, p, h4 {
    font-size: 24px !important;
}

.footer h4 {
    font-weight: lighter;
    color: #fff;
}
.footer h3{
    font-weight: bold;
    color: #fff;
    font-size: 28px;
}

.footer p {
    color: grey;
    font-weight: lighter;
}

.footer li {
    font-weight: lighter;
    color: #fff;
    padding-left: 20px;
    font-size: 18px !important;
}

#media ul {
    list-style: none;
}

#media ul li {
    display: inline-block;
}

@media(max-width: 900px) {
    .footer .container {
          width: 92% !important;
    }
}