* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

* {
    box-sizing: border-box;
}
head {
    display: none;
}
:root {
 
    --yellow: #ffd400;
    --yellow-dark: #f2c200;
    --accent: #0b2447;           /* High-priority */
    --accent-600: #2c2c2c;       /* Only in low-priority */
    --dark-blue: #0b2447;        /* High-priority */
    --dark: #1f2937;              /* Only in low-priority */
    --text-dark: #111827;         /* High-priority */
    --text-muted: #6b7280;        /* High-priority */
    --bg-light: #f9fafb;          /* High-priority */
    --muted: #f3f4f6;             /* High-priority */
    --bg: #f7f7f8;                /* Only in low-priority */
    --white: #ffffff;              /* Only in low-priority */
    --card-bg: #ffffff;            /* High-priority */
    --card-hover: #f9fafb;         /* High-priority */

    /* ---------------- Buttons ---------------- */
    --button-bg: #0d6efd;         /* Only in low-priority */

    /* ---------------- Shadows ---------------- */
    --shadow: 0 6px 16px rgba(0, 0, 0, 0.08);       /* High-priority */
    --hover-shadow: 0 10px 28px rgba(0, 0, 0, 0.12); /* High-priority */
    --soft-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);   /* Only in low-priority */

    /* ---------------- Layout / Misc ---------------- */
    --container: 1200px;          /* Low-priority */
    --radius: 12px;               
    --transition: all 0.3s ease;  
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
}


