* {
  font-size: 14px;
  font-weight: 700;
  transition: .3s;
}
body {
  font-family: 'Space Mono', monospace;
  background: #000814;
  color: white;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}
.container {
  width: 90%;
  max-width: 1400px;
  margin: auto;
}
/* Navbar */
/* شكل الـ navbar */
.navbar2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  color: white;
}

/* اللينكات */
.menu {
  display: flex;
  gap: 20px;
  color: white;
  list-style: none;
}

/* زر الموبايل */
.hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
  margin-left: 250px;
}
/* Navbar */
.navbar {
  width: 100%;
  height: 90px;
  background: #020d2b;
  display: flex;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}
.menu a{
  text-decoration: none;
  color: white;
 font-size: 20px;
  font-weight: 700;
  transition: .3s;
  color: white;
}

.menu a.active {
  color: #5b75ff;
}

.menu a:hover {
  color: #5b75ff;
}
/* 📱 موبايل */
@media (max-width: 768px) {

  .menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 10px;
    background: #020d2b;
    padding: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
  }
  .menu a{
    color: white;
    text-decoration: none;
  }
  .menu.active {
    display: flex;
  }

  .hamburger {
    display: block;
  }
}
/* Navbar */
.navbar {
  width: 100%;
  height: 90px;
  background: #020d2b;
  display: flex;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}


.menu a.active {
  color: #5b75ff;
}

.menu a:hover {
  color: #5b75ff;
}




