
@import url('https://fonts.googleapis.com/css2?family=Martel+Sans:wght@200;300;400;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Anonymous+Pro:ital,wght@0,400;0,700;1,400;1,700&display=swap');

*{
    margin: 0;
    padding: 0;
    font-family: "Martel Sans", sans-serif;

}
html,body{
  width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}


.content{
  background-image: url('img/New Background.jpeg');
  background-size: cover;
  padding: 2rem 4rem;
 }

.content div{
  margin-top: 4rem;
  border-radius: 8px;
  padding: 3rem;
  box-shadow: 3px -3px 24px 2px rgba(239, 236, 236, 0.5);

}

header{
    overflow: hidden;
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: lightsalmon ;
}

.logo {
    
    width: 80px; 
    height: auto; 
}


/*navbar*/
  
  .navbar-list {
    list-style-type: none;
    margin: 0;
    padding: 0;
    color: white;
  }
  
  .navbar-list li {
    display: inline-block; 
    color: white;
  }
  
  /* Dark Mode */
  @media (prefers-color-scheme: dark) {
    .header {
        background-color: darkslategray; /* Change to your desired dark color */
    }
  
    .navbar-list li {
        color: white; /* Ensure text is readable in dark mode */
    }
  }
  
  
  /*-----navbar------*/
      .navbar{
          display: flex;
          align-items: center;
          gap: 40px;
      }
      .navbar-list{
      list-style-type: none;
      margin: 0;
      padding: 0;
      display: flex;
  }
  
  .navbar-list li a{
      display: inline-block; 
      font-size: 15px;
      text-decoration: none;
  }
  .navbar-list li a:hover{
    transform: scale(1.3); /* Adjust the scale value as needed */
    transition: transform 0.3s ease; /* Smooth zoom-in effect */
    color: black;
    text-decoration: none;
  }
  /* Sidebar */
  .sidebar{
    position: fixed;
    display: none;
    flex-direction: column;
    top: 0;
    right: 0;
    height: 90vh;
    width: 250px;
    margin-top: 15px;
    z-index: 999;
    background-color: #ffffff0c;
    backdrop-filter: blur(15px);
    box-shadow: -10px 0 10px rgba(0, 0, 0, 0.1);
    align-items: flex-start;
    justify-content: flex-start;
    gap: 10px;
}

.sidebar{
    list-style-type:  none;
}

.sidebar li a{
    color: black;
    margin-left: 10px;
    display: flex;
    flex-direction: row;
    width: 100%;
}

.sidebar a:hover{
    text-decoration: underline;
}

.sidebar svg {
    cursor: pointer;
    flex-direction: flex-end;
    height: 26px !important;
    width: 26px !important;
}

.menu{
    display: flex;
    flex-grow: 1;
}

