/* Global Styles */
@import url("https://fonts.googleapis.com/css2?family=Saira+Condensed:wght@100;200;300;400;500;600;700;800;900&display=swap");

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Saira Condensed";
    font-size: 1rem;

  }
  
  body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #454545;
    background-color: #f7f7f7;
  }
  
  /* Header Styles */
  .logo{
    pointer-events: none;
    background: linear-gradient(180deg, #337ab7 95%, #f7f3f8 50%);
    padding-bottom: 15px;
  }
  header {
    background-color: #337ab7;
    color: #fff;
    padding: 1em;
    text-align: center;
  }
  
  nav ul {
    list-style: none;
    margin: 0;
    padding: 10px 0px 0px 0px;
    display: flex;
    gap: 10%;
    justify-content: center;
  }
  
  nav li {
    margin-right: 20px;
  }
  
  nav a {
    color: #fff;
    text-decoration: none;
  }
  nav a:hover{
    font-size: 1.1rem;
    font-weight: 500;
  }
  /* Hero Section Styles */
  
  .hero {
    padding-left: 40px;
    padding-right: 40px;
    background-image: linear-gradient(to bottom, #f7f7f7, #fff);
    background-size: 100% 50vh;
    background-position: 0% 100%;
    height: 50vh;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    color: #5c5c5c;
  }
  
  .hero h1 {
    font-size: 3rem;
  }
  
  .hero button {
    background-color: #337ab7;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 1.5rem;
    cursor: pointer;
  }
  
  /* Features Section Styles */
  
  .features {
    background-color: #f5f5f5;
    padding: 50px 20px;
    text-align: center;
  }
  
  .features h2 {
    font-size: 36px;
    margin-bottom: 50px;
  }
  
  .feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 7vw;
  }
  
  .feature {
    background-color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: left;
  }
  
  .feature img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 20px;
  }
  
  .feature h3 {
    font-size: 18px;
    margin-bottom: 10px;
  }
  
  .feature p {
    font-size: 14px;
    line-height: 1.5;
  }
  
  /* Footer Styles */
  
  footer {
    pointer-events: none;
    background-color: #337ab7;
    color: #fff;
    padding: 10px;
    text-align: center;
    clear: both;
  }
  
  /* Responsive Styles */
  
@media (max-width: 1200px) {
    .feature-grid {
      grid-template-columns: repeat(3, 1fr);
    }
}
  
@media (max-width: 900px) {
    .feature-grid {
      grid-template-columns: repeat(2, 1fr);
    }
}
  
@media (max-width: 600px) {
    .feature-grid {
      grid-template-columns: repeat(1, 1fr);
    }
}

@media (max-width: 768px) {
    nav ul {
      flex-direction: column;
      gap: 0;
      align-items: center;
    }
    
    nav li {
      margin-right: 0;
      margin-bottom: 10px;
    }
}
  
  /* Hero Section Responsive Styles */
@media (max-width: 768px) {
    .hero {
      display: flex;
      flex-direction: column;
      align-items: center;
      height: auto;
      padding: 2rem 1rem;
      gap: 3vh;
    }
    
    .hero h1 {
      font-size: 1.4rem;
    }
    .hero p{
        font-size: 0.85rem;
    }
    
    .hero button {
      font-size: 1.2rem;
    }
}
 .feature{
    background: linear-gradient(602deg, #fff 60%, #efefef 50%);;
    padding: 50px 0;
    text-align: center;;
    top: -62%;
    left: 50%;
    transform: translate(-50%,50%);
    color: #454545;
    overflow: hidden;
    position: relative;
    width: 93%;
    border-radius: 10px;
}
.feature::before{
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    bottom: 2px;
    width: 50%;
    background: rgba(255, 255, 255, 0.05);
}
.feature:hover{
    height: 110%;
    transition: all .2s cubic-bezier(.5,.15,0,1);

}
.feature span:nth-child(1){
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 1.5px;
    background: linear-gradient(to right,#fdfdfd,#337ab7);
    animation: animate1 2s linear infinite;
}
@keyframes animate1{
    0%
    {
        transform:translateX(-100%) ;
    }
    100%
    {
        transform:translateX(100%) ;
    }
}
.feature span:nth-child(2){
    position: absolute;
    top: 0;
    right: 0;
    width: 1.5px;
    height: 100%;
    background: linear-gradient(to bottom,white,#337ab7);
    animation: animate2 2s linear infinite;
}
@keyframes animate2{
    0%
    {
        transform:translateY(-100%) ;
    }
    100%
    {
        transform:translateY(100%) ;
    }
}
.feature span:nth-child(3){
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 1.5px;
    background: linear-gradient(to left,#ffffff,#337ab7);
    animation: animate3 2s linear infinite;

}
@keyframes animate3{
    0%
    {
        transform:translateX(100%) ;
    }
    100%
    {
        transform:translateX(-100%) ;
    }
}
.feature span:nth-child(4){
    position: absolute;
    top: 0;
    left: 0;
    width: 1.5px;
    height: 100%;
    background: linear-gradient(to top,#ffffff,#337ab7);
    animation: animate4 2s linear infinite;

}
@keyframes animate4{
    0%
    {
        transform:translateY(100%) ;
    }
    100%
    {
        transform:translateY(-100%) ;
    }
}