
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Times New Roman', Times, serif;
}

body {
    overflow-x: hidden;
    background-image: url(img/img6.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
        
}
/* header------------------------------------------------------------------------------------------------------------ */
.navbar-brand img {
    height: 60px;
    width: 56px;
}

.btn-signin {
    border-radius: 50px;
    border: 1px solid #14a0fd;
    color: #14a0fd;
}

.btn-signin:hover {
    background-color: #ebf3ff;
}

@media (max-width: 993px) {
    .navlinks {
        margin-top: 10px;
    }

}

.navlinks {
    font-size: 18px;
}

.navbar {
    position: relative;
}

.nav-link {
    color: #444444;
    padding: 8px 14px;
    border-radius: 15px;
    position: relative;
    z-index: 1;
    transition: all 0.5s ease-in-out;
    background-color: transparent;
}

@media (max-width: 768px) {
    .navlinks {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: white;
        z-index: 999;
        margin-top: 2px;
        /* yeh important */
        padding-top: 0;
        /* yeh bhi */
    }

    .navbar-nav {
        text-align: center;
        width: 100%;
    }

    .navbar-nav .nav-item {
        display: flex;
        justify-content: center;
    }

    .dropdown-menu {
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
        width: auto;
        min-width: 150px;
        /* jitna chaho itna badha sakti ho */
        margin-top: 5px;
        background-color: rgb(136, 202, 238);
        padding: 0.5rem;
        border-radius: 5px;
        text-align: center;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: all 0.3s ease;
    }
}

.nav-link::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.2s ease-in-out;
    background: linear-gradient(to right, rgba(13, 129, 206, 0.993), rgb(87, 244, 255));

}

.nav-link:hover {
    background-color: rgb(177, 226, 255);
    color: white;
}

.nav-link:hover::before {
    opacity: 100;
}

.dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.4s ease-in-out;
    pointer-events: none;
    position: absolute;
    z-index: 1000;
    background-color: rgb(207, 236, 255);
}

.nav-item.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.custom-toggler {
    border: none;
    background: transparent;
    padding: 0.25rem;
    position: relative;
    z-index: 9999;
}

.toggler-icon {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #333;
    margin: 5px auto;
    transition: all 0.3s ease-in-out;
}

.custom-toggler.collapsed .top-bar {
    transform: rotate(0) translateY(0);
}

.custom-toggler:not(.collapsed) .top-bar {
    transform: rotate(45deg) translateY(6px);
}

.custom-toggler.collapsed .middle-bar {
    opacity: 1;
}

.custom-toggler:not(.collapsed) .middle-bar {
    opacity: 0;
}

.custom-toggler.collapsed .bottom-bar {
    transform: rotate(0) translateY(0);
}

.custom-toggler:not(.collapsed) .bottom-bar {
    transform: rotate(-45deg) translateY(-6px);
}
 /* slider........................................................................................................ */
.slider{
   
  height: 250px;
  width: 100%;
 overflow-x: hidden;

}
.slide-track{
 height: 250px;
 display: flex;
 width: calc(600px * 20);
 animation: anim 130s linear infinite;
 overflow-x: hidden;

}
.slide{
 height: 250px;
 width: 600px;
 display: flex;
 overflow-x: hidden;
}
.slide img{
 height: 250px;
 width: 380px;;
}
@keyframes anim{
 0%{
     transform: translateX(0%);
 }
 100%{
     transform: translateX(calc(-500px * 9));
 }
}
/* gallery........................................................................................................... */

.content-all h2{
    text-align: center;
    font-size: 18px;
    color: #3f4144;
    margin: 0px 0;
}
.content-all a{
    text-decoration: none;
}
@keyframes slideIn {
    0% {
      transform: translateY(-50px);
      opacity: 0;
    }
    100% {
      transform: translateY(0);
      opacity: 1;
    }
  }

  .content-all {
    animation: slideIn 1s ease-out forwards;
  }
.gallery{
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
    align-items: center;
    margin: 50px 0;
    
}

.content-all{
    width: 300px;
    margin: 20px;
    padding:10px 0px ;
    text-align: center;
    border-radius: 20px;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: 0.4s;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25),
                0 10px 10px rgba(0, 0, 0, 0.22);
    
}
.content-all:hover{
    transform: translateY(-8px);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16),
                0 3px 6px rgba(0, 0, 0, 0.23);
  }

