@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body {
    /* letter-spacing: 2px; */
    transition: background 0.3s, color 0.3s;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Rajdhani';
    font-weight: 700;
    }

p {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: 1rem;
}

.menu-bar {
    background-color: #01791b;
    font-family: 'Rajdhani';
    font-weight: 700;
    font-size: 18px;
}


/* Dark mode */


body.dark-mode {
    background: #121212;
    color: #f5f5f5;
}

body.dark-mode .navbar,
body.dark-mode footer {
    background: #1b1b1b !important;
}

body.dark-mode .feature-box {
    background: #222 !important;
    color: #fff;
}

/* Our Journey Section */
.journey-section {
    background: #f8f9fa;
    transition: background 0.3s ease;
}

.journey-title {
    color: #01791b;
    transition: color 0.3s ease;
}

.journey-subtitle {
    color: #6c757d;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    transition: color 0.3s ease;
}

.card-box {
    background: #f9fbe7;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.value-box {
    background: #01791b;
    color: #fff;
    border-radius: 8px;
    transition: background 0.3s ease, color 0.3s ease;
}

/* Dark Mode Overrides */
body.dark-mode .journey-section {
    background: #1a1a1a;
}

body.dark-mode .journey-title {
    color: #90ee90;
}

body.dark-mode .journey-subtitle {
    color: #d4d4d4; /* ✅ Now visible in dark mode */
}

body.dark-mode .card-box {
    background: #222 !important;
    color: #f5f5f5;
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.05);
}

body.dark-mode .card-box h5 {
    color: #90ee90;
}

body.dark-mode .card-box p {
    color: #ddd;
}

body.dark-mode .value-box {
    background: linear-gradient(135deg, #01791b, #00a63d);
    color: #f5f5f5;
}

/* =================== INTRO SECTION =================== */
.intro {
  margin: 4rem auto 3rem;
  text-align: center;
  max-width: 950px;
}

.intro-wrapper {
  background: linear-gradient(135deg, #f8f9fa, #ffffff);
  border-radius: 16px;
  padding: 3rem 2rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  transform: translateY(-30px);
  position: relative;
  z-index: 5;
}

.intro-title {
  font-family: rajdhani, sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #14532d;
}

.intro-title .highlight {
  color: #01791b;
  position: relative;
}

.intro-title .highlight::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 4px;
  background: #a7f3d0;
  border-radius: 2px;
  opacity: 0.6;
}

.intro-text {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #444;
  max-width: 700px;
  margin: 0 auto;
}

/* Hover Effect */
.intro-wrapper:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-35px);
  transition: all 0.3s ease;
}

/* Dark Mode Support */
body.dark-mode .intro-wrapper {
  background: linear-gradient(135deg, #1f1f1f, #2c2c2c);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.05);
}

body.dark-mode .intro-title {
  color: #4ade80;
}

body.dark-mode .intro-title .highlight::after {
  background: rgba(74, 222, 128, 0.3);
}

body.dark-mode .intro-text {
  color: #d1d5db;
}


/* ===============================Home page section============================== */

.logo {
    width: 50px;
    border-radius: 10%;
    margin-right: 5%;
}

/* Dropdown hover par open */
.nav-item.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
    /* gap avoid */
}

/* Dropdown menu styling */
.dropdown-menu {
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 10px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    transition: all 0.3s ease-in-out;
}

/* Links inside dropdown */
.dropdown-menu .dropdown-item {
    padding: 10px 20px;
    color: #333;
    font-weight: 500;
    transition: all 0.2s ease-in-out;
}

/* Hover effect on items */
.dropdown-menu .dropdown-item:hover {
    background: #01791b;
    color: #fff;
    border-radius: 5px;
}

.nav-link.active {
    color: #fff !important;
    background-color: #01791b;
    border-radius: 5px;
}



/* hero-section */
.hero {
    background: url('./ideal-farm-image/banner-1.jpg') center/cover no-repeat;
    color: white;
    text-align: center;
    padding: 150px 20px;
    position: relative;
}

