:root {
  --primary:#facc15;
  --secondary:#fbbf24;
  --dark:#111827;
  --light:#ffffff;
  --muted:#4b5563;
}

*{box-sizing:border-box;margin:0;padding:0}

body{
  font-family:'Segoe UI',Roboto,Inter,Arial,sans-serif;
  background:var(--light);
  color:var(--dark);
  line-height:1.6;
  padding-bottom:80px;
}

/* NAVBAR MAIN STYLE */
.navbar {
  width: 100%;
  background: #ffffff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  padding: 7px ;
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* CONTAINER */
.nav-container {
  width: 90%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO + TITLE SECTION */
.logo-box {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo {
  width: 200px;
  height: 50px;
  margin-top: 0px; /* top margin for logo */
}

/* TITLE */
.logo-box h1 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #222;
  margin: 0;
  letter-spacing: 1px;
}

/* NAV LINKS */
.nav-links a {
  margin-left: 24px;
  text-decoration: none;
  font-size: 1.05rem;
  color: black;
  font-weight: 500;
  transition: 0.3s ease;
}

.nav-links a:hover {
  color: grey;
  transform: translateY(-2px);
}

/* RESPONSIVE */
@media(max-width: 768px) {
  .nav-container {
    flex-direction: column;
    gap: 10px;
  }

  .nav-links a {
    margin-left: 0;
    margin-right: 15px;
  }
}


/* HERO SECTION */
.hero {
  height: 75vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px;
  position: relative;
  overflow: hidden;
  color: white;
}

/* MOVING BACKGROUND */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, #000, #222, #facc15, #000);
  background-size: 300% 300%;
  animation: heroBG 10s infinite ease-in-out;
  z-index: -1;
}

@keyframes heroBG {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* LEFT VEHICLE IMAGE */
.hero-left {
  flex: 1;
  display: flex;
  justify-content: center;
}

.hero-img {
  width: 700px;
  animation: floatImg 4s ease-in-out infinite;
}

@keyframes floatImg {
  0% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
  100% { transform: translateY(0); }
}

/* TEXT CONTENT */
.hero-content {
  flex: 1.2;
  padding-left: 40px;
}

.hero-content h2 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.3;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.7),
               0 0 18px rgba(255, 225, 0, 0.8);
  animation: fadeIn 1.5s ease forwards;
}

.hero-tagline {
  margin-top: 10px;
  font-size: 20px;
  opacity: 0.9;
}

.hero-btn {
  margin-top: 25px;
  display: inline-block;
  background: #facc15;
  color: #000;
  padding: 12px 24px;
  font-size: 18px;
  font-weight: 700;
  border-radius: 10px;
  text-decoration: none;
  transition: 0.3s;
}

.hero-btn:hover {
  background: white;
  color: black;
  box-shadow: 0 0 15px rgba(250, 204, 21, 0.9);
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 30px;
  }

  .hero-content {
    padding-left: 0;
    margin-top: 20px;
  }

  .hero-img {
    width: 280px;
  }

  .hero-content h2 {
    font-size: 34px;
  }

  .hero-btn {
    font-size: 16px;
    padding: 10px 20px;
  }
}

.section{
  padding:70px 28px;
  max-width:1200px;
  margin:auto;
}

.section h2{
  font-size:32px;
  text-align:center;
  margin-bottom:24px;
}

/* PARTNERS SECTION */
.partners-section {
    text-align: center;
    padding: 80px 20px;
    background: #f8f9fa;
}

.partners-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 40px;
    color: #111;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* PARTNERS WRAPPER */
.partners {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

/* PARTNER CARD */
.partner-card {
    width: 250px;
    height: 160px;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    border-radius: 18px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: 0.4s ease;
    animation: fadeUp 1s ease-out forwards;
    opacity: 0;
}

/* LOGO IMAGE */
.partner-card img {
    width: 60%;
    transition: 0.4s ease;
}

/* HOVER EFFECTS */
.partner-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
    border-color: #facc15;
}

.partner-card:hover img {
    transform: scale(1.1);
}