.menu-button{
    position: fixed;
    top: 25px;
    right: 10px;
    display: none;
}
@media (max-width: 300px){
    .container {
       width: 100vw;
    }
    .container .title {
        font-weight: 3rem;
        width: 90%;
    }
}
@media (max-width: 900px) {
    .hideOnSmallScreen {
        display: none !important;
    }
    .navbar {
        display: none;
    }
    .menu-button{
        
        display: block;
    }
    .sidebar svg {
        cursor: pointer;
        flex-grow: 1;
        height: 26px !important;
        width: 26px !important;
    }
    .content {
        padding: 10px;
    }
    .content div{
        margin-top: 10px;
    }
}
  header{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding:0 20px;
  background: linear-gradient(45deg, #3498db, #2ecc71);
  }
  
  .left{
    display: flex;
    gap: 20px;
  }
  
  .right{
    display: flex;
    gap: 12px;
  }
  
  .group {
    display: flex;
    line-height: 28px;
    align-items: center;
    position: relative;
    max-width: 190px;
   }
   
   .input {
    width: 100%;
    height: 40px;
    line-height: 28px;
    padding: 0 1rem;
    padding-left: 2.5rem;
    border: 2px solid transparent;
    border-radius: 8px;
    outline: none;
    background-color:whitesmoke;
    color: white;
    transition: .3s ease;
   }
   
   .input::placeholder {
    color: #9e9ea7;
   }
   
   .input:focus, input:hover {
    outline: none;
    border-color: rgba(234,76,137,0.4);
    background-color: #fff;
    box-shadow: 0 0 0 4px rgb(234 76 137 / 10%);
   }
   
   .icon {
    position: absolute;
    left: 1rem;
    fill: #9e9ea7;
    width: 1rem;
    height: 1rem;
   }
  
   .button-explore {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    background-color: #0f0c29;
    border-radius: 30px;
    color: rgb(255, 255, 255);
    font-weight: 600;
    border: none;
    position: relative;
    cursor: pointer;
    transition-duration: .2s;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.116);
    padding-left: 8px;
    transition-duration: .5s;
  }
  
  .svgIcon {
    height: 25px;
    transition-duration: 1.5s;
    filter: invert();
  }
  
  .bell path {
    fill: rgb(19, 19, 19);
  }
  
  .button-explore:hover {
    background-color: rgb(232, 113, 16);
    transition-duration: .5s;
  }
  
  .button-explore:active {
    transform: scale(0.97);
    transition-duration: .2s;
  }
  
  .button-explore:hover .svgIcon {
    transform: rotate(250deg);
    transition-duration: 1.5s;
  }
  
  
  .Authenticate{
    display: flex;
    gap: 10px;
    height: 40px;
  }
   
  .sign-up,.log-in {
    display: flex;
    align-items: center;
    font-family: inherit;
    cursor: pointer;
    font-weight: 500;
    font-size: 17px;
    padding: 0.8em 1.3em 0.8em 0.9em;
    color: white;
    background: #ad5389;
    background: linear-gradient(to right, #0f0c29, #302b63, #24243e);
    border: none;
    letter-spacing: 0.05em;
    border-radius: 16px;
  }
  
  
  .sign-up,.log-in span {
    transition: transform 0.5s cubic-bezier(0.76, 0, 0.24, 1);
  }
  
  
  .sign-up:hover,.log-in:hover span {
    transform: translateX(7px);
  }


  /*------theme toggler------**/
  .theme-switch {
    --toggle-size: 15px;
    /* the size is adjusted using font-size,
       this is not transform scale,
       so you can choose any size */
    --container-width: 5.625em;
    --container-height: 2.5em;
    --container-radius: 6.25em;
    /* radius 0 - minecraft mode :) */
    --container-light-bg: #3D7EAE;
    --container-night-bg: #1D1F2C;
    --circle-container-diameter: 3.375em;
    --sun-moon-diameter: 2.125em;
    --sun-bg: #ECCA2F;
    --moon-bg: #C4C9D1;
    --spot-color: #959DB1;
    --circle-container-offset: calc((var(--circle-container-diameter) - var(--container-height)) / 2 * -1);
    --stars-color: #fff;
    --clouds-color: #F3FDFF;
    --back-clouds-color: #AACADF;
    --transition: .5s cubic-bezier(0, -0.02, 0.4, 1.25);
    --circle-transition: .3s cubic-bezier(0, -0.02, 0.35, 1.17);
  }
  
  .theme-switch, .theme-switch *, .theme-switch *::before, .theme-switch *::after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-size: var(--toggle-size);
  }
  
  .theme-switch__container {
    width: var(--container-width);
    height: var(--container-height);
    background-color: var(--container-light-bg);
    border-radius: var(--container-radius);
    overflow: hidden;
    cursor: pointer;
    -webkit-box-shadow: 0em -0.062em 0.062em rgba(0, 0, 0, 0.25), 0em 0.062em 0.125em rgba(255, 255, 255, 0.94);
    box-shadow: 0em -0.062em 0.062em rgba(0, 0, 0, 0.25), 0em 0.062em 0.125em rgba(255, 255, 255, 0.94);
    -webkit-transition: var(--transition);
    -o-transition: var(--transition);
    transition: var(--transition);
    position: relative;
  }
  
  .theme-switch__container::before {
    content: "";
    position: absolute;
    z-index: 1;
    inset: 0;
    -webkit-box-shadow: 0em 0.05em 0.187em rgba(0, 0, 0, 0.25) inset, 0em 0.05em 0.187em rgba(0, 0, 0, 0.25) inset;
    box-shadow: 0em 0.05em 0.187em rgba(0, 0, 0, 0.25) inset, 0em 0.05em 0.187em rgba(0, 0, 0, 0.25) inset;
    border-radius: var(--container-radius)
  }
  
  .theme-switch__checkbox {
    display: none;
  }
  
  .theme-switch__circle-container {
    width: var(--circle-container-diameter);
    height: var(--circle-container-diameter);
    background-color: rgba(255, 255, 255, 0.1);
    position: absolute;
    left: var(--circle-container-offset);
    top: var(--circle-container-offset);
    border-radius: var(--container-radius);
    -webkit-box-shadow: inset 0 0 0 3.375em rgba(255, 255, 255, 0.1), inset 0 0 0 3.375em rgba(255, 255, 255, 0.1), 0 0 0 0.625em rgba(255, 255, 255, 0.1), 0 0 0 1.25em rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 0 0 3.375em rgba(255, 255, 255, 0.1), inset 0 0 0 3.375em rgba(255, 255, 255, 0.1), 0 0 0 0.625em rgba(255, 255, 255, 0.1), 0 0 0 1.25em rgba(255, 255, 255, 0.1);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-transition: var(--circle-transition);
    -o-transition: var(--circle-transition);
    transition: var(--circle-transition);
    pointer-events: none;
  }
  
  .theme-switch__sun-moon-container {
    pointer-events: auto;
    position: relative;
    z-index: 2;
    width: var(--sun-moon-diameter);
    height: var(--sun-moon-diameter);
    margin: auto;
    border-radius: var(--container-radius);
    background-color: var(--sun-bg);
    -webkit-box-shadow: 0.062em 0.062em 0.062em 0em rgba(254, 255, 239, 0.61) inset, 0em -0.062em 0.062em 0em #a1872a inset;
    box-shadow: 0.062em 0.062em 0.062em 0em rgba(254, 255, 239, 0.61) inset, 0em -0.062em 0.062em 0em #a1872a inset;
    -webkit-filter: drop-shadow(0.062em 0.125em 0.125em rgba(0, 0, 0, 0.25)) drop-shadow(0em 0.062em 0.125em rgba(0, 0, 0, 0.25));
    filter: drop-shadow(0.062em 0.125em 0.125em rgba(0, 0, 0, 0.25)) drop-shadow(0em 0.062em 0.125em rgba(0, 0, 0, 0.25));
    overflow: hidden;
    -webkit-transition: var(--transition);
    -o-transition: var(--transition);
    transition: var(--transition);
  }
  
  .theme-switch__moon {
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    width: 100%;
    height: 100%;
    background-color: var(--moon-bg);
    border-radius: inherit;
    -webkit-box-shadow: 0.062em 0.062em 0.062em 0em rgba(254, 255, 239, 0.61) inset, 0em -0.062em 0.062em 0em #969696 inset;
    box-shadow: 0.062em 0.062em 0.062em 0em rgba(254, 255, 239, 0.61) inset, 0em -0.062em 0.062em 0em #969696 inset;
    -webkit-transition: var(--transition);
    -o-transition: var(--transition);
    transition: var(--transition);
    position: relative;
  }
  
  .theme-switch__spot {
    position: absolute;
    top: 0.75em;
    left: 0.312em;
    width: 0.75em;
    height: 0.75em;
    border-radius: var(--container-radius);
    background-color: var(--spot-color);
    -webkit-box-shadow: 0em 0.0312em 0.062em rgba(0, 0, 0, 0.25) inset;
    box-shadow: 0em 0.0312em 0.062em rgba(0, 0, 0, 0.25) inset;
  }
  
  .theme-switch__spot:nth-of-type(2) {
    width: 0.375em;
    height: 0.375em;
    top: 0.937em;
    left: 1.375em;
  }
  
  .theme-switch__spot:nth-last-of-type(3) {
    width: 0.25em;
    height: 0.25em;
    top: 0.312em;
    left: 0.812em;
  }
  
  .theme-switch__clouds {
    width: 1.25em;
    height: 1.25em;
    background-color: var(--clouds-color);
    border-radius: var(--container-radius);
    position: absolute;
    bottom: -0.625em;
    left: 0.312em;
    -webkit-box-shadow: 0.937em 0.312em var(--clouds-color), -0.312em -0.312em var(--back-clouds-color), 1.437em 0.375em var(--clouds-color), 0.5em -0.125em var(--back-clouds-color), 2.187em 0 var(--clouds-color), 1.25em -0.062em var(--back-clouds-color), 2.937em 0.312em var(--clouds-color), 2em -0.312em var(--back-clouds-color), 3.625em -0.062em var(--clouds-color), 2.625em 0em var(--back-clouds-color), 4.5em -0.312em var(--clouds-color), 3.375em -0.437em var(--back-clouds-color), 4.625em -1.75em 0 0.437em var(--clouds-color), 4em -0.625em var(--back-clouds-color), 4.125em -2.125em 0 0.437em var(--back-clouds-color);
    box-shadow: 0.937em 0.312em var(--clouds-color), -0.312em -0.312em var(--back-clouds-color), 1.437em 0.375em var(--clouds-color), 0.5em -0.125em var(--back-clouds-color), 2.187em 0 var(--clouds-color), 1.25em -0.062em var(--back-clouds-color), 2.937em 0.312em var(--clouds-color), 2em -0.312em var(--back-clouds-color), 3.625em -0.062em var(--clouds-color), 2.625em 0em var(--back-clouds-color), 4.5em -0.312em var(--clouds-color), 3.375em -0.437em var(--back-clouds-color), 4.625em -1.75em 0 0.437em var(--clouds-color), 4em -0.625em var(--back-clouds-color), 4.125em -2.125em 0 0.437em var(--back-clouds-color);
    -webkit-transition: 0.5s cubic-bezier(0, -0.02, 0.4, 1.25);
    -o-transition: 0.5s cubic-bezier(0, -0.02, 0.4, 1.25);
    transition: 0.5s cubic-bezier(0, -0.02, 0.4, 1.25);
  }
  
  .theme-switch__stars-container {
    position: absolute;
    color: var(--stars-color);
    top: -100%;
    left: 0.312em;
    width: 2.75em;
    height: auto;
    -webkit-transition: var(--transition);
    -o-transition: var(--transition);
    transition: var(--transition);
  }
  
  /* actions */
  
  .theme-switch__checkbox:checked + .theme-switch__container {
    background-color: var(--container-night-bg);
  }
  
  .theme-switch__checkbox:checked + .theme-switch__container .theme-switch__circle-container {
    left: calc(100% - var(--circle-container-offset) - var(--circle-container-diameter));
  }
  
  .theme-switch__checkbox:checked + .theme-switch__container .theme-switch__circle-container:hover {
    left: calc(100% - var(--circle-container-offset) - var(--circle-container-diameter) - 0.187em)
  }
  
  .theme-switch__circle-container:hover {
    left: calc(var(--circle-container-offset) + 0.187em);
  }
  
  .theme-switch__checkbox:checked + .theme-switch__container .theme-switch__moon {
    -webkit-transform: translate(0);
    -ms-transform: translate(0);
    transform: translate(0);
  }
  
  .theme-switch__checkbox:checked + .theme-switch__container .theme-switch__clouds {
    bottom: -4.062em;
  }
  
  .theme-switch__checkbox:checked + .theme-switch__container .theme-switch__stars-container {
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }
/*-navbar ends----------*/

