@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap');

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

body {
    padding-top: 80px;
    background: #191919;
    color: white;
    padding-left: 5%;  
    padding-right: 5%; 
}

.imghero{
  height: 100%;
  width: 100%;
  background-size: cover;
  position: absolute;
  opacity: 2%;
}

a{
    font-size: 16px;
    font-weight: 500;
    color: #edf0f1;
    text-decoration: none;
}

/* Navbar Start */
header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #191919;
    z-index: 1000; 
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.lg{
    cursor: pointer;
    font-size: 24px;
    font-weight: 700;
}

.pop {
    color: #f9e368;
}

.together {
    color: #EF3E3A;
}

.nav_links{
    list-style: none;
}

.nav_links li{
    display: inline-block;
    padding: 0px 20px;
}

.nav_links li a{
    transition: all 0.3s ease 0s;
}

.nav_links li a.active {
  position: relative;
  color: #fff;
}

.nav_links li a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 2px;
  background-color: #EF3E3A;
  border-radius: 2px;
}

.nav_links li a:hover{
    color: #EF3E3A;
    text-shadow: 0 6px 15px rgba(239, 62, 58, 0.6);
}

button{
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    padding: 9px 25px;
    background: linear-gradient(90deg, #EF3E3A, #A65396);
    border-radius: 5px;
    border: none;
    transition: all 0.3s ease 0s;
    cursor: pointer;
}

button:hover{
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(239, 62, 58, 0.6);
}

/* Mobile menu toggle (hidden by default) */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #fff;
    border-radius: 3px;
    transition: 0.3s;
}
/* Navbar End*/

/* Hero-Section Start*/
.hero {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 40px;
    min-height: 90vh;
    color: white;
}

.hero-Video{
    flex: 1;
}

.hero-Video video{
    width: 100%;
    height: auto;
    border-radius: 5px;
    box-shadow: 0 5px 20px rgba(0,0,0,2);
}

.hero-Text{
    flex: 1;
    text-align: left;
}

.hero-Text h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-Text h1 span{
    color: #EF3E3A;
}

.btn-primary {
    display: inline-block;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 5px;
    text-decoration: none;
    color: white;
    background: linear-gradient(90deg, #EF3E3A, #A65396);
    transition: all 0.3s ease 0s;
}

.btn-primary:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 15px rgba(239, 62, 58, 0.6);
}

/* Feature Section */
.feature{
    padding-bottom: 80px;
    padding-top: 80px;
}

.feature-container {
  display: flex;
  justify-content: space-around;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.feature-card {
  margin-bottom: 50px;  
  background: #222;
  flex: 0 0 250px;
  min-height: 250px;
  height: 320px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.3);
  text-align: center;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;   
  align-items: center;
  padding: 20px;
  overflow: hidden;
  position: relative;
}

.feature-card:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0,0,0,0.6);
}

.feature-card i {
  font-size: 60px;
  color: #f9c74f;
  margin-bottom: 15px;
  transition: transform 0.7s ease;
}

.feature-card h2 {
  font-size: 22px;
  font-weight: 600;
  margin: 0;
  color: #fff;
  transition: transform 0.7s ease;
}

.feature-card p {
  font-size: 15px;
  color: #ccc;
  line-height: 1.5;
  opacity: 0;
  max-height: 0;       
  overflow: hidden;
  transition: all 0.7s ease;
}

.feature-card:hover i,
.feature-card:hover h2 {
  transform: translateY(-20px);
}

.feature-card:hover p {
  opacity: 1;
  max-height: 200px;
  margin-top: 10px;    
}

/* How It Works */
.how-it-works{
    padding-bottom: 80px;
    padding-top: 80px;
}

.steps-container {
  display: flex;
  justify-content: space-around;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.step-card {
  background: #222;
  width: 220px;
  height: 220px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.3);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: all 0.4s ease;
}

.step-card:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0,0,0,0.6);
}

.step-card i {
  font-size: 50px;
  color: #f9c74f;
  margin-bottom: 15px;
}

.step-card h2 {
  font-size: 18px;
  color: #fff;
  text-align: center;
}

/* Footer */
.footer {
    padding-top: 80px;
  background: #111;
  color: #aaa;
  padding: 60px 0 30px;
  margin-left: -5%;
  margin-right: -5%;
  width: calc(100% + 10%);
}

.footer-container {
    padding-left: 5%;  
    padding-right: 5%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-left h2 {
  font-size: 24px;
  margin-bottom: 10px;
}

.footer-left p {
  font-size: 14px;
  color: #ccc;
}

.footer-middle h3,
.footer-right h3 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #fff;
}

.footer-middle ul {
  list-style: none;
  padding: 0;
}

.footer-middle ul li {
  margin: 8px 0;
}

.footer-middle ul li a {
  color: #aaa;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-middle ul li a:hover {
  color: #EF3E3A;
}

.footer-right .socials a {
  margin-right: 15px;
  color: #aaa;
  font-size: 20px;
  transition: color 0.3s;
}

.footer-right .socials a:hover {
  color: #f9c74f;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 14px;
  color: #666;
}

.footer-middle,
.footer-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-right .socials {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 10px;
}

/* ========== RESPONSIVE MEDIA QUERIES ========== */

/* Tablet and below (992px) */
@media screen and (max-width: 992px) {
    .hero {
        flex-direction: column;
        gap: 30px;
        min-height: auto;
        padding: 40px 0;
    }
    
    .hero-Text h1 {
        font-size: 2.5rem;
    }
    
    .nav_links li {
        padding: 0px 10px;
    }
    
    .nav_links li a {
        font-size: 14px;
    }
}

/* Mobile (768px and below) */
@media screen and (max-width: 768px) {
    body {
        padding-top: 70px;
        padding-left: 3%;
        padding-right: 3%;
    }
    
    /* Navbar mobile */
    header {
        padding: 12px 3%;
    }
    
    .lg {
        font-size: 20px;
    }
    
    nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: #191919;
        transition: left 0.3s ease;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    nav.active {
        left: 0;
    }
    
    .nav_links {
        flex-direction: column;
        padding: 20px 0;
        height: 100%;
    }
    
    .nav_links li {
        display: block;
        padding: 15px 20px;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav_links li a {
        font-size: 18px;
        display: block;
        width: 100%;
    }
    
    .cta {
        position: fixed;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 1001;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    /* Hero Section Mobile */
    .hero {
        flex-direction: column-reverse;
        gap: 25px;
        padding: 30px 0;
        min-height: auto;
    }
    
    .hero-Text {
        text-align: center;
    }
    
    .hero-Text h1 {
        font-size: 2rem;
    }
    
    .hero-Text p {
        font-size: 14px;
    }
    
    .hero-Text br {
        display: none;
    }
    
    .btn-primary {
        font-size: 14px;
        padding: 10px 25px;
    }
    
    /* Footer Mobile */
    .footer-container {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .footer-left,
    .footer-middle,
    .footer-right {
        align-items: center;
    }
}

/* Small Mobile (480px and below) */
@media screen and (max-width: 480px) {
    .hero-Text h1 {
        font-size: 1.75rem;
    }
    
    .lg {
        font-size: 18px;
    }
    
    button {
        font-size: 14px;
        padding: 8px 20px;
    }
    
    .feature h1,
    .how-it-works h1 {
        font-size: 1.8rem;
    }
    
    .feature-card,
    .step-card {
        width: 100%;
        max-width: 300px;
    }
}