body {
    font-family: 'Inter', system-ui, Segoe UI, Roboto, Arial, sans-serif;
    color: var(--accent);
    background: #f9fafc;
    line-height: 1.5;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: #f8f9fa;
    color: #0b2447;
    line-height: 1.6;
}
body {
    background: linear-gradient(180deg, #fafbfc, #ffffff 40%);
    color: var(--dark);
    font-family: Inter, system-ui, -apple-system, Roboto, Arial, sans-serif;
}
body {
    margin: 0;
    background: var(--bg);
    color: var(--dark);
    -webkit-font-smoothing: antialiased;
    line-height: 1.45;
    font-family: inherit;
}
html, body {
    height: 100%;
}

body {
    display: block;
    padding-top: 24vh; /* Same height as your topbar */

}


/* topbar */
.topbar {
  background-color: var(--yellow);
  height: 12vh;
  display: flex;
  justify-content: center;     /* centers horizontally (optional) */
  align-items: center;         /* centers vertically */

  position: fixed;       /* ✅ Fix it to the top */
  top: 0;                /* ✅ Stick to top edge */
  left: 0;               /* ✅ Align to left edge */
  width: 100%;           /* Keep full width */
  z-index: 1000;         /* Keep above all other elements */
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 90vw;
}

.top-right {
  font-size: 1.4rem;         /* larger font for desktop */
  font-weight: 600;          /* bold for emphasis */
  color: #000;               /* dark text */
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Make it responsive */
@media(max-width: 768px) {
  .top-right {
    font-size: 1.2rem;       /* slightly smaller for tablets */
  }
}

@media(max-width: 468px) {
  .top-right {
    font-size: 1rem;         /* smaller for mobile screens */
    text-align: right;       /* keeps alignment neat */
  }
}


/* Common styling for all header icons */
.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  font-size: 24px;
  width: 40px;
  height: 40px;
  text-decoration: none;
  color: #333;           /* default color */
  background: #f5f5f5;   /* light background */
  border-radius: 50%;    /* circular buttons */
  transition: all 0.3s ease;
  margin-right: 1rem;    /* spacing between icons */
  cursor: pointer;
}

/* Hover effect */
.icon-btn:hover {
  color: #fff;
  background: #ff6600; /* accent color on hover */
  transform: scale(1.1);
}

/* Emoji cart adjustment */
.icon-btn.emoji {
  font-size: 22px;
  line-height: 1;
}

/* Font Awesome icons inside */
.icon-btn i {
  font-size: 20px;
}




.top-left {
  font-size: 2rem;           /* makes it bigger like a logo */
  font-weight: bold;          /* bold text */
  font-family: 'Arial Black', sans-serif; /* or any logo-like font */
  color: #000;                /* text color */
  letter-spacing: 2px;        /* spacing between letters */
  text-transform: uppercase;  /* optional, makes it stand out */
  cursor: pointer;            /* makes it look clickable like a logo */
}

.top-left:hover {
  text-shadow: 2px 2px 5px rgba(0,0,0,0.3); /* subtle hover effect */
  transform: scale(1.05);
  transition: all 0.3s ease;
}


@media(max-width:768px){
  .top-left {
  font-size: 1.5rem;           /* makes it bigger like a logo */
  font-weight: bold;          /* bold text */
  font-family: 'Arial Black', sans-serif; /* or any logo-like font */
  color: #000;                /* text color */
  letter-spacing: 1px;        /* spacing between letters */
  text-transform: uppercase;  /* optional, makes it stand out */
  cursor: pointer;            /* makes it look clickable like a logo */
}
}
@media(max-width:468px){
    .top-left {
    font-size: 1rem;           /* makes it bigger like a logo */
    font-weight: bold;          /* bold text */
    font-family: 'Arial Black', sans-serif; /* or any logo-like font */
    color: #000;                /* text color */
    letter-spacing: 1px;        /* spacing between letters */
    text-transform: uppercase;  /* optional, makes it stand out */
    cursor: pointer;            /* makes it look clickable like a logo */
  }
}

/* navbar */

.site-header{
  background-color: var(--muted);
  height: 12vh;
  display: flex;
  justify-content: center;     /* centers horizontally (optional) */
  align-items: center; 
  width: 100%;

  position: fixed;       /* ✅ Fix to the top */
  top: 12vh;             /* ✅ Places it right below the topbar */
  left: 0;
  z-index: 999;  
}

.header-inner{
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 95vw;
  margin: 0 10px;
}

.main-nav{
    display: flex;
    align-self: flex-start;
}

.nav-list{
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    font-size: 1.05rem;
}

ul {
    display: block;
    list-style-type: disc;
    margin-block-start: 1em;
    margin-block-end: 1em;
    padding-inline-start: 40px;
    unicode-bidi: isolate;
}

li {
    display: list-item;
    unicode-bidi: isolate;
    list-style: none;
}

.nav-list a {
  text-decoration: none;
  color: var(--accent);
  font-weight: 600;
  position: relative;
  padding: 0.6rem 1.2rem;
  border-radius: 10px;
  transition: all 0.3s ease;
}



.nav-list a:hover,
.nav-list a.active {
  color: var(--yellow);
  transform: translateY(-2px);
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.7),
    rgba(250, 250, 250, 0.3)
  );
  backdrop-filter: blur(6px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
}

.nav-list a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  left: 0;
  bottom: 0;
  background-color: var(--yellow);
  transition: width 0.3s ease;
}

.nav-list a:hover::after,
.nav-list a.active::after {
  width: 100%;
}

.nav-actions {
  margin-right: 30px; /* adjust value as needed */
}

.hamburger{
    display: none;
}

@media (max-width: 500px){
  .nav-actions {
  margin-right: 5px; /* adjust value as needed */
}
}

@media (max-width: 992px) {
  /* Hamburger button */
  .hamburger {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
  }

  /* Hamburger bars */
  .hamburger .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--yellow);
    transition: all 0.3s ease-in-out;
  }

  /* Mobile nav */
  .main-nav {
    display: none;
    position: absolute;
    top: 12vh;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    width: 90%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(14px);
    border-radius: 20px;
    flex-direction: column;
    align-items: center;
    padding: 1.8rem 0;
    gap: 1.3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    z-index: 1001;
    transition: var(--transition);
  }

  .main-nav.active {
    display: flex;
    transform: translateX(-50%) translateY(0);
  }

  /* Stack links */
  .nav-list {
    flex-direction: column;
    gap: 1rem;
  }

  .nav-actions {
    margin-right: 5px;
  }
}

.head {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 5vw;
  font-size: 3rem;
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}
.head span {
  color: var(--yellow);
}

.site-header.scrolled {
  background-color: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}


/* hero btns */