/* ENTRY ANIMATION */
@keyframes fadeUp {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* RESPONSIVE */
@media (max-width: 600px) {
    .partner-card {
        width: 200px;
        height: 140px;
    }
}


.lead{
  text-align:center;
  font-size:18px;
  color:var(--muted);
  max-width:800px;
  margin:0 auto 30px;
}

.products{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:28px;
}

.card{
  background:white;
  padding:24px;
  border-radius:14px;
  border:2px solid var(--primary);
  box-shadow:0 6px 20px rgba(0,0,0,0.08);
  text-align:center;
  transition:0.3s;
}

.card img{
  width:100%;
  height:200px;
  object-fit:cover;
  border-radius:10px;
}

.features{
  display:flex;
  justify-content:center;
  gap:10px;
  flex-wrap:wrap;
  margin-bottom:12px;
}

.features span{
  background:#fef9c3;
  padding:6px 10px;
  border-radius:8px;
  font-size:14px;
}

.price{
  background:linear-gradient(90deg,#facc15,#fbbf24);
  padding:8px 16px;
  border-radius:8px;
  font-weight:bold;
}

.buy-btn,.whatsapp-btn{
  display:inline-block;
  margin-top:10px;
  padding:10px 18px;
  border-radius:8px;
  font-weight:bold;
  text-decoration:none;
}

.buy-btn{
  background:var(--dark);
  color:var(--primary);
}

.whatsapp-btn{
  background:#25D366;
  color:white;
}

.whatsapp-float{
  position:fixed;
  width:60px;height:60px;
  bottom:180px;right:20px;
  background:#25D366;
  color:white;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:32px;
  border-radius:50%;
  box-shadow:0 4px 10px rgba(0,0,0,0.3);
  z-index:2000;
}


.contact-section {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    padding: 50px;
    flex-wrap: wrap;
    background: #f2f2f2;
}

/* LEFT FORM */
.contact-left {
    background: #ffffff;
    padding: 35px;
    width: 500px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.contact-left label {
    display: block;
    font-size: 16px;
    margin-bottom: 8px;
    font-weight: 600;
    color: #222;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.input-group {
    display: flex;
    align-items: center;
    background: #f7f7f7;
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid #ddd;
}

.icon {
    margin-right: 12px;
    font-size: 18px;
    opacity: 0.7;
}

.input-group input,
.input-group textarea {
    width: 100%;
    border: none;
    background: transparent;
    outline: none;
    font-size: 16px;
}

.textarea-group textarea {
    height: 140px;
    resize: none;
}

/* BUTTON */
.contact-btn {
    padding: 16px;
    background: #0d0d0d;
    color: #facc15;
    font-size: 18px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    margin-top: 10px;
    transition: 0.3s;
    box-shadow: white 5px 2px 30px;
}

.contact-btn:hover {
    background: white;
    color: #000;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

/* RIGHT SIDE */
.contact-right {
    display: flex;
    flex-direction: column;
    gap: 25px;
    width: 500px;
}

.map-box {
    width: 100%;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

/* WHATSAPP BUTTON */
.whatsapp-big {
    display: block;
    padding: 9px;
    width: 100%;
    text-align: center;
    background: #25d366;
    color: white;
    font-size: 20px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: 0.3s ease;
    border-color: #000 ;
}

.whatsapp-big:hover {
    background: #18b957;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .contact-left, .contact-right {
        width: 100%;
    }
}
.whatsapp-float {
  position: fixed;
  width: 65px;
  height: 65px;
  bottom: 145px;
  right: 20px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(0,0,0,0.25);
  z-index: 3000;
  cursor: pointer;
  transition: 0.3s ease;
  animation: floatW 3s ease-in-out infinite;
}

.whatsapp-float img {
  width: 35px;
  height: 35px;
}

/* Hover effect */
.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.9);
  background: rgba(255,255,255,0.35);
}

/* Floating animation */
@keyframes floatW {
  0% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0); }
}

/* Map styling */
.map-container {
  margin-top: 30px;
  width: 100%;
  height: 400px;
  border-radius: 12px;
  overflow: hidden;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Testimonials Section */
.testimonials {
  text-align: center;
  padding: 60px 20px;
  background: #f7f7f7;
}

.testimonials-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #222;
}

.testimonials-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
}

.testimonial-card {
  background: #ffffff;
  width: 320px;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
  transition: 0.3s ease;
  border-left: 5px solid #f5b700; /* RYA GOLD */
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.18);
}

.testimonial-text {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 15px;
}

.testimonial-author {
  font-size: 18px;
  color: #000;
  margin-bottom: 10px;
  font-weight: 600;
}

.stars {
  font-size: 20px;
  color: #f5b700; /* Gold Stars */
  letter-spacing: 2px;
}


/* About Section */
.section.about {
  padding: 80px 20px;
  background: #f7f7f7;
}

.about-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 25px;
  color: #222;
}

.about-text {
  font-size: 18px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 25px;
}

