/* ==========================================================================
   GLOBAL & NAVBAR STYLES
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #0f172a; /* Dark Blue Theme */
    color: #ffffff;
}

/* Scroll Hide/Show Navbar Base styling */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 50px;
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.4s ease, background 0.3s ease;
}

/* जब नीचे स्क्रॉल करेंगे तो नेवबार ऊपर छुप जाएगा */
.navbar.nav-hidden {
    transform: translateY(-100%);
}

/* जब ऊपर स्क्रॉल करेंगे तो वापस दिखेगा */
.navbar.nav-visible {
    transform: translateY(0);
    background: rgba(10, 17, 32, 0.98);
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #38bdf8; /* Light Sky Blue */
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    color: #f1f5f9;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #38bdf8;
}

.account-btn {
    background: #38bdf8;
    color: #0f172a;
    border: none;
    padding: 10px 22px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.account-btn:hover {
    background: #0ea5e9;
    transform: scale(1.05);
}

/* ==========================================================================
   3-LINES HAMBURGER MENU (MOBILE)
   ========================================================================== */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.menu-toggle .bar {
    width: 28px;
    height: 3px;
    background-color: #f1f5f9;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ==========================================================================
   MODAL & FORM CSS (Glassmorphism Effect)
   ========================================================================== */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    backdrop-filter: blur(6px);
}

.modal-content {
    background: rgba(30, 41, 59, 0.65); /* Glass Effect */
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    padding: 40px;
    border-radius: 16px;
    width: 100%;
    max-width: 420px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    text-align: center;
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    color: #94a3b8;
    cursor: pointer;
    transition: color 0.3s;
}

.close-btn:hover {
    color: #ef4444; /* Red color on hover */
}

#formTitle {
    margin-bottom: 25px;
    font-size: 26px;
    color: #f8fafc;
}

form input {
    width: 100%;
    padding: 12px 16px;
    margin-bottom: 18px;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #fff;
    font-size: 15px;
    outline: none;
    transition: border-color 0.3s;
}

form input:focus {
    border-color: #38bdf8;
}

.submit-btn {
    width: 100%;
    padding: 12px;
    background: #38bdf8;
    border: none;
    color: #0f172a;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-btn:hover {
    background: #0ea5e9;
}

form p {
    margin-top: 20px;
    font-size: 14px;
    color: #94a3b8;
}

.switch-link {
    color: #38bdf8;
    cursor: pointer;
    text-decoration: underline;
}

/* ==========================================================================
   MEDIA QUERIES (MOBILE RESPONSIVE)
   ========================================================================== */
@media (max-width: 768px) {
    .navbar {
        padding: 0 25px;
    }

    .menu-toggle {
        display: flex; /* मोबाइल में 3 लाइन्स दिखेंगी */
    }

    /* मोबाइल मेनू जो साइड/ऊपर से स्लाइड होगा */
    .nav-links {
        position: absolute;
        top: 70px;
        left: -100%; /* छुपा हुआ रहेगा */
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(15, 23, 42, 0.98);
        flex-direction: column;
        justify-content: center;
        gap: 35px;
        transition: left 0.4s ease;
    }

    /* जब हैमबर्गर एक्टिव होगा तो लिंक्स स्क्रीन पर आ जाएंगे */
    .nav-links.active {
        left: 0;
    }

    .nav-links a {
        font-size: 20px;
    }

    /* 3-Lines को 'X' क्लोज बटन में बदलने का एनीमेशन */
    .menu-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}
/* [UPDATED] CLOSE BUTTON LOGIC */
/* बिना लॉग-इन के यूजर क्लोज बटन न देख पाए, इसके लिए जेएस से 'hide-close' क्लास मैनेज होगी */
.close-btn{
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 28px;
  cursor: pointer;
  color: #ef4444;
}
.close-btn.hide-close {
  display: none;
}

.switch-text{
  margin-top: 15px;
  font-size: 14px;
  color: #64748b;
}

