/* GOOGLE FONT */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* ROOT COLORS */
:root{
  --orange:#f97316;
  --purple:#7c3aed;
  --cyan:#00d4ff;
  --accent-primary:#2563eb;
  --gray:#64748b;
}

/* GLOBAL */
html{
  scroll-behavior:smooth;
}

*{
  font-family:'Poppins', sans-serif;
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  background:linear-gradient(to bottom,#f8fafc,#eef2ff);
  overflow-x:hidden;
}

/* SCROLLBAR */
::-webkit-scrollbar{
  width:10px;
}

::-webkit-scrollbar-track{
  background:#e2e8f0;
}

::-webkit-scrollbar-thumb{
  background:linear-gradient(var(--accent-primary),var(--purple));
  border-radius:20px;
}

/* HEADER */
header{
  background:rgba(255,255,255,0.75);
  backdrop-filter:blur(18px);
  box-shadow:0 8px 30px rgba(0,0,0,0.05);
  border-bottom:1px solid rgba(255,255,255,0.3);
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:20px 50px;
  gap:40px;
  position:sticky;
  top:0;
  z-index:100;
}

/* LOGO */
.logo{
  display:flex;
  align-items:center;
  gap:15px;
}

.logo-img{
  height:60px;
  transition:0.3s ease;
}

.logo-img:hover{
  transform:scale(1.05) rotate(2deg);
}

.logo-text h1{
  margin:0;
  font-size:1.8rem;
  font-weight:800;
  background:linear-gradient(90deg, var(--accent-primary), var(--purple));
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.logo-text span{
  font-size:0.85rem;
  color:var(--gray);
  letter-spacing:1px;
}

/* HEADER H1 */
header h1{
  margin:0;
  font-size:1.8rem;
  font-weight:800;
  background:linear-gradient(90deg, var(--accent-primary), var(--purple));
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

/* NAVBAR */
nav{
  display:flex;
  align-items:center;
  gap:25px;
  margin-left:auto;
}

nav a{
  position:relative;
  display:flex;
  align-items:center;
  gap:8px;
  font-weight:600;
  color:a#333;
  text-decoration:none;
  transition:0.3s ease;
}

nav a::after{
  content:'';
  position:absolute;
  left:0;
  bottom:-6px;
  width:0%;
  height:2px;
  background:linear-gradient(90deg, var(--accent-primary), var(--purple));
  transition:0.3s ease;
}

nav a:hover::after{
  width:100%;
}

/* HERO */
.hero{
  height:100vh;
  border-radius:0 0 40px 40px;
  overflow:hidden;
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
}

.hero::before{
  content:'';
  position:absolute;
  top:0;
  left:0;
  right:0;
  bottom:0;
  background:linear-gradient(rgba(95, 138, 237, 0.65), rgba(95, 138, 237, 0.65));
  z-index:1;
}

.hero-overlay{
  padding:60px 80px;
  border-radius:30px;
  max-width:900px;
  width:90%;
  background:rgba(255,255,255,0.05);
  backdrop-filter:blur(10px);
  border:1px solid rgba(255,255,255,0.1);
  text-align:center;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  position:relative;
  z-index:2;
}

/* HERO BADGE */
.hero-badge{
  display:inline-block;
  padding:10px 18px;
  border-radius:30px;
  background:rgba(255,255,255,0.08);
  color:#e2e8f0;
  margin-bottom:25px;
  font-size:0.9rem;
  letter-spacing:1px;
  border:1px solid rgba(255,255,255,0.15);
}

/* HERO TITLE */
.hero h2{
  font-size:4.5rem;
  font-weight:800;
  line-height:1.2;
  background:linear-gradient(90deg, #ffffff, #dbeafe, #93c5fd);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  text-shadow:none;
  margin-bottom:20px;
  min-height:120px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.hero p{
  color:#e2e8f0;
  max-width:750px;
  line-height:1.8;
  font-size:1.15rem;
  margin-bottom:30px;
}

/* HERO BUTTONS */
.hero-buttons{
  display:flex;
  justify-content:center;
  gap:20px;
  flex-wrap:wrap;
  margin-top:35px;
}

/* BUTTON */
.btn{
  padding:14px 30px;
  border-radius:50px;
  background:linear-gradient(90deg, var(--accent-primary), var(--purple));
  box-shadow:0 10px 30px rgba(37,99,235,0.25);
  color:white;
  text-decoration:none;
  display:inline-block;
  transition:0.3s ease;
  cursor:pointer;
  border:none;
  font-weight:600;
  font-size:1rem;
}

.btn:hover{
  transform:translateY(-4px) scale(1.03);
}

/* SECONDARY BUTTON */
.secondary-btn{
  background:rgba(255,255,255,0.1);
  border:1px solid rgba(255,255,255,0.2);
}

/* SECTION */
section{
  box-shadow:0 10px 40px rgba(0,0,0,0.04);
  padding:80px 50px;
  max-width:1400px;
  margin:0 auto;
  width:100%;
}

section#services,
section#products,
section#gallery,
section#about,
section#contact,
section#initiative{
  background:white;
}

/* SECTION TITLES */
section h2{
  font-size:3rem;
  text-align:center;
  margin-bottom:50px;
  position:relative;
  display:flex;
  flex-direction:column;
  align-items:center;
  color:#1e293b;
}

section h2::after{
  content:'';
  width:100px;
  height:4px;
  background:linear-gradient(90deg, var(--accent-primary), var(--purple));
  display:block;
  margin-top:15px;
  border-radius:10px;
}

/* CARDS CONTAINER */
.cards{
  margin-top:40px;
  display:flex;
  gap:30px;
  align-items:stretch;
  justify-content:center;
  flex-wrap:wrap;
}

/* CARD LINK */
.card-link{
  text-decoration:none;
  color:inherit;
  display:flex;
  flex:1;
  min-width:280px;
  max-width:350px;
}

/* CARD */
.card{
  position:relative;
  overflow:hidden;
  border:none;
  transition:0.4s ease;
  background:white;
  border-radius:15px;
  padding:30px;
  flex:1;
  width:100%;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  box-shadow:0 5px 20px rgba(0,0,0,0.08);
}

.card::before{
  content:'';
  position:absolute;
  top:0;
  left:-100%;
  width:100%;
  height:100%;
  background:linear-gradient(120deg, transparent, rgba(255,255,255,0.3), transparent);
  transition:0.6s;
}

.card:hover::before{
  left:100%;
}

.card:hover{
  transform:translateY(-10px);
  box-shadow:0 15px 40px rgba(0,0,0,0.15);
}

/* CARD ICON */
.card-icon{
  width:70px;
  height:70px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:20px;
  margin-bottom:25px;
  font-size:28px;
  background:linear-gradient(135deg, rgba(37,99,235,0.15), rgba(124,58,237,0.15));
  color:var(--accent-primary);
}

/* CARD TEXT */
.card h3{
  font-size:1.5rem;
  margin-bottom:15px;
  color:#1e293b;
}

.card p{
  line-height:1.8;
  color:#64748b;
}

/* GALLERY */
.gallery{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(300px, 1fr));
  gap:25px;
  margin-top:40px;
  perspective:1000px;
}

.gallery-item{
  position:relative;
  border-radius:15px;
  overflow:hidden;
  height:300px;
  cursor:pointer;
  transition:0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow:0 8px 25px rgba(0,0,0,0.12);
  background:linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border:2px solid rgba(37,99,235,0.3);
}

.gallery-item img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:0.6s cubic-bezier(0.4, 0, 0.2, 1);
  filter:brightness(1);
}

.gallery-item:hover img{
  transform:scale(1.2) rotate(2deg);
  filter:brightness(0.4);
}

.gallery-overlay{
  position:absolute;
  top:0;
  left:0;
  right:0;
  bottom:0;
  background:linear-gradient(135deg, rgba(37,99,235,0.9), rgba(124,58,237,0.9));
  backdrop-filter:blur(10px);
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  padding:30px;
  text-align:center;
  opacity:0;
  transition:0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform:translateY(20px);
  z-index:10;
}

.gallery-item:hover .gallery-overlay{
  opacity:1;
  transform:translateY(0);
}

.gallery-overlay h3{
  font-size:1.5rem;
  color:white;
  margin-bottom:12px;
  font-weight:700;
  letter-spacing:0.5px;
  text-shadow:0 2px 4px rgba(0,0,0,0.2);
}

.gallery-overlay p{
  color:rgba(255,255,255,0.95);
  font-size:0.95rem;
  line-height:1.6;
  max-width:250px;
  text-shadow:0 1px 3px rgba(0,0,0,0.2);
}

/* GALLERY BADGE */
.gallery-badge{
  position:absolute;
  top:15px;
  right:15px;
  background:linear-gradient(135deg, #fbbf24, #f97316);
  color:white;
  padding:8px 16px;
  border-radius:30px;
  font-size:0.75rem;
  font-weight:700;
  letter-spacing:1px;
  text-transform:uppercase;
  z-index:5;
  box-shadow:0 4px 15px rgba(249,115,22,0.3);
  transition:0.3s ease;
}

.gallery-item:hover .gallery-badge{
  transform:translateY(-5px);
  box-shadow:0 6px 20px rgba(249,115,22,0.5);
}

/* GALLERY STATS */
.gallery-stats{
  display:flex;
  justify-content:space-around;
  margin-top:30px;
  padding:20px;
  background:white;
  border-radius:15px;
  box-shadow:0 5px 20px rgba(0,0,0,0.08);
}

.stat-item{
  text-align:center;
  flex:1;
}

.stat-item h4{
  font-size:1.8rem;
  color:var(--accent-primary);
  margin-bottom:5px;
  font-weight:700;
}

.stat-item p{
  color:#64748b;
  font-size:0.9rem;
}

/* =========================
   CONTACT SECTION
========================= */

#contact{
  width:100%;
  text-align:center;

  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
}

/* CONTACT WRAPPER */
.contact-details{
  width:100%;

  display:flex;
  justify-content:center;
  align-items:center;
  flex-wrap:wrap;

  gap:40px;

  margin:60px auto 0;
  padding:0 20px;
}

/* CARD */
.contact-card{
  width:320px;
  min-height:320px;

  background:#ffffff;

  border-radius:24px;

  padding:40px 30px;

  display:flex;
  flex-direction:column;

  align-items:center;
  justify-content:center;

  text-align:center;

  border:1px solid #e2e8f0;

  box-shadow:
    0 10px 35px rgba(0,0,0,0.06);

  transition:0.35s ease;
}

/* HOVER */
.contact-card:hover{
  transform:translateY(-8px);

  box-shadow:
    0 20px 45px rgba(37,99,235,0.15);
}

/* ICON */
.contact-card i{
  width:80px;
  height:80px;

  display:flex;
  align-items:center;
  justify-content:center;

  border-radius:50%;

  font-size:2rem;

  margin-bottom:22px;

  background:rgba(37,99,235,0.08);

  color:#2563eb;
}

/* WHATSAPP ICON */
.whatsapp-contact i{
  background:rgba(37,211,102,0.12);
  color:#25D366;
}

/* TITLE */
.contact-card h3{
  font-size:1.5rem;
  font-weight:700;

  color:#0f172a;

  margin-bottom:10px;
}

/* TEXT */
.contact-card p{
  color:#64748b;

  font-size:1rem;

  line-height:1.7;

  margin-bottom:25px;
}

/* BUTTON */
.contact-link{
  display:inline-flex;

  align-items:center;
  justify-content:center;

  padding:13px 28px;

  border-radius:50px;

  text-decoration:none;

  color:white;

  font-weight:600;

  transition:0.3s ease;
}

/* EMAIL BUTTON */
.email-link{
  background:linear-gradient(
    90deg,
    #2563eb,
    #7c3aed
  );

  box-shadow:
    0 10px 25px rgba(37,99,235,0.25);
}

/* WHATSAPP BUTTON */
.whatsapp-link{
  background:linear-gradient(
    90deg,
    #25D366,
    #1ebe5d
  );

  box-shadow:
    0 10px 25px rgba(37,211,102,0.25);
}

/* INSTAGRAM BUTTON */
.instagram-link{
  background:linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );

  box-shadow:
    0 10px 25px rgba(224,144,51,0.25);
}

/* BUTTON HOVER */
.contact-link:hover{
  transform:translateY(-3px) scale(1.04);
}

/* MOBILE */
@media(max-width:768px){

  header{
    flex-direction:column;
    gap:20px;
    padding:15px 20px;
  }

  nav{
    flex-wrap:wrap;
    justify-content:center;
    gap:15px;
    margin-left:0;
  }

  .logo{
    justify-content:center;
  }

  .logo-img{
    height:50px;
  }

  .logo-text h1{
    font-size:1.5rem;
  }

  header h1{
    font-size:1.5rem;
  }

  .hero{
    height:85vh;
  }

  .hero-overlay{
    padding:40px 25px;
    max-width:95%;
  }

  .hero h2{
    font-size:2.6rem;
    min-height:auto;
  }

  .hero p{
    font-size:1rem;
  }

  section{
    padding:60px 25px;
    max-width:100%;
  }

  section h2{
    font-size:2.2rem;
    margin-bottom:40px;
  }

  .cards{
    flex-direction:column;
    align-items:center;
  }

  .card-link{
    max-width:100%;
    min-width:auto;
    width:100%;
  }

  .card{
    max-width:100%;
    min-width:auto;
  }

  /* CONTACT MOBILE: center side-by-side buttons */
  #contact{
    padding-left:25px;
    padding-right:25px;
  }

  .contact-details{
    justify-content:center;
    flex-wrap:wrap;
    gap:18px;
    margin-top:30px;
    padding:0;
  }

  .contact-card{
    flex:1 1 280px;
    width:100%;
    max-width:360px;
    min-height:auto;
    margin:0;
  }

  /* SERVICE & PRODUCT PAGES MOBILE */
  .service-page,
  .product-page{
    padding:60px 20px;
  }

  .service-content,
  .product-content{
    padding:30px 20px;
    border-radius:10px;
  }

  .service-content h1,
  .product-content h1{
    font-size:1.8rem;
    margin-bottom:20px;
  }

  .service-intro,
  .product-intro{
    margin-bottom:40px;
  }

  .service-intro p,
  .product-intro p{
    font-size:1rem;
  }

  .service-section h2,
  .product-section h2{
    font-size:1.4rem;
    flex-direction:column;
  }

  .service-section h2::after,
  .product-section h2::after{
    margin-left:0;
    margin-top:10px;
  }

  .service-list,
  .specs-grid,
  .applications-grid{
    grid-template-columns:1fr;
    gap:15px;
  }

  .cta-section{
    padding:30px 20px;
  }

  .cta-section h2{
    font-size:1.5rem;
  }

  .cta-section .btn{
    width:100%;
  }

  /* GALLERY MOBILE */
  .gallery{
    grid-template-columns:1fr;
    gap:15px;
  }

  .gallery-item{
    height:250px;
  }

  .gallery-badge{
    font-size:0.65rem;
    padding:6px 12px;
    top:10px;
    right:10px;
  }

  .gallery-overlay{
    padding:20px;
  }

  .gallery-overlay h3{
    font-size:1.2rem;
    margin-bottom:8px;
  }

  .gallery-overlay p{
    font-size:0.85rem;
  }

  .gallery-stats{
    flex-direction:column;
    gap:15px;
  }

  .about-title{
    font-size:2.3rem;
  }

  .initiative-box{
    padding:40px 25px;
    max-width:95%;
  }

  .whatsapp-float{
    bottom:20px;
    right:20px;
    width:60px;
    height:60px;
    font-size:28px;
  }

}