.btn-support {
  display: inline-block;
  background-color: #007BFF; 
  color: #fff;
  font-weight: 600;
  font-size: clamp(1rem, 2.5vw, 1.4rem); /* ✅ adjusts text size by screen width */
  padding: clamp(10px, 2vw, 15px) clamp(20px, 4vw, 30px); /* ✅ responsive padding */
  border-radius: 8px; 
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
  border: 2px solid transparent; 
  white-space: nowrap; /* ✅ keeps button text on one line */
  text-align: center;
}

/* Hover effect */
.btn-support:hover {
  background-color: #0056b3; 
  box-shadow: 0 6px 15px rgba(0,0,0,0.3);
  transform: translateY(-2px);
}

/* Optional: make the number bold for extra readability */
.btn-support span {
  font-weight: 700;
}

/* Centering and keeping layout flexible */
.hero-buttons {
  display: flex;
  align-items: center;
  flex-wrap: nowrap; /* stays in one row */
  overflow-x: auto;  /* scrolls horizontally if too long on small screens */
  /* padding: 20px; */
}







.hero {
  position: relative;
  background-image: url(herobg2.webp);
  background-size: cover;
  background-position: center;
  border-radius: 0 0 20px 20px;
  overflow: hidden;
  color: #fff;
  height: 90vh;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.2) 0%,
    rgba(0, 0, 0, 0.7) 100%
  );
  backdrop-filter: brightness(0.8);
}

.hero-content {
  position: relative;
  max-width: 650px;
  margin-left: 4rem;
  margin-right: auto;
  padding: 80px 20px 120px;
  text-align: left;
  z-index: 2;
  animation: fadeInUp 1s ease-in-out;
}

@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
}

.hero-content h1 {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--muted);
}

.tag {
  font-weight: 700;
  color: var(--yellow);
  margin-bottom: 16px;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* BUTTONS */
/* .hero-buttons {
  display: flex;
  gap: 1.5rem;
  margin-top: 2rem;
} */

.btn-primary,
.btn-outline {
  border: 2px solid transparent;
  padding: 12px 28px;
  font-size: 17px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

/* Primary (filled) */
.btn-primary {
  background-color: var(--yellow);
  color: #000;
  box-shadow: 0 4px 14px rgba(255, 214, 10, 0.3);
}

.btn-primary:hover {
  background-color: #ffca28;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 214, 10, 0.4);
}

/* Outline (border only) */
/* .btn-outline {
  background-color: transparent;
  border-color: #fff;
  color: #fff;
}

.btn-outline:hover {
  background-color: #fff;
  color: var(--dark-blue);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
} */

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  .hero {
    height: auto;
    padding: 60px 0;
    justify-content: center;
  }

  .hero-content {
    margin: 0 auto;
    text-align: center;
    padding: 40px 20px;
    max-width: 90%;
  }

  .hero-content h1 {
    font-size: 30px;
  }

  /* .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons a {
    width: 80%;
    text-align: center;
  } */
}

/* features */

.section {
    max-width: 1100px;
    margin: 60px auto;
    padding: 0 20px;
}
section {
    display: block;
    unicode-bidi: isolate;
}

.section h2{
    display: flex;
    justify-content: center;
    text-align: center;
    font-size: 30px;
}

.desc{
    display: flex;
    justify-content: center;
    text-align: center;
    font-size: 15px;
    font-weight: bold;
    color: gray;
    margin-top: 1rem;
}

.features {
    display: flex;
    flex-wrap: wrap;       /* Wrap cards on smaller screens */
    gap: 30px;             /* Space between cards */
    justify-content: center;
    margin-top: 40px;
}

.feature {
  flex: 1 1 280px;
  background: linear-gradient(180deg, var(--card-bg) 0%, var(--bg-light) 100%);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.05);
}

/* MODERN HOVER EFFECT */
.feature:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
  background: linear-gradient(135deg, #fef08a, #facc15);
  border: none;
}

.feature img {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  transition: transform 0.3s ease, filter 0.3s ease;
  filter: drop-shadow(0 6px 8px rgba(0, 0, 0, 0.1));
}

