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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  -webkit-font-smoothing: antialiased;
  background-color: #0e0e0e;
  color: #fff;
  padding-top: 12px;
}

:root {
  --nav-h: 0px;
}

h1 {
  font-size: 2rem;
  margin-bottom: 40px;
  max-width: 1000px;
}

p {
  font-size: 1.5rem;
  line-height: 2;
  max-width: 1000px;
}

.section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  scroll-margin-top: var(--nav-h);
}

.logo {
  width: 380px;
}

/* Navbar */
.navbar {
  background-color: #0e0e0e;
  padding: 0px 10px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  max-width: "70%";
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  padding: 0 32px;
}

.menu-icon {
  display: none;
  cursor: pointer;
  margin-top: 5px;
}

.nav-left {
  flex: 0 0 auto;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 32px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  padding: 0;
}

.nav-right {
  display: flex;
  flex-direction: row;
  gap: 10px;
}

.nav-links li a {
  position: relative;
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  font-size: 1.25rem;
  border-radius: 20px;
  transition: color 0.2s;
}

.nav-links li a:hover {
  color: #b6b6b6;
  transform: scale(1.05);
  transition:
    background-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

/* sml screens glass nav */
.glass-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  backdrop-filter: blur(15px);
  background: rgba(14, 14, 14, 0.5);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  flex-direction: column;
  transition: opacity 0.3s ease;
}

.glass-menu.show {
  display: flex;
}

.glass-menu-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
  text-align: center;
  height: 100vh; 
  width: 100%;
  padding: 60px 0; 
  text-align: center;
}

.glass-menu-content a {
  font-size: 2rem;
  text-decoration: none;
  color: #fff;
  transition: color 0.3s ease, transform 0.3s ease;
}

.glass-menu-content a:hover {
  color: #e68900;
  transform: scale(1.1);
}

.glass-menu .btn {
  display: flex !important;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 40px;
  font-size: 3rem;
  cursor: pointer;
  color: #fff;
  font-weight: 600;
  transition: transform 0.3s ease;
}

.close-btn:hover {
  transform: scale(1.2);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  font-size: 1.25rem;
  font-weight: 600;
  padding: 10px 35px;
  border-radius: 20px;
  background-color: #FF9800;
  color: #000;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn:hover {
  background-color: #e68900;
  opacity: 0.8;
  transform: scale(1.05);
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 2rem;
  color: #e68900;
  position: relative;
  letter-spacing: 0.3rem;
  margin-top: 40px;
}

/* Hero Section */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: calc(100vh - var(--nav-h));
  padding: 5px;
  padding-top: 20px;
  scroll-margin-top: var(--nav-h);
  padding-bottom: 35px;
}

/* Prefer modern viewport units when available */
@supports (height: 100svh) {
  .hero { min-height: calc(100svh - var(--nav-h)); }
}
@supports (height: 100dvh) {
  .hero { min-height: calc(100dvh - var(--nav-h)); }
}

.hero h1, .hero2 h1 {
  font-size: 1.75rem;
}

/* About section: justify paragraph text */
#about p {
  text-align: justify;
  text-justify: inter-word;
  text-align-last: left;
  hyphens: auto;
  margin-left: auto;
  margin-right: auto;
}

/* About section: center the main H1 (not the section header) */
#about h1:not(.section-header) {
  text-align: center;
}

/* Hero 2 Section */
.hero2 { 
  display: flex;
  flex-direction: column;
  padding: 40px;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero2 h3 {
  margin-bottom: 1rem;
  color: #e68900;
  position: relative;
  padding-left: 16px;
}

.hero2 h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 6px;
  height: 80%;
  background-color: #e68900;
  border-radius: 3px;
}

.hero2-img { width: 80%; height: auto; display: block; border-radius: 12px; }

/* Features Section */
.features-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}


.cards-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  align-items: stretch;
  width: 100%;
}

.card {
  position: relative;
  display: flex;                
  flex-direction: column;
  justify-content: flex-start;
  min-width: 0;
  text-align: center;
  padding: 10px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255,255,255,.03), transparent);
  border: 1px solid rgba(255,255,255,.10);
  height: 100%;
  overflow: hidden;          
}

.card::before{
  content:"";
  position:absolute; inset:-1px;
  border-radius:16px;
  padding:1px;
  background: conic-gradient(from 180deg, rgba(230,137,0,.55), transparent 60%);
  -webkit-mask:linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite:xor; mask-composite:exclude;
  opacity:.22; pointer-events:none;
}

.card_heading {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 6px;
}

.card_icon {
  width: 60px;
  height: 60px;
  object-fit: contain;
  max-width: 100%;
}

.card-link {
  display: block;             
  text-decoration: none;
  color: #fff;
}

@media (max-width: 420px) {
  .cards-row { gap: 16px; }
  .card_icon { width: 64px; height: 64px; }
}

/* MD and larger: stacked remains full-width (no horizontal scroll) */
@media (min-width: 992px) {
  .cards-row {
    display: flex;
    flex-wrap: nowrap;
    gap: 20px;
  }
  .cards-row > .card { flex: 1 1 0; min-width: 0; }
}