.switch-text a{
  color: #0ea5e9;
  text-decoration: none;
  font-weight: bold;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero{
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-top: -70px; /* बॉडी पैडिंग को बैलेंस करने के लिए */
}

.bg-video{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero::before{
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  top: 0;
  left: 0;
  z-index: -1;
}

.hero-content{
  position: relative;
  z-index: 2;
  color: white;
  padding: 20px;
  max-width: 800px;
}

.hero-content h1{
  font-size: 65px;
  margin-bottom: 20px;
  font-weight: bold;
}

.hero-content p{
  font-size: 22px;
  line-height: 1.7;
  margin-bottom: 35px;
}

.hero-buttons{
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.book-btn, .learn-btn{
  padding: 15px 35px;
  border: none;
  border-radius: 10px;
  font-size: 18px;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s;
}

.book-btn{
  background: #38bdf8;
  color: black;
}

.book-btn:hover{
  background: white;
}

.learn-btn{
  background: transparent;
  border: 2px solid white;
  color: white;
}

.learn-btn:hover{
  background: white;
  color: black;
}

/* ==========================================================================
   FEATURES SECTION
   ========================================================================== */
.features-section{
  padding: 100px 8%;
  background: #ffffff;
}

.section-title{
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2{
  font-size: 45px;
  color: #0f172a;
  margin-bottom: 15px;
}

.section-title p{
  color: #64748b;
  font-size: 18px;
}

.features-container{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.feature-card{
  background: white;
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.feature-card:hover{
  transform: translateY(-10px);
}

.feature-card img{
  width: 90px;
  margin-bottom: 25px;
}

.feature-card h3{
  font-size: 28px;
  margin-bottom: 15px;
}

.feature-card p{
  color: #64748b;
  line-height: 1.7;
}

/* ==========================================================================
   VIDEO EMBED SECTION
   ========================================================================== */
.video-section{
  padding: 100px 8%;
  background: #0f172a;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 50px;
  align-items: center;
}

.video-content h2{
  font-size: 50px;
  color: white;
  margin-bottom: 20px;
}

.video-content p{
  color: #cbd5e1;
  line-height: 1.8;
  font-size: 18px;
}

.video-box video{
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

/* ==========================================================================
   IMAGE GALLERY SECTION
   ========================================================================== */
.gallery-section{
  padding: 100px 8%;
  background: #f8fafc;
}

.gallery-container{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.gallery-container img{
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 20px;
  transition: 0.3s;
}

.gallery-container img:hover{
  transform: scale(1.05);
}

/* ==========================================================================
   AI SMART PARKING SYSTEM SECTION
   ========================================================================== */
.smart-parking-section{
  width: 100%;
  min-height: 100vh;
  background: #0f172a;
  padding: 100px 8%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 60px;
  align-items: center;
}

.smart-left{
  color: white;
}

.live-badge{
  background: #22c55e;
  color: white;
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: bold;
  display: inline-block;
  margin-bottom: 25px;
  animation: pulse 1.5s infinite;
}

@keyframes pulse{
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.smart-left h2{
  font-size: 60px;
  margin-bottom: 25px;
  line-height: 1.2;
}

.smart-left p{
  color: #cbd5e1;
  line-height: 1.8;
  font-size: 18px;
  margin-bottom: 35px;
}

.live-status{
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.status-box{
  background: rgba(255,255,255,0.08);
  padding: 20px;
  border-radius: 20px;
  min-width: 160px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
}

.status-dot{
  width: 15px;
  height: 15px;
  border-radius: 50%;
  display: inline-block;
  margin-bottom: 10px;
}

.green{ background: #22c55e; }
.red{ background: #ef4444; }
.yellow{ background: #facc15; }

.status-box h3{
  margin-bottom: 8px;
  font-size: 22px;
}

.smart-buttons{
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.smart-btn, .video-btn{
  padding: 16px 30px;
  border: none;
  border-radius: 12px;
  font-size: 17px;
  cursor: pointer;
  transition: 0.3s;
  font-weight: bold;
}

.smart-btn{
  background: #38bdf8;
  color: black;
}

.video-btn{
  background: transparent;
  border: 2px solid white;
  color: white;
}

.smart-btn:hover, .video-btn:hover{
  transform: translateY(-5px);
}

.smart-right{
  position: relative;
}

.main-img{
  width: 100%;
  border-radius: 30px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.floating-card{
  position: absolute;
  bottom: 30px;
  left: -20px;
  background: white;
  padding: 20px 25px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.floating-card h3{
  color: #0f172a;
  margin-bottom: 10px;
}

.floating-card p{
  color: #64748b;
}

/* ==========================================================================
   ABOUT ONLINE PARKING SYSTEM 
   ========================================================================== */
.about-system {
  padding: 80px 8%;
  background: linear-gradient(135deg, #e3f2fd, #f9fbff);
  color: #1a1a1a;
  text-align: center;
  animation: fadeUp 1.2s ease-in-out;
}

.about-system h2 {
  font-size: 38px;
  margin-bottom: 20px;
  color: #0d47a1;
  position: relative;
  display: inline-block;
}

.about-system h2::after {
  content: "";
  width: 90px;
  height: 4px;
  background: linear-gradient(to right, #2196f3, #00bcd4);
  display: block;
  margin: 12px auto 0;
  border-radius: 10px;
}

.about-text {
  max-width: 850px;
  margin: 25px auto 60px;
  font-size: 18px;
  line-height: 1.9;
  color: #37474f;
}

.about-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.about-box {
  background: #ffffff;
  padding: 40px 25px;
  border-radius: 18px;
  transition: all 0.4s ease;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  border-top: 5px solid #2196f3;
  text-align: center;
}

.about-box:nth-child(2) { border-top-color: #00bcd4; }
.about-box:nth-child(3) { border-top-color: #3f51b5; }

.about-box h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #0d47a1;
}

.about-box p {
  font-size: 16px;
  line-height: 1.7;
  color: #455a64;
}

.about-box:hover {
  transform: translateY(-12px);
  box-shadow: 0 18px 40px rgba(33, 150, 243, 0.3);
}

/* ========================= */
/* LIVE REVIEWS SECTION */
/* ========================= */

.live-reviews-section{
    width:100%;
    min-height:100vh;
    background:#0d0d0d;
    padding:80px 7%;
    color:white;
    overflow:hidden;
}

/* HEADER */

.reviews-header{
    text-align:center;
    margin-bottom:60px;
    animation:fadeTop 1s ease;
}

.reviews-header h2{
    font-size:45px;
    margin-bottom:15px;
    background:linear-gradient(90deg,#ffffff,#7f7f7f);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.reviews-header p{
    color:#c9c9c9;
    max-width:700px;
    margin:auto;
    line-height:1.7;
}

/* WRAPPER */

.reviews-wrapper{
    display:grid;
    grid-template-columns:400px 1fr;
    gap:35px;
}

/* FORM CARD */

.review-form-card{
    position:relative;
    background:#161616;
    border:1px solid rgba(255,255,255,0.08);
    padding:35px;
    border-radius:25px;
    overflow:hidden;
    box-shadow:0 0 30px rgba(0,0,0,0.5);
    animation:slideLeft 1s ease;
}

.glow-circle{
    position:absolute;
    width:250px;
    height:250px;
    background:rgba(255,255,255,0.06);
    border-radius:50%;
    top:-100px;
    right:-100px;
    filter:blur(40px);
}

.review-form-card h3{
    font-size:28px;
    margin-bottom:25px;
}

/* INPUTS */

.review-input-group{
    margin-top:20px;
}

.review-input-group input,
.review-input-group textarea{
    width:100%;
    background:#0f0f0f;
    border:1px solid rgba(255,255,255,0.08);
    border-radius:15px;
    padding:15px 18px;
    color:white;
    outline:none;
    transition:0.4s;
    font-size:15px;
}

.review-input-group input:focus,
.review-input-group textarea:focus{
    border-color:#ffffff;
    box-shadow:0 0 15px rgba(255,255,255,0.2);
}

/* STAR */

.rating-input-container{
    margin-top:10px;
}

.rating-input-container label{
    display:block;
    margin-bottom:15px;
    color:#d0d0d0;
}

.star-rating-selector{
    display:flex;
    gap:10px;
}

.star-opt{
    font-size:28px;
    cursor:pointer;
    color:#555;
    transition:0.3s;
}

.star-opt.active{
    color:#ffd700;
    transform:scale(1.2);
    text-shadow:0 0 15px #ffd700;
}

/* BUTTON */

.submit-review-btn{
    margin-top:25px;
    width:100%;
    padding:15px;
    border:none;
    border-radius:15px;
    background:white;
    color:black;
    font-size:17px;
    font-weight:700;
    cursor:pointer;
    transition:0.4s;
}

.submit-review-btn:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 25px rgba(255,255,255,0.25);
}

/* REVIEWS */

.reviews-feed-container{
    display:flex;
    flex-direction:column;
    gap:25px;
}

/* REVIEW CARD */

.review-card{
    background:#171717;
    border:1px solid rgba(255,255,255,0.07);
    padding:25px;
    border-radius:22px;
    position:relative;
    overflow:hidden;
    animation:reviewPop 0.7s ease;
    transition:0.4s;
}

.review-card:hover{
    transform:translateY(-8px);
    box-shadow:0 10px 30px rgba(255,255,255,0.08);
}

.review-card::before{
    content:'';
    position:absolute;
    width:180px;
    height:180px;
    background:rgba(255,255,255,0.04);
    border-radius:50%;
    top:-70px;
    right:-70px;
}

/* REVIEW TOP */

.review-top{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:15px;
}

.user-info{
    display:flex;
    align-items:center;
    gap:15px;
}

.user-avatar{
    width:55px;
    height:55px;
    border-radius:50%;
    background:white;
    color:black;
    font-weight:bold;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
    animation:pulse 2s infinite;
}

.user-name{
    font-size:19px;
    font-weight:700;
}

/* REVIEW TEXT */

.review-comment{
    color:#d6d6d6;
    line-height:1.7;
    margin-top:12px;
}

/* RATING STARS */

.review-stars{
    color:#ffd700;
    margin-top:10px;
}

/* DATE */

.review-date{
    color:#9d9d9d;
    font-size:13px;
}

/* ANIMATION */

@keyframes fadeTop{
    from{
        opacity:0;
        transform:translateY(-50px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

@keyframes slideLeft{
    from{
        opacity:0;
        transform:translateX(-80px);
    }
    to{
        opacity:1;
        transform:translateX(0);
    }
}

@keyframes reviewPop{
    from{
        opacity:0;
        transform:scale(0.8) translateY(40px);
    }
    to{
        opacity:1;
        transform:scale(1) translateY(0);
    }
}

@keyframes pulse{
    0%{
        box-shadow:0 0 0 0 rgba(255,255,255,0.5);
    }
    70%{
        box-shadow:0 0 0 18px rgba(255,255,255,0);
    }
    100%{
        box-shadow:0 0 0 0 rgba(255,255,255,0);
    }
}

/* RESPONSIVE */

@media(max-width:950px){

    .reviews-wrapper{
        grid-template-columns:1fr;
    }

    .reviews-header h2{
        font-size:34px;
    }

}

/* ==========================================================================
   HIGH LEVEL MAIN FOOTER 
   ========================================================================== */
.main-footer {
    background: #0b1c2d;
    color: #f8fafc;
    padding: 80px 8% 30px 8%;
    margin-top: 80px;
    width: 100%;
}

.footer-top-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 50px auto;
}

.footer-info-col .footer-brand-logo {
    font-size: 28px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 18px 0;
    letter-spacing: -0.5px;
}

.footer-info-col p {
    color: #94a3b8;
    font-size: 15px;
    line-height: 1.65;
    margin: 0 0 24px 0;
}

.footer-social-links {
    display: flex;
    gap: 12px;
}

.footer-social-links a {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-social-links a:hover {
    background: #1f4ed8;
    color: white;
    transform: translateY(-4px);
}

.footer-links-col h3, .footer-contact-col h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 24px 0;
    position: relative;
    padding-bottom: 10px;
    color: #ffffff;
}

.footer-links-col h3::after, .footer-contact-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 3px;
    background: #1f4ed8;
}

.footer-links-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-col ul li {
    margin-bottom: 14px;
}

.footer-links-col ul li a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.2s ease;
    display: inline-block;
}

.footer-links-col ul li a:hover {
    color: #ffffff;
    transform: translateX(5px);
}

.footer-contact-col p {
    color: #94a3b8;
    font-size: 15px;
    margin: 0 0 16px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-contact-col p i {
    color: #1f4ed8;
    font-size: 16px;
    width: 20px;
}

.footer-bottom-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom-bar p {
    margin: 0;
    font-size: 14px;
    color: #64748b;
}

.developer-credit p {   
    color: #64748b;
}

.developer-credit p span {
    color: #ffffff;
    font-weight: 600;
}

/* ==========================================================================
   MEDIA QUERIES & RESPONSIVE DESIGN
   ========================================================================== */
@media(max-width: 992px) {
  .navbar { padding: 15px 20px; }
  .hero-content { width: 80%; padding: 25px; }
  .hero h1 { font-size: 40px; }
  .footer-top-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media(max-width: 912px) {
  .reviews-wrapper { grid-template-columns: 1fr; }
  .reviews-feed-container { max-height: none; }
}

@media(max-width: 768px) {
  .navbar { flex-direction: column; gap: 15px; padding: 15px; }
  .nav-links { flex-wrap: wrap; justify-content: center; gap: 15px; }
  .hero { height: 90vh; }
  .hero-content { width: 92%; padding: 20px; }
  .hero-content h1 { font-size: 38px; }
  .hero-content p { font-size: 17px; }
  .book-btn, .learn-btn { width: 100%; max-width: 250px; font-size: 16px; }
  .smart-left h2 { font-size: 38px; }
  .live-status { flex-direction: column; }
  .section-title h2, .video-content h2, .about-system h2 { font-size: 32px; }
  .about-text { font-size: 16px; }
}

@media (max-width: 560px) {
  .footer-top-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom-bar { flex-direction: column; text-align: center; gap: 12px; }
}

@media(max-width: 480px) {
  .hero h1 { font-size: 26px; }
  .hero p { font-size: 14px; }
}

/* ANIMATIONS */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

/* =========================
   LIVE REVIEWS SECTION
========================= */

.auto-review-section{
    width: 100%;
    padding: 100px 8%;
    background: #071426;
    overflow: hidden;
}

.review-heading{
    text-align: center;
    margin-bottom: 60px;
}

.review-heading span{
    color: #38bdf8;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 2px;
}

.review-heading h2{
    font-size: 50px;
    color: white;
    margin-top: 15px;
    margin-bottom: 15px;
}

.review-heading p{
    color: #94a3b8;
    font-size: 18px;
}

.review-main-box{
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 40px;
    align-items: start;
}

/* FORM */

.review-form-box{
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 35px;
    border-radius: 24px;
    backdrop-filter: blur(12px);
}

.review-form-box h3{
    color: white;
    font-size: 30px;
    margin-bottom: 25px;
}

.review-form-box input,
.review-form-box textarea{
    width: 100%;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 16px;
    border-radius: 12px;
    margin-bottom: 20px;
    color: white;
    font-size: 15px;
    outline: none;
}

.review-form-box textarea{
    height: 140px;
    resize: none;
}

.review-form-box button{
    width: 100%;
    padding: 15px;
    background: #38bdf8;
    border: none;
    border-radius: 12px;
    color: black;
    font-size: 17px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.review-form-box button:hover{
    background: white;
}

/* LIVE REVIEWS */

.review-live-box{
    height: 520px;
    overflow: hidden;
    position: relative;
}

.review-scroll{
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* REVIEW CARD */

.live-review-card{
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;
    padding: 25px;
    backdrop-filter: blur(12px);
}

.review-top{
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.review-top img{
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #38bdf8;
}

.review-user-info h4{
    color: white;
    font-size: 20px;
    margin-bottom: 5px;
}

.review-user-info span{
    color: #94a3b8;
    font-size: 13px;
}

.live-review-card p{
    color: #cbd5e1;
    line-height: 1.8;
    font-size: 15px;
}

/* MOBILE */

@media(max-width:900px){

    .review-main-box{
        grid-template-columns: 1fr;
    }

    .review-heading h2{
        font-size: 35px;
    }

}