.feature:hover img {
  transform: scale(1.15) rotate(5deg);
  filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.15));
}

.feature h3 {
    font-size: 1.5rem;
    color: #1a1a1a;
    margin-bottom: 10px;
    font-weight: 600;
}

.feature p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin: 0;
}



/* product grid */


/* 🔹 Add to Cart Button */




/* banner */

#banner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;  /* left-align content */
    text-align: center;
    background: linear-gradient(135deg, #fcd34d, #0b2447);
    /* background: url("webbanner2.jpg") center/cover no-repeat; */
    width: 100%;
    height: 50vh;
    position: relative;
    overflow: hidden;
    padding: 0 5%;
    border-radius: 0 0 18px 18px;
}

/* Overlay for better text visibility */
#banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.15); /* subtle overlay */
    z-index: 1;
    pointer-events: none; /* allows clicks on buttons */
}

/* Content inside banner */
.hero-content {
    position: relative;
    z-index: 2;  /* above overlay */
    max-width: 650px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Banner Subheading */
#banner h4 {
    color: var(--yellow);
    font-size: 28px;
    font-weight: 700;
    margin: 0;
}

/* Banner Main Heading */
#banner h2 {
    color: var(--accent);
    font-size: 48px;
    line-height: 1.2;
    font-weight: 800;
    margin: 0;
}

/* Banner Buttons */
.banner-buttons {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.5rem;
    position: relative;
    z-index: 3; /* ensures buttons are above overlay */
}

/* Primary Button */
button.normal,
.btn-primary {
    font-size: 16px;
    font-weight: 700;
    padding: 14px 40px;
    color: #000;
    background-color: #fff;
    border-radius: 8px;
    cursor: pointer;
    border: none;
    outline: none;
    transition: all 0.3s ease;
}

/* Secondary / Outline Button */
.btn-outline {
    font-size: 16px;
    font-weight: 700;
    padding: 14px 40px;
    color: #000;
    background-color: transparent;
    border: 2px solid var(--yellow);
    border-radius: 8px;
    cursor: pointer;
    outline: none;
    transition: all 0.3s ease;
}

/* Hover effects */
button.normal:hover,
.btn-primary:hover {
    background-color: var(--accent);
    color: #fff;
    transform: scale(1.05);
}

.btn-outline:hover {
    background-color: var(--yellow);
    color: #fff;
    transform: scale(1.05);
}

/* Utility spacing */
.section-m1 {
    margin: 40px 0;
}

.section-p1 {
    padding: 40px 80px;
}

/* ================== RESPONSIVE ================== */
@media (max-width: 992px) {
    #banner {
        height: 60vh;
        padding: 0 5%;
    }

    #banner h2 {
        font-size: 36px;
    }

    #banner h4 {
        font-size: 22px;
    }

    .banner-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    button.normal,
    .btn-primary,
    .btn-outline {
        width: 100%;
        text-align: center;
        padding: 12px 0;
    }
}

@media (max-width: 600px) {
    #banner {
        height: 50vh;
        padding: 0 5%;
    }

    #banner h2 {
        font-size: 28px;
    }

    #banner h4 {
        font-size: 18px;
    }
}

footer {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    background-color: #f8f9fa; /* lighter modern background */
    padding: 50px 5%;
    gap: 40px;
    font-family: 'Poppins', sans-serif;
    color: #333;
    border-top: 2px solid rgba(0,0,0,0.05);
}

/* Footer columns */
footer .coloumn {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
    min-width: 200px;
    gap: 10px;
}

/* Footer Logo */
footer .logo {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--accent);
    margin-bottom: 20px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

footer .logo:hover {
    transform: scale(1.05);
}

/* Footer Headings */
footer h4 {
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: 600;
    color: #0b2447;
}

/* Footer links */
footer a {
    font-size: 14px;
    margin-bottom: 8px;
    text-decoration: none;
    color: #555;
    transition: all 0.3s ease;
}

footer a:hover {
    color: var(--yellow);
    transform: translateX(4px);
}