.about-text.highlight {
  font-size: 20px;
  font-weight: 600;
  color: #222;
  margin-top: 35px;
}

/* Optional: smooth fade-in animation */
.section.about {
  animation: fadeIn 1.2s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}



@media(max-width:600px){
  .hero h2{font-size:30px}
}

/* Footer Styles */
.footer {
  background: #0d0d0d;
  color: #ffffff;
  padding: 60px 20px 30px;
  font-family: 'Poppins', sans-serif;
}

.footer-container {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
}

.footer h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
  color: yellow; /* Premium EV Green */
  text-shadow: grey 1px 1px;
}

.footer h4 {
  font-size: 18px;
  margin-bottom: 12px;
  color: yellow;
}

.footer p {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.9;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  text-decoration: none;
  color: #ffffff;
  opacity: 0.8;
  transition: 0.3s;
}

.footer-links ul li a:hover {
  color: yellow;
  opacity: 1;
}
/* Footer Social Section */
.footer-social {
  text-align: left;
}

.footer-social h4 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #facc15; /* Yellow */
}

.social-icons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.social-icons .icon {
  text-decoration: none;
  font-size: 16px;
  color: #ffffff;
  opacity: 0.85;
  font-weight: 500;
  width: fit-content;
  transition: 0.3s ease;
  padding: 6px 0;
}

.social-icons .icon:hover {
  color: #facc15;
  opacity: 1;
  
}


.footer-bottom {
  text-align: center;
  border-top: 1px solid #222;
  padding-top: 20px;
  margin-top: 40px;
  font-size: 14px;
  opacity: 0.8;
}


/* PARTNERSEMI SECTION */
.partnersemi {
  padding: 70px 20px;
  background: #fff;
  text-align: center;
}

.partnersemi-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #0d1b3e;
  text-shadow: 0 0 8px rgba(255,215,0,0.5);
}

.partnersemi-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.partnersemi-box {
  width: 500px;
  background:white(88, 85, 38);
  padding: 25px;
  border-radius: 14px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  border-left: 3px solid #facc15;
}

.partnersemi-box h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #000;
}

.partnersemi-logos {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.partnersemi-logos img {
  width: 200px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.2);
  transition: transform 0.3s;
}

.partnersemi-logos img:hover {
  transform: scale(1.07);
}

/* RESPONSIVE */
@media(max-width: 600px) {
  .partnersemi-box {
    width: 100%;
  }
}
#scrollTopBtn {
  position: fixed;
  bottom: 80px;
  right: 25px;
  width: 55px;
  height: 55px;
  background: #facc15;
  color: black;
  font-size: 24px;
  font-weight: bold;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  transition: 0.3s ease;
}

#scrollTopBtn:hover {
  background: black;
  color: #facc15;
  transform: translateY(-5px);
}


/* Hamburger icon hidden on desktop */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 28px;
  height: 4px;
  background: #000;
  border-radius: 4px;
}

/* Mobile menu default hidden */
#mobileMenu {
  display: flex;
  gap: 25px;
}

@media(max-width: 768px) {
  #mobileMenu {
    display: none;
    flex-direction: column;
    background: #fff;
    position: absolute;
    top: 70px;
    right: 0;
    width: 100%;
    padding: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  }

  .hamburger {
    display: flex;
  }

  /* Slide down animation */
  #mobileMenu.active {
    display: flex;
    animation: slideDown 0.3s ease;
  }

  @keyframes slideDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
  }
}


/* CONTACT SECTION HEADER */
.contact-section {
  text-align: center;
  padding: 70px 20px;
  background: #f9fafb;
  
}

.contact-header h2 {
  font-size: 36px;
  font-weight: 800;
  color: #111;
  letter-spacing: 0.5px;
}

.contact-header p {
  max-width: 700px;
  margin: 15px auto 0;
  font-size: 18px;
  color: #555;
  line-height: 1.7;
  font-weight: 400;
}

/* Yellow underline effect */
.contact-header h2 {
  display: inline-block;
  position: relative;
}

.contact-header h2::after {
  content: "";
  width: 70%;
  height: 2px;
  background: #facc15;
  position: absolute;
  left: 50%;
  bottom: -8px;
  transform: translateX(-50%);
  border-radius: 2px;
}

/* ABOUT SECTION WITH BACKGROUND IMAGE */
.section.about {
  padding: 80px 20px;
  background: url("ryamotorsbg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

/* DARK OVERLAY FOR READABILITY */
.section.about::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.85); /* light white overlay */
  backdrop-filter: blur(1px);
}