/* SOCIAL BUTTONS */
.social-btn{
  border:none;
  font-weight:600;
  padding:10px 20px;
  border-radius:30px;
  transition:0.3s ease;
  display:inline-block;
  margin:5px;
  cursor:pointer;
  color:white;
}

.social-btn:hover{
  transform:translateY(-5px);
}

.whatsapp{
  background:#25D366;
}

.whatsapp:hover{
  box-shadow:0 10px 30px rgba(37,211,102,0.4);
}

.instagram{
  background:linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
}

.instagram:hover{
  box-shadow:0 10px 30px rgba(224,144,51,0.4);
}

/* INITIATIVE */
.initiative-box{
  text-align:center;
  padding:50px;
  border-radius:30px;
  background:linear-gradient(135deg, rgba(37,99,235,0.08), rgba(124,58,237,0.08));
  max-width:800px;
  margin:40px auto;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  border:1px solid rgba(37,99,235,0.15);
}

.initiative-box h3{
  font-size:1.8rem;
  color:#1e293b;
  margin-bottom:15px;
}

.initiative-box p{
  color:#64748b;
  line-height:1.8;
  margin-bottom:25px;
}

/* FOOTER */
footer{
  background:#0f172a;
  color:#cbd5e1;
  border:none;
  padding:40px 50px;
  text-align:center;
}