.hero h1 {
    font-size: 3rem;
    font-weight: bold;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

.hero p {
    font-size: 1.3rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

.hero a {
    background: #fff;
    font-family: rajdhani, sans-serif;
    font-weight: 60;
    color: #01791b;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    margin: 10px;
    display: inline-block;
    font-weight: bold;
}

.hero a:hover {
    color: #fff;
    background: #01791b;
}

/* Image slideshow animation */
.hero {
    animation: bannerSlide 16s infinite;
    background-image: url("./ideal-farm-image/banner-1.jpg");
}

@keyframes bannerSlide {

    0%,
    30% {
        background-image: url("./ideal-farm-image/banner-1.jpg");
    }

    33%,
    63% {
        background-image: url("./ideal-farm-image/banner-2.jpg");
    }

    66%,
    97% {
        background-image: url("./ideal-farm-image/banner-3.jpg");
    }

    100% {
        background-image: url("./ideal-farm-image/banner-1.jpg");
    }
}


/* Marquee */
.marquee {
    background: #01791b;
    font-family: Rajdhani, sans-serif;
    font-weight: 600;
    color: white;
    padding: 10px;
    white-space: nowrap;
    overflow: hidden;
    position: relative;
}

.marquee span {
    display: inline-block;
    padding-right: 50px;
    padding-left: 10%;
    animation: marquee 900s linear infinite;
}

@keyframes marquee {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-100%);
    }

}

/* Features */
.feature-box {
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    background: #f9fbe7;
    transition: transform 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
}

.feature-box h4 {
    color: #01791b;
}

.intro {
    text-align: center;
}

.intro p {
    font-size: 1.1rem;
    line-height: 1.6;
}

.card {
    border: none;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    border-radius: 15px;
    transition: transform 0.3s ease;
    overflow: hidden;
}

/* Image wrapper styling */
.image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Image cover styling - adjusted for smaller cards */
.img-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: all 0.3s ease;
}

/* Adjusted overlay text sizes for smaller cards */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.4);
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 15px;
    text-align: center;
}

