:root{
    --blue:#0B74B0;
    --purple:#75479C;
    --pink:#BB3866;
    --dark:#000;
    --light:#ECECF1;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Inter',sans-serif;
}

body{
    background:var(--dark);
}

/* ================= NAVBAR ================= */

.logo{
    height:0%;
    display:flex;
    align-items:center;
}

.logo img{      
    max-height:40px;  /* safety limit */
    width:auto;
    margin-left: -10px;
    object-fit:contain;
}

.nav-wrapper{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: transform 0.4s ease;
}


.nav-wrapper{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 10px;
    transition: transform 0.4s ease;

    transform: translate3d(0,0,0);
    transition: transform .38s cubic-bezier(.4,0,.2,1);
    will-change: transform;
}

/* hidden */
.nav-wrapper.nav-hide{
    transform: translate3d(0,-130%,0);
}

.navbar{
    background:rgba(255, 255, 255, 0.705);
    border: 2px solid #dfdfdf;
    backdrop-filter: blur(14px) saturate(160%);
    -webkit-backdrop-filter: blur(14px) saturate(160%);
    border-radius:10px;
    padding:18px 35px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    box-shadow:0 8px 30px rgba(255, 255, 255, 0.05);
}

.nav-links{
    display:flex;
    gap: 40px;
}

.nav-links a{
    text-decoration:none;
    color:#000;
    font-weight:600;
    transition:0.3s;
}

.nav-links a:hover{
    color:var(--pink);
}

.nav-right{
    display:flex;
    align-items:center;
    gap:20px;
}

/* MOBILE MENU BUTTON */
.menu-btn{
    font-size:26px;
    cursor:pointer;
    display:none;
}

/* OVERLAY */
.mobile-menu{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.35);
    backdrop-filter:blur(6px);
    display:flex;
    justify-content:center;
    align-items:flex-start;
    padding-top:90px;
    opacity:0;
    pointer-events:none;
    transition:.25s;
    z-index:100000;
}

.mobile-menu.active{
    opacity:1;
    pointer-events:auto;
}

/* FLOAT CARD */
.mobile-card{
    width:90%;
    max-width:420px;
    background:#f2f2f2;
    border-radius:14px;
    padding:18px;
    box-shadow:0 20px 60px rgba(0,0,0,.25);
    transform:translateY(-40px);
    transition:.3s;
}

.mobile-menu.active .mobile-card{
    transform:translateY(0);
}

/* TOP BAR */
.mobile-top{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:10px;
}

.mobile-top img{
    height:28px;
}

.mobile-top button{
    border:none;
    background:#ddd;
    width:32px;
    height:32px;
    border-radius:8px;
    font-size:18px;
    cursor:pointer;
}

/* LINKS */
.mobile-links{
    display:flex;
    flex-direction:column;
}

.mobile-links a{
    padding:16px 8px;
    border-bottom:1px solid #ddd;
    text-decoration:none;
    color:#333;
    font-weight:600;
}
.mobile-links a:last-child{
    border-bottom:none;
}

/* MOBILE RULES */
@media(max-width:768px){

    .nav-links{
        display:none !important;
    }

    .menu-btn{
        display:block;
        margin-right: -15px;
    }

    .navbar{
        flex-direction:row !important;
    }
}

/* ================= HERO ================= */

.hero-wrapper{
    padding: 0px 10px 0px 10px;
    margin-top: 100px;
}

.hero{
    background:
        linear-gradient(rgba(11,116,176,0.4),
                        rgba(117,71,156,0.4),
                        rgba(187,56,102,0.4)),
        url('https://images.unsplash.com/photo-1556761175-4b46a572b786?q=80&w=2070');
    background-size: cover;
    background-position: center;
    border-radius:10px;
    height:600px;
    display:flex;
    align-items:center;
    padding: 30px;
    color:white;
    position:relative;
    overflow:hidden;
}

.hero::after{
    content:'';
    position:absolute;
    inset:0;
    background:linear-gradient(90deg,rgba(0,0,0,0.65),rgba(0,0,0,0.2));
}

.hero-content{
    position:relative;
    z-index:2;
    max-width: 900px;
}

.hero h1{
    font-size:70px;
    line-height:1.05;
    font-weight:800;
    margin-bottom:25px;
}

.hero p{
    font-size:20px;
    margin-bottom:40px;
    color:#eaeaea;
}

/* CTA */

.cta-box{
    background:linear-gradient(135deg,var(--blue),var(--purple),var(--pink));
    padding:25px;
    border-radius:20px;
    width:400px;
}

.cta-switch{
    display:flex;
    background:rgba(255,255,255,0.15);
    border-radius: 50px;
    padding:6px;
    margin-bottom:20px;
}

.cta-switch button{
    flex:1;
    padding:12px;
    border-radius:50px;
    border:none;
    font-weight:600;
    cursor:pointer;
    background:transparent;
    color:white;
    transition:0.3s;
}