.about-container {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 25px;
  color: #000;
}

.about-text {
  font-size: 18px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 25px;
}



/* --- Glass Sticky Bar --- */
.sticky-bar {
  position: fixed;
  bottom: 0px;
  left: 0;
  width: 100%;

  display: flex;
  justify-content: space-around;
  padding: 12px 15px;

  backdrop-filter: blur(12px);
  background: rgba(17, 17, 17, 0.55); /* glass black */
  border-top: 1px solid rgba(255, 255, 255, 0.15);

  z-index: 3000;

  transform: translateY(100px); /* hidden initially */
  opacity: 0;
  transition: all 0.6s ease;
}

.sticky-bar a {
  background: rgba(0, 0, 0, 0.75);
  color: #facc15;
  padding: 12px 20px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  backdrop-filter: blur(1px);
  transition: 0.3s ease;
  border: 1px solid whitesmoke;
}

/* Hover Effect */
.sticky-bar a:hover {
  background: #facc15;
  color: #000;
  box-shadow: 0 0 12px rgba(250, 204, 21, 0.8);
}


/* Mobile */
@media (max-width: 600px) {
  .sticky-bar {
    padding: 10px;
    flex-direction: row;
    gap: 10px;
  }

  .sticky-bar a {
    flex: 1;
    text-align: center;
    font-size: 14px;
    padding: 10px;
  }
}

/* CONTACT HEADER */
.contact-header {
  text-align: center;
  padding: 60px 20px 30px;
}

.contact-header h2 {
  font-size: 42px;
  font-weight: 800;
  color: #111;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
}

.contact-header h2::after {
  content: "";
  width: 80px;
  height: 4px;
  background: #facc15;
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

.contact-header p {
  max-width: 750px;
  margin: 25px auto;
  font-size: 18px;
  color: #444;
  line-height: 1.7;
}

/* REACH CARD MAIN WRAPPER */
.reach-card {
    max-width: 1100px;
    margin: 40px auto;
    background: #ffffff;
    padding: 40px 30px;   /* Reduced Padding */
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

/* LEFT SIDE */
.reach-left {
    flex: 1;
    padding-right: 10px; /* reduced */
}

.reach-left h3 {
    font-size: 28px;
    color: #111;
    margin-bottom: 8px;
}

.reach-left h4 {
    font-size: 18px;
    color: #333;
    margin-bottom: 5px;
}

.reach-left h4 span {
    font-size: 14px;
    opacity: 0.7;
}

.reach-left p {
    margin: 10px 0 15px;
    font-size: 15px;
    line-height: 1.6;
    color: #444;
}

.directions-btn {
    display: inline-block;
    padding: 10px 20px;
    background: #facc15;
    color: black;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s ease;
}

.directions-btn:hover {
    background: black;
    color: #facc15;
}

/* RIGHT SIDE BOXES */
.reach-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 18px; /* reduced spacing */
}

/* CONTACT BOX */
.reach-box {
    background: black;
    color: white;
    display: flex;
    align-items: center;
    padding: 12px 15px;  /* Reduced Padding */
    border-radius: 12px;
    gap: 12px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.08);
    transition: 0.3s ease;
    cursor: pointer;
}



.reach-box .icon {
    font-size: 24px;
}

.reach-box h4 {
    font-size: 16px;
    margin-bottom: 3px;
}

.reach-box a {
    color: yellow;
    font-size: 14px;
    text-decoration: none;
}




/* SOCIAL LINKS */
.social-links {
    display: flex;
    gap: 12px;
    margin-top: 5px;
}

.social-links img {
    width: 32px;
    transition: 0.3s;
}

.social-links img:hover {
    transform: scale(1.12);
}

/* Responsive */
@media(max-width: 800px){
    .reach-card {
        padding: 30px 20px; /* further reduced on phones */
    }

    .reach-right {
        margin-top: 20px;
    }
}



