@tailwind base;
@tailwind components;
@tailwind utilities;

:root {
    --primary-color: #2563eb;
    --primary-dark: #1d4ed8;
    --text-light: #f8fafc;
    --text-dark: #1e293b;
    --bg-light: #FDFDFC;
    --bg-dark: #0a0a0a;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
 
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    min-height: 100vh;
    transition: var(--transition);
}

body.dark-mode {
    background-color: var(--bg-dark);
    color: var(--text-light);
}

/* Navbar Styles */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1rem;
    background-color: #0B644D;
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}
 

.logo {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    padding: 0.5rem 0;
    position: relative;
    color: white;

}



.nav-links a:hover {
    color: rgb(242, 167, 4);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: rgb(242, 167, 4);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn {
    padding: 0.6rem 1.5rem;
    border-radius: 0.375rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
}

.btn-login {
    background-color: transparent;
    color: rgb(242, 167, 4);
    border: 4px solid rgb(0, 0, 0);
}

 

.btn-login:hover {
    background-color: #f1f5f9;
}

 

.btn-primary {
    background-color: rgb(242, 167, 4);
    color: white;
    border: none;
}

.btn-primary:hover {
    background-color: #f1f5f9;
    border: solid 1px rgb(242, 167, 4);
    border-radius: 6px;
    color: rgb(242, 167, 4);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-dark);
}

.dark-mode .menu-toggle {
    color: var(--text-light);
}

.theme-toggle {
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: var(--text-dark);
}

.dark-mode .theme-toggle {
    color: var(--text-light);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;

    padding: 0 1.5rem;
    text-align: center;
    margin-top: 70px;
    /* To account for fixed navbar */
}

