
:root {

  --main-color:#007cf0;
      --secondary-color: #00dfd8;
      --accent-color: #ff7e5f;
      --dark-color: #0a192f;
      --light-color: #f8f9fa;
       --transition: all 0.3s ease;
        --gray: #6c757d;
    }
    
    
    
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  max-width: 2000px;
  margin: 0 auto;
  line-height: 1.9;
  font-size: 15px;
  color: #6b6d6f;
}

body.preload {
  overflow: hidden;
  width: 100vw;
  height: 100vh;
}

.main-color { color: #082d5a; }
.white { color: #fff; }

Typography
h1, h2, h3, h4, h5, h6 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: #323336;
  color:linear-gradient(90deg, var(--primary), var(--secondary));
  margin: 0;
}

h1 { font-size: 44px!important; line-height: 45px; margin: 40px 0 32px 0; }
h2 { font-size: 36px!important; line-height: 32px; margin: 30px 0 50px 0; }
h3 { font-size: 28px; line-height: 33px; margin: 26px 0 16px 0; }
h4 { font-size: 24px; line-height: 25px; margin: 21px 0 19px 0; }
h5 { font-size: 20px; line-height: 25px; margin: 18px 0 13px 0; }
h6 { font-size: 18px; line-height: 18px; margin: 18px 0 13px 0; }

p {
  line-height: 1.9;
  font-size: 15px;
  color: #6b6d6f;
  margin: 0 0 10px;
  font-weight: 400;
}

strong { font-weight: 500; }

/* ========== PRELOADER ========== */
.preloader {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  min-width: 100vw;
  min-height: 100vh;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000000;
}

.preloader-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
  transform: translateY(-80px);
}

/* ========== NAVIGATION ========== */
/* Base styles */
.nav {
  background: #ffffff;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 999;
  transition: all 0.3s ease;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 1.5rem;
}

.menu-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo img {
  max-height: 50px;
}

.menu-wrap {
  display: flex;
  align-items: center;
}

.menu {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu-item a {
  font-weight: bold;
  text-decoration: none;
  font-size: 18px;
  color: #1a1a1a;
  padding: 0.5rem 1rem;
  border-radius: 10px;
  transition: transform 0.3s ease, background 0.3s ease;
}

.menu-item a:hover {
  background: #e3f2fd;
  transform: rotateX(10deg) rotateY(10deg) scale(1.05);
}

/* Search Bar */
.search-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #f0f0f0;
  padding: 0.4rem 1rem;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.search-bar input {
  border: none;
  background: transparent;
  outline: none;
  padding: 0.3rem;
  width: 150px;
}

.search-icon {
  color: #1d8cf8;
  cursor: pointer;
}

/* Menu Toggle - Mobile */
.menu-toggle {
  display: none;
  cursor: pointer;
}

.menu-icon span {
  display: block;
  width: 25px;
  height: 3px;
  margin-bottom: 5px;
  background: #1a1a1a;
  border-radius: 5px;
  transition: 0.4s;
}

/* Responsive */
@media (max-width: 992px) {
  .menu-wrap {
    width: 100%;
    display: none;
    flex-direction: column;
    background: #ffffff;
    padding: 1rem;
    border-radius: 10px;
    margin-top: 1rem;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
  }

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

  .menu {
    flex-direction: column;
    width: 100%;
  }

  .search-bar {
    margin-top: 1rem;
    width: 100%;
  }

  .menu-toggle {
    display: block;
  }
}