@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root{
  --primary:#0f172a;
  --secondary:#1e293b;
  --accent:#2563eb;
  --accent-hover:#1d4ed8;
  --orange:#ff7b00;
  --orange-2:#ff9d00;
  --light:#f8fafc;
  --white:#ffffff;
  --text:#334155;
  --muted:#64748b;
  --border:#e2e8f0;
  --shadow:0 10px 30px rgba(15,23,42,.08);
  --radius:16px;
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:"Inter",Arial,sans-serif;
  background:var(--light);
  color:var(--text);
  line-height:1.6;
}

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

a{
  text-decoration:none;
  color:inherit;
}

ul{
  list-style:none;
}

.container{
  width:min(1100px,92%);
  margin:auto;
}

/* Header */
header{
  background:linear-gradient(135deg,var(--primary),var(--secondary));
  color:var(--white);
  padding:20px 0;
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}

.logo-box{
  display:flex;
  align-items:center;
  gap:14px;
}

.logo-box img{
  width:80px;
  height:80px;
  object-fit:cover;
  border-radius:50%;
  background:#fff;
  padding:6px;
  border:2px solid rgba(255,255,255,.35);
  box-shadow:0 10px 24px rgba(0,0,0,.2);
}

.logo-text h1{
  font-size:28px;
  margin-bottom:4px;
  letter-spacing:.5px;
}

.logo-text p{
  font-size:14px;
  color:#dbe4f0;
  margin:0;
}

/* Navbar */
nav{
  background:var(--white);
  border-bottom:1px solid var(--border);
  box-shadow:0 2px 10px rgba(0,0,0,.04);
}

nav ul{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
  padding:14px 0;
  margin:0;
}

nav ul li a,
nav a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  color:#0f172a;
  padding:12px 20px;
  border-radius:12px;
  font-weight:700;
  transition:all .3s ease;
  background:transparent;
}

nav ul li a:hover,
nav a:hover{
  background:#2563eb;
  color:#fff;
  transform:translateY(-2px);
  box-shadow:0 8px 20px rgba(37,99,235,.3);
}

nav ul li a.active,
nav a.active{
  background:linear-gradient(135deg,#2563eb,#1d4ed8);
  color:#fff;
  box-shadow:0 8px 20px rgba(37,99,235,.25);
}

/* Hero */
.hero{
  min-height:600px;
  padding:80px 20px;
  text-align:center;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;

  background:
    linear-gradient(rgba(15,23,42,.70),rgba(15,23,42,.70)),
    url("img/background.jpeg");

  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
}
.hero h2{
  font-size:clamp(36px,4vw,65px);
  line-height:1.1;
  max-width:900px;
  margin:auto;
}

.hero p{
  font-size:18px;
  max-width:700px;
  margin:20px auto;
  color:#fff;
}

/* Buttons */
.btn,
.btn-secondary{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:16px 32px;
  border-radius:50px;
  margin:8px;
  min-width:220px;
  font-size:16px;
  font-weight:800;
  text-decoration:none;
  transition:all .35s ease;
}

.btn{
  background:linear-gradient(135deg,#ff7b00,#ff9d00);
  color:#fff;
  box-shadow:0 10px 25px rgba(255,123,0,.35);
}

.btn:hover{
  transform:translateY(-4px);
  box-shadow:0 18px 35px rgba(255,123,0,.45);
}

.btn-secondary{
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.35);
  backdrop-filter:blur(10px);
  color:#fff;
}

.btn-secondary:hover{
  background:#fff;
  color:#2563eb;
  transform:translateY(-4px);
  box-shadow:0 18px 35px rgba(255,255,255,.2);
}

/* Sections */
section{
  padding:70px 0;
}

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

.section-title h2{
  font-size:34px;
  color:var(--primary);
  margin-bottom:10px;
}

.section-title p{
  color:var(--muted);
  max-width:700px;
  margin:auto;
}

/* Stats */
.stats{
  margin-top:0;
  position:relative;
  z-index:5;
  padding-top:60px;
}
.stats-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
}