.overlay h5 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: white;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.overlay p {
    font-size: 0.9rem;
    margin-bottom: 12px;
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.overlay .btn {
  font-family: rajdhani, sans-serif;
  font-weight: 600;
    background-color: rgba(255, 255, 255, 0.9);
    color: #333;
    border: none;
    padding: 0.25rem 0.5rem;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

/* Rest of the CSS remains the same */
.image-wrapper:hover .img-cover {
    transform: scale(1.05);
    filter: brightness(0.7);
}

.overlay .btn:hover {
    background-color: #01791b;
    color: #ffffff;
    transform: scale(1.05);
}

.image-wrapper:hover .overlay {
    opacity: 1;
}

.card:hover {
    transform: translateY(-5px);
}

/*===========================about us page section============================*/


.hero-about {
    animation: aboutSlide 16s infinite;
    background-image: url("./ideal-farm-image/about-1.jpg");
}

@keyframes aboutSlide {

    0%,
    30% {
        background-image: url("./ideal-farm-image/about-1.jpg");
    }

    33%,
    63% {
        background-image: url("./ideal-farm-image/about-2.jpg");
    }

    66%,
    97% {
        background-image: url("./ideal-farm-image/banner-2.jpg");
    }

    100% {
        background-image: url("./ideal-farm-image/about-1.jpg");
    }
}

.section-title {
    font-weight: 700;
    color: #01791b;
}

/* ABOUT PAGE STYLES */
.about-section p,
.our-story p,
.why-choose li {
  font-size: 1rem;
  line-height: 1.7;
  color: #222;
}

.section-title {
  font-weight: 700;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.bg-light {
  background-color: #f9fbe7 !important;
}

.feature-card {
  background: #fff;
  border: 1px solid #e5e5e5;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card img {
  max-width: 80px;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.why-choose ul li {
  position: relative;
  padding-left: 25px;
}

.why-choose ul li::before {
  content: "✔";
  color: #00a86b;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 2px;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .section-title {
    font-size: 1.5rem;
  }
  .feature-card {
    text-align: center;
    padding: 20px;
  }
}


/*====================================Footer==========================================*/

.footer-modern {
  background: #01791b;
  color: #e8f5e9;
  padding: 50px 0 10px;
  font-family: poppins, sans-serif;
  position: relative;
}

.footer-logo {
  width: 60px;
  background: #fff;
  border-radius: 12px;
  padding: 5px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.3);
}

.brand-name {
  font-weight: 700;
  font-size: 1.6rem;
  color: #ffffff;
  margin-top:20px;
}

.footer-heading {
  font-weight: 700;
  font-size: 1.2rem;
  color: #ffffff;
  margin-bottom: 18px;
  position: relative;
}

.footer-heading::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: #ffffff;
  margin-top: 6px;
  border-radius: 2px;
}

.footer-text {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #ffffff;
}

.footer-links,
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.footer-links a,
.footer-contact a {
  text-decoration: none;
  color: #e8f5e9;
  transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: #76ff03;
}

.footer-links i {
  font-size: 0.8rem;
  margin-right: 6px;
  color: #76ff03;
}

.footer-contact i {
  color: #76ff03;
  margin-right: 8px;
  min-width: 18px;
}

.social-icons {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.social {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  color: #fff;
  transition: all 0.3s ease;
}

.social:hover {
  background: #76ff03;
  color: #0f3d1e;
  transform: scale(1.1);
}

.footer-divider {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin: 30px 0 10px;
}

.footer-bottom {
  text-align: center;
  font-size: 0.9rem;
  color: #ffffff;
}

.footer-bottom .credit a {
  color: #a5d6a7;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-bottom .credit a:hover {
  color: #c6ff00;
}


/* ==========================product page styles========================== */
/* Image container fixed height */
.card-img-container {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.card-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card {
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

/* Modal text always black */
.modal-content, 
.modal-content * {
  color: #000;
}

/* Info box styling with border (no background) */
.info-box {
  background-color: transparent; /* Removed background color */
  color: #000 !important; /* Make text black for contrast */
  border: 2px solid #01791b; /* Added border */
  border-radius: 8px; /* Optional: rounded corners for a clean look */
  padding: 1rem; /* Add spacing inside box */
}

/* Bullets inside info-box */
.info-box ul li {
  color: #000 !important;
  margin-bottom: 0.4rem;
}

/* Separator between Uses & Benefits on desktop */
@media (min-width: 768px) {
  .col-md-6:first-child {
    border-right: 1px solid #01791b;
  }
}


/* =========================================blog page styling=========================================== */
.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #01791b;
}

.blog-card {
  background: #f9fbe7;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.blog-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.blog-content {
  padding: 20px;
}

.blog-content h3 {
  color: #01791b;
  font-weight: 700;
  margin-bottom: 10px;
}

.blog-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
  margin-top: 8px;
  text-decoration: none;
  color: #01791b;
  transition: color 0.3s ease;
}
.read-more:hover {
  color: #00a86b;
}


/* =====================================contact page styling=============================== */

/* CONTACT HERO */
.contact-hero {
  background: url('./ideal-farm-image/contact-hero.jpg') center/cover no-repeat;
  height: 280px;
  position: relative;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.contact-hero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}
.contact-hero .hero-text {
  position: relative;
  z-index: 1;
}
.contact-hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
}
.contact-hero p {
  font-size: 1.1rem;
  margin-top: 8px;
}

/* CONTACT CARD */
.contact-card {
  background: #f9fbe7;
  border: 1px solid #e5e5e5;
}
.contact-card h4 {
  font-weight: 600;
}
.contact-card p,
.contact-card a {
  font-size: 1rem;
  color: #222;
}
.contact-card a {
  text-decoration: none;
}
.contact-card a:hover {
  text-decoration: underline;
  color: #01791b;
}

/* SOCIAL ICONS */
.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #ddd;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}
.social-icon:hover {
  background: #00a86b;
  color: #fff;
  transform: scale(1.1);
}

/* MAP CARD */
.map-card iframe {
  display: block;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .contact-hero {
    height: 220px;
  }
  .contact-hero h1 {
    font-size: 1.8rem;
  }
  .contact-hero p {
    font-size: 1rem;
  }
}


.contact-info h4 {
    color: #01791b;
}

.contact-info a {
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}


.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    background: #25D366;
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    text-decoration: none;
}

/* Dark/Light mode toggle */
#modeToggle {
    position: fixed;
    bottom: 90px;
    right: 30px;
    background: #fff;
    border: none;
    border-radius: 50%;
    padding: 10px;
    cursor: pointer;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
    z-index: 999;
}

.footer-list li {
    margin-bottom: 10px;
}

/* Extra CSS for buttons and text in green theme */

.btn-success {
  font-family: rajdhani, sans-serif;
  font-weight: 600;
    --bs-btn-bg: #01791b;
    --bs-btn-border-color: #01791b;
    --bs-btn-hover-bg: #25D366;
    --bs-btn-hover-border-color: #25D366;
    /* ... */
}
.btn-success:hover {
    --bs-btn-bg: #01791b !important;
    --bs-btn-border-color: #01791b !important;
    /* ... */
}  

.btn-outline-success {
    --bs-btn-color: #01791b;
    --bs-btn-border-color: #01791b;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #01791b;
}

