/* ===========================
   MS Trader Marketing Agency
   Premium CSS Part 1
=========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
    scroll-behavior:smooth;
}

body{
    background:#0b1120;
    color:#fff;
    line-height:1.7;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

a{
    text-decoration:none;
}

img{
    max-width:100%;
    display:block;
}

/* Header */

header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    background:#0f172a;
    padding:18px 0;
    z-index:999;
    box-shadow:0 5px 20px rgba(0,0,0,.3);
}

header .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo{
    font-size:28px;
    font-weight:700;
    color:#00d4ff;
}

.logo i{
    margin-right:8px;
}

nav{
    display:flex;
    gap:25px;
}

nav a{
    color:#fff;
    transition:.3s;
    font-weight:500;
}

nav a:hover{
    color:#00d4ff;
}

.btn{
    display:inline-block;
    background:#00d4ff;
    color:#fff;
    padding:14px 30px;
    border-radius:40px;
    transition:.3s;
    font-weight:600;
}

.btn:hover{
    background:#25D366;
}

.btn-outline{
    display:inline-block;
    border:2px solid #00d4ff;
    color:#00d4ff;
    padding:14px 30px;
    border-radius:40px;
    margin-left:15px;
    transition:.3s;
}

.btn-outline:hover{
    background:#00d4ff;
    color:#fff;
}

/* Hero */

.hero{
    padding:160px 0 100px;
}

.hero{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.hero h1{
    font-size:55px;
    line-height:1.2;
    margin-bottom:20px;
}

.hero span{
    color:#00d4ff;
}

.hero p{
    color:#cbd5e1;
    margin-bottom:30px;
    font-size:18px;
}

.hero img{
    border-radius:20px;
    box-shadow:0 20px 40px rgba(0,0,0,.4);
}

.counter{
    display:flex;
    gap:30px;
    margin-top:40px;
}

.counter h2{
    color:#00d4ff;
    font-size:32px;
}

.counter p{
    color:#94a3b8;
}
/* ===========================
   ABOUT SECTION
=========================== */

.about{
    padding:100px 0;
    background:#111827;
}

.about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.about-image img{
    border-radius:20px;
    box-shadow:0 20px 40px rgba(0,0,0,.35);
}

.about-content h5{
    color:#00d4ff;
    font-size:16px;
    letter-spacing:2px;
    margin-bottom:10px;
}

.about-content h2{
    font-size:42px;
    margin-bottom:20px;
}

.about-content p{
    color:#cbd5e1;
    margin-bottom:25px;
}

.about-list{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
    margin-bottom:30px;
}

.about-list div{
    color:#fff;
}

.about-list i{
    color:#22c55e;
    margin-right:8px;
}

/* ===========================
   SECTION TITLE
=========================== */

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h5{
    color:#00d4ff;
    letter-spacing:2px;
    margin-bottom:10px;
}

.section-title h2{
    font-size:42px;
}

/* ===========================
   SERVICES
=========================== */

#services{
    padding:100px 0;
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.service-card{
    background:#16213e;
    padding:35px;
    border-radius:18px;
    text-align:center;
    transition:.35s
    /* ===========================
   PRICING SECTION
=========================== */

#pricing{
    padding:100px 0;
    background:#111827;
}

.pricing-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
}

.price-card{
    background:#16213e;
    padding:40px 30px;
    border-radius:20px;
    text-align:center;
    position:relative;
    transition:.4s;
    border:1px solid rgba(255,255,255,.08);
}

.price-card:hover{
    transform:translateY(-12px);
    box-shadow:0 20px 40px rgba(0,212,255,.25);
}

.featured{
    border:2px solid #00d4ff;
}

.badge{
    position:absolute;
    top:-12px;
    right:20px;
    background:#00d4ff;
    color:#000;
    padding:6px 15px;
    border-radius:20px;
    font-size:13px;
    font-weight:700;
}

.price-card h3{
    font-size:26px;
    margin-bottom:15px;
}

.price-card h1{
    color:#00d4ff;
    font-size:55px;
    margin-bottom:20px;
}

.price-card ul{
    list-style:none;
    margin-bottom:30px;
}

.price-card ul li{
    margin:12px 0;
    color:#cbd5e1;
}

.price-card i{
    color:#22c55e;
    margin-right:8px;
}

/* ===========================
   STATS
=========================== */

.stats{
    padding:80px 0;
    background:#0b1120;
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
    text-align:center;
}

.stats-grid h2{
    color:#00d4ff;
    font-size:42px;
}