@media (max-width: 700px) {
  .card { padding: 12px; overflow: visible; height: auto; }
  .card_heading { gap: 8px; }
  .card_icon { width: 50px; height: 50px; }
  .card p, .card-link { font-size: 1rem; line-height: 1.5; }
}

/* Footer base */
.footer { background:#424242; color:#fff; }
.footer a { color:#fff; text-decoration:none; }

/* Centered container + padding */
.footer-inner { max-width:1200px; margin:0 auto; padding:48px 34px 20px; }

/* Grid layout */
.footer-links {
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:32px 40px;
  align-items:start;
}

/* Responsive breakpoints */
@media (max-width: 1024px) {
  .footer-links { grid-template-columns:repeat(2, minmax(0,1fr)); }
}

/* Columns */
.footer-title {
  margin:0 0 16px;
  font-size:1.5rem;
  line-height:1.2;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.04em;
  color:#fff;
}

/* Lists */
.footer-list { list-style:none; padding:0; margin:0; }
.footer-list li { margin:10px 0; }
.footer-list a {
  font-size:1.25rem;
  font-weight:600;
  transition:color .2s, transform .2s;
}
.footer-list a:hover { color:#b6b6b6; transform:translateY(-1px); }

/* Icon button */
.footer-icons { list-style:none; padding:0; margin:0; display:flex; align-items:center; gap:12px; }
.icon-btn {
  display:inline-flex; align-items:center; justify-content:center;
  width:40px; height:40px; border-radius:9999px;
  background:#626262; transition:background .2s, transform .2s;
}
.icon-btn:hover { background:#b6b6b6; transform:translateY(-1px); }
.icon-btn img { width:22px; height:22px; display:block; }

/* Divider + copyright */
.footer-bottom {
  margin-top:40px; padding-top:20px;
  display:flex; justify-content:center; align-items:center; text-align:center;
  border-top:1px solid rgba(255,255,255,.15);
}
.footer-bottom p { margin:0; font-size:1.25rem; }


@media (min-width: 992px) { 
  .hero {
    height: 75vh;
  }
  .hero h1, .hero2 h1 {
    font-size: 2.75rem;
  }
  .section {
    scroll-margin-top: 200px;
  }
}

@media (max-width: 992px) {
  .logo {
    width: 250px;
  }

  .nav-container {
    padding: 0 12px;
  }

  .nav-links {
    flex-direction: column;
    position: static;
    transform: none;
    gap: 20px;
    margin-top: 20px;
  }

  .nav-links {
    display: none;
  }

  .menu-icon {
    display: block;
  }

  .nav-right {
    flex-direction: column;
    align-items: flex-end;
  }

  .nav-right .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
  }
}

.slideshow-wrap {
  position: relative;
  overflow: visible;  
}

.slideshow-container {
  position: relative;
  overflow: hidden;
}

.features-list {
  display: flex;
  transition: transform 0.5s ease;
}

.feature-slide {
  display: none;
  width: 100%;
}

.feature-slide.active {
  display: block;
}

.feature-content {
  display: flex;
  align-items: center;
  gap: 20px;
}

.feature-text {
  flex: 1;
}

.feature-content h3 {
  margin-bottom: 1rem;
  color: #e68900;
  position: relative;
  padding-left: 16px;
}

.feature-content h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 6px;
  height: 80%;
  background-color: #e68900;
  border-radius: 3px;
}

.feature-image {
  flex: 1;
  text-align: right;
}

.feature-image img {
  max-width: 100%;
  border-radius: 10px;
}

.nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  font-size: 30px;
  color: #e68900;                       
  background: rgba(30, 30, 30, 0.85);   
  border: none;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
  cursor: pointer;
  user-select: none;
  z-index: 2;
}

.nav-arrow.left {  left: -48px; }  
.nav-arrow.right { right: -48px; } 
.nav-arrow:hover { transform: translateY(-50%) scale(1.1); }

.slideshow-dots {
  display: flex;
  justify-content: center;
  gap: 5px;
  margin-top: 10px;
}

.slideshow-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15); 
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.slideshow-dots .dot.active {
  background: #e68900;
  transform: scale(1.2);
}

@media (max-width: 900px) {
  .feature-content {
    flex-direction: column;   
    align-items: flex-start; 
  }

  .feature-text,
  .feature-image {
    flex: none;
    width: 100%;
  }

  .feature-image {
    text-align: left;      
  }

  .feature-image img {
    width: 100%;        
    height: auto;
  }
  .nav-arrow.left  { left: -40px;  background: rgba(0,0,0,0.25); border-radius: 999px; }
  .nav-arrow.right { right: -40px; background: rgba(0,0,0,0.25); border-radius: 999px; }
}

@media (max-width: 520px) {
  .logo {
    width: 180px;
  }

  .nav-right .btn,
  .glass-menu .btn {
    padding: 8px 20px;
    font-size: 1rem;
    text-align: center;
  }
}