/* Hero */
.hero {
  min-height: 100vh;
  background: linear-gradient(90deg, #23326f 0%, #5067d2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding-top: 100px;
  overflow: hidden;
}

.hero-content {
  text-align: center;
  z-index: 2;
}

.hero-logo {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 40px;
}

.hero h1 {
  font-size: 70px;
  font-weight: 700;
  margin-bottom: 30px;
}

.hero p {
  font-size: 22px;
  margin-bottom: 35px;
}

.hero-btn {
  width: 190px;
  height: 58px;
  border: none;
  background: white;
  border-radius: 8px;
  font-family: 'Space Mono', monospace;
  font-size: 16px;
  cursor: pointer;
  transition: .3s;
}
.hero-btn i {
  margin-left: 10px;
}

.hero-btn:hover {
  transform: translateY(-4px);
}

.wave {
  position: absolute;
  bottom: -20px;
  left: 0;
  width: 100%;
  height: 180px;
  background: #7380bc;
  border-radius: 45% 55% 0 0;
  opacity: 0.7;
}
/* Solutions */
.solutions {
    background: #020d2b;
    padding: 90px 5%;
}

.solutions h2 {
  text-align: center;
  font-size: 52px;
  margin-bottom: 70px;
}
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

.solution-card {
  border: 1px solid rgba(85, 113, 255, 0.25);
  border-radius: 12px;
  padding: 60px 40px;
  text-align: center;
  transition: .3s;
}

.solution-card:hover {
  transform: translateY(-8px);
  border-color: #5b75ff;
}

.solution-card i {
  font-size: 52px;
  color: #23326f;
  margin-bottom: 35px;
}

.solution-card h3 {
  font-size: 28px;
  margin-bottom: 25px;
}

.solution-card p {
  font-size: 20px;
  line-height: 1.8;
  color: #d5d5d5;
}
/* Insights */
.insights-section {
 background: #020d2b;
  padding: 90px 5%;
}
.insights-section h2 {
  text-align: center;
  font-size: 52px;
  margin-bottom: 70px;
}
.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  max-width: 1100px;
  margin: auto;
}
.insight-card {
    background: #020d2b;
  padding: 80px;
  border-radius: 40px;
  text-align: center;
  width: 60%;
  height: 60%;
}
.insight-card i {
  font-size: 48px;
  color: #23326f;
  margin-bottom: 30px;
}
.insight-card h3 {
  font-size: 28px;
  margin-bottom: 30px;
}
.insight-card span {
  font-size: 60px;
  color: #23326f;
  font-weight: 700;
}
/* Footer */
.footer {
  background: #23326f;
  padding: 70px 5% 30px;
}
.footer-container {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-box h3 {
  font-size: 32px;
  margin-bottom: 30px;
}

.footer-box p {
  font-size: 20px;
  color: #d8d8d8;
  line-height: 1.8;
}

.footer-box ul {
  list-style: none;
}

.footer-box ul li {
  margin-bottom: 20px;
}

.footer-box ul li a {
  text-decoration: none;
  color: white;
  transition: .3s;
  font-size: 18px;
}

.footer-box ul li a:hover {
  color: #8aa0ff;
}

.social-icons {
  display: flex;
  gap: 25px;
}

.social-icons a {
  color: white;
  font-size: 30px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 30px;
  text-align: center;
  font-size: 18px;
}
/* Floating Buttons */
.whatsapp-btn {
  position: fixed;
  bottom: 150px;
  right: 25px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 100px;
  text-decoration: none;
  z-index: 999;
}
.chatbotToggle {
  position: fixed;
  bottom: 50px;
  right: 25px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 35px;
  z-index: 999;
  cursor: pointer;
}
.chatBotImage{
    display: flex;
    align-items: center;
    justify-content: center;
      width: 100px;
    height: 100px;
    object-fit: contain;
}

.whatsapp-icon{
    display: flex;
    align-items: center;
    justify-content: center;
      width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 50%;
}
/* Chatbot Modal */
/* ===== CHAT BUTTON ===== */

.chatbot-toggle{
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: #0f172a;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 10px 25px rgba(0,0,0,.3);
}

/* ===== CHAT BOX ===== */

.chatbot-container{
    position: fixed;
    bottom: 100px;
    right: 20px;
    width: 380px;
    height: 500px;
    background: #162033;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,.4);
    display: none;
    flex-direction: column;
    z-index: 999;
}

/* ===== HEADER ===== */

.chatbot-header{
    background: #2563eb;
    padding: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chatbot-header h3{
    color: white;
    margin: 0;
    font-size: 24px;
    font-weight: 700;
}

.chat-actions{
    display: flex;
    align-items: center;
    gap: 18px;
}

.chat-actions button{
    background: transparent;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 15px;
}

#closeChat{
    color: white;
    font-size: 22px;
    cursor: pointer;
}

/* ===== BODY ===== */

.chatbot-body{
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* BOT MESSAGE */

.bot-message{
    background: #374151;
    color: white;
    padding: 18px;
    border-radius: 10px;
    font-size: 22px;
    line-height: 1.6;
    width: 85%;
}

/* OPTIONS BUTTONS */

.chat-option{
    width: 100%;
    background: transparent;
    border: 2px solid #2563eb;
    color: white;
    padding: 15px;
    border-radius: 10px;
    text-align: left;
    font-size: 19px;
    cursor: pointer;
    transition: .3s;
}

.chat-option:hover{
    background: #2563eb;
}

/* ===== RESPONSIVE ===== */

@media(max-width:500px){

    .chatbot-container{
        width: 95%;
        right: 10px;
        bottom: 90px;
    }

}
/* Responsive */
@media(max-width: 1100px) {

  .solutions-grid,
  .insights-grid,
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width: 768px) {

  .nav-links {
    display: none;
  }

  .hero h1 {
    font-size: 48px;
  }

  .hero p {
    font-size: 18px;
    padding: 0 20px;
  }

  .hero-logo {
    width: 180px;
    height: 180px;
  }

  .solutions h2,
  .insights-section h2 {
    font-size: 38px;
  }

  .solutions-grid,
  .insights-grid,
  .footer-container {
    grid-template-columns: 1fr;
  }

  .solution-card,
  .insight-card {
    padding: 40px 25px;
  }

  .solution-card h3,
  .insight-card h3 {
    font-size: 22px;
  }

  .solution-card p,
  .footer-box p {
    font-size: 16px;
  }
}