.stats-grid p{
    color:#cbd5e1;
}

/* ===========================
   TESTIMONIALS
=========================== */

#testimonials{
    padding:100px 0;
    background:#111827;
}

.testimonial-grid{
    display:grid;
    /* ===========================
   CONTACT SECTION
=========================== */

#contact{
    padding:100px 0;
    background:#0b1120;
}

.contact-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:start;
}

.contact-info h3{
    font-size:32px;
    margin-bottom:20px;
}

.contact-info p{
    color:#cbd5e1;
    margin-bottom:15px;
    font-size:17px;
}

.contact-info i{
    color:#00d4ff;
    margin-right:10px;
}

.contact-form form{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.contact-form input,
.contact-form textarea{
    width:100%;
    padding:15px;
    background:#16213e;
    border:1px solid rgba(255,255,255,.1);
    color:#fff;
    border-radius:10px;
    outline:none;
}

.contact-form input:focus,
.contact-form textarea:focus{
    border-color:#00d4ff;
}

/* ===========================
   FOOTER
=========================== */

footer{
    background:#020617;
    padding:60px 20px;
    text-align:center;
}

footer h2{
    color:#00d4ff;
    margin-bottom:15px;
}

footer p{
    color:#94a3b8;
    margin:10px 0;
}

.social-icons{
    margin:25px 0;
}

.social-icons a{
    display:inline-flex;
    justify-content:center;
    align-items:center;
    width:50px;
    height:50px;
    margin:0 8px;
    border-radius:50%;
    background:#16213e;
    color:#fff;
    transition:.3s;
    font-size:20px;
}

.social-icons a:hover{
    background:#00d4ff;
    transform:translateY(-5px);
}

.copyright{
    border-top:1px solid rgba(255,255,255,.08);
    margin-top:25px;
    padding-top:20px;
}

/* ===========================
   WHATSAPP FLOAT
=========================== */

.whatsapp-float{
    position:fixed;
    right:20px;
    bottom:20px;
    width:60px;
    height:60px;
    background:#25D366;
    color:#fff;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:30px;
    z-index:9999;
    box-shadow:0 10px 25px rgba(0,0,0,.3);
}

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

@media(max-width:991
/* ================= LOADER ================= */
#loader{
  position: fixed;
  width: 100%;
  height: 100vh;
  background: #0f172a;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.spinner{
  width: 50px;
  height: 50px;
  border: 5px solid #333;
  border-top: 5px solid #00ffd5;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin{
  0%{ transform: rotate(0); }
  100%{ transform: rotate(360deg); }
}

/* ================= DARK MODE ================= */
.dark-mode{
  background: white;
  color: black;
}

.dark-mode .navbar{
  background: rgba(255,255,255,0.9);
}

.dark-toggle{
  position: fixed;
  bottom: 20px;
  right: 20px;
  padding: 12px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: #00ffd5;
}

/* ================= CONTACT ================= */
.contact{
  padding: 80px 50px;
  text-align: center;
}

.contact form{
  max-width: 500px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact input,
.contact textarea{
  padding: 12px;
  border: none;
  border-radius: 8px;
}

.contact button{
  padding: 12px;
  background: #00ffd5;
  border: none;
  font-weight: bold;
  cursor: pointer;
}
/* ================= PRICING ================= */
.pricing{
  padding: 80px 50px;
  text-align: center;
}

.pricing-container{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.price-box{
  background: #1e293b;
  padding: 30px;
  border-radius: 12px;
  transition: 0.3s;
}

.price-box:hover{
  transform: scale(1.05);
}

.price-box h1{
  color: #00ffd5;
}

.price-box button{
  margin-top: 10px;
  padding: 10px;
  background: #00ffd5;
  border: none;
  cursor: pointer;
}

.premium{
  border: 2px solid #00ffd5;
}

/* ================= CHAT WIDGET ================= */
.chat-widget{
  position: fixed;
  bottom: 80px;
  right: 20px;
  width: 250px;
  background: #111827;
  padding: 10px;
  border-radius: 10px;
}

.chat-box{
  height: 120px;
  overflow-y: auto;
  background: #0f172a;
  padding: 5px;
  margin-bottom: 5px;
}

.chat-widget input{
  width: 70%;
  padding: 5px;
}

.chat-widget button{
  width: 25%;
  padding: 5px;
  background: #00ffd5;
  border: none;
}

/* ================= FOOTER ================= */
footer{
  padding: 40px;
  text-align: center;
  background: #0b1220;
  margin-top: 50px;
}