footer p{
  margin:10px 0;
}

footer a{
  color:#93c5fd;
  text-decoration:none;
}

footer a:hover{
  text-decoration:underline;
}

/* MOBILE */
@media(max-width:768px){

  header{
    flex-direction:column;
    gap:20px;
    padding:15px 20px;
  }

  nav{
    flex-wrap:wrap;
    justify-content:center;
    gap:15px;
    margin-left:0;
  }

  .logo{
    justify-content:center;
  }

  .logo-img{
    height:50px;
  }

  .logo-text h1{
    font-size:1.5rem;
  }

  header h1{
    font-size:1.5rem;
  }

  .hero{
    height:85vh;
  }

  .hero-overlay{
    padding:40px 25px;
    max-width:95%;
  }

  .hero h2{
    font-size:2.6rem;
    min-height:auto;
  }

  .hero p{
    font-size:1rem;
  }

  section{
    padding:60px 25px;
    max-width:100%;
  }

  section h2{
    font-size:2.2rem;
    margin-bottom:40px;
  }

  .cards{
    flex-direction:column;
    align-items:center;
  }

  .card-link{
    max-width:100%;
    min-width:auto;
    width:100%;
  }

  .card{
    max-width:100%;
    min-width:auto;
  }

  /* CONTACT MOBILE: center side-by-side buttons */
  #contact{
    padding-left:25px;
    padding-right:25px;
  }

  .contact-details{
    gap:18px;
    margin-top:30px;
  }

  .contact-card{
    width:100%;
    max-width:360px;
    min-height:auto;
  }

  /* Mobile contact cards layout: Email/WhatsApp/Instagram centered side-by-side */
  .contact-details{
    gap:18px;
  }

  .contact-card{
    flex:1 1 250px;
    margin:0;
  }


  /* stack other pages as needed */
  .contact-details{
    flex-direction:row;
    justify-content:center;
    align-items:stretch;
    flex-wrap:wrap;
  }

  .contact-card{
    flex:1 1 320px;
  }


  .about-title{
    font-size:2.3rem;
  }

  .initiative-box{
    padding:40px 25px;
    max-width:95%;
  }

  .whatsapp-float{
    bottom:20px;
    right:20px;
    width:60px;
    height:60px;
    font-size:28px;
  }

  /* GALLERY MOBILE */
  .gallery{
    grid-template-columns:1fr;
    gap:15px;
  }

  .gallery-item{
    height:250px;
  }

  .gallery-badge{
    font-size:0.65rem;
    padding:6px 12px;
    top:10px;
    right:10px;
  }

  .gallery-overlay{
    padding:20px;
  }

  .gallery-overlay h3{
    font-size:1.2rem;
    margin-bottom:8px;
  }

  .gallery-overlay p{
    font-size:0.85rem;
  }

  .gallery-stats{
    flex-direction:column;
    gap:15px;
  }

  /* SERVICE & PRODUCT PAGES MOBILE */
  .service-page,
  .product-page{
    padding:60px 20px;
  }

  .service-content,
  .product-content{
    padding:30px 20px;
    border-radius:10px;
  }

  .service-content h1,
  .product-content h1{
    font-size:1.8rem;
    margin-bottom:20px;
  }

  .service-intro,
  .product-intro{
    margin-bottom:40px;
  }

  .service-intro p,
  .product-intro p{
    font-size:1rem;
  }

  .service-section h2,
  .product-section h2{
    font-size:1.4rem;
    flex-direction:column;
  }

  .service-section h2::after,
  .product-section h2::after{
    margin-left:0;
    margin-top:10px;
  }

  .service-list,
  .specs-grid,
  .applications-grid{
    grid-template-columns:1fr;
    gap:15px;
  }

  .cta-section{
    padding:30px 20px;
  }

  .cta-section h2{
    font-size:1.5rem;
  }

  .cta-section .btn{
    width:100%;
  }

}

