/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    line-height: 1.6;
}

h4 {
    color: #fff;
}

.top-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #686564;
    padding: 20px 50px;
    color: #fff;
    font-size: 16px;
}

.top-header .contact-info {
    display: flex;
    align-items: center;
}

.top-header .contact-info span {
    margin-right: 20px;
    display: inline-flex;
    align-items: center;
}

.top-header .contact-info i {
    margin-right: 5px;
}

.top-header .social-icons {
    display: flex;
    align-items: center;
    margin-left: auto;
}

.top-header .social-icons a {
    color: #fff;
    text-decoration: none;
    margin-left: 15px;
    font-size: 18px;
}

.top-header .social-icons a:hover {
    color: #ffd03d;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 50px;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }
  
  /* Logo Styling */
  .logo {
    font-size: 24px;
    font-weight: bold;
    color: #ffd03d;
  }
  
  /* Navigation Links Styling */
  .nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
  }
  
  .nav-links a {
    text-decoration: none;
    color: #000;
    font-weight: 500;
    font-size: 18px;
  }
  
  .nav-links a:hover {
    color: #ffd03d;
  }
  
  /* Button Styling */
  .auth-buttons {
    display: flex;
    gap: 20px;
  }
  
  .login-btn {
    background-color: #fff;
    border: 2px solid #ffd03d;
    padding: 10px 25px;
    color: #000;
    font-weight: 500;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
  }
  
  .login-btn:hover {
    background-color: #ffd03d;
    color: #fff;
  }
  
  .register-btn {
    background-color: #ffd03d;
    color: #fff;
    border: none;
    padding: 8px 20px;
    font-weight: 500;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
  }
  
  .register-btn:hover {
    opacity: 0.9;
  }

  .hero-section img {
    height: auto;
    width: 100%;
  }

  .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 30px auto;
    padding: 20px;
  }

  .content {
    flex: 1;
    padding-right: 30px;
  }

  .content h1 {
    font-size: 2.5rem;
    color: #2c3e50;
  }

  .content h1 span {
    font-weight: bold;
    color: #000;
  }

  .content p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin-top: 20px;
  }

  .image-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    flex: 1;
  }

  .image-gallery img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }

  .image-gallery img.large {
    grid-column: span 2;
    height: 250px;
    object-fit: cover;
  }

  .container1 {
    display: flex;
    align-items: stretch;
    justify-content: center;
    max-width: 1200px;
    margin: 50px auto;
  }

  .image-section {
    flex: 1;
  }

  .image-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .content-section {
    flex: 1;
    background-color: #0f2c3e;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    text-align: center;
  }

  .content-section h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: .9;
  }

  .button {
    display: inline-block;
    margin-top: 20px;
    background-color: #fff;
    color: #0f2c3e;
    padding: 10px 30px;
    font-size: 1rem;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    position: relative;
    top: -10px;
  }

  .button:hover {
    background-color: #ffd03d;
  }

  .container2 {
    max-width: 1200px;
    margin: 50px auto;
    text-align: center;
  }

  .container2 h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #2c3e50;
    /* text-decoration: underline; */
  }

  .services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 20px;
  }

  .service {
    text-align: left;
    padding: 20px;
  }

  .service img {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
  }

  .service h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #0f2c3e;
  }

  .service p {
    font-size: 0.95rem;
    color: #555;
  }

  .container3 {
    max-width: 1200px;
    margin: 50px auto;
    text-align: center;
    padding: 20px;
  }

  .container3 h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #2c3e50;
  }

  .news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .news-item {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: left;
  }

  .news-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }

  .news-content {
    padding: 15px;
  }

  .news-content h2 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #0f2c3e;
  }

  .news-content p {
    font-size: 0.9rem;
    color: #555;
  }

  .news-meta {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 10px;
  }

  footer {
    width: 100%;
}



footer .column {
    
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #686564;
    margin-top: 5vh;
    min-height: 16em;
    padding-left: 5%;
   
    
}

.col-first {
    width: 30%;
    

}

.col-sec {
    width: 30%;
    margin-left: 5%;
    
}

.Quick {
    color: #FAD253;
}

.link a {
    text-decoration: none;
    color: white;
}

.col-third {
    margin-right: 5%;
}

.add {
    color: white;
}



  