.text-success {
    color: #01791b !important;
}

.text-success:hover {
    color: #01791b !important;
}

  /* Custom Dropdown Styling */
.dropdown-menu {
    background-color: #f9fbe7; /* soft yellow background */
    border: 2.5px solid #01791b; /* light border for definition */
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    --bs-dropdown-link-active-bg: #01791b; /* your green */
}

/* Dropdown items */
.dropdown-menu .dropdown-item {
    color: #222; /* dark text for readability */
    padding: 0.5rem 0.5rem;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.dropdown-menu .dropdown-item:hover,
.dropdown-menu .dropdown-item:focus {
    background-color: #01791b; /* your green */
    color: #fff;
    border-radius: 8px;
}

/* Optional - make dropdown open smoothly */
.dropdown-menu {
    animation: dropdownFade 0.2s ease;
}
@keyframes dropdownFade {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Light Mode (Default) */
.about-section .theme-bg,
.mission-approach .theme-bg,
.why-choose .theme-bg {
  background-color: #f9fbe7;
  color: #212529;
}

/* Dark Mode Styles – Only About Page */
body.dark-mode .about-section .theme-bg,
body.dark-mode .mission-approach .theme-bg,
body.dark-mode .why-choose .theme-bg {
  background-color: #1e1e1e;
  color: #e0e0e0;
}

body.dark-mode .about-section h2,
body.dark-mode .about-section h5,
body.dark-mode .about-section p,
body.dark-mode .about-section li,
body.dark-mode .mission-approach h2,
body.dark-mode .mission-approach h5,
body.dark-mode .mission-approach p,
body.dark-mode .mission-approach li,
body.dark-mode .why-choose h2,
body.dark-mode .why-choose h5,
body.dark-mode .why-choose p,
body.dark-mode .why-choose li,
body.dark-mode .our-story h2,
body.dark-mode .our-story p {
  color: #f1f1f1;
}

body.dark-mode .about-section .section-title i,
body.dark-mode .mission-approach .section-title i,
body.dark-mode .why-choose .section-title i,
body.dark-mode .our-story .section-title i {
  color: #90ee90; /* Lighter green for icons in dark mode */
}
/* Certificates Section */
#certificates .certificate-card {
  cursor: pointer;
  background: #ffffff;
  border-radius: 12px;
  padding: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

#certificates .certificate-card img {
  max-height: 80px;
  object-fit: contain;
  filter: grayscale(20%);
  transition: filter 0.3s ease, transform 0.3s ease;
}

#certificates .certificate-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

#certificates .certificate-card:hover img {
  filter: grayscale(0%);
  transform: scale(1.05);
}

/* Dark Mode Support */
body.dark-mode #certificates .certificate-card {
  background: #2a2a2a;
  box-shadow: 0 2px 8px rgba(255, 255, 255, 0.05);
}
body.dark-mode #certificates .certificate-card p {
  color: #90ee90;
}



/* Why Choose Us Section */
.feature-box {
    background: #f9fbe7;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.feature-box img {
    max-width: 70px;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.feature-box h4 {
    color: #01791b;
    margin-bottom: 10px;
    font-weight: 600;
}

.feature-box p {
    color: #555;
    font-size: 0.95rem;
}

/* Hover Effect for Light Mode */
.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.feature-box:hover img {
    transform: scale(1.08);
}

/* DARK MODE OVERRIDES */
body.dark-mode .feature-box {
    background: #222 !important;
    color: #f5f5f5;
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.05);
}

body.dark-mode .feature-box h4 {
    color: #90ee90;
}

body.dark-mode .feature-box p {
    color: #ddd;
}

body.dark-mode .feature-box:hover {
    background: #2a2a2a;
    box-shadow: 0 6px 16px rgba(255, 255, 255, 0.08);
}


/* Thank You Page */

        body {
            display: flex;
            flex-direction: column;
            min-height: 100vh;
            background: #f8f9fa;
        }

        .thank-you-section {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 50px 15px;
        }

        .thank-you-box {
            background: white;
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
            max-width: 500px;
            width: 100%;
            animation: fadeIn 0.7s ease-in-out;
        }

        .checkmark {
            height: 80px;
            width: 80px;
            background-color: #01791b;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
        }

        .checkmark i {
            font-size: 40px;
            color: white;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(15px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .redirect-text {
            margin-top: 15px;
            font-size: 0.9rem;
            color: #6c757d;
        }

        .btn-home {
            margin-top: 20px;
        }