/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* width */
::-webkit-scrollbar {
  width: 4px;
  border-radius: 20px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #ff0000;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}

:root {
    --heading-colour: #8caf51;
    --bg: 0e0f61;
    --background-color: rgb(15, 66, 97);

}

body {
    font-family: 'Segoe UI', sans-serif;
}

/* Top Contact Bar */
.top-bar {
    background-color: rgb(15, 66, 97);
    color: white;
    display: flex;
    justify-content: space-around;
    align-items: center;
    font-size: 14px;
    padding: 8px 10px;
    flex-wrap: wrap;
}

.top-bar i {
    margin-right: 6px;
}

.top-bar a {
    color: white;
    text-decoration: none;
}

/* Main Navbar */
.main-navbar {
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-navbar .logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 60px;
    margin-right: 10px;
}

.nav-links ul {
    list-style: none;
    display: flex;
    gap: 25px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: red;
}

.menu-toggle {
    display: none;
    font-size: 26px;
    cursor: pointer;
}

.chat-toggle-btn button {
    background-color: var(--background-color);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s;
}

.chat-toggle-btn button:hover {
    background-color: red;
}

/* Chatbox Styles */
.chatbox-container {
    display: none;
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 300px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    flex-direction: column;
}

.chatbox-header {
    background-color: red;
    color: white;
    padding: 10px;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.close-chat {
    cursor: pointer;
    font-size: 18px;
}

.chatbox-body {
    padding: 15px;
    height: 150px;
    overflow-y: auto;
    background: #f9f9f9;
}

.chat-reply {
    background: #e1e1e1;
    padding: 8px 12px;
    margin-top: 10px;
    border-radius: 10px;
    font-size: 14px;
}

.chatbox-input {
    display: flex;
    padding: 10px;
    border-top: 1px solid #ddd;
}

.chatbox-input input {
    flex: 1;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 20px;
    outline: none;
}

.chatbox-input button {
    background-color: #c49b66;
    color: white;
    border: none;
    padding: 8px 15px;
    margin-left: 10px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: bold;
}

/* ---------=============SLIDER CSS-==================================================== */




.hero-slider {
    position: relative;
    width: 100%;
    height: 90vh;
    overflow: hidden;
}

.slider-wrapper {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.slides-track {
    display: flex;
    height: 100%;
    transition: transform 0.8s ease-in-out;
}

.slide {
    min-width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    text-align: center;
    z-index: 2;
}

.slide-content h2 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.slide-content p {
    font-size: 1.2rem;
}

.nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    font-size: 2rem;
    padding: 0.5rem 1rem;
    cursor: pointer;
    z-index: 5;
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

 .about-section {
    padding: 40px 20px;
    max-width: 1200px;
    margin: auto;
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
    font-family: 'Segoe UI', sans-serif;
  }

  .about-header {
    text-align: center;
    margin-bottom: 30px;
  }

  .about-header h2 {
    font-size: 32px;
    color: red;
    margin-bottom: 10px;
  }

  .about-header p {
    font-size: 18px;
    color: #666;
  }

  .about-content p {
    text-align: center;
    max-width: 800px;
    margin: auto;
    font-size: 16px;
  }

  .founders {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
  }

  .founder-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    width: 300px;
    text-align: center;
    padding: 20px;
    transition: transform 0.3s;
  }

  .founder-card:hover {
    transform: translateY(-5px);
  }

  .founder-card img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 15px;
  }

  .founder-card h3 {
    color:red;
    margin-bottom: 8px;
  }

  .founder-card p {
    font-size: 14px;
    color: #555;
  }

      .why-choose-us {
      background: #ffffff;
      padding: 60px 20px;
      text-align: center;
    }

    .why-choose-us h2 {
      font-size: 36px;
      margin-bottom: 10px;
      color: #333;
    }

    .why-choose-us p {
      color: #666;
      margin-bottom: 40px;
      font-size: 16px;
    }

    .stats {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 40px;
    }

    .stat-box {
      background: #f0f0f0;
      padding: 30px;
      border-radius: 10px;
      width: 220px;
      box-shadow: 0 0 10px rgba(0,0,0,0.1);
    }

    .stat-number {
      font-size: 48px;
      color: #009688;
      font-weight: bold;
    }

    .stat-label {
      font-size: 18px;
      color: #444;
      margin-top: 10px;
    }

    .about-services {
    font-family: Arial, sans-serif;
    padding: 20px;
    max-width: 900px;
    margin: auto;
  }

    .section-title{
      font-size: 36px;
      margin-bottom: 30px;
      color: #333;
      text-align: center;
    }

  .service {
    margin-bottom: 24px;
    padding: 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fafafa;
  }

  .service h3 {
    margin-top: 0;
    font-size: 1.4rem;
    color: #222;
  }

  .service p {
    margin: 8px 0;
    line-height: 1.6;
    color: #333;
  }

  .toggle-btn {
    margin-top: 10px;
    padding: 8px 14px;
    font-size: 0.95rem;
    cursor: pointer;
    border: 1px solid #0077ff;
    background: #fff;
    color: #0077ff;
    border-radius: 6px;
    transition: 0.3s;
  }

  .toggle-btn:hover {
    background: #0077ff;
    color: #fff;
  }

  .more-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }

  /* ✅ Responsive Styling */
  @media (max-width: 768px) {
    .about-services {
      padding: 15px;
    }
    .service {
      padding: 12px;
    }
    .service h3 {
      font-size: 1.2rem;
    }
    .service p {
      font-size: 0.95rem;
    }
    .toggle-btn {
      font-size: 0.85rem;
      padding: 7px 12px;
    }
  }

  @media (max-width: 480px) {
    .service {
      padding: 10px;
    }
    .service h3 {
      font-size: 1.05rem;
    }
    .service p {
      font-size: 0.9rem;
    }
    .toggle-btn {
      width: 100%;
      padding: 10px;
    }
  }

        footer {
      background-color: #1f1f1f;
      color: #fff;
      padding: 40px 20px 20px;
      background-image:url(../assest/Footer-image.jpg);
      background-size: cover;
      background-position: center;
      position: relative;
    }

    footer::before {
      content: "";
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      background: rgba(0, 0, 0, 0.7);
      z-index: 0;
    }

    .footer-content {
      position: relative;
      z-index: 1;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      max-width: 1200px;
      margin: auto;
    }

    .footer-section {
      flex: 1 1 200px;
      padding: 20px;
    }

    .footer-section h4 {
      color: rgb(188, 220, 188);
      margin-bottom: 15px;
      border-bottom: 1px solid #555;
      display: inline-block;
    }

    .footer-section ul {
      list-style: none;
    }

    .footer-section ul li {
      margin-bottom: 10px;
    }

    .footer-section p a{
      color: white;
      text-decoration: none;
    }

    .footer-section ul li a {
      text-decoration: none;
      color: #fff;
      transition: 0.3s;
    }

    .footer-section ul li a:hover {
      color: #a4ff00;
    }

    .logo-area {
      text-align: center;
    }

    .logo-area img {
      max-width: 120px;
      margin-bottom: 10px;
    }

    .logo-area p {
      font-size: 14px;
      color: #ccc;
    }

    .social-icons a {
      margin-right: 10px;
      color: #fff;
      font-size: 20px;
      display: inline-block;
      transition: 0.3s;
    }

    .social-icons a:hover {
      color: #a4ff00;
    }

    .footer-bottom {
      text-align: center;
      color: #ccc;
      font-size: 13px;
      padding-top: 10px;
      border-top: 1px solid #444;
      position: relative;
      z-index: 1;
    }

    @media (max-width: 768px) {
      .footer-content {
        flex-direction: column;
        align-items: center;
      }

      .footer-section {
        text-align: center;
      }
    }


    @media (max-width: 768px) {
      .stats {
        flex-direction: column;
        align-items: center;
      }
    }

@media (max-width: 768px) {
    .slide-content h2 {
        font-size: 2rem;
    }

    .slide-content p {
        font-size: 1rem;
    }
}

/* Responsive Styles */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        width: 100%;
        background-color: white;
        position: absolute;
        top: 60px;
        left: 0;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }

    .nav-links ul {
        flex-direction: column;
        padding: 10px 20px;
    }

    .nav-links.show {
        display: block;
    }

    .menu-toggle {
        display: block;
    }

    .chat-toggle-btn {
        display: none;
    }

        .about-header h2 {
      font-size: 26px;
    }

    .founder-card {
      width: 90%;
    }
}