.cta-switch .active{
    background:white;
    color:var(--blue);
}

.cta-main{
    background:white;
    color:var(--blue);
    border:none;
    padding:14px;
    border-radius:12px;
    font-weight:700;
    width:100%;
    cursor:pointer;
}

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

@media(max-width:1024px){

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

    .cta-box{
        width:100%;
    }

}

@media(max-width:768px){

    .navbar{
        flex-direction:column;
    }

    .nav-links{
        display:none;
    }

    .hero{
        height:auto;
        padding:25px;
        
    }

    .cta-box{
        width:100%;
        font-size: 10px;
    }

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

    .hero p{
        font-size:12.5px;
    }

}

/* ================= CATEGORY SECTION ================= */


.categories{
    padding:30px 30px;
    background:#E4E6EE;
    border-radius: 10px;
    font-size: 25px;
    margin-top: 10px;
}

.category-grid {
    display: grid;
    margin-top: 30px;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
    background:#E4E6EE;
    border-radius: 15px;
}

.category-card {
    background: white;
    padding: 35px 20px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.category-card i {
    font-size: 32px;
    margin-bottom: 15px;
    color: #0B74B0;
    transition: 0.3s;
}

.category-card span {
    display: block;
    font-weight: 600;
    font-size: 15px;
}

.category-card:hover {
    transform: translateY(-8px);
    background: linear-gradient(white, white) padding-box,
                linear-gradient(135deg,#0B74B0,#75479C,#BB3866) border-box;
    border: 2px solid transparent;
}

.category-card:hover i {
    color: #75479C;
}


/* ================= HOW IT WORKS ================= */

.how-it-works{
    padding: 30px 30px;
    border-radius: 10px 10px 0px 0px;
    background:#D0DDF5;
    margin: 10px 10px 0px 10px;
}

.how-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom: 30px;
}

.how-header h2{
    font-size: 40px;
}

.how-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    align-items:start;   /* ADD THIS */
}

.how-card{
    background:white;
    border-radius:10px;
    padding: 15px;
    text-align:center;
    transition:0.3s;
    transform: translateY(-8px);
    background: linear-gradient(white, white) padding-box,
                linear-gradient(135deg,#0B74B0,#75479C,#BB3866) border-box;
    border: 2px solid transparent;
}

.how-card img{
    width:100%;
    border-radius:10px;
    margin-bottom:20px;
}

.how-card h3{
    font-size:20px;
    font-weight:600;
}

/* Make paragraph hidden initially */
.how-content p{
    max-height: 0;
    overflow: hidden;
    text-align: center;
    opacity: 0;
    transition: all 0.4s ease;
}

/* Expand text on hover */
.how-card:hover p{
    max-height: 100px; /* enough height for text */
    opacity: 1;
    margin-top: 10px;
    font-weight: 600;
    color: #75479C;
}

/* Optional: smooth lift effect like screenshot */
.how-card{
    transition: 0.3s ease;
}

.how-card:hover{
    transform: translateY(-5px);
}

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

@media(max-width:1200px){

    .how-it-works {
        padding: 40px 20px;
  }

    .category-grid{
        grid-template-columns:repeat(3,1fr);
    }
}

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

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

    .categories h2,
    .how-header h2{
        font-size:32px;
    }
}



/* PRICING */
.pricing {
  background: #D0DDF5;
  padding: 60px 30px;
  border-radius: 0px 0px 10px 10px;
  margin: 0px 10px 10px 10px;
}

.pricing h2{
    font-size: 40px;
}

.price-card strong {
  color: #0B74B0;
  font-weight: 600;
}

.price-card h3 {
  font-size: 25px;
  font-weight: 600;
  margin-top: -10px;
  margin-bottom: 20px;
}

.pricing-grid {
  display: flex;
  gap: 15px;
  margin-top: 35px;
  align-content: center;
  justify-content: center;
}

