@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;1,100;1,200;1,300;1,400;1,500;1,600&display=swap');

*{
    margin:0px;
    padding:0px;
    box-sizing: border-box;
    font-family: 'Poppins',sans-serif;
}


body{
    min-height:100vh;
}

/* header */

nav
{
    background-color: white;
    box-shadow: 3px 3px 5px rgba(0,0,0,0.1);
    /* position: sticky; */
}

nav ul
{
     width:100%;
     list-style: none;
     display: flex;
     justify-content: end;
     align-items: center;
     height:60px;
     margin-bottom:0px;
}



nav li a 
{
    height:100%;
    padding:0 30px;
    text-decoration: none;
    display: flex;
    align-items: center;
    color:black;
    padding:15px 20px;
}

nav li a:hover
{
    /* display: block; */
    background-color: #e4dfdfe8;
    border-radius: 10px;
    color:#007DB2;
}

nav li:first-child
{
    margin-right: auto;
}

nav li:first-child:hover
{
    background-color: none;
    cursor: pointer;
}

nav li:first-child a:hover
{
    background: none;
}

nav .btn
{
    color:black;
    border:1px solid black;
    font-size: 15px;
    padding:8px 25px;
    border-radius: 10px;
    margin-left:10px;
    margin-right:10px;
    text-decoration: none;
}

nav .btn:hover
{
    background-color:#007DB2;
    color:white;
    border-color:white;
    transition: all .5s;
}


.sidebar
{
    position: fixed;
    top:0;
    right:0;
    height:100vh;
    width:250px;
    z-index:999;
    background-color: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(30px);
    box-shadow:-10px 0px 10px rgba(0,0,0,0.1); 
    display: none;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.sidebar li
{
    width:100%;
}

.sidebar a
{
    width:100%;
}

.menu-button
{
    display: none;
}

.Usersidebar
{
    position: fixed;
    top:0;
    left:0;
    height:100vh;
    width:250px;
    z-index:999;
    background-color: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(30px);
    box-shadow:-10px 0px 10px rgba(0,0,0,0.1); 
    display: none;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

/*home about section css start*/


/*home about section css end*/
@media (max-width: 800px)

{
    .hideonMobile
    {
        display: none;
    }
   .menu-button
   {
    display: block;
    }

    nav .btn
    {
        border:none;
        margin-left:0px;
        margin-right: 0px;
        display:flex;
    }
}

@media (max-width: 400px)

{
    .sidebar
    {
        width:100%;
    }
}
/* banner css */

   .banner {
            position: relative;
            max-width: 100%;
            overflow: hidden;
        }

        .banner-slider img {
            width: 100%;
            height: auto;
            display: block;
        }

        /* Make sure dots are visible and positioned properly */
        .slick-dots {
            bottom: 15px;
        }

        .slick-dots li button:before {
            font-size: 12px;
            color: white; /* Change to your preferred color */
            opacity: 0.75;
        }

        .slick-dots li.slick-active button:before {
            color: #fff; /* Active dot color */
            opacity: 1;
        }


/* blog section css */
.blog-post
{
    width:100%;
    max-width:98rem;
    background-color: #dbf4ff21;
    box-shadow: 0 1.4rem 8rem rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    border-radius: .8rem;
}

.blog-post .blog-post-img 
{
    min-width:35rem;
    max-width:35rem;
}

/* animation start */
/* style.css */
.about-part--1,
.about-part--2,
.about-part--3,
.about-part--4,
.about-part--5,
.about-part--6,
.about-part--6
 {
  opacity: 0;
  visibility: hidden;
}

.about-part--1.animate__animated,
.about-part--2.animate__animated,
.about-part--3.animate__animated,
.about-part--4.animate__animated, 
.about-part--5.animate__animated, 
.about-part--6.animate__animated, 
.about-part--7.animate__animated 
{
  opacity: 1;
  visibility: visible;
}
.scroll-part--1,
.scroll-part--2,
.scroll-part--3,
.scroll-part--4 {
  opacity: 0;
  visibility: hidden;
}

.scroll-part--1.animate__animated,
.scroll-part--2.animate__animated,
.scroll-part--3.animate__animated,
.scroll-part--4.animate__animated {
  opacity: 1;
  visibility: visible;
}
/* latest blog & categories */

.box .box-content p
{
    color:#007DB2;
}

.box .box-content h6 a

{
    color:black;
    text-decoration: none;
    font-size: 15px;
    margin-bottom:10px;
}

.box .box-content h6 a:hover
{
    text-decoration: underline;
    color:#007DB2;
}

.scroll-item img
{
    border-radius: 33%;
}

/* media query */
/* Base (desktop) - vertical list */
.scroll-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Smallest mobile devices (≤ 568px) — horizontal scroll */
@media (max-width: 568px) {
  .scroll-container {
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 1rem;
    padding-bottom: 10px;
  }

  .scroll-container .scroll-item {
    flex: 0 0 100%;
    scroll-snap-align: start;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 10px;
    box-sizing: border-box;
    flex-direction: column-reverse !important;
  }

  .scroll-item .box-img {
    width: 100%;
    margin-bottom: 8px;
  }

  .scroll-item .box-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }
}

/* Tablets & medium mobile (569px – 991px) — 4 cards in one row */
@media (min-width: 569px) and (max-width: 991px) {
  .scroll-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .scroll-container .scroll-item {
    flex: 1 1 calc(25% - 1rem); /* 4 in a row with gap */
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 10px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
  }

  .scroll-item .box-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }
}