.content-all img{
    width: 250px;
    height: 260px;
    border-radius: 10px;
    padding: 10px 0px 10px 20px;
    display: block;
}
.content-all h3{
    text-align: center;
    font-size: 18px;
    color: #3f4144;
    margin: 0px 0;
}
.content-all p{
    font-size: 15px;
    text-align: center;
    color: #180085;
    margin: 0px 0px;
    font-weight: bold;
}
.content-all ul{
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
}
.content-al li{
    padding: 5px;
}
.fa{
    transition: .4s;
}
.checked{
    color: #fc8f2a;
}
.fa:hover{
    transform: scale(1.3);
    transition: .6s;
}
.buy1{
    font-size: 15px;
    color: #fff;
    padding: 10px 20px;
    background: linear-gradient(to right, #00c6ff, #003779);
    color: white;
    border: none;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    margin-bottom: 15px;
    cursor: pointer;
    transition: 0.3s;
}
.buy1:hover{
    background: linear-gradient(to right, #023a7e, #00c6ff);
    
    transform: translateY(-4px);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16),
                0 3px 6px rgba(0, 0, 0, 0.23);
}


/* .............................FOOTER.................................................................. */
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Times New Roman', Times, serif;
  }
  
  /* Footer Background */
  footer {
    width: 100%;
    background-color: #d6eaff; /* Soft light blue */
  }
  
  /* Branding Section Top */
  .FT-brandlogo {
    width: 88.7%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background-color: #d6eaff;
    padding-top: 20px;
  }
  
  .footLogo {
    height: 50px;
    width: 53px;
  }
  
  .footText h2 {
    padding-top:5px ;
    font-size: 1.8rem;
    color: #120948;
    font-weight: bold;
  }
  
  /* Main Footer Container */
  .FT-containerF {
    width: 88.7%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 10px 0px 0 0;
    background-color: #d6eaff;
  }
  
  /* Footer Child Sections */
  .FT-child1,
  .FT-child2 {
    text-align: left;
    background-color: #d6eaff;
  }
  
  /* Footer Lists */
  .FT-list {
    list-style: none;
    padding-left: 0;
  }
  
  .FT-li {
    font-size: 1rem;
    line-height: 2rem;
    color: #120948;
  }
  .FT-list a{
    text-decoration: none;
  }
  /* Footer Headings */
  .FT-containerF h3 {
    margin-bottom: 10px;
    color: #120948;
    font-size: 1.3rem;
    font-weight: 300;
  }
  
  /* Social Media Icons */
  .footerContainer {
    width: 100%;
    padding: 0px 10px 0 0;
    background-color: #d6eaff;
  }
  
  .socialIcons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .socialIcons a {
    text-decoration: none;
    padding: 10px;
    background-color: #002152;
    margin:0px 5px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .socialIcons a i {
    font-size: 1.5rem;
    color: #ffffff;
  }
  
  /* Hover Effect */
  .socialIcons a:hover {
    background-color: #58a6ff;
    transition: 0.3s;
  }
  
  .socialIcons a:hover i {
    color: #002249;
  }
  
  /* Footer Bottom Copyright */
  .footerBottom {
    background-color: #d6eaff;
    padding: 0px 0;
    text-align: center;
  }
  
  .footerBottom p {
    font-size: 1rem;
    color: #3b3b3b;
    margin-bottom: 0%;
    padding: 5px;
  }
  
  .designer {
    font-weight: bold;
    letter-spacing: 1px;
  }
  .FT-child1 .FT-child2 {
    margin-bottom: 0px;
    padding-bottom: 0px;
  }
  
  /* ---------------- Responsive Design ---------------- */
  
  /* Medium Devices (Tablet) */
  @media (max-width: 768px) {
    .FT-brandlogo {
   
    display: flex;
    align-items: center;
    justify-content: center;
    
  }
  .footText h2 {
        margin-left: 0;
    }
    .FT-containerF {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .FT-child1,
    .FT-child2,
    .footText {
        text-align: center;
    }
  
    .footLogo {
        height: 50px;
        width: 46px;
    
  }
  .FT-child1{
    margin-bottom: 5px;
    padding-bottom: 10px;
  }
  .FT-child2{
    margin-bottom: 5px;
    padding-bottom: 10px;
  }
  .FT-child4{
    margin-top: 5px;
    padding-top: 10px;
  }
  .FT-child3{
    margin-bottom: 5px;
    padding-bottom: 10px;
  }
  .FT-child2 h3{
    font-weight: bold;
  }
  .FT-child4 h3{
    font-weight: bold;
  }}
  /* Small Devices (Mobile) */
  @media (max-width: 480px) {
    .footText h2 {
        font-size: 1.5rem;
        margin-left: 0;
    }
    .FT-li,
    .footerBottom p {
        font-size: 0.9rem;
    }
    .socialIcons a {
        padding: 8px;
    }
    .socialIcons a i {
        font-size: 1.2rem;
    }
  }