.Hi {
    border-radius: 50%;
    margin: auto;
    border-style: groove;
    display: block;
    opacity: 0; 
    transition: opacity 1s ease; 
}

.Hi.loaded {
    opacity: 1; 
}

.Hi:hover{
    opacity: 0.5;
    transform: scale(1.15);
}
.message{
    text-align: center;
    text-emphasis: none;
}
.message:hover{
    text-decoration: underline;
    text-shadow: black;
    transform: scale(1.1);
}
p{
    color: black;
}

.logo2 {
    width: 150px; 
    height: auto; 
}

.navbar{
    
    margin-right: 2rem;
}
.navbar-list{
    display: flex;
    list-style: none;
    gap: 4rem;
}
li a,a:visited{
    text-decoration: none;
    font-size: 1.2rem;
    color: #000;
    font-weight: bold;
    text-transform: uppercase;
    transition: all 0.4s;
}
@media (max-width:995px) {
    .navbar-list{
        gap: 2rem;
    }
    li a,a:visited{
        font-size: 1rem;
    }
}
.navbar-list li a:hover{
    opacity: 50%;
    text-decoration: underline;
}

.logo{
    border-radius: 20%;
}

.fa-solid.fa-comments, .fa-solid.fa-globe, .fa-solid.fa-handshake{
   display: flex;
   justify-content: center; 
    font-size: 3rem;
    padding: 0.5rem;
}
@media(max-width:920px) {
    .boxes{
        width: 60vw;
    }
}
@media(max-width:820px) {
    .box-section{
        display: flex;
        flex-direction: column;
    }
    .boxes{
        width: 70vw;
    }
}
@media(max-width:460px) {
    .boxes{
        width: 70vw;
    }
}
.para1{
    width: 100vw;
    font-size: 1.2rem;
}

