* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.body {
    font-family: Graphik, Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    line-height: 20px;
    font-size: 16px;
    font-weight: 400;
    direction: ltr;
    font-variant-numeric: lining-nums;
    -ms-font-feature-settings: "lnum" 1;
    -o-font-feature-settings: "lnum" 1;
    -webkit-font-feature-settings: "lnum" 1;
    font-feature-settings: "lnum" 1;
    color: #47474f;
    background-image: url(/background.svg);
}

.pattern-bg {
    overflow: hidden;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    position: fixed;
    background-position: center center;
    background-size: 100% auto;
    background-image: url(/background.svg);
}
/* Navbar styles */
.navbar {
    background: #ffffff;
    color: #000000;
    padding: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
@media (max-width: 767.98px) {
    .body {
        font-size: 16px;
        line-height: 20px;
    }
}
@media (max-width: 991.98px) {
    .body {
        font-size: 18px;
        line-height: 22px;
    }
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
}

.logo {
     font-size: 1.5rem;
    font-weight: bold; 
   
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    font-size: medium;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 550;
}

.nav-item .nav-link {
    color: #000000;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
    text-transform: uppercase;
    cursor: pointer;
    direction: 1tr;
    font-family: Graphik, Arial, sans-serif;

}

.nav-item .nav-link:hover {
    color: rgb(71, 108, 255);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    color: #fff;
}

.btn {
    padding: 0.5rem 1rem;
    color: #fffefe;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    text-decoration: none;
    transition: background 0.3s ease;
    border-radius: 2rem;
}


.primary-btn {
    background-color: #6986e6;
     border: 2px solid #5f5feb;
     color: #fffefe;
 }
 
 .primary-btn:hover {
     background: #75b1e6;
     color: #ffffff;
 }

.secondary-btn {
   background-color: #5f5feb;
    color: #ffffff;
    border: 2px solid #5f5feb;
}

.secondary-btn:hover {
    background: #75b1e6;
    color: #ffffff;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle .bar {
    width: 25px;
    height: 3px;
    background: #040404;
    margin: 4px 0;
    transition: all 0.3s ease;
}

/* Responsive styles */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 70px;
        left: 0;
        background: #fffefe;
        text-align: center;
    }

    .nav-menu.active {
        display: flex;
    }

    .cta-buttons {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }
}

.logo{
    font-size: larger;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
.logo{
    a:link{
    color: black;
    font-display: none;
}
}
.hero-section .left{
    font-size: medium;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    margin-left: 10px;
    margin-top: auto;
}
#left{
    font-size: medium;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    margin-left: 10px;
    margin-top: auto;
}

/* Hero section styles */
.hero {
    display: flex;
    height: 40vh;
    align-items: center;
    justify-content: space-between;
    padding: 5rem 1rem;
    background: #ffffff;
}

.hero-left {
    flex: 1;
    padding-right: 1rem;
    margin-top: 10%;
    font-size: larger;
}


.hero-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    margin-top: 20%;

}

.hero-headline {
    font-size: 4rem;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    margin-left: 5%;
    margin-bottom: 1rem;
    font-weight: bold;
    color: #000000;
}

.hero-tagline {
    font-size: 1.25rem;
    margin-left: 5%;
    margin-bottom: 1rem;
    color: #666;
}

.hero-btn {
    background: #3999e3;
    margin-left: 10%;
    color: #fff;
    padding: 0.75rem 1.5rem;
    border: none;
    font-size: 1.25rem;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.3s ease;
    margin-top: 10%;
    margin-bottom: 8px;
}

.hero-btn:hover {
    background: #75b1e6;
}

.hero-image {
    height: auto;
    margin-top: 0px;
    border-radius: 10px;
    margin-left: 30%;
}

/* Responsive styles */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }

    .hero-left {
        padding-right: 0;
        margin-bottom: 2rem;
    }

    .hero-headline {
        font-size: 2rem;
    }

    .hero-tagline {
        font-size: 1rem;
    }

    .hero-btn {
        font-size: 1rem;
        padding: 0.5rem 1rem;
    }

    .hero-right {
        text-align: center;
    }

    .hero-image {
        max-width: 70%;
        align-items: center;
        align-content: center;
        margin-left: 0px;
    }
}

/*HERO SECTION MOBILE VIEW RESPONSIVNESS */
@media (max-width: 440px) {
    .hero{
        margin-top: 0px;
        padding-top: 20px;
        
    }
    .hero .hero-right{
        margin-top: 0px;
        padding-top: 0px;

    }
}

@media (max-width: 640px) {
    .hero{
        margin-top: 0px;
        padding-top: 10px;
    }
    .hero .hero-right{
        margin-top: 0px;
        padding-top: 0px;
    }

   
}

@media (max-width: 90em) {
    .hero{
       padding-top: 10px;
        
    }
}

 /*NEW   DATA CSS*/

 .data {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    position: relative;
    margin-top: 20%;
    justify-content: space-evenly;
}

.container-a {
    margin: 1%;
    flex: 1 1 30%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.heading {
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-weight: bolder;
    font-size: 2.5rem;
}

.title-a {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 1.125rem;
}

/* Responsive styles */
@media (max-width: 768px) {
    .data {
        margin-top: 80%;
        flex-direction: column;
        align-items: center;
    }

    .container-a {
        width: 90%;
        margin: 1rem 0;
    }

    .heading {
        font-size: 2rem;
    }

    .title-a {
        font-size: 1rem;
    }
}

 /*END OF NEW DATA CSS*/
/*data new responsiveness*/
@media (max-width: 440px) {
   
}

@media (max-width: 640px) {
    
   
}

@media (max-width: 90em) {
    
}
/*news section*/


/*circle card code*/
/* Existing styles (optional) */
a {
    color: inherit;
    }
 .circle-cards {
    text-align: center;
    padding: 2rem 0;
  }
  
  .circle-cards h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  .card-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
  }
  
  .card {
    position: relative;
    width: 250px;
    height: 250px; 
    margin: 1rem;
    border-radius: 50%;
    background-color: #ffffff;
    box-shadow: 5px 8px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding: 2rem;
    overflow: hidden;
  }
  
  .card img {
    width: 100%;
    height: auto;
    object-fit: cover; 
    border-radius: 50%; 
    margin-bottom: 1rem;
  }
  
  .card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
  }
  
  .card p {
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 1rem;
  }
  .card:hover {
    transform: scale(1.1);
}
  .card a {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: #3999e3;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease;
  }
  
  .card a:hover {
    background-color: #75b1e6;
  }
  

  
  @media (max-width: 768px) {
    .card {
      width: calc(50% - 2rem); 
      justify-content: center;
      margin-left: 0px;
       width: 100%; 
      height: 0%;
      background-color: rgb(255, 255, 255);
    }
  }
  
  @media (max-width: 480px) {
    .card {
      width: 100%; 
      height: 0%;
      background-color: rgb(255, 255, 255);
    }
  }
   
   /* Styles for the new section */


   /*footer section code*/
   .footer {
    background-color: #282828;
    padding: 2rem 0;
    color: #ffffff;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
}

.footer-col {
    flex: 1;
    margin: 1rem;
    min-width: 200px;
}

.footer-col h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

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

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col ul li a {
    text-decoration: none;
    color: #b3b3b3;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #ffffff;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: #b3b3b3;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #ffffff;
}

@media (max-width: 768px) {
    .hero-left,
    .hero-right {
        max-width: 100%;
    }

    .data {
        flex-direction: column;
    }

    .card-container {
        flex-direction: column;
        align-items: center;
    }

    .footer-row {
        flex-direction: column;
    }
}