.stats-grid div{
  background:#fff;
  padding:28px 20px;
  text-align:center;
  border-radius:20px;
  box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.stats-grid h3{
  color:#2563eb;
  font-size:32px;
  margin:0 0 8px;
}

.stats-grid p{
  color:#0f172a;
  font-weight:700;
  margin:0;
}

/* Grid / Cards */
.grid{
  display:grid;
  gap:25px;
}

.grid-3{
  grid-template-columns:repeat(4,1fr);
  align-items:stretch;
}

.card{
  background:var(--white);
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  overflow:hidden;
  transition:transform .3s ease,box-shadow .3s ease;
  display:flex;
  flex-direction:column;
  height:100%;
}

.card:hover{
  transform:translateY(-6px);
  box-shadow:0 16px 40px rgba(15,23,42,.12);
}

.card img{
  width:100%;
  height:220px;
  object-fit:cover;
}

.card-content{
  padding:20px;
  display:flex;
  flex-direction:column;
  flex:1;
}

.card-content h3{
  font-size:20px;
  color:var(--primary);
  margin-bottom:10px;
}

.card-content p{
  color:var(--muted);
  margin-bottom:16px;
  margin-top:8px;
  flex:1;
}

.card-content .btn{
  margin-top:auto;
  width:100%;
  justify-content:center;
}

@media(max-width:1200px){
  .grid-3{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:768px){
  .grid-3{
    grid-template-columns:1fr;
  }
}
/* Projects */
.project-slider{
    width:380px;
    height:680px;
    margin:auto;
    overflow:hidden;
    border-radius:30px;
    position:relative;
    background:#000;
    box-shadow:0 20px 50px rgba(0,0,0,.2);
}

.project-video{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.project-overlay{
    position:absolute;
    left:0;
    right:0;
    bottom:48px; /* فوق أزرار الفيديو */
    padding:0 22px;
    background:transparent;
    color:#fff;
    z-index:5;
    pointer-events:none;
}

.project-overlay h3{
    margin:0;
    font-size:20px;
    font-weight:800;
}

/* Forms */
.form-box{
  max-width:700px;
  margin:auto;
  background:var(--white);
  padding:30px;
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  border:1px solid var(--border);
}

.form-group{
  margin-bottom:18px;
}

label{
  display:block;
  margin-bottom:8px;
  font-weight:600;
  color:var(--primary);
}

input,
select,
textarea{
  width:100%;
  padding:14px;
  border:1px solid var(--border);
  border-radius:12px;
  font:inherit;
  color:var(--text);
  background:#fff;
}

input:focus,
select:focus,
textarea:focus{
  outline:none;
  border-color:var(--accent);
}

button{
  border:none;
  cursor:pointer;
}

/* Product details */
.price{
  font-size:18px;
  font-weight:700;
  color:var(--accent);
  margin-bottom:14px;
}

.card-content .btn,
.card-content .btn-secondary{
  margin-right:8px;
  margin-top:6px;
}

.card-content .btn-secondary{
  background:#e2e8f0;
  color:var(--primary);
  border:none;
  box-shadow:none;
}

.card-content .btn-secondary:hover{
  background:#cbd5e1;
  color:var(--primary);
}

.product-details{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
  align-items:center;
}

.product-image img{
  width:100%;
  border-radius:12px;
}

.product-info h2{
  font-size:32px;
  margin-bottom:10px;
}

.product-features{
  margin-top:15px;
  margin-bottom:20px;
}

.product-features li{
  margin-bottom:8px;
}

.product-actions{
  margin-top:20px;
}

.product-actions a{
  margin-right:10px;
}

/* Cart */
.cart-layout{
  display:grid;
  grid-template-columns:2fr 1fr;
  gap:30px;
  align-items:start;
}

.cart-items{
  display:grid;
  gap:20px;
}

.cart-item{
  display:grid;
  grid-template-columns:120px 1fr 100px;
  gap:20px;
  align-items:center;
  background:var(--white);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:20px;
  box-shadow:var(--shadow);
}

.cart-item img{
  width:120px;
  height:100px;
  object-fit:cover;
  border-radius:12px;
}

.cart-details h3{
  margin-bottom:8px;
  color:var(--primary);
}

.cart-details p{
  margin-bottom:8px;
  color:var(--muted);
}

.cart-qty label{
  display:block;
  margin-bottom:8px;
  font-weight:600;
}

.cart-qty input{
  width:80px;
}

.cart-summary{
  background:var(--white);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:24px;
  box-shadow:var(--shadow);
}

.cart-summary h3{
  margin-bottom:18px;
  color:var(--primary);
}

.cart-summary p{
  display:flex;
  justify-content:space-between;
  margin-bottom:12px;
  color:var(--text);
}

.cart-summary .btn,
.cart-summary .btn-secondary{
  display:flex;
  text-align:center;
  margin-top:14px;
}

.qty-controls{
  display:flex;
  align-items:center;
  gap:10px;
  margin:10px 0;
}

.qty-controls button{
  width:30px;
  height:30px;
  border:none;
  background:#2563eb;
  color:white;
  font-size:18px;
  border-radius:6px;
  cursor:pointer;
}

.qty-controls span{
  font-weight:bold;
  font-size:16px;
}

.cart-btn{
  display:inline-block!important;
  background-color:#22c55e!important;
  color:white!important;
  padding:10px 16px!important;
  border-radius:6px!important;
  font-weight:700!important;
  text-decoration:none!important;
}

.cart-btn:hover{
  background-color:#16a34a!important;
  color:white!important;
}

/* Payment */
.payment-layout{
  display:grid;
  grid-template-columns:2fr 1fr;
  gap:30px;
  align-items:start;
}

.payment-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}

.payment-alt-btn{
  margin-top:14px;
  width:100%;
  text-align:center;
}

/* Auth / project forms */
.signup-box,
.signin-box{
  max-width:550px;
}

.signup-btn,
.signin-btn,
.project-btn,
.form-box .btn{
  width:100%;
  padding:14px;
  font-size:16px;
}

.form-note{
  margin-top:18px;
  text-align:center;
}

.form-link{
  color:#2563eb;
  font-weight:600;
}

.password-row{
  display:grid;
  grid-template-columns:1fr auto;
  gap:10px;
  align-items:center;
}

.toggle-btn{
  padding:12px 14px;
  border:none;
  border-radius:12px;
  background:#e2e8f0;
  color:var(--primary);
  font-weight:600;
  cursor:pointer;
}

.toggle-btn:hover{
  background:#cbd5e1;
}

.project-box{
  max-width:800px;
}

.project-box textarea{
  min-height:140px;
}

/* Project status page */
.project-status-section{
  background:linear-gradient(180deg,#f8fafc 0%,#eef4ff 100%);
}

.project-status-layout{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:30px;
  align-items:center;
}

.project-status-copy{
  border-radius:28px;
}

.status-badge{
  display:inline-flex;
  align-items:center;
  padding:8px 14px;
  border-radius:999px;
  background:#dbeafe;
  color:#1d4ed8;
  font-weight:700;
  font-size:13px;
  margin-bottom:16px;
}

.project-status-copy h3{
  font-size:32px;
  line-height:1.2;
  color:var(--primary);
  margin-bottom:14px;
}

.status-feature-list{
  display:grid;
  gap:14px;
  margin:24px 0;
}

.status-feature-list div{
  padding:16px 18px;
  border:1px solid var(--border);
  border-radius:16px;
  background:#f8fbff;
}

.status-feature-list strong{
  display:block;
  color:var(--primary);
  margin-bottom:6px;
}

.status-feature-list span{
  color:var(--muted);
  font-size:15px;
}

.status-inline-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:18px;
}

.phone-shell{
  width:min(360px,100%);
  margin:auto;
  padding:14px;
  border-radius:42px;
  background:linear-gradient(180deg,#252525,#090909);
  box-shadow:0 24px 60px rgba(15,23,42,.24);
  position:relative;
}

.phone-shell::before{
  content:"";
  position:absolute;
  top:10px;
  left:50%;
  transform:translateX(-50%);
  width:118px;
  height:20px;
  background:#111;
  border-radius:0 0 14px 14px;
  z-index:3;
}

.phone-screen{
  overflow:hidden;
  border-radius:34px;
  background:#ffffff;
  min-height:700px;
}

.mobile-header{
  background:#c8b8ff;
  padding:20px 12px 18px;
  display:grid;
  grid-template-columns:42px 1fr 42px;
  align-items:center;
  gap:10px;
}

.mobile-header h3{
  color:#fff6dc;
  font-size:15px;
  text-align:center;
  line-height:1.3;
  font-weight:800;
}

.round-icon{
  width:38px;
  height:38px;
  border-radius:50%;
  background:#ffffff;
  color:#111827;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:20px;
  box-shadow:0 6px 18px rgba(0,0,0,.12);
}

.mobile-body{
  padding:20px 12px 22px;
}

.status-row{
  display:flex;
  justify-content:space-between;
  gap:12px;
  align-items:flex-start;
  padding:14px 0;
  border-bottom:1px solid #f1f5f9;
}

.status-row.no-border{
  border-bottom:none;
}

.status-row h4{
  color:#0f172a;
  font-size:14px;
  line-height:1.35;
  font-weight:800;
  margin-bottom:6px;
}

.status-row p{
  font-size:11px;
  color:#475569;
  margin:0;
}

.row-icons{
  display:flex;
  align-items:center;
  gap:10px;
  flex-shrink:0;
  padding-top:2px;
}

.state-check{
  width:32px;
  height:32px;
  border:4px solid #8dc63f;
  border-radius:50%;
  position:relative;
}

.state-check::after{
  content:"";
  position:absolute;
  left:8px;
  top:4px;
  width:7px;
  height:14px;
  border:solid #8dc63f;
  border-width:0 3px 3px 0;
  transform:rotate(45deg);
}

.mini-loader{
  width:42px;
  height:15px;
  border:2px solid #0f172a;
  border-radius:999px;
  position:relative;
  display:inline-block;
}

.mini-loader::before{
  content:"";
  position:absolute;
  left:4px;
  bottom:3px;
  width:24px;
  height:5px;
  background:#111827;
  border-radius:999px;
}

.mini-loader::after{
  content:"•••";
  position:absolute;
  top:-13px;
  left:12px;
  font-size:11px;
  letter-spacing:1px;
  color:#111827;
}

.status-link{
  font-size:19px;
  line-height:1;
}

.mobile-actions{
  padding:18px 10px 0;
  display:grid;
  gap:14px;
}

.mobile-btn{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  background:#020617;
  color:#ffffff;
  border-radius:12px;
  padding:14px 18px;
  font-weight:800;
  box-shadow:0 10px 20px rgba(2,6,23,.2);
  text-transform:none;
}

.mobile-btn .btn-icon{
  font-size:24px;
}

.secondary-mobile-btn{
  text-transform:lowercase;
}

/* Animation */
.reveal{
  opacity:0;
  transform:translateY(50px);
  transition:1s;
}

.reveal.show{
  opacity:1;
  transform:translateY(0);
}

/* Footer */
footer{
  background:#0f172a;
  color:#fff;
  padding:70px 0 30px;
  margin-top:0;
}

footer p{
  color:#cbd5e1;
}

/* Responsive */
@media(max-width:900px){
  .project-status-layout{
    grid-template-columns:1fr;
  }
}

@media(max-width:768px){
  .header-inner{
    flex-direction:column;
    text-align:center;
  }

  .hero{
    min-height:420px;
    padding:50px 16px;
  }

  .hero h2{
    font-size:34px;
  }

  nav ul{
    gap:6px;
  }

  nav ul li a,
  nav a{
    padding:10px 14px;
  }

  .stats{
    margin-top:0;
    padding-top:40px;
  }

  .stats-grid,
  .product-details,
  .cart-layout,
  .payment-layout{
    grid-template-columns:1fr;
  }

  .payment-row{
    grid-template-columns:1fr;
  }

  .cart-item{
    grid-template-columns:1fr;
    text-align:center;
  }

  .cart-item img{
    margin:auto;
  }

  .cart-qty input{
    margin:auto;
  }

  .btn,
  .btn-secondary{
    width:100%;
    min-width:0;
  }
  
  /* ===== MODERN ABOUT PAGE ===== */

.about-hero{
    padding:100px 0;
    background:linear-gradient(135deg,#0f172a,#1e40af);
    color:#fff;
}

.about-header{
    max-width:900px;
    margin:auto;
    text-align:center;
}

.about-badge{
    display:inline-block;
    background:rgba(255,255,255,.15);
    padding:10px 20px;
    border-radius:50px;
    margin-bottom:20px;
    font-weight:600;
}

.about-header h2{
    font-size:60px;
    line-height:1.1;
    margin-bottom:20px;
}

.about-header p{
    font-size:20px;
    color:#e2e8f0;
}

.about-stats{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
    margin-top:70px;
}

.stat-card{
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.15);
    backdrop-filter:blur(15px);
    border-radius:25px;
    padding:35px;
    text-align:center;
}

.stat-card h3{
    font-size:42px;
    color:#ff9d00;
    margin-bottom:10px;
}

.stat-card span{
    font-weight:600;
}

@media(max-width:900px){

    .about-header h2{
        font-size:42px;
    }

    .about-stats{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:768px){

    .about-stats{
        grid-template-columns:1fr;
    }
}
}
.about-modern{
  padding:100px 0;
  background:
    radial-gradient(circle at top left, rgba(37,99,235,.28), transparent 35%),
    linear-gradient(135deg,#0f172a,#1e3a8a);
  color:#fff;
}

.about-modern-grid{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:40px;
  align-items:center;
}

.about-pill{
  display:inline-block;
  padding:10px 18px;
  border-radius:999px;
  background:rgba(255,255,255,.14);
  border:1px solid rgba(255,255,255,.22);
  margin-bottom:20px;
  font-weight:800;
}

.about-modern-text h2{
  font-size:clamp(42px,5vw,72px);
  line-height:1.05;
  margin-bottom:22px;
  max-width:850px;
}

.about-modern-text p{
  font-size:19px;
  color:#dbeafe;
  max-width:720px;
  margin-bottom:26px;
}

.about-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}

.about-light-btn{
  color:#fff;
  border:1px solid rgba(255,255,255,.35);
}

.about-modern-card{
  background:rgba(255,255,255,.1);
  border:1px solid rgba(255,255,255,.2);
  backdrop-filter:blur(18px);
  border-radius:32px;
  padding:35px;
  box-shadow:0 30px 80px rgba(0,0,0,.25);
}

.about-modern-card h3{
  font-size:32px;
  margin-bottom:10px;
}

.about-modern-card p{
  color:#dbeafe;
  margin-bottom:22px;
}

.about-feature{
  background:rgba(255,255,255,.12);
  padding:15px 18px;
  border-radius:16px;
  margin-bottom:12px;
  font-weight:700;
}

.about-numbers{
  padding:0;
  margin-top:50px;
  position:relative;
  z-index:3;
  margin-bottom:20px;
}

.numbers-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:22px;
}

.numbers-grid div{
  background:#fff;
  padding:32px 20px;
  border-radius:24px;
  text-align:center;
  box-shadow:0 20px 45px rgba(15,23,42,.12);
}

.numbers-grid h3{
  font-size:38px;
  color:#2563eb;
  margin-bottom:8px;
}

.numbers-grid p{
  font-weight:800;
  color:#0f172a;
}

.about-services{
  padding:30px 0 80px;
}

.about-service-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:26px;
}

.about-service-card{
  background:#fff;
  padding:35px;
  border-radius:28px;
  box-shadow:0 20px 45px rgba(15,23,42,.08);
  border:1px solid #e2e8f0;
  transition:.3s;
}

.about-service-card:hover{
  transform:translateY(-8px);
  box-shadow:0 28px 60px rgba(37,99,235,.16);
}

.about-service-card span{
  width:58px;
  height:58px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg,#2563eb,#1d4ed8);
  border-radius:18px;
  font-size:28px;
  margin-bottom:22px;
}

.about-service-card h3{
  color:#0f172a;
  font-size:24px;
  margin-bottom:12px;
}

.about-service-card p{
  color:#64748b;
}

@media(max-width:900px){
  .about-modern-grid,
  .numbers-grid,
  .about-service-grid{
    grid-template-columns:1fr;
  }

  .about-numbers{
    margin-top:30px;
  }
}
.quick-contact{
  padding:20px 0 70px;
}

.quick-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

.quick-card{
  background:#fff;
  padding:28px;
  text-align:center;
  border-radius:24px;
  box-shadow:0 18px 45px rgba(15,23,42,.08);
  border:1px solid #e2e8f0;
  font-size:26px;
}

.quick-card h3{
  font-size:22px;
  color:#0f172a;
  margin:10px 0 6px;
}

.quick-card p{
  color:#64748b;
}

.contact-cta{
  text-align:center;
  color:#fff;
  background:linear-gradient(135deg,#0f172a,#2563eb);
  padding:80px 20px;
}

.contact-cta h2{
  font-size:42px;
  margin-bottom:12px;
}

.contact-cta p{
  color:#dbeafe;
  margin-bottom:22px;
}

.whatsapp-float{
  position:fixed;
  right:24px;
  bottom:24px;
  width:58px;
  height:58px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:#22c55e;
  color:#fff;
  font-size:28px;
  box-shadow:0 16px 40px rgba(34,197,94,.35);
  z-index:999;
}

@media(max-width:900px){
  .quick-grid{
    grid-template-columns:1fr;
  }
}
/* ===== MODERN SIGNUP PAGE ===== */

.signup-modern{
  padding:90px 0;
  background:
    radial-gradient(circle at top left, rgba(37,99,235,.18), transparent 35%),
    linear-gradient(180deg,#f8fafc,#eef4ff);
}

.signup-layout{
  display:grid;
  grid-template-columns:1fr 1.05fr;
  gap:45px;
  align-items:center;
}

.signup-info{
  background:linear-gradient(135deg,#0f172a,#1e40af);
  color:#fff;
  padding:45px;
  border-radius:34px;
  box-shadow:0 30px 80px rgba(15,23,42,.22);
}

.signup-pill{
  display:inline-block;
  padding:10px 18px;
  border-radius:999px;
  background:rgba(255,255,255,.14);
  border:1px solid rgba(255,255,255,.22);
  font-weight:800;
  margin-bottom:20px;
}

.signup-info h2{
  font-size:clamp(38px,4vw,58px);
  line-height:1.08;
  margin-bottom:20px;
}

.signup-info p{
  color:#dbeafe;
  font-size:18px;
  margin-bottom:28px;
}

.signup-benefits{
  display:grid;
  gap:14px;
}

.signup-benefits div{
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.16);
  padding:15px 18px;
  border-radius:16px;
  font-weight:700;
}

.signup-card{
  background:#fff;
  padding:38px;
  border-radius:34px;
  box-shadow:0 25px 70px rgba(15,23,42,.12);
  border:1px solid #e2e8f0;
}

.signup-card h3{
  font-size:32px;
  color:#0f172a;
  margin-bottom:6px;
}

.signup-subtitle{
  color:#64748b;
  margin-bottom:24px;
}

.form-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}

.signup-card input{
  background:#f8fafc;
}

.signup-card input:focus{
  background:#fff;
  border-color:#2563eb;
  box-shadow:0 0 0 4px rgba(37,99,235,.12);
}

.signup-btn{
  width:100%;
  margin:10px 0 0;
}

@media(max-width:900px){
  .signup-layout,
  .form-row{
    grid-template-columns:1fr;
  }
}
/* ===== MODERN SIGNIN PAGE ===== */

.signin-modern{
  padding:90px 0;
  background:
    radial-gradient(circle at top right, rgba(255,123,0,.16), transparent 35%),
    radial-gradient(circle at bottom left, rgba(37,99,235,.18), transparent 35%),
    linear-gradient(180deg,#f8fafc,#eef4ff);
}

.signin-layout{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:45px;
  align-items:center;
}

.signin-info{
  background:linear-gradient(135deg,#0f172a,#1e40af);
  color:#fff;
  padding:45px;
  border-radius:34px;
  box-shadow:0 30px 80px rgba(15,23,42,.22);
}

.signin-pill{
  display:inline-block;
  padding:10px 18px;
  border-radius:999px;
  background:rgba(255,255,255,.14);
  border:1px solid rgba(255,255,255,.22);
  font-weight:800;
  margin-bottom:20px;
}

.signin-info h2{
  font-size:clamp(38px,4vw,58px);
  line-height:1.08;
  margin-bottom:20px;
}

.signin-info p{
  color:#dbeafe;
  font-size:18px;
  margin-bottom:28px;
}

.signin-benefits{
  display:grid;
  gap:14px;
}

.signin-benefits div{
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.16);
  padding:15px 18px;
  border-radius:16px;
  font-weight:700;
}

.signin-card{
  background:#fff;
  padding:38px;
  border-radius:34px;
  box-shadow:0 25px 70px rgba(15,23,42,.12);
  border:1px solid #e2e8f0;
}

.signin-card h3{
  font-size:34px;
  color:#0f172a;
  margin-bottom:6px;
}

.signin-subtitle{
  color:#64748b;
  margin-bottom:24px;
}

.signin-card input{
  background:#f8fafc;
}

.signin-card input:focus{
  background:#fff;
  border-color:#2563eb;
  box-shadow:0 0 0 4px rgba(37,99,235,.12);
}

.modern-password-row{
  display:grid;
  grid-template-columns:1fr auto;
  gap:10px;
  align-items:center;
}

.signin-btn{
  width:100%;
  margin:10px 0 0;
}

@media(max-width:900px){
  .signin-layout{
    grid-template-columns:1fr;
  }
}
/* ===== MODERN START PROJECT PAGE ===== */

.project-modern{
  padding:90px 0;
  background:
    radial-gradient(circle at top left, rgba(37,99,235,.18), transparent 35%),
    radial-gradient(circle at bottom right, rgba(255,123,0,.16), transparent 35%),
    linear-gradient(180deg,#f8fafc,#eef4ff);
}

.project-layout{
  display:grid;
  grid-template-columns:.9fr 1.2fr;
  gap:45px;
  align-items:center;
}

.project-info{
  background:linear-gradient(135deg,#0f172a,#1e40af);
  color:#fff;
  padding:45px;
  border-radius:34px;
  box-shadow:0 30px 80px rgba(15,23,42,.22);
}

.project-pill{
  display:inline-block;
  padding:10px 18px;
  border-radius:999px;
  background:rgba(255,255,255,.14);
  border:1px solid rgba(255,255,255,.22);
  font-weight:800;
  margin-bottom:20px;
}

.project-info h2{
  font-size:clamp(38px,4vw,58px);
  line-height:1.08;
  margin-bottom:20px;
}

.project-info p{
  color:#dbeafe;
  font-size:18px;
  margin-bottom:28px;
}

.project-benefits{
  display:grid;
  gap:14px;
}

.project-benefits div{
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.16);
  padding:15px 18px;
  border-radius:16px;
  font-weight:700;
}

.project-card{
  background:#fff;
  padding:38px;
  border-radius:34px;
  box-shadow:0 25px 70px rgba(15,23,42,.12);
  border:1px solid #e2e8f0;
}

.project-card h3{
  font-size:32px;
  color:#0f172a;
  margin-bottom:6px;
}

.project-subtitle{
  color:#64748b;
  margin-bottom:24px;
}

.project-card input,
.project-card select,
.project-card textarea{
  background:#f8fafc;
}

.project-card input:focus,
.project-card select:focus,
.project-card textarea:focus{
  background:#fff;
  border-color:#2563eb;
  box-shadow:0 0 0 4px rgba(37,99,235,.12);
}

.project-btn{
  width:100%;
  margin:10px 0 0;
}

@media(max-width:900px){
  .project-layout,
  .form-row{
    grid-template-columns:1fr;
  }
}
/* ===== MODERN PROJECT STATUS PAGE ===== */

.status-modern{
  padding:100px 0;
  background:
    radial-gradient(circle at top left, rgba(255,123,0,.18), transparent 35%),
    radial-gradient(circle at bottom right, rgba(37,99,235,.25), transparent 35%),
    linear-gradient(135deg,#0f172a,#1e40af);
  color:#fff;
}

.status-modern-grid{
  display:grid;
  grid-template-columns:1.3fr .7fr;
  gap:45px;
  align-items:center;
}

.status-pill{
  display:inline-block;
  padding:10px 18px;
  border-radius:999px;
  background:rgba(255,255,255,.14);
  border:1px solid rgba(255,255,255,.22);
  font-weight:800;
  margin-bottom:20px;
}

.status-modern-text h2{
  font-size:clamp(42px,5vw,72px);
  line-height:1.05;
  margin-bottom:22px;
}

.status-modern-text p{
  max-width:760px;
  font-size:19px;
  color:#dbeafe;
  margin-bottom:28px;
}

.status-progress-box{
  max-width:650px;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.18);
  padding:22px;
  border-radius:22px;
}

.progress-header{
  display:flex;
  justify-content:space-between;
  margin-bottom:12px;
  font-weight:800;
}

.progress-bar{
  height:14px;
  background:rgba(255,255,255,.18);
  border-radius:999px;
  overflow:hidden;
}

.progress-fill{
  width:65%;
  height:100%;
  border-radius:999px;
  background:linear-gradient(135deg,#ff7b00,#ff9d00);
  animation:progressMove 1.4s ease;
}

.status-summary-card{
  background:rgba(255,255,255,.1);
  border:1px solid rgba(255,255,255,.2);
  backdrop-filter:blur(18px);
  border-radius:34px;
  padding:35px;
  box-shadow:0 30px 80px rgba(0,0,0,.25);
}

.status-summary-card h3{
  font-size:24px;
  margin-bottom:10px;
}

.status-summary-card p{
  font-size:34px;
  font-weight:900;
  color:#ff9d00;
  margin-bottom:16px;
}

.summary-status{
  display:inline-block;
  padding:10px 16px;
  border-radius:999px;
  background:rgba(255,255,255,.14);
  font-weight:800;
}

.status-dashboard{
  padding:90px 0;
  background:linear-gradient(180deg,#f8fafc,#eef4ff);
}

.status-timeline{
  max-width:980px;
  margin:auto;
  display:grid;
  gap:18px;
}

.timeline-item{
  background:#fff;
  border:1px solid #e2e8f0;
  border-radius:24px;
  padding:22px;
  display:grid;
  grid-template-columns:auto 1fr auto;
  gap:18px;
  align-items:center;
  box-shadow:0 18px 45px rgba(15,23,42,.08);
  transition:.3s;
  position:relative;
}

.timeline-item:hover{
  transform:translateY(-5px);
  box-shadow:0 28px 60px rgba(37,99,235,.14);
}

.timeline-icon{
  width:52px;
  height:52px;
  border-radius:18px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:24px;
  font-weight:900;
}

.timeline-item.completed .timeline-icon{
  background:#dcfce7;
  color:#16a34a;
}

.timeline-item.active-step{
  border-color:#2563eb;
}

.timeline-item.active-step .timeline-icon{
  background:#dbeafe;
}

.timeline-item.pending .timeline-icon{
  background:#fef3c7;
  color:#d97706;
}

.timeline-content h3{
  color:#0f172a;
  font-size:22px;
  margin-bottom:4px;
}

.timeline-content p{
  color:#64748b;
}

.timeline-item a{
  padding:10px 18px;
  border-radius:999px;
  background:#f1f5f9;
  color:#0f172a;
  font-weight:800;
  transition:.3s;
}

.timeline-item a:hover{
  background:#2563eb;
  color:#fff;
}

.loader-icon{
  position:relative;
}

.loader-icon::before{
  content:"";
  width:28px;
  height:28px;
  border:4px solid #bfdbfe;
  border-top-color:#2563eb;
  border-radius:50%;
  animation:spin 1s linear infinite;
}

.status-actions-modern{
  display:flex;
  justify-content:center;
  gap:16px;
  margin-top:38px;
  flex-wrap:wrap;
}

.status-dark-btn{
  background:#0f172a;
  border:none;
  color:#fff;
}

@keyframes spin{
  to{transform:rotate(360deg);}
}

@keyframes progressMove{
  from{width:0;}
  to{width:65%;}
}

@media(max-width:900px){
  .status-modern-grid,
  .timeline-item{
    grid-template-columns:1fr;
  }

  .timeline-item a{
    width:max-content;
  }
}
/* ===== PROJECT STATUS DETAIL PAGES ===== */

.detail-modern{
  padding:90px 0;
  background:
    radial-gradient(circle at top left, rgba(37,99,235,.18), transparent 35%),
    radial-gradient(circle at bottom right, rgba(255,123,0,.14), transparent 35%),
    linear-gradient(180deg,#f8fafc,#eef4ff);
}

.detail-layout{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:45px;
  align-items:center;
}

.detail-image{
  background:#fff;
  padding:16px;
  border-radius:34px;
  box-shadow:0 25px 70px rgba(15,23,42,.12);
  border:1px solid #e2e8f0;
}

.detail-image img{
  width:100%;
  height:520px;
  object-fit:cover;
  border-radius:24px;
}

.detail-content{
  background:#fff;
  padding:42px;
  border-radius:34px;
  box-shadow:0 25px 70px rgba(15,23,42,.12);
  border:1px solid #e2e8f0;
}

.detail-pill{
  display:inline-block;
  padding:10px 18px;
  border-radius:999px;
  background:#dbeafe;
  color:#1d4ed8;
  font-weight:800;
  margin-bottom:18px;
}

.detail-content h2{
  font-size:clamp(38px,4vw,58px);
  color:#0f172a;
  line-height:1.08;
  margin-bottom:18px;
}

.detail-content p{
  font-size:18px;
  color:#64748b;
  margin-bottom:24px;
}

.detail-info{
  display:grid;
  gap:14px;
  margin-bottom:25px;
}

.detail-info div{
  background:#f8fafc;
  border:1px solid #e2e8f0;
  padding:15px 18px;
  border-radius:16px;
  color:#334155;
}

@media(max-width:900px){
  .detail-layout{
    grid-template-columns:1fr;
  }

  .detail-image img{
    height:360px;
  }
}
/* ===== PROCESSING POPUP ===== */

.processing-modal{
    position:fixed;
    inset:0;
    background:rgba(15,23,42,.75);
    backdrop-filter:blur(8px);
    display:flex;
    justify-content:center;
    align-items:center;
    z-index:9999;

    opacity:0;
    visibility:hidden;
    transition:.35s;
}

.processing-modal.show{
    opacity:1;
    visibility:visible;
}

.processing-card{
    width:min(500px,90%);
    background:#fff;
    border-radius:32px;
    padding:40px;
    text-align:center;
    box-shadow:0 30px 80px rgba(0,0,0,.25);

    transform:translateY(30px);
    transition:.35s;
}

.processing-modal.show .processing-card{
    transform:translateY(0);
}

.processing-icon{
    width:90px;
    height:90px;
    margin:auto;
    border-radius:50%;
    background:linear-gradient(135deg,#2563eb,#1d4ed8);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:42px;
    color:#fff;
    margin-bottom:20px;

    animation:spinSlow 5s linear infinite;
}

.processing-card h2{
    color:#0f172a;
    margin-bottom:15px;
    font-size:30px;
}

.processing-card p{
    color:#64748b;
    margin-bottom:20px;
    font-size:17px;
}

.processing-info{
    background:#eff6ff;
    border:1px solid #bfdbfe;
    color:#1e40af;
    padding:15px;
    border-radius:16px;
    margin-bottom:25px;
    font-weight:600;
}

@keyframes spinSlow{
    from{
        transform:rotate(0deg);
    }
    to{
        transform:rotate(360deg);
    }
}
/* ===== MODERN PRODUCTS PAGE ===== */

.products-modern{
  padding:90px 0;
  background:
    radial-gradient(circle at top left, rgba(37,99,235,.16), transparent 35%),
    radial-gradient(circle at bottom right, rgba(255,123,0,.14), transparent 35%),
    linear-gradient(180deg,#f8fafc,#eef4ff);
}

.products-hero{
  text-align:center;
  max-width:850px;
  margin:0 auto 50px;
}

.products-pill{
  display:inline-block;
  padding:10px 18px;
  border-radius:999px;
  background:#dbeafe;
  color:#1d4ed8;
  font-weight:800;
  margin-bottom:18px;
}

.products-hero h2{
  font-size:clamp(38px,5vw,64px);
  line-height:1.08;
  color:#0f172a;
  margin-bottom:15px;
}

.products-hero p{
  color:#64748b;
  font-size:18px;
}

.product-grid-modern{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
}

.product-card-modern{
  background:#fff;
  border:1px solid #e2e8f0;
  border-radius:30px;
  overflow:hidden;
  box-shadow:0 22px 55px rgba(15,23,42,.09);
  transition:.35s;
  display:flex;
  flex-direction:column;
}

.product-card-modern:hover{
  transform:translateY(-8px);
  box-shadow:0 30px 70px rgba(37,99,235,.16);
}

.product-img-box{
  height:240px;
  background:#f8fafc;
  padding:16px;
}

.product-img-box img{
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:22px;
}

.product-body{
  padding:24px;
  display:flex;
  flex-direction:column;
  flex:1;
}

.product-category{
  width:max-content;
  padding:7px 13px;
  border-radius:999px;
  background:#eff6ff;
  color:#2563eb;
  font-weight:800;
  font-size:13px;
  margin-bottom:14px;
}

.product-body h3{
  color:#0f172a;
  font-size:23px;
  margin-bottom:10px;
}

.product-body p{
  color:#64748b;
  margin-bottom:20px;
  flex:1;
}

.product-bottom{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-top:auto;
}

.product-bottom strong{
  font-size:24px;
  color:#ff7b00;
}

.product-bottom .btn-secondary{
  min-width:auto;
  margin:0;
  padding:12px 18px;
  background:#0f172a;
  color:#fff;
  border:none;
}

.product-bottom .btn-secondary:hover{
  background:#2563eb;
  color:#fff;
}

@media(max-width:1000px){
  .product-grid-modern{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:650px){
  .product-grid-modern{
    grid-template-columns:1fr;
  }

  .product-bottom{
    flex-direction:column;
    align-items:stretch;
  }

  .product-bottom .btn-secondary{
    width:100%;
  }
}
.projects-showcase{
    padding:80px 0;
    background:#f8f9fc;
}

.slider-container{
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:20px;
}

.slider-wrapper{
    width:100%;
    max-width:1000px;
    overflow:hidden;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.15);
}

.slider-wrapper img{
    width:100%;
    height:550px;
    object-fit:cover;
    display:block;
    transition:.4s;
}

.slider-btn{
    width:60px;
    height:60px;
    border:none;
    border-radius:50%;
    background:#ff6b00;
    color:#fff;
    font-size:30px;
    cursor:pointer;
    transition:.3s;
    z-index:2;
}

.slider-btn:hover{
    transform:scale(1.1);
    background:#e55e00;
}

.project-info{
    text-align:center;
    margin-top:25px;
}

.project-info h3{
    margin-bottom:10px;
    color:#222;
}

.project-info p{
    color:#666;
}

@media(max-width:768px){

    .slider-wrapper img{
        height:250px;
    }

    .slider-btn{
        width:45px;
        height:45px;
        font-size:24px;
    }
}
@media(max-width:1024px){
    .slider-wrapper img{
        height:420px;
    }

    .slider-btn{
        width:52px;
        height:52px;
        font-size:26px;
    }
}

@media(max-width:768px){
    .projects-showcase{
        padding:50px 0;
    }

    .slider-container{
        gap:8px;
    }

    .slider-wrapper{
        border-radius:16px;
    }

    .slider-wrapper img{
        height:280px;
    }

    .slider-btn{
        width:42px;
        height:42px;
        font-size:22px;
        position:absolute;
        top:50%;
        transform:translateY(-50%);
    }

    .slider-btn.prev{
        left:10px;
    }

    .slider-btn.next{
        right:10px;
    }

    .project-info h3{
        font-size:22px;
    }

    .project-info p{
        font-size:14px;
        padding:0 12px;
    }
}

@media(max-width:480px){
    .slider-wrapper img{
        height:220px;
    }

    .slider-btn{
        width:36px;
        height:36px;
        font-size:18px;
    }

    .section-title h2{
        font-size:26px;
    }
}
.home-section{
  background:linear-gradient(180deg,#f8fafc,#eef4ff);
  padding:80px 0;
}

.home-section.white{
  background:#fff;
}
.hero-badge{
  display:inline-block;
  padding:10px 18px;
  border-radius:999px;
  background:rgba(255,255,255,.15);
  border:1px solid rgba(255,255,255,.25);
  color:#fff;
  font-weight:800;
  margin-bottom:18px;
}

.nav-btn{
  background:linear-gradient(135deg,#ff7b00,#ff9d00)!important;
  color:#fff!important;
}

.card{
  border-top:5px solid #ff7b00;
}

.home-section{
  background:linear-gradient(180deg,#f8fafc,#eef4ff);
  padding:80px 0;
}

.home-section.white{
  background:#fff;
  padding:90px 0;
}

.projects-showcase{
  background:linear-gradient(180deg,#f8fafc,#eef4ff);
}

.project-slider{
  width:100%;
  max-width:850px;
  height:480px;
  border-radius:28px;
}

.footer-grid{
  width:min(1100px,92%);
  margin:auto;

  display:grid;
  grid-template-columns:repeat(3,1fr);

  gap:80px;
  align-items:start;
}
.footer-grid h3,
.footer-grid h4{
  color:#fff;
  margin-bottom:10px;
}

.footer-copy{
  margin-top:25px;
  text-align:center;
}

@media(max-width:768px){
  .footer-grid{
    grid-template-columns:1fr;
    text-align:center;
  }

  .project-slider{
    height:320px;
  }
}
.how-work-grid{
  max-width:1000px;
  margin:auto;
  transform:translateX(40px);

  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:40px;
}
.how-work-grid .card{
  min-height:220px;
}

.how-work-grid .card-content{
  justify-content:right;
}