.search-bar {
    display: flex;
    align-items: center;
}

.search-input:hover{
    background-color: lightgrey;
}

.search-input {
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 20px; 
    width: 200px;
    margin-right: 10px;
}

.search-button {
    background-color: #f5f5f5; 
    border: none;
    padding: 8px;
    border-radius: 4px;
    cursor: pointer;
}

.search-button:hover {
    background-color: lightgreen; 
}

.sign-up , .log-in{
    background-color: lightgrey;
    border-radius: 20px;
    padding: 8px;
    border-color: lightyellow;
}

.sign-up:hover , .log-in:hover{
    background-color: lightblue;
}
/* .footer{
    overflow-x: hidden; 
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    height: 16rem;
    background-color: grey;
    gap: 1rem;
} */
.logo2{
    height: 6rem;
    width: 9rem;
    object-fit: cover;
}
.icons .fa-brands {
    font-size: 2rem;
    padding: 0.5rem;
    border: 2px solid white; /* Border color matches footer background for contrast */
    border-radius: 50%;
    background-color: white; /* Background color of the icon */
    color: black; /* Icon text color */
    margin-bottom: auto;
    transition: all 0.3s ease; /* Smooth transition for hover/click effects */
}

/* Hover effect for icons */
.icons .fa-brands:hover {
    background-color: #ff5722; /* Example hover background color (orange) */
    color: white; /* Text color when hovered */
    border-color: #ff5722; /* Border color changes on hover */
    transform: scale(1.2); /* Slightly enlarges the icon */
}