/* slider part css */
.slider-animation
{
    opacity: 0;
    visibility: hidden;
}

.slider-animation.animate__animated
{
    opacity: 1;
    visibility: visible;
}


/* js swiper css code */
.text h2
{
    color:#007DB2;
}

.text a 
{
    color:black;
    text-decoration: none;
    font-size:18px;
}
.text a:hover
{
    color:#007DB2;
    text-decoration: underline;
}

.text span hr
{
    color:#007DB2;
    height:3px;
    /* margin-bottom:15px; */
}

@media (min-width: 375px) and (max-width: 768px)
{
    .text a
    {
        font-size:13px;
    }
    /* .text-h2
    {
        font-size:16px;
    } */

    nav ul
    {
        padding-left:0px;
    }
}

.mySwiper {
  width: 100%;
  padding: 20px 0;
}

.swiper-slide {
  overflow: hidden;
}

.swiper-slide img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  transition: transform 0.4s ease-in-out; 
  cursor: pointer;
}

.swiper-slide:hover img {
  transform: scale(1.1);
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;

  /* Center slide content vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          -webkit-justify-content: center;
              justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          -webkit-align-items: center;
              align-items: center;
}

.swiper .card
{
    transition: all 0.4s ease-in-out;
    border-radius: 10px;
    border-radius:20px;

}

.swiper .card:hover
{

  box-shadow: 0 10px 20px rgba(0, 125, 178, 0.4), 
             0 0 30px rgba(0, 125, 178, 0.6);
  transform: translateY(-5px);
  border:1px solid #007DB2;
}

.swiper .card .card-title a
{
    color:black;
    text-decoration: none;
    font-weight: 600;
}

/*-------------- footer css -------------- */

footer
{
    background: #00557b;
    position: relative;
    
}

.brands img
{
    /*border-radius: 50%;*/
    margin-bottom:15px;
}

.brands p
{
  color:white;
  font-size:14px;
  font-weight: bold;
}
.icons span
{
    color:#007DB2;
    border:1px solid white;
    border-radius:50%;
    padding:7px;
    margin-right:13px;
    background: white;
    margin-bottom:10px;
}

.icons span:hover
{
    color:white;
    background: #007DB2;
}

.brands h6
{
    color:white;

}
.quick-links ul li
{
    list-style: none;
     margin-bottom:15px;
}

.quick-links ul li a
{
    color:white;
    text-decoration:none;
    transition: all .5s;
}

.quick-links ul li a:hover
{
    padding-left:10px;
    color:white;
    text-decoration: underline;
}

.news-links i
{
    color:white;
    font-size:25px;
    margin-right:10px;
}

.news-links span
{
    color:white;
    font-size:16px;
    font-weight: bold;
    
}

.news-links p
{
    color:white;
    font-size:19px;
    font-weight: 700;
    margin: 10px 13px;
    
}

.news-links form input[type="text"]
{
    width:100%;
    height:50px;
    border-radius:10px;
    padding-left:25px;
    color:#007DB2;
    border:none;
    margin-bottom:15px
}

.news-links form .btn
{
  color:white;
  border:1px solid #007DB2;
  background: #007DB2;
  border-radius:20px;
  padding:6px 19px;
  margin-bottom:10px;
}

.news-links form .btn:hover
{
    background: #0f6b93;
    border: 1px solid #0f6b93;
}

.news-links form span
{
    font-size:12px;
}

.news-links form span a
{
    color:white;
}

.new-text p
{
    color:white;
}

/* about page css start */
.image-section {
    width: 100%;
    position: relative;
}

.image-section .image-box {
    background-image: url(../assets/image/about-image.gif);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    
    /* Make image responsive */
    width: 100%;
    aspect-ratio: 16 / 9; /* You can change ratio as needed */
}

/* For older browsers (fallback) */
@media (max-width: 768px) {
    .image-section .image-box {
        aspect-ratio: auto;
        padding-top: 56.25%; /* 16:9 ratio fallback */
    }
}


.text-box 
{
    position:relative;
    text-align: center;
    top:-130px;
}

.box-text
{
    max-width:800px;
    /* border:1px solid black; */
    margin:0 auto;
    padding:50px;
    background: #f2f2f2;
    border-radius:10px;
}

.box-text p
{
    font-size:25px;
    font-weight: bold;
}

.icon .facebook 
{
    border:1px solid #a39f9f;
    color:#a39f9f;
    padding:10px;
    border-radius: 50%;
    margin-right:10px;
    
}
.icon .whattsapp 
{
    border:1px solid #a39f9f;
    color:#a39f9f;
    padding:10px;
    border-radius: 50%;
    margin-right:10px;
    
}
.icon .instagram 
{
    border:1px solid #a39f9f;
    color:#a39f9f;
    padding:10px;
    border-radius: 50%;
    margin-right:10px;
    
}
.icon .pintrest 
{
    border:1px solid #a39f9f;
    color:#a39f9f;
    padding:10px;
    border-radius: 50%;
    margin-right:10px;
    
}


.icon span i{

    font-size:17px;
}

.icon .facebook:hover
{
    color:white;
    background: rgb(81, 117, 179);
    border-color:white;
}

.icon .whattsapp:hover
{
    color:white;
    background: #25D366;
    border-color:white;
}

.icon .instagram:hover
{
    color:white;
    background: linear-gradient(45deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);;
    border-color:white;
}

.icon .pintrest:hover
{
    background-color: #E60023;
    color: white;
    border-color:white;
}

@media (max-width: 768px) {
    .text-box {
        top: -60px; /* reduce upward shift for smaller devices */
    }

    .box-text p {
        font-size: 18px;
    }

    .box-text {
        padding: 30px 20px;
    }
}

.contact-here 
{
    /* border:1px solid black; */
    background: #F5FCFF;
    padding:20px;
}

.contact-here img
{
    height:90px;
    position:relative;
    top:-62px;
    
}

.contact-here h2
{
    font-size:20px;
    font-weight: 600;
}
.join-here
{
    background: #F5FCFF;
    padding:20px;
}
.join-here img
{
    height:90px;
    position:relative;
    top:-80px;
    
}
.join-here h2
{
    font-size:20px;
    font-weight: 600;
}

.join-here .btn
{
    border:1.5px solid #007DB2;
    color:#007DB2;
    border-radius:20px;
     font-weight: 600;
}

.join-here .btn:hover
{
   background: #c8ebfa;
   color:#007DB2;
   font-weight: 600;
}

.animate1,
.animate2,
.animat3,
.animat4 {
  opacity: 0;
  visibility: hidden;
}

.animate1.animate__animated,
.animate2.animate__animated,
.animate3.animate__animated,
.animate4.animate__animated {
  opacity: 1;
  visibility: visible;
}

/* contact page css  */

.contact-hero
{
    width: 100%;
    position: relative;
}
 .contact-hero .contact-img{
    background-image: url(../assets/image/contact.webp);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;

    width: 100%;
    aspect-ratio: 16 / 9; 
    height: 400px;
}

@media (max-width: 768px) {
    .contact-hero.contact-img {
        aspect-ratio: auto;
        padding-top: 56.25%; /* 16:9 ratio fallback */
    }

    .text h2
    {
        font-size: 21px;
    }

}

@media (min-width: 568px) and (max-width: 767px)
{

}

.form-box
{
    border:1px solid #007DB2;
    padding:20px;
    border-radius: 10px;
}
.color h1
{
    color:#007DB2;
    font-size: 30px;
}

.color span
{
    color:#007DB2;
}
.color span hr
{
    border:1px solid #007DB2;
    margin-bottom: 40px;
}
.form-box input{
    border-color: #007DB2;
    color:#007DB2;
}

.form-box .btn
{
    border:1px solid #007DB2;
    border-radius: 10px;
    color:#007DB2;
    font-weight: bold;
}
.form-box .btn:hover
{
    color:white;
    background: #007DB2;
}


.form-box textarea{
    color:#007DB2;
    border-color:#007DB2;
}

.map {
    width: 100%;
    height: 100%;
}

.map iframe {
    width: 100%;
    height: 100%;
    min-height: 300px;
    border: 0;
}

.page-link
{
    color:#007DB2!important;
}

/* sign up page css */

.form
{
    border:1px solid black;
    padding:30px;
    background: #007DB2;
    border-radius:20px;
}

.form h2
{
    color:white;
}


.form form label
{
    color:white;
}

.form form .btn
{
    color:black;
    border:2px solid white;
    border-radius: 10px;
    background: white;
    font-weight: 600;
    letter-spacing: 2px;;
}

.form form .btn:hover
{
    color:white;
    background:#007DB2;
    border:2px solid white;
}

.form form p
{
    color:white;

}

.form form p a
{
    color:white;
}

/* verify page css */

.inputs input
{
    width:30%;
    margin-right:20px;
    height:60px;
    font-size:45px;
    text-align: center;
    font-weight: 600;
    outline:none
}

.inputs input::-webkit-inner-spin-button,
.inputs input::-webkit-outer-spin-button
{
    -webkit-appearance:none;
    margin:0;
}


.inputs input:valid
{
    border:1px solid #007DB2;
    border-color:#007DB2;
    box-shadow: 0 10px 10px -5px rgba(0,0,0,0.25);
}

/*  user dashboard css */



.userbox1
{
    border:3px solid #afadad;
    height:250px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-bottom:20px;
    border-radius:10px;

}
.userbox2
{
    border:3px solid #afadad;
    height:250px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-bottom:20px;
    border-radius:10px;

}
.userbox3
{
    border:3px solid #afadad;
    height:250px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-bottom:20px;
    border-radius:10px;

}

.userbox1 i
{
    color:#007DB2;
    font-size:45px;
    margin-bottom:20px;
}

.userbox1 h4
{
    color:#0f6b93;
    font-size:20px;
    margin-bottom: 20px;
}

.userbox1 .btn
{
    color:white;
    border:1px solid white;
    background:#007DB2;
    padding: 7px 15px;
}

.userbox1 .btn:hover
{
    background: #00557b;
    color:white;
}


.userbox2 i
{
    color:#007DB2;
    font-size:45px;
    margin-bottom:20px;
}

.userbox2 h4
{
    color:#0f6b93;
    font-size:20px;
    margin-bottom: 20px;
}

.userbox2 .btn
{
    color:white;
    border:1px solid white;
    background:#007DB2;
    padding: 7px 15px;
}

.userbox2 .btn:hover
{
    background: #00557b;
    color:white;
}

.userbox3 i
{
    color:#007DB2;
    font-size:45px;
    margin-bottom:20px;
}

.userbox3 h4
{
    color:#0f6b93;
    font-size:20px;
    margin-bottom: 20px;
}

.userbox3 .btn
{
    color:white;
    border:1px solid white;
    background:#007DB2;
    padding: 7px 15px;
}

.userbox3 .btn:hover
{
    background: #00557b;
    color:white;
}

/* user blogs page css */

.blog-box
{
    height:100vh;
}

/* user profile page css */
/* .profile-box
{
    height:600px;
   
} */

.profile-summary
{
    border:1px solid #007DB2;
    padding:30px;
    /* height:400px; */
}

.profile-summary .btn
{
    color:white;
    border:1px solid #00557b;
    background: #007DB2;
}
.profile-summary .btn:hover{
    color:white;
    background: #00557b;
}