/* TABLET */
@media(min-width:769px) and (max-width:1200px){

  header{
    padding:15px 30px;
    gap:25px;
  }

  nav{
    gap:15px;
  }

  section{
    padding:60px 30px;
    max-width:100%;
  }

  .cards{
    gap:20px;
  }

  .card-link{
    min-width:250px;
    max-width:280px;
  }

  /* GALLERY TABLET */
  .gallery{
    grid-template-columns:repeat(2, 1fr);
    gap:20px;
  }

  .gallery-item{
    height:280px;
  }

  .service-page,
  .product-page{
    padding:60px 30px;
  }

  .service-list,
  .specs-grid,
  .applications-grid{
    grid-template-columns:repeat(2, 1fr);
  }

}

/* ADDITIONAL ALIGNMENT UTILITIES */
.text-center{
  text-align:center;
}

.flex-center{
  display:flex;
  align-items:center;
  justify-content:center;
}

.container-max{
  max-width:1400px;
  margin:0 auto;
  width:100%;
}
/* SERVICE PAGES */
.service-page{
  padding:80px 50px;
  max-width:1200px;
  margin:0 auto;
  width:100%;
}

.back-btn{
  display:inline-block;
  margin-bottom:30px;
  color:var(--accent-primary);
  text-decoration:none;
  font-weight:600;
  transition:0.3s ease;
}