.follow-us{
    display: flex;
    justify-content: center;
    gap: 1rem;
}
.copyright{
    font-size: 1.1rem;
}

.mobile-btn{
    cursor: pointer;
    gap: 1rem;
    margin-right: 1rem;
    display: none;
}
.fa-solid{
    font-size: 2rem;
}

.fa-bars, .fa-xmark{
    border: 3px solid #000;
    padding: 0.4rem;
}

.cta-button {
    background-color: #ff6600;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #ff8533;
}

/* Footer Styling */
.footer {
  background: linear-gradient(45deg, #302b63, #0f0c29);
  color: white;
  padding: 2rem 1rem;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
  /* margin-left: 70px; */
  max-width: 1200px;
  margin: 0 auto;
}

  /* flex: 1 1 calc(33.333% - 1rem); */
  /* min-width: 200px; */
  /* margin-right: 90px; */


.footer-section h4 {
  margin-bottom: 1rem;
  font-weight: bold;
  font-size: 1.2rem;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin: 0.5rem 0;
  transition: transform 0.3s ease;
}
.footer-section ul li:hover{
  transform: translateX(10px);
}

.footer-section ul li a {
  color: grey;
  font-size: 1rem;
  text-decoration: none;
  transition: color 0.3s ease ;
}

.footer-section ul li a:hover {
  color: white;
}

.social-icons a i {
  margin-right: 0.5rem;
  font-size: 1.5rem;
  color: grey;
  transition: transform 0.3s ease, color 0.3s ease;
}

.social-icons a i:hover {
  transform: scale(1.1);
  color: white;
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 1rem;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
  }

  .footer-section {
    text-align: center;
    flex: 1 1 100%;
  }
}



.theme-toggle {
    border-radius: 50%;
    color: black;
    background-color: yellow;
    cursor: pointer;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.theme-toggle span {
    font-size: 1.5rem;
}

/* Dark Theme Styles */
.dark-theme {
    background-color: #121212;
    color: #eee;
}


/* .dark-theme .header {
    background-color: #222;
} */

.dark-theme .search-bar input {
    background-color: #555;
    color: #eee;
    border: 1px solid #777;
}

.dark-theme .search-bar button {
    background-color: #666;
    color: #eee;
}

.dark-theme .navbar a {
    color: #eee;
}

.dark-theme .cta-button, .dark-theme .Authenticate button {
  
    color: #eee;
    background: linear-gradient(135deg, #870000, #190a05);
}


.dark-theme .footer {
    background-color: #222;
    color: #ddd;
}

.dark-theme .footer .icons a {
    color: #ddd;
}

.dark-theme .chatbot-toggler {
    background-color: #555;
    color: #eee;
}

.dark-theme .chatbot {
    background-color: #444;
    color: #eee;
}

.dark-theme .chatbox .chat.incoming {
    background-color: #555;
}

.dark-theme .card {
    background-color: #444;
    box-shadow: 0px 4px 6px rgba(255, 255, 255, 0.2); /* White shadow */
}

.dark-theme .card h3,
.dark-theme .card h2 {
    
        color: #000;
    }
.dark-theme .header {
    overflow: hidden;
    width: 100%;
    height: 5rem;
    display: flex
;
    justify-content: space-between;
    align-items: center;
    
    background: linear-gradient(135deg, #e43a15, #e65245);
}