/* POPUP BACKDROP */
.sms-popup {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(4px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 3000;
    animation: fadeIn 0.3s ease;
}

/* MAIN CARD */
.sms-card {
    width: 360px;
    padding: 28px;
    border-radius: 18px;
    text-align: center;

    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(18px);

    border: 1px solid rgba(255,255,255,0.25);
    box-shadow: 0 8px 35px rgba(0,0,0,0.35);

    position: relative;
    animation: popIn 0.35s ease;
}

/* LOGO IMAGE */
.sms-card img.sms-image {
    width: 180px;
    margin-bottom: 15px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

/* INPUTS + TEXTAREA */
.sms-card input,
.sms-card textarea {
    width: 100%;
    padding: 12px;
    margin-top: 10px;

    border: 1px solid rgba(255,255,255,0.4);
    border-radius: 10px;

    background: rgba(255,255,255,0.2);
    color: #fff;

    font-size: 15px;
    outline: none;
}

.sms-card input::placeholder,
.sms-card textarea::placeholder {
    color: #e5e5e5;
}

/* SEND BUTTON */
.sms-card button.sms-btn {
    margin-top: 18px;
    width: 100%;
    padding: 12px;

    background: #facc15;
    color: black;

    font-size: 17px;
    font-weight: 700;

    border: none;
    border-radius: 10px;

    cursor: pointer;
    transition: 0.3s ease;
}

.sms-card button.sms-btn:hover {
    background: black;
    color: #facc15;
    box-shadow: 0 0 12px rgba(250, 204, 21, 0.6);
}

/* CLOSE BUTTON (TOP RIGHT) */
.close-btn {
    position: absolute;
    right: 14px;
    top: 12px;

    cursor: pointer;
    font-size: 20px;
    color: white;

    background: rgba(0,0,0,0.4);
    padding: 5px 10px;
    border-radius: 8px;
    transition: 0.2s;
}

.close-btn:hover {
    background: red;
}

/* CANCEL BUTTON (BOTTOM OPTIONAL) */
.cancel-btn {
    margin-top: 12px;
    background: transparent;
    color: white;
    border: 1px solid #aaa;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s ease;
}

.cancel-btn:hover {
    background: rgba(255,255,255,0.2);
}

/* ANIMATIONS */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes popIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* BLUR BACKGROUND */
.sms-popup {
    position: fixed;
    inset: 0;
    backdrop-filter: blur(8px);
    background: rgba(0, 0, 0, 0.55);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 3000;
    animation: fadeIn 0.3s ease;
}

/* GLASS CARD */
.sms-card {
    width: 360px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255,255,255,0.35);
    padding: 30px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 12px 35px rgba(0,0,0,0.45);
    animation: popIn 0.35s ease;
    position: relative;
}

/* IMAGE LOGO */
.sms-card img.sms-image {
    width: 160px;
    display: block;
    margin: auto;
    margin-bottom: 18px;
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.3));
}

/* TITLE */
.sms-title {
    font-size: 22px;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

/* INPUTS */
.sms-card input,
.sms-card textarea {
    width: 100%;
    padding: 12px;
    margin-top: 10px;
    border: 1px solid rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.15);
    color: white;
    outline: none;
    border-radius: 10px;
    font-size: 15px;
    transition: 0.3s;
}

/* FOCUS EFFECT */
.sms-card input:focus,
.sms-card textarea:focus {
    border-color: #facc15;
    background: rgba(255,255,255,0.25);
}

/* SEND BUTTON */
.sms-btn {
    margin-top: 18px;
    width: 100%;
    padding: 12px;
    background: #facc15;
    color: black;
    border: none;
    font-size: 17px;
    font-weight: 700;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s;
}

.sms-btn:hover {
    background: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.3);
}

/* CLOSE BUTTON */
.close-btn {
    position: absolute;
    right: 15px;
    top: 12px;
    cursor: pointer;
    font-size: 20px;
    font-weight: bold;
    color: white;
    background: rgba(255,255,255,0.2);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.close-btn:hover {
    background: #facc15;
    color: black;
    transform: rotate(90deg);
}

/* POPUP ANIMATIONS */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes popIn {
    from { transform: scale(0.75); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}



.delivery-carousel{
    padding:40px;
    text-align:center;
    overflow:hidden;
}

.delivery-title{
    font-size:28px;
    margin-bottom:25px;
}

.carousel-container{
    width:100%;
    overflow:hidden;
    position:relative;
}

.carousel-track{
    display:flex;
    gap:20px;
    animation: slide 15s linear infinite;
}

.carousel-track img{
    width:300px;
    height:220px;
    object-fit:cover;
    border-radius:12px;
    flex-shrink:0;
    transition:0.3s;
}

/* Hover Pause */
.carousel-container:hover .carousel-track{
    animation-play-state: paused;
}

/* Sliding Animation */
@keyframes slide{
    0%{
        transform: translateX(0);
    }
    100%{
        transform: translateX(-50%);
    }
}

/* Mobile */
@media(max-width:768px){
    .carousel-track img{
        width:220px;
        height:170px;
    }
}