.back-btn:hover{
  transform:translateX(-5px);
  text-decoration:underline;
}

.service-content{
  background:white;
  border-radius:15px;
  padding:40px;
  box-shadow:0 5px 20px rgba(0,0,0,0.08);
}

.service-content h1{
  font-size:2.5rem;
  color:#1e293b;
  margin-bottom:30px;
  text-align:center;
  display:flex;
  align-items:center;
  justify-content:center;
}

.service-intro{
  text-align:center;
  margin-bottom:60px;
  max-width:800px;
  margin-left:auto;
  margin-right:auto;
}

.service-intro p{
  font-size:1.1rem;
  line-height:1.8;
  color:#64748b;
}

.service-section{
  margin-bottom:60px;
}

.service-section h2{
  font-size:1.8rem;
  color:#1e293b;
  margin-bottom:30px;
  text-align:center;
  display:flex;
  align-items:center;
  justify-content:center;
}

.service-section h2::after{
  content:'';
  width:80px;
  height:3px;
  background:linear-gradient(90deg, var(--accent-primary), var(--purple));
  margin-left:15px;
  border-radius:5px;
}

.service-list{
  list-style:none;
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(300px, 1fr));
  gap:30px;
  margin-bottom:30px;
}

.service-list li{
  background:linear-gradient(135deg, rgba(37,99,235,0.05), rgba(124,58,237,0.05));
  padding:25px;
  border-radius:12px;
  border:1px solid rgba(37,99,235,0.1);
  transition:0.3s ease;
}