/* Social Icons */
footer.follow {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

footer .icon i {
    font-size: 18px;
    color: #465b52;
    cursor: pointer;
    transition: all 0.3s ease;
}

footer .icon i:hover {
    color: var(--yellow);
    transform: scale(1.2);
}

/* Install buttons */
footer .coloumn.install .row img,
footer .install img {
    margin: 10px 0;
    width: 120px;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

footer .coloumn.install .row img:hover,
footer .install img:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

/* Copyright */
footer .copyright {
    width: 100%;
    text-align: center;
    margin-top: 40px;
    font-size: 14px;
    color: #777;
}

/* ================== RESPONSIVE ================== */
@media (max-width: 992px) {
    footer {
        padding: 40px 5%;
        gap: 30px;
        justify-content: center;
    }

    footer .coloumn {
        align-items: center;
        text-align: center;
    }

    footer .logo {
        margin-bottom: 15px;
    }

    footer h4 {
        font-size: 15px;
    }

    footer a {
        font-size: 14px;
    }

    footer .install img {
        width: 100px;
    }
}

@media (max-width: 600px) {
    footer {
        padding: 30px 5%;
    }

    footer .install img {
        width: 90px;
    }

    footer .icon i {
        font-size: 16px;
    }

    footer .copyright {
        font-size: 12px;
        margin-top: 30px;
    }
}


/* NUMBER */



/* ===== Privacy Policy Page ===== */
main.container {
  width: 90%; /* make it 90% of screen width */
  max-width: 1200px; /* still limit max width on large monitors */
  margin: 120px auto 60px; /* centers it horizontally + top space for header */
  padding: 40px 25px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
  color: #222;
  line-height: 1.7;
}

.policy-content h2 {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  color: #111;
  margin-bottom: 30px;
  border-bottom: 3px solid #ffcc00;
  display: inline-block;
  padding-bottom: 5px;
}

.policy-content h3 {
  margin-top: 35px;
  font-size: 1.4rem;
  color: #333;
  border-left: 4px solid #ffcc00;
  padding-left: 10px;
}

.policy-content p {
  margin: 12px 0;
  color: #444;
  font-size: 1rem;
}

.policy-content ul {
  margin: 12px 0 12px 25px;
  padding-left: 15px;
}

.policy-content li {
  margin-bottom: 8px;
}

.policy-content a {
  color: #0078d7;
  text-decoration: none;
}

.policy-content a:hover {
  text-decoration: underline;
}

.policy-content strong {
  color: #000;
}

.policy-content hr {
  margin: 40px 0;
  border: none;
  border-top: 1px solid #ccc;
}

.policy-content .small-muted {
  margin-top: 25px;
  font-size: 0.9rem;
  color: #666;
  text-align: center;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  main.container {
    width: 95%;
    padding: 25px 15px;
    margin: 100px auto 50px;
  }

  .policy-content h2 {
    font-size: 1.6rem;
  }

  .policy-content h3 {
    font-size: 1.2rem;
  }
}


/* === CONTACT SECTION === */
.contact-section {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 80px 20px;
  background: var(--bg-light);
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 90%;
  max-width: 1100px;
  gap: 40px;
}

/* === LEFT SIDE: Info Boxes === */
.contact-info {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* Individual info boxes */
.info-card {
  background: #fff;
  border-radius: 16px;
  padding: 25px 30px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: all 0.3s ease;
}

.info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}

.info-card .icon {
  font-size: 28px;
  margin-bottom: 12px;
  color: var(--accent);
}

.info-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--dark-blue);
}

.info-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-muted);
}

/* === RIGHT SIDE: Form === */




/* Account Page Container */


/* Submit Buttons */
.btn-submit {
  width: 100%;
  padding: 12px 0;
  background-color: #ffb703;
  color: #0b2447;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-submit:hover {
  background-color: #ffd166;
  transform: translateY(-2px);
}

/* Switch Form Links */
.switch-form {
  text-align: center;
  margin-top: 15px;
  font-size: 0.95rem;
}

.switch-form a {
  color: #0b2447;
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 900px) {
  .account-container {
    padding: 30px;
  }
}



/* Cart css below written */




/* Product css given below */

