/* =========================
   GLINT THEME - STYLE.CSS
   ========================= */

/* --- Reset & Base --- */
html, body {
  margin: 0;
  padding: 0;
  background: #151515;
  color: #fff;
  font-family: 'Montserrat', 'Poppins', Arial, sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.7;
  scroll-behavior: smooth;
}

a {
  color: #62f9d3;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover { color: #00ffd0; }

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #fff;
  margin-top: 0;
}

/* --- Section Spacing --- */
.section-padding,
.section-padding-top { padding-top: 100px; }
.section-padding,
.section-padding-bottom { padding-bottom: 100px; }
@media (max-width: 991px) {
  .section-padding, .section-padding-top, .section-padding-bottom { padding: 50px 0 !important; }
}

/* --- Container --- */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* --- Header / Hero --- */
.hero-section {
  min-height: 100vh;
  background: #151515;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-content {
  flex: 1 1 0;
  padding: 5vw 0;
}
.hero-content h1 {
  font-size: 3.2rem;
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 1.15;
}
.hero-content h1 span {
  color: #62f9d3;
}
.hero-content p {
  font-size: 1.26rem;
  color: #b6bbc5;
  margin: 2.4rem 0 3.2rem;
}
.hero-image img {
  width: 340px;
  height: 340px;
  border-radius: 50%;
  border: 7px solid #62f9d3;
  box-shadow: 0 0 60px #00ffd0;
  background: #111;
  object-fit: cover;
}
.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 2.5rem;
  transform: translateX(-50%);
  text-align: center;
  z-index: 2;
}
.scroll-indicator span { color: #62f9d3; font-size: 1rem; letter-spacing: 2px; }
.scroll-indicator .mouse {
  width: 30px;
  height: 50px;
  border: 2.5px solid #62f9d3;
  border-radius: 20px;
  margin: 0.5rem auto 0;
  position: relative;
}
.scroll-indicator .mouse::after {
  content: '';
  display: block;
  width: 6px; height: 14px;
  background: #62f9d3;
  border-radius: 3px;
  position: absolute;
  left: 50%;
  top: 12px;
  transform: translateX(-50%);
  animation: scroll-mouse 1.5s infinite;
}
@keyframes scroll-mouse {
  0% { opacity: 1; top: 12px; }
  80% { opacity: 1; top: 25px; }
  100% { opacity: 0; top: 35px; }
}

/* --- Buttons --- */
.aali-btn, .wa-btn, .cbtn, .cbnt1, .subscribe-btn, .btn-main {
  background: linear-gradient(90deg, #62f9d3 0%, #00ffd0 100%);
  color: #222;
  border: none;
  border-radius: 30px;
  padding: 1rem 2.6rem;
  font-size: 1.07rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  box-shadow: 0 4px 24px #00ffd040;
  transition: all 0.18s;
  display: inline-block;
}
.aali-btn:hover,
.wa-btn:hover,
.cbtn:hover,
.cbnt1:hover,
.subscribe-btn:hover,
.btn-main:hover {
  filter: brightness(1.2) drop-shadow(0 8px 24px #00ffd055);
  background: linear-gradient(90deg, #00ffd0 0%, #62f9d3 100%);
  color: #222;
}

/* --- Section Titles --- */
.section-title {
  color: #62f9d3;
  font-weight: 700;
  letter-spacing: 3px;
  font-size: 1.13rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

/* --- About / Features --- */
.about-section,
.services-section,
.projects-section,
.clients-section,
.whatsapp-section,
.contact-section {
  background: #171717;
  border-radius: 22px;
  margin-bottom: 48px;
  box-shadow: 0 0 40px #00ffd011;
}
.about-container {
  display: flex;
  align-items: center;
  gap: 70px;
  flex-wrap: wrap;
}
.about-image img {
  width: 320px;
  border-radius: 16px;
  border: 5px solid #62f9d3;
  box-shadow: 0 0 40px #00ffd044;
}
.about-content { flex: 1; }
.about-content h2 {
  font-size: 2.1rem;
  margin-bottom: 1.2rem;
  color: #fff;
}
.about-features {
  display: flex;
  gap: 2.1rem;
  margin: 1.5rem 0;
  flex-wrap: wrap;
}
.about-features .feature {
  background: #111;
  border-radius: 8px;
  padding: 1.1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #62f9d3;
  font-weight: 600;
  font-size: 1.09rem;
}
.about-features .feature i {
  font-size: 1.3rem;
  color: #00ffd0;
}

/* --- Services --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2.3rem;
  margin-top: 2.7rem;
}
.service-card {
  background: #222;
  border-radius: 18px;
  padding: 2.1rem 1.3rem;
  text-align: center;
  box-shadow: 0 2px 16px #00ffd010;
  border: 1.5px solid #1e1e1e;
  transition: 0.18s;
  cursor: pointer;
  will-change: transform;
}
.service-card i {
  font-size: 2.6rem;
  color: #00ffd0;
  margin-bottom: 1.3rem;
}
.service-card h3 {
  color: #62f9d3;
  font-size: 1.18rem;
  margin-bottom: 0.7rem;
}
.service-card p {
  color: #b6bbc5;
  font-size: 1rem;
}

/* --- Projects Tabs & Grid --- */
.tabs {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  margin-bottom: 2.7rem;
  flex-wrap: wrap;
}
.tab-btn {
  background: transparent;
  border: 2px solid #62f9d3;
  color: #62f9d3;
  padding: 0.5rem 1.8rem;
  border-radius: 28px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.18s, color 0.16s;
  outline: none;
}
.tab-btn.active,
.tab-btn:hover {
  background: #62f9d3;
  color: #222;
}
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 2rem;
}
.project-card {
  background: #232323;
  border-radius: 14px;
  box-shadow: 0 2px 12px #00ffd008;
  border: 1.3px solid #222;
  overflow: hidden;
  transition: transform 0.16s, box-shadow 0.16s;
  will-change: transform;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}
.project-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}
.project-info {
  padding: 1.2rem 1rem 1.1rem 1rem;
}
.project-info h3 {
  color: #62f9d3;
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}
.project-info a { color: #62f9d3; text-decoration: underline; font-size: 0.98rem; }
.project-info a:hover { color: #00ffd0; }

/* --- Clients/Testimonials Carousel --- */
.clients-section { background: #1a1a1a; }
.swiper { width: 100%; padding: 2rem 0; }
.swiper-slide { display: flex; justify-content: center; }
.client-card {
  background: #181818;
  border-radius: 14px;
  box-shadow: 0 2px 10px #00ffd019;
  border: 1.3px solid #222;
  padding: 2rem 1.2rem 1.7rem 1.2rem;
  min-width: 250px;
  max-width: 280px;
  flex: 0 0 250px;
  text-align: center;
  transition: transform 0.2s;
}
.client-card img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #00ffd0;
  margin-bottom: 0.8rem;
}
.client-card p {
  color: #b6bbc5;
  font-size: 1.01rem;
  margin-bottom: 1rem;
}
.client-card span {
  color: #62f9d3;
  font-size: 0.93rem;
  font-weight: 500;
}
.swiper-button-next, .swiper-button-prev {
  color: #62f9d3;
  background: #232323;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px #00ffd022;
  transition: 0.18s;
}
.swiper-button-next:hover, .swiper-button-prev:hover { background: #62f9d3; color: #232323; }

/* --- WhatsApp --- */
.whatsapp-section {
  background: #111;
  padding: 3.5rem 0;
  border-radius: 18px;
  box-shadow: 0 0 20px #00ffd022;
  margin-bottom: 2rem;
}
.whatsapp-box {
  display: flex;
  align-items: center;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
  background: #202020;
  border: 2px solid #62f9d3;
  border-radius: 16px;
  box-shadow: 0 4px 28px #00ffd033;
  padding: 2.1rem 2.6rem;
}
.whatsapp-box i {
  font-size: 3.2rem;
  color: #25d366;
  background: #fff;
  border-radius: 50%;
  padding: 0.7rem 0.9rem;
}
.whatsapp-box h3 {
  margin: 0 0 0.3rem 0;
  color: #62f9d3;
  font-size: 1.21rem;
  font-weight: bold;
}
.whatsapp-box p {
  color: #b6bbc5;
  font-size: 1.04rem;
  margin-bottom: 0;
}
.wa-btn { margin-left: auto; background: #25d366; color: #111; font-weight: 700; box-shadow: none; }
.wa-btn:hover { background: #62f9d3; color: #1a1a1a; }

/* --- Contact --- */
.contact-section { background: #1a1a1a; }
.contact-form {
  margin: 0 auto;
  max-width: 600px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  background: #222;
  padding: 2.2rem 2rem 1.5rem 2rem;
  border-radius: 14px;
  box-shadow: 0 2px 14px #00ffd028;
  border: 1.5px solid #232323;
}
.contact-form input,
.contact-form textarea {
  padding: 1.1rem;
  border-radius: 8px;
  border: 1.5px solid #222;
  background: #181e1a;
  color: #fff;
  font-size: 1.06rem;
  resize: none;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #62f9d3;
}
.contact-form .aali-btn { margin-top: 0.5rem; width: 100%; }

/* --- Footer --- */
footer { background: #191919; color: #b6bbc5; text-align: center; padding: 2rem 0 1rem; font-size: 1rem; }
.footer-socials { margin-top: 1.2rem; }
.footer-socials a {
  color: #62f9d3;
  margin: 0 0.7rem;
  font-size: 1.6rem;
  transition: color 0.2s;
}
.footer-socials a:hover { color: #00ffd0; }

/* --- Responsive Tweaks --- */
@media (max-width: 1100px) {
  .hero-container, .about-container { flex-direction: column; text-align: center; gap: 3rem; }
  .hero-image { margin-top: 2rem; }
  .whatsapp-box { flex-direction: column; gap: 1.4rem; text-align: center; padding: 1.5rem 1rem; }
  .wa-btn { margin-left: 0; }
  .about-image img { margin: 0 auto; }
}
@media (max-width: 700px) {
  .hero-content h1 { font-size: 2rem; }
  .about-image img { width: 100%; }
  .clients-slider { width: 95vw; }
  .project-card img { height: 120px; }
}
@media (max-width: 500px) {
  .section-padding, .container { padding: 1.2rem 3vw; }
  .whatsapp-box { padding: 0.7rem 0.2rem; }
  .clients-slider { width: 90vw; }
}

/* Add more detailed style rules, overlays, and animation classes
   to match the full Glint demo effect as needed. *//*
Template Name:
Version:1.0
*/








