.service-list li:hover{
  transform:translateY(-5px);
  box-shadow:0 10px 30px rgba(37,99,235,0.1);
}

.service-list h3{
  color:#1e293b;
  font-size:1.2rem;
  margin-bottom:10px;
}

.service-list p{
  color:#64748b;
  line-height:1.6;
  font-size:0.95rem;
}

.applications-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(250px, 1fr));
  gap:25px;
  margin-bottom:30px;
}

.app-card{
  background:white;
  padding:30px;
  border-radius:15px;
  border:2px solid #e2e8f0;
  text-align:center;
  transition:0.3s ease;
  cursor:pointer;
}

.app-card:hover{
  border-color:var(--accent-primary);
  box-shadow:0 10px 30px rgba(37,99,235,0.15);
  transform:translateY(-5px);
}

.app-card h3{
  color:#1e293b;
  font-size:1.1rem;
  margin-bottom:15px;
}

.app-card p{
  color:#64748b;
  font-size:0.95rem;
  line-height:1.6;
}

.cta-section{
  background:linear-gradient(135deg, rgba(37,99,235,0.08), rgba(124,58,237,0.08));
  padding:50px;
  border-radius:20px;
  text-align:center;
  border:1px solid rgba(37,99,235,0.15);
}

.cta-section h2{
  margin-bottom:20px;
}