.hero-content {
    max-width: 900px;
    z-index: 1;
}
a{
           font-family:Verdana, Geneva, Tahoma, sans-serif; 

}
.hero-title {
 
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
 
    font-size: 4rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
        font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif ;
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-btn {
    padding: 0.9rem 2.2rem;
    font-size: 1.1rem;
    border-radius: 0.5rem;
}

.btn-outline {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline:hover {
    background-color: white;
    color: var(--text-dark);
}



.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
       font-family:Verdana, Geneva, Tahoma, sans-serif; 

}

.dark-mode .section-title {
    color: var(--text-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background-color: white;
    padding: 2.5rem 2rem;
    border-radius: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

 

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.feature-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
        font-family:Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif; 
   color:#0B644D;
    
}



.feature-description {
    color: #64748b;
            font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif 

}



/* Footer */
.footer {
    background-color: #0B644D;
    color: white;
    padding: 4rem 1.5rem 2rem;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}


.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: white;
}

.footer-section p {
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
    color: white;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
    padding-left: 0.5rem;
}

.copyright {
    text-align: center;
    padding-top: 3rem;
    margin-top: 3rem;
    border-top: 1px solid #334155;
    color: #ffffff;
    font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 1rem 1.5rem;
    }

    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background-color: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .dark-mode .nav-links {
        background-color: rgba(10, 10, 10, 0.98);
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .menu-toggle {
        display: block;
    }

    .hero {
        height: 90vh;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }
}

/* Breaking News Ticker Container */
.breaking-news-container {

    background: linear-gradient(to right, rgb(253, 254, 222), rgb(253, 254, 222));

    overflow: hidden;
    margin: 0 auto;
}

/* Breaking News Header */




.breaking-news-label i {
    font-size: 1.2rem;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}

.breaking-news-header h2 {
    font-size: 1.4rem;
    font-weight: 700;
}

/* Ticker Container */
.ticker-container {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
    background-color: rgb(253, 254, 222);
}

.ticker-track {
    display: flex;
    animation: ticker-scroll 40s linear infinite;
    width: max-content;
    padding-right: 50px;
    /* Add space for seamless loop */
}

@keyframes ticker-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Ticker Item */
.ticker-item {
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 15px;
    margin-right: 25px;
    width: 380px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.ticker-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.ticker-image {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    object-fit: cover;
    margin-right: 15px;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.ticker-content {
    flex: 1;
}

.ticker-title {
    color: rgb(100, 94, 94);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 6px;
    line-height: 1.3;
}

.ticker-description {
    color: #b8c1ec;
    font-size: 0.9rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ticker-time {
    color: #64dfdf;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 5px;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Pause on hover */
.ticker-container:hover .ticker-track {
    animation-play-state: paused;
}

/* Ticker gradient overlays for fade effect */
.ticker-container::before,
.ticker-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.ticker-container::before {
    left: 0;
}

.ticker-container::after {
    right: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .breaking-news-container {
        border-radius: 8px;
    }

    .breaking-news-header {
        padding: 12px 20px;
    }

    .breaking-news-label {
        font-size: 0.8rem;
        padding: 4px 12px;
    }

    .breaking-news-header h2 {
        font-size: 1.2rem;
    }

    .ticker-item {
        width: 300px;
        padding: 12px;
        margin-right: 15px;
    }



    .ticker-title {
        font-size: 1rem;
    }

    .ticker-description {
        font-size: 0.85rem;
    }

    .ticker-container::before,
    .ticker-container::after {
        width: 50px;
    }
}

@media (max-width: 480px) {
    .breaking-news-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .ticker-item {
        width: 280px;
        flex-direction: column;
        align-items: flex-start;
    }

    .ticker-image {
        width: 20%;
        height: 50px;
        margin-right: 0;
        margin-bottom: 10px;
    }
}
.Differece-Section {
    padding: 60px;
    max-width: 800px;
    /* optional */
    margin: 0 auto;
    color: #0B644D;
}

.Differece-Section h1 {
    font-size: 10px;
}

.Differece-Section p {
    margin-bottom: 30px;
            font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif 

}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    margin-top: 30px;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    color: #2c3e50;
}

.section-title h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.section-title h1:after {
    content: '';
    position: absolute;

    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.section-title p {
    color: #7f8c8d;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 20px auto 0;
}

.content-section {
    display: flex;
    flex-wrap: wrap;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.content-section2 {
    display: flex;
    flex-wrap: wrap;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.content-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.text-content {
    flex: 1;
    min-width: 300px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.text-content h2 {
    color: #0B644D;
    margin-bottom: 20px;
    font-size: 2.5rem;
        font-family:Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif; 

}

.text-content p {
    margin-bottom: 15px;
    font-size: 1.05rem;
    color: #555;
        font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif 

}

.highlight {
    background-color: #f8f9fa;
    padding: 15px;
    border-left: 4px solid #3498db;
    border-radius: 0 5px 5px 0;
    margin: 20px 0;
}

.features {
    list-style: none;
    background-color: #0C6550;
}

.features li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: bold;
}

.image-content {
    flex: 1;
    min-width: 300px;
    overflow: hidden;
    position: relative;
}

.image-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.content-section:hover .image-content img {
    transform: scale(1.05);
}





.responsive-note {
    text-align: center;
    margin-top: 30px;
    padding: 15px;
    background: #e8f4fc;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #2c3e50;
    max-width: 600px;
}

.responsive-note i {
    color: #3498db;
    margin-right: 8px;
}

@media (max-width: 768px) {
    .content-section {
        flex-direction: column;
    }

   

    .image-content {
        height: 300px;
    }

    .section-title h1 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .text-content {
        margin: 25px;
    }
.video{
            margin: 25px;

}
    .section-title h1 {
        font-size: 1.8rem;
    }
    .Btn-JoinUs2 {
    border: solid #0B644D 1px;
    padding: 11px;
    border-radius: 15px;
    width: 60%;
    text-align: center;
    background-color: white;
    color: #0B644D;
    margin:  40px;
    display:flex;
  }
}

.Btn-JoinUs {
    border: none 1px;
    padding: 11px;
    border-radius: 15px;
    width: 50%;
    text-align: center;
    background-color: #0B644D;
    color: white;
    margin: 10px;
      text-decoration: none;

}

.Btn-JoinUs2 {
    border: solid #0B644D 1px;
    padding: 11px;
    border-radius: 15px;
    width: 50%;
    text-align: center;
    background-color: white;
    color: #0B644D;
  text-decoration: none;
  }















/* Zigzag header style */
.zigzag-header {
    width: 100%;
    height: 120px;
    position: relative;
    margin-bottom: 40px;
    background-color: #2c7873;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.zigzag-header::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: linear-gradient(135deg, #f9f7f7 25%, transparent 25%) -20px 0,
        linear-gradient(225deg, #f9f7f7 25%, transparent 25%) -20px 0;
    background-size: 40px 40px;
    background-color: #2c7873;
}

.header-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2;
    width: 100%;
    padding: 0 20px;
}

.header-content h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.header-content p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Main content area */
.content-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-top: 20px;
}

/* Left tree text */
.left-text {
    flex: 1;
    min-width: 300px;
    padding: 30px;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    border-left: 8px solid #6fb98f;
}

/* Image container */
.image-container {
    flex: 0 0 auto;
    width: 400px;
    height: 500px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border: 8px solid white;
    transition: transform 0.5s ease;
}

.main-image:hover {
    transform: scale(1.03);
}

.image-frame {
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    border: 2px dashed #6fb98f;
    border-radius: 30px;
    pointer-events: none;
    z-index: -1;
}

/* Right tree text */
.right-text {
    flex: 1;
    min-width: 300px;
    padding: 30px;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    border-right: 8px solid #6fb98f;
}

/* Tree icons for decoration */
.tree-icon {
    font-size: 1.5rem;
    color: #2c7873;
    margin-right: 10px;
}

.section-title {
    display: flex;

    justify-content: center;
    margin-bottom: 20px;
    color: #ffffff;
    font-size: 1.8rem;
}

.text-content {
    font-size: 1.1rem;
    color: #444;
    line-height: 1.7;
}

.text-content p {
    margin-bottom: 15px;
}

/* Decorative elements */
.decorative-leaf {
    position: absolute;
    font-size: 1.8rem;
    color: #6fb98f;
    opacity: 0.7;
    z-index: -1;
}

.leaf-1 {
    top: 10px;
    left: 20px;
    transform: rotate(-15deg);
}

.leaf-2 {
    bottom: 20px;
    right: 15px;
    transform: rotate(25deg);
}

.leaf-3 {
    top: 15px;
    right: 25px;
    transform: rotate(15deg);
}

.leaf-4 {
    bottom: 25px;
    left: 15px;
    transform: rotate(-20deg);
}

/* Responsive design */
@media (max-width: 1100px) {
    .content-wrapper {
        flex-direction: column;
    }

    .left-text,
    .right-text {
        width: 100%;
    }

    .image-container {
        order: -1;
        margin-bottom: 30px;
    }
}

@media (max-width: 600px) {
    .image-container {
        width: 100%;
        max-width: 400px;
        height: 400px;
    }

    .header-content h1 {
        font-size: 2rem;
    }

    .header-content p {
        font-size: 1rem;
    }

    .zigzag-header {
        height: 100px;
    }
}

/* Footer */
.footer {
    margin-top: 50px;
    text-align: center;
    padding: 20px;
    color: #666;
    font-size: 0.9rem;
    border-top: 1px solid #ddd;
    width: 100%;
}

.SectionTitle {
    font-size: 50px;
    text-align: center;
    color: #0B644D;
    font-family:Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif; 
}

.HowDoesimage {
    border-radius: 10px;
    margin-bottom: 9px;
}

.container2 {

    margin-top: 30px;
}
 

 

.container2 .text-content {
    color: white;
    background-color: rgb(255, 123, 31);
}

.container2 .text-content p {
    color: white;
    background-color: rgb(255, 123, 31);
}

.Btn-JoinMovment {
    border: solid 1px;
    padding: 8px;
    border-radius: 15px;
    width: 50%;
    text-align: center;
    background-color: rgb(242, 194, 20);
    color: white;
    text-decoration: none;
}

.Differece-Section {
    padding: 60px;
    max-width: 800px;
    /* optional */
    margin: 0 auto;
    color: #0B644D;
}

.Differece-Section h1 {
    font-size: 50px;
}

.Differece-Section p {
    margin-bottom: 30px;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 200px;
    max-height: 400px;
    overflow-y: auto;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    border-radius: 4px;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    border-bottom: 1px solid #eee;
}


.dropdown:hover .dropdown-content {
    display: block;
}



/* Optional: Add some styling for the main navigation */
.nav-links {
    display: flex;
    gap: 20px;
}

.sectionBecome {
    padding: 90px;
    margin-top: 70px;
}

.sectionBecome h2 {
    color: white;
    font-family: cursive;
    font-size: 40px;
}

.sectionBecome .container2 .content-section .image-content img {
    border-radius: 19px;
}

/* Features Section */
.features22-section {
    padding: 10px 20px;
    max-width: 1200px;
    margin: 0 auto;
    margin-bottom: 5px;
}

.section22-title {
    text-align: center;
    margin-bottom: 40px;
}

.section22-title h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    font-family: cursive;

    font-weight: 700;
}

.section22-title p {
    font-size: 1.1rem;
    color: #7f8c8d;
    max-width: 600px;
    margin: 0 auto;
}

.cards-container22 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.card22 {
    background-color: #0B644D;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    padding: 45px 20px;
    width: 100%;
    max-width: 250px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
text-align:center;
    font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif; 

}

.card22:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.card-icon22 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #27ae60;
}

.card22 h3 {
    font-size: 1.5rem;
    font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif; 

    margin-bottom: 15px;
    color: #ffffff;
}

.card22 p {
    color: #ffffff;
    line-height: 1.7;
    font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif; 

}

/* Responsive adjustments */
@media (max-width: 768px) {
    .features-section {
        padding: 50px 20px;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .card {
        max-width: 100%;
    }
   .content-section{
    padding: -43px;
    } 
}

@media (max-width: 480px) {
    .section-title h2 {
        font-size: 1.75rem;
    }

    .card {
        padding: 25px;
    }
}

.HowWorksSection22 {
    background: linear-gradient(135deg, #FF7E1E 0%, #FF5A00 100%);
    padding: 10px 0;
    color: white;
    position: relative;
    overflow: hidden;
    margin-top: 45px;
}

.HowWorksSection22::before {
    content: '';
    position: absolute;

}

.container22 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.section-title22 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 20px;
    font-weight: 600;
      font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif; 
 

    letter-spacing: -0.5px;
     position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.features-section .p2 {
    text-align: center;
    font-size: 20px;
    margin-bottom: 20px;


}

.section-title-Payment {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 10px;
    font-weight: 600;
    letter-spacing: -0.5px;
     position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
    color: #0B644D;
    font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif; 

}
.section-title-Payment h2{
     color: #0C6550;
    font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif; 

}
.section-title-Payment::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: white;
    border-radius: 2px;
}

.two-column-layout22 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.column22 {
    background: white;
    border-radius: 24px;
    padding: 30px 35px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    color: #333;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    overflow: hidden;
}

.column22:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.column-header22 {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 25px;
    border-bottom: 2px solid #f0f0f0;
}

.column-icon22 {
    background: linear-gradient(135deg, #FF7E1E 0%, #FF5A00 100%);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    margin-right: 20px;
    box-shadow: 0 8px 20px rgba(255, 126, 30, 0.3);
}

.column-title22 {
    font-size: 1rem;
    color: #333;
    margin: 0;
    font-weight: 700;
}

.step22 {
    display: flex;
    margin-bottom: 40px;
    align-items: flex-start;
    position: relative;
}

.step22:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 18px;
    top: 56px;
    bottom: -40px;
    width: 2px;
    background: linear-gradient(to bottom, #FF7E1E 0%, transparent 100%);
    opacity: 0.3;
}

.step-number22 {
    background: linear-gradient(135deg, #FF7E1E 0%, #FF5A00 100%);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    margin-right: 20px;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(255, 126, 30, 0.4);
    position: relative;
    z-index: 2;
}

.step-content22 {
    flex: 1;
    padding-bottom: 25px;
        font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif; 

}

.step-content22 h4 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #333;
    font-weight: 700;
}

.step-content22 p {
    color: #666;
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.image-container22 {
    width: 100%;
    height: 180px;
    border-radius: 16px;
    overflow: hidden;
    margin-top: 15px;
    position: relative;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.image-container22:hover {
    transform: scale(1.03);
}

.step-image22 {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.image-container22:hover .step-image22 {
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 992px) {
    .two-column-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .column {
        padding: 35px 25px;
    }
}

@media (max-width: 768px) {
    .HowWorksSection {
        padding: 70px 0;
    }

    .section-title {
        font-size: 2.5rem;
        margin-bottom: 50px;
    }

    .column-header {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .column-icon {
        margin-right: 0;
    }

    .step {
        flex-direction: column;
        align-items: flex-start;
    }

    .step:not(:last-child)::after {
        left: 20px;
        top: 40px;
        bottom: -40px;
    }

    .step-number {
        margin-bottom: 15px;
        margin-right: 0;
    }

    .step-content {
        width: 100%;
    }

    .image-container {
        height: 160px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 2rem;
    }

    .column {
        padding: 25px 20px;
    }

    .column-title {
        font-size: 1.7rem;
    }

    .step-content h4 {
        font-size: 1.3rem;
    }

    .image-container {
        height: 140px;
    }
}

.tabs-container {
    margin-top: 20px;
    display: flex;
    border-bottom: 1px solid #dbe1e8;
    padding: 0 20px;
    justify-content: center;
}

.tab-btn {
    background: none;
    border: none;
    padding: 18px 25px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #0B644D;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tab-btn i {
    font-size: 1.2rem;
}

.tab-btn:hover {
    color: #0B644D;
    background-color: rgba(255, 255, 255, 0.6);
}

.tab-btn.active {
    color: #0B644D;
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #0B644D;
    border-radius: 2px 2px 0 0;
}

.content-container {
    padding: 30px;
    min-height: 400px;
    justify-items: center;
}

.content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.content h2 {
    color: #0B644D;
    font-size: 2rem;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e2e8f0;
}

.content p {
    line-height: 1.6;
    color: #334155;
    font-size: 1.1rem;
    margin-bottom: 20px;
}




@media (max-width: 768px) {
    .tabs-container {
        flex-wrap: wrap;
        justify-content: center;
    }

    .tab-btn {
        padding: 15px 20px;
        font-size: 1rem;
        flex: 1;
        min-width: 120px;
        justify-content: center;
    }

    header h1 {
        font-size: 2rem;
    }

    .content-container {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .tab-btn {
        min-width: 100%;
        border-bottom: 1px solid #e2e8f0;
    }

    .tab-btn.active::after {
        height: 3px;
    }
}

.Benifits-Title {
    font-size: 40px;
    font-family: cursive;
    text-align: center;
    margin: 0 auto;
    display: block;
    margin-top: 20px;
    color: #0B644D;
}

.dot {
    font-size: 150px;
    color: orange;
}

.features-section .cards-container22 .card22 h3 {
    color: rgb(255, 187, 0);
}

.features-section .cards-container22 .card22 h2 {
    color: rgb(255, 255, 255);
}





.form-container {
    background-color: white;
    width: 100%;
    max-width: 800px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    overflow: hidden;

}

 

.header h1 {
    font-size: 28px;
    margin-bottom: 5px;
}

.header p {
    opacity: 0.9;
}

/* Stepper Styles */
.stepper-container {
    padding: 25px 30px 10px;
    background-color: #F1F8E9;
}

.stepper {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.stepper::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    height: 3px;
    background-color: #C8E6C9;
    z-index: 1;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    width: calc(100% / 6);
}

.step-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: white;
    border: 3px solid #C8E6C9;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 18px;
    color: #81C784;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.step.active .step-circle {
    border-color: #FF9800;
    background-color: #FFF3E0;
    color: #FF9800;
    transform: scale(1.1);
    box-shadow: 0 0 0 5px rgba(255, 152, 0, 0.1);
}

.step.completed .step-circle {
    background-color: #4CAF50;
    border-color: #4CAF50;
    color: white;
}

.step.completed .step-circle::after {
    content: '✓';
    font-size: 18px;
}

.step-label {
    font-size: 13px;
    text-align: center;
    color: #666;
    max-width: 90px;
}

.step.active .step-label {
    color: #FF9800;
    font-weight: 600;
}

/* Form Content Styles */
.form-content {
    padding: 30px;
}

.form-step {
    display: none;
    animation: fadeIn 0.5s ease;
}

.form-step.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-step h2 {
    color: #1B5E20;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #E8F5E9;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2E7D32;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #E0E0E0;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-control:focus {
    border-color: #4CAF50;
    outline: none;
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

.radio-group,
.checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 10px;
}

.radio-option,
.checkbox-option {
    display: flex;
    align-items: center;
}

.radio-option input,
.checkbox-option input {
    margin-right: 8px;
}

/* Button Styles */
.form-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px solid #E8F5E9;
}

.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-prev {
    background-color: #E0E0E0;
    color: #666;
}

.btn-prev:hover {
    background-color: #BDBDBD;
}

.btn-next {
    background-color: #4CAF50;
    color: white;
}

.btn-next:hover {
    background-color: #388E3C;
}

.btn-submit {
    background-color: #FF9800;
    color: white;
}

.btn-submit:hover {
    background-color: #F57C00;
}

/* Responsive Design */
@media (max-width: 768px) {
    .stepper {
        flex-wrap: wrap;
    }

    .step {
        width: calc(100% / 3);
        margin-bottom: 15px;
    }

    .stepper::before {
        display: none;
    }

    .form-navigation {
        flex-direction: column;
        gap: 15px;
    }

    .btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .step {
        width: calc(100% / 2);
    }

    .header h1 {
        font-size: 24px;
    }

    .form-content {
        padding: 20px;
    }
}

/* Step Completion Animation */
@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

.step.completed .step-circle {
    animation: pulse 0.5s ease;
}

.container-Form {
    display: flex;
    justify-content: center;
    align-items: center;
     padding: 50px;
         font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif; 

}
.Benifits-Title2 {
    font-size: 40px;
    font-family: cursive;
    text-align: center;
    margin: 0 auto;
    display: block;
 
    color: #FF9800;
}
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    color: white;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Dropdown styles */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    z-index: 1000;
    border-radius: 4px;
}

.dropdown-content a {
    color: #333;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    background-color: #f1f1f1;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* Mobile styles */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Mobile responsive design */
@media screen and (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #2e7d32;
        padding: 1rem;
        z-index: 1000;
        gap: 1rem;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .dropdown-content {
        position: static;
        box-shadow: none;
        background-color: rgba(255,255,255,0.1);
        margin-top: 0.5rem;
        display: none;
    }
    
    .dropdown.active .dropdown-content {
        display: block;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .nav-actions {
        gap: 0.5rem;
    }
    
    .btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
}

/* Button styles */
.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    cursor: pointer;
    border: none;
}

 

.btn-primary {
    background-color: #4CAF50;
    color: white;
}

.btn-primary:hover {
    background-color: #45a049;
}
.SuccessMSG{
    color: orange;
    margin-top: 7px;
}
.HowDoesimage{
    border-radius: 121px  ;
}
.Vendor_question{
    color:#0B644D ;
       text-align: center;
       font-size: 30px;
    margin: 0 auto;
    display: block;
}
.sweet-message{
      text-align: center;
    margin: 0 auto;
    display: block; 
}
/* Users Management Table Styles */
.card {
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
    border: none;
}

.card-header {
    background: linear-gradient(135deg, #0B644D 0%, #0B644D 100%);
    color: white;
    border-bottom: none;
    padding: 1.5rem 1.5rem;
    border-radius: 10px 10px 0 0 !important;
}

.card-header h3 {
    margin: 0;
    font-weight: 600;
    font-size: 1.5rem;
}

/* Table Styles */
 

.table {
    margin-left: auto;
    margin-right: auto;
}

.table thead th {
    border: none;
    padding: 1rem 0.75rem;
    font-weight: 600;
    color: #2d3748;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    border-bottom: 2px solid #e2e8f0;
}

.table tbody tr {
    transition: all 0.3s ease;
}

.table tbody tr:hover {
    background-color: #f7fafc;
     box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.table tbody td {
    padding: 1rem 0.75rem;
    border-color: #e2e8f0;
    vertical-align: middle;
    color: #4a5568;
}

.table tbody tr:nth-child(even) {
    background-color: #f8fafc;
}

.table tbody tr:nth-child(even):hover {
    background-color: #edf2f7;
}

  
/* Empty State */
.table tbody td.text-center {
    padding: 2rem;
    font-style: italic;
 }

/* Badge for Status (if you add status column later) */
.badge {
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-weight: 500;
    font-size: 0.8rem;
}

/* Pagination Styles (if you add pagination later) */
.pagination {
    margin-bottom: 0;
}

.page-link {
    border: none;
    color: #0B644D;
    padding: 0.5rem 0.75rem;
    margin: 0 0.2rem;
    border-radius: 6px;
}

.page-link:hover {
    background-color: #0B644D;
    color: white;
}

.page-item.active .page-link {
    background: linear-gradient(135deg, #0B644D 0%, #0B644D 100%);
    border: none;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .table-responsive {
        border: 1px solid #e2e8f0;
        border-radius: 8px;
    }
    
    .table thead {
        display: none;
    }
    
    .table, .table tbody, .table tr, .table td {
        display: block;
        width: 100%;
    }
    
    .table tr {
        margin-bottom: 1rem;
        border: 1px solid #e2e8f0;
        border-radius: 8px;
        padding: 0.5rem;
    }
    
    .table td {
        text-align: right;
        position: relative;
        padding-left: 50%;
        border: none;
        border-bottom: 1px solid #e2e8f0;
    }
    
    .table td:last-child {
        border-bottom: none;
    }
    
    .table td::before {
        content: attr(data-label);
        position: absolute;
        left: 0;
        width: 45%;
        padding-left: 1rem;
        font-weight: 600;
        text-align: left;
        text-transform: uppercase;
        font-size: 0.8rem;
         
    }
    
    .table td .btn-group {
        justify-content: flex-end;
    }
}
.role{
     padding: 11px;
    border-radius: 20px;
    background-color: rgb(125, 143, 127);
    color: white;
}

.EditBTN{  padding: 11px;
    border-radius: 20px;
    background-color: rgb(246, 155, 9);
    color: white;}


.DeleteBTN{  padding: 11px;
    border-radius: 20px;
    background-color: rgb(224, 26, 26);
    color: white;}
.RestautTitle{
    margin-top: -50px;
font-size: 45px;
color: rgb(246, 155, 9);
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
border-bottom: solid 2px #0B644D;
}
.sectionTitle{
 font-size: 30px;
color: #0B644D;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    border-bottom: solid 2px #0B644D;  

}
 

.add-meal-btn{
      padding: 11px;
    border-radius: 20px;
    background-color: rgb(246, 155, 9);
    color: white;
    margin-top: 20px;

}.remove-meal-btn{
      padding:9px;
    border-radius: 20px;
    background-color: rgb(246, 37, 9);
    color: white;
}
.meal-section{
    padding-bottom: 10px;
    border-bottom: solid 2px #0B644D;  
}



.hero-title.animate-float {
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
.FormBecome-title{
     min-width: 300px;
    padding: 40px;
    display: flex;
     justify-content: center;
     margin-bottom: -59px;
         font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif; 
color: #0C6550;

}