.price-card {
  background: white;
  padding: 40px;
  border-radius: 10px;
  flex: 1;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition:0.3s;
    transform: translateY(-8px);
    background: linear-gradient(white, white) padding-box,
                linear-gradient(135deg,#0B74B0,#75479C,#BB3866) border-box;
    border: 2px solid transparent;
}

.price-card p{
  margin-top: 10px;
  font-weight: 500;
  font-size: 13px;
  text-align: justify;
}

.price-card:hover p{
  color: #75479C;
}

@media (max-width: 576px) {

  .pricing {
    padding: 40px 20px;
  }

  .pricing-grid {
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
  }

  .price-card {
    flex: 100%;     /* 1 card per row */
    padding: 25px;
  }

  .price-card h3 {
    font-size: 20px;
  }

  .pricing h2 {
    font-size: 30px;
    font-weight: 700;
    margin-top: -5px;
  }

}






/* TESTIMONIALS */
.testimonials {
  padding: 40px 40px;
  background: #D4C9E9;
  border-radius: 10px;
  font-size: 25px;
  font-weight: 600px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 150px;   /* base height */
  gap: 10px;
  margin-top: 40px;
}

.testimonial {
  border: 3px solid #BB3866;
  background-color: #fff;
  border-radius: 12px;
  padding: 25px;
}

.testimonial h1 {
  font-size: 15px;
  font-weight: 800;
  margin-top: -10px;
  margin-left: -10px;
  margin-bottom: 10px;
  color: #BB3866;
}

.testimonial p {
  font-size: 13px;
  font-weight: 500;
  text-align: left;     /* text stays left */
  margin: 0 auto;       /* paragraph block centered */
  max-width: 75%;
  margin-bottom: 6.5px;
}

.service-icon {
    width: 25px;              /* fixed width */
    text-align: center;
    font-size: 12px;          /* uniform size */
    color: #BB3866;
}

/* Top center card bigger */
.testimonial:nth-child(2) {
  grid-row: span 2;
}

/* Bottom left bigger */
.testimonial:nth-child(4) {
  grid-row: span 2;
}

/* Bottom right bigger */
.testimonial:nth-child(5) {
  grid-row: span 2;
}

.testimonial:nth-child(8) {
  grid-row: span 2;
}

.testimonial:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

@media (max-width: 992px) {

  .testimonials {
    padding: 40px 30px;
  }

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

@media (max-width: 576px) {
  .testimonials {
    padding: 30px 30px;
    font-size: 20px;
    font-weight: 800;
  }
    
  .testimonial-grid {
    margin-top: 25px;
    grid-template-columns: 1fr;
  }
}


/* FOOTER */
.footer {
  background: #1a1a1a;
  color: white;
  padding: 60px;
  border-radius: 10px;
  margin: 10px;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}

.footer h4 {
  margin-bottom: 15px;
}

.footer p {
  margin-bottom: 10px;
  opacity: 0.7;
}

.copyright {
  border-top: 1px solid #333;
  padding-top: 20px;
  opacity: 0.6;
}




/* ===== FOOTER COPYRIGHT STRIP ===== */

/* Main Footer */
.footer {
  background: linear-gradient(to right, #1e2329, #222831);
  color: #ffffff;
  padding: 70px 80px 40px;
  font-family: Arial, sans-serif;
}

/* Grid Layout */
.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
}

/* Logo */
.title {
  font-size: 30px;
  font-weight: 700;
  margin-top: -15px;
  margin-bottom: 20px;
}

/* Address */
.company-info .address {
  line-height: 1.7;
  margin-bottom: 20px;
  color: #d0d0d0;
  width: 90%;
}

/* Column Title */
.footer-col h4 {
  font-size: 20px;
  margin-bottom: 20px;
  font-weight: 600;
}

/* Products spacing */
.products-title {
  margin-top: 30px;
}

/* List Styling */
.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 12px;
  color: #cfcfcf;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 18px;
}

/* Arrow before list */
.footer-col ul li::before {
  content: "›";
  position: absolute;
  left: 0;
  color: #cfcfcf;
}

/* Hover */
.footer-col ul li:hover {
  color: #ffffff;
  transform: translateX(5px);
}

@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 5px;
  }
}

@media (max-width: 600px) {
  .footer {
    padding: 50px 25px 30px;
  }

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

  .footer-col {
    margin-bottom: 25px;
  }

  .footer-col ul li:hover {
    transform: none;
  }
}


.footer-bottom{
    padding: 25px 0 15px;
    border-top:1px solid rgba(255,255,255,0.25);
    display:flex;
    margin-top: 20px;
    align-items:center;
    justify-content:center;
    flex-wrap:wrap;
}

/* SOCIAL ICONS */
.socials{
    display:flex;
    gap: 10px;
    font-size:20px;
}

.socials i{
    width:42px;
    height:42px;
    border-radius:50%;
    border:2px solid #fff;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    transition:.25s;
}

.socials i:hover{
    background:white;
    color:#1a1a1a;
}

/* LINKS LINE */
.footer-links{
    text-align:center;
    margin-top:15px;
    font-size:15px;
    opacity:.85;
}




















/* ================= SCROLL ANIMATION SYSTEM ================= */

/* hidden state (before visible) */
.reveal{
    opacity: 0;
    transform: translateY(60px) scale(0.96);
    transition: all 0.8s cubic-bezier(.17,.67,.26,1);
}

/* visible state */
.reveal.active{
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* smooth stagger effect */
.reveal-delay-1{ transition-delay: .1s; }
.reveal-delay-2{ transition-delay: .2s; }
.reveal-delay-3{ transition-delay: .3s; }
.reveal-delay-4{ transition-delay: .4s; }
.reveal-delay-5{ transition-delay: .5s; }


.socials a {
  color: #ffffff;   /* your icon color */
  text-decoration: none;
}

.socials a:visited {
  color: #ffffff;
}

.socials a:hover {
  color: #ffffff;   /* keep same color on hover */
}