.cta-section p{
  color:#64748b;
  margin-bottom:30px;
  font-size:1.05rem;
}

/* PRODUCT PAGES */
.product-page{
  padding:80px 50px;
  max-width:1200px;
  margin:0 auto;
  width:100%;
}

.product-content{
  background:white;
  border-radius:15px;
  padding:40px;
  box-shadow:0 5px 20px rgba(0,0,0,0.08);
}

.product-content h1{
  font-size:2.5rem;
  color:#1e293b;
  margin-bottom:30px;
  text-align:center;
}

.product-intro{
  text-align:center;
  margin-bottom:50px;
  max-width:800px;
  margin-left:auto;
  margin-right:auto;
}

.product-intro p{
  font-size:1.1rem;
  line-height:1.8;
  color:#64748b;
}

.product-section{
  margin-bottom:50px;
}

.product-section h2{
  font-size:1.8rem;
  color:#1e293b;
  margin-bottom:30px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.product-section h2::after{
  content:'';
  width:80px;
  height:3px;
  background:linear-gradient(90deg, var(--accent-primary), var(--purple));
  margin-left:15px;
  border-radius:5px;
}

.specs-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(280px, 1fr));
  gap:25px;
  margin-bottom:30px;
}

.spec-item{
  background:linear-gradient(135deg, rgba(37,99,235,0.05), rgba(124,58,237,0.05));
  padding:25px;
  border-radius:12px;
  border:1px solid rgba(37,99,235,0.1);
  transition:0.3s ease;
}

.spec-item:hover{
  transform:translateY(-5px);
  box-shadow:0 10px 30px rgba(37,99,235,0.1);
}

.spec-item h3{
  color:#1e293b;
  font-size:1.1rem;
  margin-bottom:10px;
}

.spec-item p{
  color:#64748b;
  font-size:0.95rem;
  line-height:1.6;
}