/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: linear-gradient(to bottom, #f8f9fa 0%, #e9ecef 100%);
    overflow-x: hidden;
    max-width: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Sticky Farmer Registration Button */
.farmer-registration-btn {
    position: fixed;
    top: 50%;
    right: -80px;
    transform: translateY(-50%) rotate(-90deg);
    transform-origin: center center;
    background: linear-gradient(135deg, #1e5799 0%, #2989d8 50%, #207cca 100%);
    color: white;
    padding: 14px 28px;
    font-weight: bold;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    border: 0;
    border-radius: 6px 6px 0 0;
    box-shadow: -2px 2px 12px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    transition: all 0.3s ease;
    white-space: nowrap;
    min-width: 180px;
    text-align: center;
}

.farmer-registration-btn:hover {
    background: linear-gradient(135deg, #2989d8 0%, #1e5799 50%, #174d7a 100%);
    box-shadow: -3px 3px 18px rgba(0, 0, 0, 0.3);
    transform: translateY(-50%) rotate(-90deg) translateX(-5px);
}

/* Header */
.header {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid #27ae60;
    overflow: visible;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    padding: 12px 15px;
    overflow: visible;
}

.menu-toggle {
    display: none;
    background: transparent;
    border: 0;
    color: #2c3e50;
    font-size: 28px;
    padding: 8px 10px;
    border-radius: 6px;
    cursor: pointer;
}

.menu-toggle:focus {
    outline: 2px solid #27ae60;
    outline-offset: 2px;
}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    background: white;
    padding: 8px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.15);
    transition: all 0.3s ease;
}

.logo:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(39, 174, 96, 0.25);
}

.logo img {
    height: 70px;
    width: auto;
    transition: transform 0.3s;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.logo:hover img {
    transform: scale(1.05);
}

.logo a {
    display: flex;
    align-items: center;
}

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.logo-title {
    font-size: 18px;
    font-weight: 800;
    color: #27ae60;
    line-height: 1.2;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.logo-subtitle {
    font-size: 11.5px;
    font-weight: 600;
    color: #5a6c7d;
    line-height: 1.2;
    letter-spacing: 0.3px;
}

.main-nav {
    overflow: visible;
}

.main-nav ul {
    display: flex;
    gap: 2px;
    flex-wrap: nowrap;
    align-items: center;
    overflow: visible;
}

.main-nav li {
    position: relative;
    overflow: visible;
}

.main-nav .dropdown>a {
    display: flex;
    align-items: center;
    gap: 3px;
    white-space: nowrap;
}

.main-nav .dropdown>a::after {
    content: '+';
    display: inline-block;
    font-size: 13px;
    font-weight: bold;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1px;
}

.main-nav .dropdown.open>a::after {
    transform: rotate(45deg);
}

.main-nav a {
    color: #2c3e50;
    font-weight: 600;
    padding: 10px 12px;
    display: block;
    transition: all 0.3s ease;
    font-size: 13.5px;
    border-radius: 6px;
    position: relative;
}

.main-nav a:hover,
.main-nav a.active {
    color: #ffffff;
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    box-shadow: 0 4px 12px rgba(39, 174, 96, 0.3);
    transform: translateY(-2px);
}

.main-nav a.active {
    font-weight: 700;
}

.main-nav .dropdown>.dropdown-menu {
    display: block;
    /* keep block for animation control */
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.main-nav .dropdown.open>.dropdown-menu {
    pointer-events: auto;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    min-width: 240px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
    padding: 8px 0;
    border: 1px solid #ecf0f1;
    border-radius: 8px;
    margin-top: 6px;
    z-index: 2000;
    max-height: 400px;
    overflow-y: auto;
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    padding: 10px 16px;
    white-space: nowrap;
}

.dropdown-menu a:hover {
    background-color: #f8f9fa;
}

/* Ensure dropdowns aren't clipped */
.header {
    overflow: visible;
}

.social-links {
    display: flex;
    gap: 8px;
    margin-left: 10px;
    flex-shrink: 0;
}

.social-links a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    transition: all 0.3s ease;
    border-radius: 50%;
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    box-shadow: 0 3px 10px rgba(39, 174, 96, 0.3);
}

.social-links a:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 6px 20px rgba(39, 174, 96, 0.5);
    background: linear-gradient(135deg, #2ecc71, #27ae60);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 650px;
    height: auto;
    overflow: hidden;
    background: linear-gradient(135deg, #1a472a 0%, #27ae60 100%);
    display: flex;
    align-items: center;
}

.hero-slider {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.hero-slide {
    display: none;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.hero-slide.active {
    display: block;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.65) 0%, 
        rgba(27, 94, 32, 0.75) 50%,
        rgba(0, 0, 0, 0.7) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    text-align: center;
    color: white;
    width: 100%;
    max-width: 1200px;
    padding: 80px 40px;
    z-index: 10;
    margin: 0 auto;
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(15px);
    padding: 12px 28px;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    margin-bottom: 30px;
    animation: fadeInDown 0.8s ease-out;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.hero-badge i {
    font-size: 18px;
    color: #fff;
    animation: pulse 2s ease-in-out infinite;
}

.hero-badge span {
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Hero Title */
.hero-title {
    font-size: 80px;
    margin-bottom: 25px;
    font-weight: 900;
    letter-spacing: 2px;
    line-height: 1.1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.title-line-1 {
    display: block;
    animation: slideInLeft 1s ease-out 0.3s backwards;
    color: #ffffff;
    text-shadow: 
        0 0 10px rgba(39, 174, 96, 0.8),
        0 0 20px rgba(39, 174, 96, 0.6),
        3px 6px 25px rgba(0, 0, 0, 0.8),
        0 0 40px rgba(46, 204, 113, 0.4);
    text-transform: uppercase;
}

.title-line-2 {
    display: block;
    animation: slideInRight 1s ease-out 0.5s backwards;
    background: linear-gradient(135deg, #2ecc71 0%, #a8e6cf 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    position: relative;
    text-transform: uppercase;
}

.title-line-2::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    text-shadow: 
        3px 6px 25px rgba(0, 0, 0, 0.9),
        0 0 20px rgba(46, 204, 113, 0.6);
    -webkit-text-fill-color: transparent;
}

/* Hero Subtitle */
.hero-subtitle {
    font-size: 30px;
    text-shadow: 
        2px 4px 15px rgba(0, 0, 0, 0.7),
        0 0 30px rgba(46, 204, 113, 0.5);
    font-weight: 600;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease-out 0.7s backwards;
    letter-spacing: 1px;
    color: #ffffff;
    line-height: 1.4;
}

/* Hero Description */
.hero-description {
    font-size: 20px;
    text-shadow: 
        2px 3px 12px rgba(0, 0, 0, 0.8),
        0 0 20px rgba(0, 0, 0, 0.6);
    font-weight: 400;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease-out 0.9s backwards;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    color: #f0f0f0;
    background: rgba(0, 0, 0, 0.2);
    padding: 15px 25px;
    border-radius: 10px;
    backdrop-filter: blur(5px);
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
    animation: fadeInUp 0.8s ease-out 1s backwards;
    flex-wrap: wrap;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.hero-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.hero-btn:hover::before {
    width: 300px;
    height: 300px;
}

.hero-btn i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.hero-btn:hover i {
    transform: scale(1.2) rotate(5deg);
}

.hero-btn-primary {
    background: #ffffff;
    color: #1e7e34;
    border: 3px solid #ffffff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.hero-btn-primary:hover {
    background: #2ecc71;
    color: #ffffff;
    border-color: #2ecc71;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(46, 204, 113, 0.5);
}

.hero-btn-secondary {
    background: rgba(46, 204, 113, 0.2);
    color: #ffffff;
    border: 3px solid rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.95);
    color: #1e7e34;
    border-color: #ffffff;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.4);
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Hero Stats */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 50px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.hero-stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    padding: 35px 25px;
    border-radius: 20px;
    border: 3px solid rgba(255, 255, 255, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.hero-stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(46, 204, 113, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.hero-stat-item:hover::before {
    opacity: 1;
}

.hero-stat-item:hover {
    background: rgba(255, 255, 255, 0.35);
    transform: translateY(-12px) scale(1.05);
    border-color: rgba(255, 255, 255, 0.7);
    box-shadow: 0 20px 50px rgba(46, 204, 113, 0.4);
}

.hero-stat-item i {
    font-size: 42px;
    color: #fff;
    margin-bottom: 15px;
    text-shadow: 
        0 3px 10px rgba(0, 0, 0, 0.6),
        0 0 20px rgba(46, 204, 113, 0.8);
    transition: transform 0.4s ease;
}

.hero-stat-item:hover i {
    transform: scale(1.2) rotate(5deg);
}

.stat-number {
    font-size: 36px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 10px;
    text-shadow: 
        0 3px 12px rgba(0, 0, 0, 0.8),
        0 0 20px rgba(46, 204, 113, 0.6);
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}

/* Quick Actions Section */
.quick-actions {
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    padding: 0;
    margin-top: -80px;
    position: relative;
    z-index: 10;
}

.quick-actions .container {
    padding: 60px 20px;
}

.quick-actions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.quick-action-card {
    background: white;
    padding: 35px 25px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    text-decoration: none;
}

.quick-action-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.action-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.quick-action-card:hover .action-icon {
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
    transform: rotate(360deg);
}

.action-icon i {
    font-size: 32px;
    color: white;
}

.quick-action-card h3 {
    color: #2c3e50;
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 700;
}

.quick-action-card p {
    color: #7f8c8d;
    font-size: 14px;
    margin: 0;
}

/* Main Content */
.main-content {
    padding: 80px 0;
    background: transparent;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 700;
}

.section-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #27ae60, #2ecc71);
    margin: 0 auto;
    border-radius: 2px;
}

/* About TBM Section */
.about-tbm-section {
    margin-bottom: 80px;
    position: relative;
}

.about-tbm-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(180deg, rgba(39, 174, 96, 0.03) 0%, transparent 100%);
    pointer-events: none;
}

.about-content {
    display: grid;
    gap: 40px;
}

.about-main {
    background: linear-gradient(135deg, #ffffff 0%, #f8fffe 100%);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(39, 174, 96, 0.12);
    text-align: center;
    border: 1px solid rgba(39, 174, 96, 0.1);
    position: relative;
    overflow: hidden;
}

.about-main::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(46, 204, 113, 0.05) 0%, transparent 70%);
    animation: pulse 8s infinite;
    pointer-events: none;
    z-index: 0;
}

.about-icon-wrapper {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 8px 25px rgba(39, 174, 96, 0.3);
    animation: float 3s ease-in-out infinite;
    position: relative;
    z-index: 1;
}

.about-icon-wrapper::before {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    padding: 3px;
    background: linear-gradient(135deg, #27ae60, #2ecc71, #27ae60);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.5;
    animation: rotate 3s linear infinite;
}

.about-icon-wrapper i {
    font-size: 50px;
    color: white;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.about-main h3 {
    font-size: 32px;
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    font-weight: 800;
    letter-spacing: -0.5px;
    position: relative;
    z-index: 1;
}

.about-main p {
    color: #5a6c7d;
    line-height: 1.9;
    font-size: 17px;
    margin-bottom: 30px;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    position: relative;
    z-index: 1;
}

.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 5px 20px rgba(39, 174, 96, 0.3);
    position: relative;
    z-index: 1;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(39, 174, 96, 0.4);
}

.btn-primary i {
    margin-left: 8px;
    transition: margin-left 0.3s ease;
}

.btn-primary:hover i {
    margin-left: 12px;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.about-feature-card {
    background: linear-gradient(135deg, #ffffff 0%, #f9fffe 100%);
    padding: 40px 35px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(39, 174, 96, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(39, 174, 96, 0.1);
    position: relative;
    overflow: hidden;
}

.about-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #27ae60, #2ecc71);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.about-feature-card:hover::before {
    transform: scaleX(1);
}

.about-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(39, 174, 96, 0.2);
    border-color: rgba(39, 174, 96, 0.3);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(39, 174, 96, 0.1), rgba(46, 204, 113, 0.15));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.4s ease;
}

.about-feature-card:hover .feature-icon {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    transform: scale(1.1) rotate(5deg);
}

.feature-icon i {
    font-size: 32px;
    color: #27ae60;
    transition: color 0.4s ease;
}

.about-feature-card:hover .feature-icon i {
    color: white;
}

.about-feature-card h4 {
    font-size: 22px;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 800;
    letter-spacing: -0.3px;
}

.about-feature-card p {
    color: #5a6c7d;
    line-height: 1.7;
    font-size: 15px;
    margin: 0;
}

/* Initiatives Section */
.initiatives-section {
    margin-bottom: 80px;
    background: linear-gradient(135deg, #f8fffe 0%, #ffffff 50%, #f8fffe 100%);
    padding: 60px 40px;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(39, 174, 96, 0.08);
}

.initiatives-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(46, 204, 113, 0.05), transparent);
    animation: shimmer 8s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.initiatives-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.initiative-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(39, 174, 96, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(39, 174, 96, 0.1);
    position: relative;
    z-index: 1;
}

.initiative-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 50px rgba(39, 174, 96, 0.2);
    border-color: rgba(39, 174, 96, 0.3);
}

.initiative-image {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    padding: 50px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.initiative-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.15) 0%, transparent 60%);
}

.initiative-image i {
    font-size: 70px;
    color: rgba(255, 255, 255, 0.95);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.initiative-card:hover .initiative-image i {
    transform: scale(1.2) rotate(8deg);
}

.initiative-content {
    padding: 30px;
}

.initiative-content h3 {
    font-size: 22px;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 800;
    letter-spacing: -0.4px;
    transition: color 0.3s ease;
}

.initiative-card:hover .initiative-content h3 {
    color: #27ae60;
}

.initiative-content p {
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 15px;
    font-weight: 400;
}

.link-arrow {
    color: #27ae60;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.link-arrow:hover {
    color: #229954;
}

.link-arrow i {
    margin-left: 8px;
    transition: margin-left 0.3s ease;
}

.link-arrow:hover i {
    margin-left: 12px;
}

/* Bamboo in Tripura Section */
.bamboo-tripura-section {
    margin-bottom: 80px;
}

.bamboo-info-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.bamboo-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8fffe 100%);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(39, 174, 96, 0.12);
    border: 1px solid rgba(39, 174, 96, 0.1);
    transition: all 0.3s ease;
}

.bamboo-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(39, 174, 96, 0.18);
}

.bamboo-icon-large {
    width: 110px;
    height: 110px;
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: 0 8px 25px rgba(39, 174, 96, 0.3);
    animation: float 3s ease-in-out infinite;
}

.bamboo-icon-large i {
    font-size: 55px;
    color: white;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.bamboo-content p {
    color: #5a6c7d;
    line-height: 1.8;
    font-size: 16px;
    margin-bottom: 30px;
}

.btn-secondary {
    display: inline-block;
    background: white;
    color: #27ae60;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    border: 2px solid #27ae60;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-secondary:hover {
    background: #27ae60;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(39, 174, 96, 0.3);
}

.bamboo-facts {
    background: linear-gradient(135deg, #27ae60, #229954);
    padding: 45px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(39, 174, 96, 0.3);
}

.fact-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 25px;
    color: white;
    transition: transform 0.3s ease;
}

.fact-item:last-child {
    margin-bottom: 0;
}

.fact-item:hover {
    transform: translateX(5px);
}

.fact-item i {
    font-size: 26px;
    color: #2ecc71;
    margin-top: 3px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.fact-item:hover i {
    transform: scale(1.2);
}

.fact-item span {
    font-size: 16px;
    line-height: 1.7;
    font-weight: 400;
}

.fact-item strong {
    font-weight: 700;
}

/* Info Section - Legacy Support */
.info-section {
    margin-bottom: 80px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
}

.info-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #27ae60, #2ecc71, #16a085);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.info-card:hover::before {
    transform: scaleX(1);
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 48px rgba(39, 174, 96, 0.2);
    background: rgba(255, 255, 255, 1);
}

.info-card h3 {
    color: #27ae60;
    margin-bottom: 20px;
    font-size: 22px;
    font-weight: 700;
    border-bottom: none;
    padding-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-card p {
    color: #5a6c7d;
    line-height: 1.9;
    margin-bottom: 20px;
    font-size: 15px;
}

.btn {
    display: inline-block;
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.3);
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.btn:hover {
    background: linear-gradient(135deg, #229954 0%, #27ae60 100%);
    box-shadow: 0 6px 25px rgba(39, 174, 96, 0.5);
    transform: translateY(-2px);
}

/* Bamboo in Tripura Section */
.bamboo-tripura {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 50%, #16a085 100%);
    color: white;
    padding: 60px 50px;
    border-radius: 25px;
    margin-bottom: 80px;
    text-align: center;
    box-shadow: 0 15px 45px rgba(39, 174, 96, 0.3);
    position: relative;
    overflow: hidden;
}

.bamboo-tripura::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.bamboo-tripura h2 {
    font-size: 36px;
    margin-bottom: 25px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    z-index: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.bamboo-tripura p {
    font-size: 17px;
    line-height: 2;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    font-weight: 300;
}

/* Why Invest Section */

/* Why Invest Section */
.why-invest-section {
    margin-bottom: 80px;
    padding: 60px 40px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.why-invest-section>h2 {
    text-align: center;
    color: #2c3e50;
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.why-invest-section>h2::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #27ae60, #2ecc71);
    margin: 15px auto 50px;
    border-radius: 2px;
}

.why-invest-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Circular Diagram */
.invest-diagram {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 500px;
    margin: 0 auto;
}

.invest-diagram::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    border: 2px solid #e0e0e0;
    border-radius: 50%;
}

.diagram-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 50%;
    padding: 30px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(255, 255, 255, 0.5);
    text-align: center;
    width: 280px;
    height: 280px;
    max-width: 280px;
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(39, 174, 96, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow-y: auto;
    overflow-x: hidden;
    box-sizing: border-box;
}

.diagram-center::-webkit-scrollbar {
    width: 4px;
}

.diagram-center::-webkit-scrollbar-track {
    background: transparent;
}

.diagram-center::-webkit-scrollbar-thumb {
    background: rgba(39, 174, 96, 0.3);
    border-radius: 2px;
}

.diagram-center i {
    font-size: 28px;
    color: #2c3e50;
    background: white;
    border: 2px solid #2c3e50;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 10px 0;
    flex-shrink: 0;
}

.diagram-center h3 {
    color: #2c3e50;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.3;
    flex-shrink: 0;
}

.diagram-center p {
    color: #555;
    font-size: 12.5px;
    line-height: 1.5;
    overflow-wrap: break-word;
    word-wrap: break-word;
    hyphens: auto;
}

/* Diagram Icons */
.diagram-icon {
    position: absolute;
    width: 85px;
    height: 85px;
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 25px rgba(243, 156, 18, 0.4), 0 0 0 3px rgba(255, 255, 255, 0.3);
    z-index: 1;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 3px solid rgba(255, 255, 255, 0.8);
}

.diagram-icon:hover {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    box-shadow: 0 10px 35px rgba(39, 174, 96, 0.6), 0 0 0 4px rgba(255, 255, 255, 0.5);
    transform: scale(1.15);
}

.diagram-icon.active {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    box-shadow: 0 10px 35px rgba(39, 174, 96, 0.6), 0 0 0 4px rgba(255, 255, 255, 0.5);
    transform: scale(1.2);
}

.diagram-icon i {
    color: white;
    font-size: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Icon 1 - Top (0 degrees) */
.diagram-icon.icon-1 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) translateY(-200px);
}

.diagram-icon.icon-1:hover {
    transform: translate(-50%, -50%) translateY(-200px) scale(1.15);
}

/* Icon 2 - Top Right (72 degrees) */
.diagram-icon.icon-2 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(72deg) translateY(-200px) rotate(-72deg);
}

.diagram-icon.icon-2:hover {
    transform: translate(-50%, -50%) rotate(72deg) translateY(-200px) rotate(-72deg) scale(1.15);
}

/* Icon 3 - Bottom Right (144 degrees) */
.diagram-icon.icon-3 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(144deg) translateY(-200px) rotate(-144deg);
}

.diagram-icon.icon-3:hover {
    transform: translate(-50%, -50%) rotate(144deg) translateY(-200px) rotate(-144deg) scale(1.15);
}

/* Icon 4 - Bottom Left (216 degrees) */
.diagram-icon.icon-4 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(216deg) translateY(-200px) rotate(-216deg);
}

.diagram-icon.icon-4:hover {
    transform: translate(-50%, -50%) rotate(216deg) translateY(-200px) rotate(-216deg) scale(1.15);
}

/* Icon 5 - Top Left (288 degrees) */
.diagram-icon.icon-5 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(288deg) translateY(-200px) rotate(-288deg);
}

.diagram-icon.icon-5:hover {
    transform: translate(-50%, -50%) rotate(288deg) translateY(-200px) rotate(-288deg) scale(1.15);
}

/* Reasons List */
.reasons-list-container h3 {
    color: #2c3e50;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.reasons-numbered {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.reason-numbered-item {
    display: flex;
    gap: 25px;
    align-items: flex-start;
    padding: 20px;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(5px);
    border-radius: 15px;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.reason-numbered-item:hover {
    background: rgba(255, 255, 255, 0.9);
    border-left-color: #27ae60;
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.reason-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.3);
}

.reason-numbered-item p {
    color: #5a6c7d;
    font-size: 15px;
    line-height: 1.8;
    margin: 0;
    padding-top: 8px;
    flex: 1;
}

/* Reasons Section (old - keep for other pages) */
.reasons-section {
    margin-bottom: 60px;
}

.reasons-section h2 {
    text-align: center;
    color: #27ae60;
    font-size: 32px;
    margin-bottom: 40px;
}

.reasons-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.reason-item {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #27ae60;
}

.reason-item p {
    color: #666;
    line-height: 1.8;
}

/* Page Content Styles */
.page-header {
    background: linear-gradient(135deg, rgba(39, 174, 96, 0.9) 0%, rgba(46, 204, 113, 0.9) 100%), 
                url('../images/header-nav-banner.png') center center;
    background-size: cover;
    background-position: center;
    color: white;
    padding: 60px 0;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 10px;
}

.page-content {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.page-content h2 {
    color: #27ae60;
    margin-top: 30px;
    margin-bottom: 20px;
    font-size: 28px;
    border-bottom: 2px solid #27ae60;
    padding-bottom: 10px;
}

.page-content h3 {
    color: #2c3e50;
    margin-top: 20px;
    margin-bottom: 15px;
    font-size: 22px;
}

.page-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
}

.page-content ul {
    list-style: disc;
    margin-left: 30px;
    margin-bottom: 20px;
}

.page-content ul li {
    color: #666;
    line-height: 1.8;
    margin-bottom: 10px;
}

/* Table Styles */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

table thead {
    background-color: #27ae60;
    color: white;
}

table th {
    padding: 15px;
    text-align: left;
    font-weight: bold;
}

table td {
    padding: 12px 15px;
    border-bottom: 1px solid #ddd;
    color: #666;
}

table tbody tr:hover {
    background-color: #f8f9fa;
}

table tbody tr:last-child td {
    border-bottom: none;
}

/* Notification List */
.notification-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.notification-item {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 15px;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

.notification-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.notification-item img {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
}

.notification-item>a:not(.download-icon) {
    color: #2c3e50;
    font-weight: 500;
    flex: 1;
    font-size: 15px;
    line-height: 1.6;
}

.notification-item>a:not(.download-icon):hover {
    color: #27ae60;
    text-decoration: underline;
}

.notification-item .download-icon {
    margin-left: auto;
    color: #27ae60;
    font-size: 20px;
    padding: 10px;
    border-radius: 50%;
    background: rgba(39, 174, 96, 0.1);
    transition: all 0.3s ease;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notification-item .download-icon:hover {
    background: #27ae60;
    color: white;
    transform: scale(1.1);
}

/* Progress Reports Section */
.reports-section {
    margin-bottom: 40px;
}

.reports-section h2 {
    color: #27ae60;
    margin-bottom: 20px;
    font-size: 28px;
}

.reports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.report-item {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s;
}

.report-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.report-item a {
    color: #27ae60;
    font-weight: bold;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a3a2e 0%, #2c3e50 50%, #1a3a2e 100%);
    color: white;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

/* Footer Top Section */
.footer-top {
    background: rgba(0, 0, 0, 0.2);
    padding: 60px 0 40px;
    border-bottom: 2px solid rgba(39, 174, 96, 0.3);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.footer-column h4 {
    color: #2ecc71;
    margin-bottom: 25px;
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid rgba(46, 204, 113, 0.3);
    padding-bottom: 12px;
}

.footer-column h4 i {
    font-size: 16px;
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-column ul li {
    position: relative;
    padding-left: 18px;
}

.footer-column ul li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-size: 14px;
}

.footer-column a {
    color: #d1d8e0;
    transition: all 0.3s;
    font-size: 14px;
    line-height: 1.6;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
}

.footer-column a:hover {
    color: #2ecc71;
    padding-left: 5px;
}

/* Footer Middle Section */
.footer-middle {
    background: rgba(0, 0, 0, 0.15);
    padding: 40px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-info-section {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
    max-width: 900px;
    margin: 0 auto;
}

.footer-logo-section {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-logo-container {
    background: #ffffff;
    padding: 15px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.footer-logo-container:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.footer-logo-section img {
    height: 80px;
    width: auto;
    display: block;
    filter: brightness(1.1) drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.footer-logo-section h3 {
    color: #2ecc71;
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 5px;
    text-transform: uppercase;
    line-height: 1.2;
}

.footer-logo-section p {
    color: #bdc3c7;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    color: #d1d8e0;
    font-size: 14px;
    line-height: 1.6;
}

.contact-item i {
    color: #27ae60;
    font-size: 18px;
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-social-section {
    text-align: center;
}

.footer-social-section h4 {
    color: #2ecc71;
    font-size: 16px;
    margin-bottom: 20px;
    font-weight: 700;
    text-transform: uppercase;
}

.footer-social {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.footer-social a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    border-radius: 50%;
    color: white;
    font-size: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.3);
}

.footer-social a:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 25px rgba(46, 204, 113, 0.5);
    background: linear-gradient(135deg, #2ecc71, #27ae60);
}

/* Footer Bottom Section */
.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 25px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-address {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #d1d8e0;
    font-size: 14px;
    font-weight: 500;
}

.footer-address i {
    color: #2ecc71;
    font-size: 16px;
}

.footer-bottom-content p {
    color: #bdc3c7;
    font-size: 14px;
    margin: 0;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #d1d8e0;
    font-size: 14px;
    transition: color 0.3s;
    font-weight: 500;
}

.footer-links a:hover {
    color: #2ecc71;
}

.footer-links .separator {
    color: rgba(255, 255, 255, 0.3);
}

.go-top {
    color: #2ecc71;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.go-top:hover {
    color: #fff;
    transform: translateY(-2px);
}

.go-top i {
    font-size: 12px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .logo img {
        height: 65px;
    }

    .main-nav a {
        padding: 10px 10px;
        font-size: 13px;
    }

    .social-links {
        gap: 6px;
    }

    .social-links a {
        width: 34px;
        height: 34px;
        font-size: 15px;
    }
}

@media (max-width: 1024px) {
    .logo {
        padding: 8px 16px;
    }

    .logo img {
        height: 60px;
    }

    .main-nav a {
        padding: 9px 8px;
        font-size: 12.5px;
    }

    .social-links a {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }

    /* Hero - Large Tablet */
    .hero {
        min-height: 600px;
    }

    .hero-content {
        padding: 70px 35px;
    }

    .hero-badge {
        padding: 8px 20px;
    }

    .hero-badge span {
        font-size: 13px;
    }

    .hero-title {
        font-size: 56px;
    }

    .hero-subtitle {
        font-size: 22px;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-buttons {
        gap: 15px;
    }

    .hero-btn {
        padding: 14px 30px;
        font-size: 15px;
    }

    .hero-stats {
        gap: 18px;
        margin-top: 40px;
    }

    .hero-stat-item {
        padding: 28px 18px;
    }

    .hero-stat-item i {
        font-size: 34px;
    }

    .stat-number {
        font-size: 28px;
    }

    .stat-label {
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .header .container {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 12px;
        align-items: center;
        padding: 12px 15px;
    }

    .logo {
        flex: 0 0 auto;
        padding: 8px 15px;
    }

    .logo img {
        height: 55px;
    }

    .menu-toggle {
        display: block;
        margin-left: auto;
        font-size: 24px;
        padding: 8px 10px;
        cursor: pointer;
    }

    .main-nav {
        width: 100%;
        display: none;
        order: 3;
    }

    .main-nav.active {
        display: block;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 0;
        background: #f8f9fa;
        border-radius: 6px;
        padding: 8px 0;
    }

    .main-nav li {
        border-bottom: 1px solid #ecf0f1;
    }

    .main-nav li:last-child {
        border-bottom: 0;
    }

    .main-nav a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 12px 16px;
        color: #2c3e50;
        font-weight: 500;
    }

    .main-nav .dropdown>a {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    /* Mobile-friendly dropdowns */
    .main-nav .dropdown>.dropdown-menu {
        position: static;
        width: 100%;
        box-shadow: none;
        border: 0;
        border-radius: 0;
        margin-top: 0;
        padding: 0;
        transform: none;
        background: #ffffff;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        transition: max-height 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
    }

    .main-nav .dropdown.open>.dropdown-menu {
        max-height: 500px;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .dropdown-menu li {
        border-bottom: 1px solid #e0e0e0;
        background: #f8f9fa;
    }

    .dropdown-menu a {
        padding: 10px 16px 10px 32px;
        font-size: 14px;
        color: #2c3e50 !important;
        font-weight: 500;
    }

    .dropdown-menu a:hover {
        background: #e8f5e9;
        color: #27ae60 !important;
    }

    .social-links {
        display: none;
    }

    .farmer-registration-btn {
        font-size: 13px;
        padding: 12px 22px;
        right: -45px;
        min-width: 160px;
    }

    /* Initiatives - Tablet */
    .initiatives-section {
        padding: 50px 30px;
        border-radius: 25px;
    }

    .initiatives-grid {
        gap: 25px;
    }

    /* Footer - Tablet */
    .footer-top {
        padding: 50px 0 35px;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
        padding: 0 20px;
    }

    .footer-column {
        width: 100%;
    }

    .footer-column h4 {
        font-size: 17px;
    }

    .footer-column ul li a {
        font-size: 14px;
    }

    .footer-middle {
        padding: 35px 0;
    }

    .footer-info-section {
        flex-direction: column;
        gap: 30px;
        text-align: center;
        padding: 0 30px;
    }

    .footer-logo-section {
        justify-content: center;
    }

    .footer-logo-container {
        padding: 12px;
    }

    .footer-logo-section img {
        height: 70px;
    }

    .footer-address {
        padding: 0 20px;
    }

    .footer-bottom {
        padding: 22px 0;
    }

    .footer-bottom-content {
        padding: 0 20px;
        gap: 15px;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    /* Hero - Tablet */
    .hero {
        min-height: 550px;
    }

    .hero-content {
        padding: 60px 30px;
    }

    .hero-badge {
        padding: 8px 18px;
        margin-bottom: 20px;
    }

    .hero-badge i {
        font-size: 14px;
    }

    .hero-badge span {
        font-size: 12px;
        letter-spacing: 1px;
    }

    .hero-title {
        font-size: 48px;
        gap: 6px;
    }

    .hero-subtitle {
        font-size: 20px;
        margin-bottom: 16px;
    }

    .hero-description {
        font-size: 15px;
        margin-bottom: 30px;
    }

    .hero-buttons {
        gap: 15px;
        margin-bottom: 40px;
    }

    .hero-btn {
        padding: 14px 28px;
        font-size: 14px;
    }

    .hero-btn i {
        font-size: 16px;
    }

    /* Hero Stats - Tablet */
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin-top: 35px;
    }

    .hero-stat-item {
        padding: 25px 15px;
    }

    .hero-stat-item i {
        font-size: 30px;
    }

    .stat-number {
        font-size: 24px;
    }

    .stat-label {
        font-size: 12px;
    }

    /* Quick Actions - Mobile */
    .quick-actions {
        margin-top: -40px;
    }

    .quick-actions .container {
        padding: 40px 20px;
    }

    .quick-actions-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Section Headers - Mobile */
    .section-header h2 {
        font-size: 28px;
    }

    /* About TBM - Mobile */
    .about-main {
        padding: 35px 25px;
    }

    .about-icon-wrapper {
        width: 70px;
        height: 70px;
    }

    .about-icon-wrapper i {
        font-size: 35px;
    }

    .about-main h3 {
        font-size: 24px;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    /* Initiatives - Mobile */
    .initiatives-section {
        padding: 40px 20px;
        border-radius: 20px;
    }

    .initiatives-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Bamboo in Tripura - Mobile */
    .bamboo-info-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .bamboo-content {
        padding: 30px 25px;
    }

    .bamboo-icon-large {
        width: 80px;
        height: 80px;
    }

    .bamboo-icon-large i {
        font-size: 40px;
    }

    .bamboo-facts {
        padding: 35px 25px;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    /* Why Invest Section - Mobile */
    .why-invest-section {
        padding: 30px 15px;
        margin-bottom: 40px;
    }

    .why-invest-section>h2 {
        font-size: 26px;
        margin-bottom: 5px;
    }

    .why-invest-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 10px;
    }

    .invest-diagram {
        max-width: 350px;
        height: 350px;
        margin: 0 auto;
    }

    .invest-diagram::before {
        width: 280px;
        height: 280px;
    }

    .diagram-center {
        padding: 15px;
        width: 180px;
        height: 180px;
        max-width: 180px;
    }

    .diagram-center i {
        width: 40px;
        height: 40px;
        font-size: 20px;
        margin-bottom: 6px;
    }

    .diagram-center h3 {
        font-size: 13px;
        margin-bottom: 5px;
    }

    .diagram-center p {
        font-size: 10px;
        line-height: 1.3;
        -webkit-line-clamp: 3;
    }

    .diagram-icon {
        width: 55px;
        height: 55px;
        border-width: 2px;
    }

    .diagram-icon i {
        font-size: 22px;
    }

    .reasons-list-container h3 {
        font-size: 22px;
    }

    .reason-numbered-item p {
        font-size: 14px;
    }

    .page-content {
        padding: 20px;
    }

    table {
        font-size: 14px;
    }

    table th,
    table td {
        padding: 8px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .logo {
        padding: 6px 12px;
    }

    .logo img {
        height: 50px;
    }

    .footer-logo img {
        height: 56px;
    }

    .farmer-registration-btn {
        font-size: 11px;
        padding: 10px 18px;
        right: -50px;
        min-width: 140px;
        letter-spacing: 0.5px;
    }

    /* Hero - Small Mobile */
    .hero {
        min-height: 650px;
    }

    .hero-content {
        padding: 40px 20px;
    }

    .hero-badge {
        padding: 7px 16px;
        margin-bottom: 18px;
    }

    .hero-badge i {
        font-size: 12px;
    }

    .hero-badge span {
        font-size: 10px;
        letter-spacing: 0.8px;
    }

    .hero-title {
        font-size: 36px;
        gap: 4px;
    }

    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 14px;
    }

    .hero-description {
        font-size: 14px;
        margin-bottom: 25px;
        padding: 0 10px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 35px;
        width: 100%;
        padding: 0 10px;
    }

    .hero-btn {
        padding: 14px 30px;
        font-size: 13px;
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .hero-btn i {
        font-size: 15px;
    }

    /* Hero Stats - Small Mobile */
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-top: 30px;
    }

    .hero-stat-item {
        padding: 20px 15px;
    }

    .hero-stat-item i {
        font-size: 28px;
    }

    .stat-number {
        font-size: 22px;
    }

    .stat-label {
        font-size: 11px;
    }

    /* Quick Actions - Small Mobile */
    .quick-action-card {
        padding: 25px 20px;
    }

    .action-icon {
        width: 60px;
        height: 60px;
    }

    .action-icon i {
        font-size: 28px;
    }

    /* Section Headers - Small Mobile */
    .section-header h2 {
        font-size: 24px;
    }

    /* About TBM - Small Mobile */
    .about-main {
        padding: 25px 20px;
    }

    .about-main h3 {
        font-size: 22px;
    }

    .about-main p {
        font-size: 15px;
    }

    /* Bamboo Facts - Small Mobile */
    .fact-item {
        gap: 12px;
    }

    .fact-item i {
        font-size: 20px;
    }

    .fact-item span {
        font-size: 14px;
    }

    /* Why Invest Section - Small Mobile */
    .why-invest-section {
        padding: 20px 10px;
    }

    .why-invest-section>h2 {
        font-size: 22px;
        letter-spacing: 1px;
    }

    .why-invest-container {
        padding: 0 5px;
    }

    .invest-diagram {
        max-width: 300px;
        height: 300px;
    }

    .invest-diagram::before {
        width: 240px;
        height: 240px;
    }

    .diagram-center {
        padding: 12px;
        width: 150px;
        height: 150px;
        max-width: 150px;
    }

    .diagram-center i {
        width: 35px;
        height: 35px;
        font-size: 16px;
        border-width: 2px;
        margin-bottom: 5px;
    }

    .diagram-center h3 {
        font-size: 11px;
        margin-bottom: 4px;
    }

    .diagram-center p {
        font-size: 9px;
        line-height: 1.2;
        -webkit-line-clamp: 2;
    }

    .diagram-icon {
        width: 48px;
        height: 48px;
        border-width: 2px;
    }

    .diagram-icon i {
        font-size: 18px;
    }

    .reasons-list-container h3 {
        font-size: 18px;
    }

    .reason-number {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }

    .reason-numbered-item p {
        font-size: 13px;
    }

    .hero {
        height: 300px;
    }

    .hero-content h1 {
        font-size: 24px;
    }

    .hero-content p {
        font-size: 16px;
    }

    /* Footer - Mobile */
    .footer-top {
        padding: 40px 0 30px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: left;
        padding: 0 20px;
    }

    .footer-column {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    .footer-column h4 {
        font-size: 16px;
        margin-bottom: 15px;
        padding-bottom: 10px;
    }

    .footer-column ul {
        gap: 10px;
    }

    .footer-column ul li {
        margin-bottom: 8px;
        padding-left: 18px;
        word-wrap: break-word;
    }

    .footer-column ul li a {
        font-size: 13px;
        line-height: 1.5;
        display: block;
    }

    .footer-middle {
        padding: 30px 0;
    }

    .footer-info-section {
        flex-direction: column;
        gap: 25px;
        text-align: center;
        padding: 0 20px;
    }

    .footer-logo-section {
        flex-direction: column;
        gap: 15px;
        justify-content: center;
    }

    .footer-address {
        flex-direction: column;
        text-align: center;
        gap: 8px;
        padding: 0 15px;
    }

    .footer-address span {
        font-size: 13px;
        line-height: 1.6;
    }

    .footer-logo-container {
        padding: 12px;
    }

    .footer-logo-section img {
        height: 60px;
    }

    .footer-logo-text {
        text-align: center;
    }

    .footer-logo-section h3 {
        font-size: 18px;
    }

    .footer-logo-section p {
        font-size: 13px;
    }

    .footer-social-section h4 {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .footer-social {
        justify-content: center;
        gap: 15px;
    }

    .footer-social a {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .footer-bottom {
        padding: 20px 0;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        padding: 0 20px;
    }

    .footer-links {
        flex-direction: column;
        gap: 10px;
    }

    .footer-links .separator {
        display: none;
    }

    .footer-bottom p,
    .footer-links a {
        font-size: 12px;
        line-height: 1.6;
    }
}

/* Partner Cards Styles */
.partner-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.partner-card {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
    min-height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.partner-card i {
    font-size: 36px;
    color: #27ae60;
    transition: transform 0.3s, color 0.3s;
}

.partner-card:hover i {
    transform: scale(1.1);
    color: #1e8449;
}

.partner-card a {
    color: #27ae60;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.5;
    display: block;
    width: 100%;
    transition: color 0.3s;
}

.partner-card a:hover {
    color: #1e8449;
}

.partner-card span {
    color: #666;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.5;
    display: block;
}

@media (max-width: 768px) {
    .partner-grid {
        grid-template-columns: 1fr;
    }
}

/* Extra Small Mobile Devices */
@media (max-width: 380px) {
    .footer-content {
        padding: 0 15px;
    }

    .footer-column h4 {
        font-size: 15px;
    }

    .footer-column ul li a {
        font-size: 12px;
    }

    .footer-info-section {
        padding: 0 15px;
    }

    .footer-logo-section img {
        height: 50px;
    }

    .footer-logo-section h3 {
        font-size: 16px;
    }

    .footer-address {
        padding: 0 10px;
    }

    .footer-address span {
        font-size: 12px;
    }

    .footer-bottom-content {
        padding: 0 15px;
    }

    .footer-bottom p,
    .footer-links a {
        font-size: 11px;
    }

    .footer-social a {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
}

/* Tabs Styling */
.tabs-container {
    margin-top: 20px;
}

.tab-navigation {
    display: flex;
    gap: 10px;
    border-bottom: 2px solid #e0e0e0;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.tab-btn {
    background: transparent;
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tab-btn i {
    font-size: 18px;
}

.tab-btn:hover {
    color: #27ae60;
    background: rgba(39, 174, 96, 0.05);
}

.tab-btn.active {
    color: #27ae60;
    border-bottom-color: #27ae60;
    background: rgba(39, 174, 96, 0.05);
}

.tab-content-container {
    position: relative;
}

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

.tab-content.active {
    display: block;
}

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

.tab-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    max-width: 100%;
    overflow: hidden;
}

.tab-carousel {
    position: sticky;
    top: 100px;
    max-width: 100%;
    overflow: hidden;
}

.tab-text-content {
    max-width: 100%;
    overflow-x: hidden;
    word-wrap: break-word;
}

.tab-text-content h2 {
    color: #27ae60;
    font-size: 28px;
    margin-bottom: 20px;
}

.tab-text-content h3 {
    color: #27ae60;
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
}

.tab-text-content p {
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

/* Carousel Styling */
.carousel-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.carousel-track-container {
    overflow: hidden;
    width: 100%;
    max-width: 100%;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide {
    min-width: 100%;
    max-width: 100%;
    display: none;
    overflow: hidden;
}

.carousel-slide.active {
    display: block;
}

.carousel-slide img {
    width: 100%;
    max-width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #27ae60;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.carousel-btn:hover {
    background: #27ae60;
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev {
    left: 15px;
}

.carousel-btn.next {
    right: 15px;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #27ae60;
    width: 30px;
    border-radius: 5px;
}

.indicator:hover {
    background: #2ecc71;
}

/* Table Responsive */
.table-responsive {
    overflow-x: auto;
    margin-top: 20px;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    max-width: 100%;
}

.table-responsive table {
    min-width: 600px;
    width: 100%;
    display: table;
}

/* Responsive Tabs */
@media (max-width: 1024px) {
    .tab-layout {
        grid-template-columns: 1fr;
        gap: 30px;
        width: 100%;
        max-width: 100%;
    }

    .tab-carousel {
        position: relative;
        top: 0;
        width: 100%;
        max-width: 100%;
    }

    .carousel-slide img {
        height: 350px;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .tab-navigation {
        gap: 5px;
    }

    .tab-btn {
        padding: 12px 20px;
        font-size: 14px;
    }

    .tab-btn i {
        font-size: 16px;
    }

    .tab-text-content h2 {
        font-size: 24px;
    }

    .tab-text-content h3 {
        font-size: 20px;
    }

    .carousel-slide img {
        height: 300px;
    }

    .carousel-btn {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }

    .carousel-btn.prev {
        left: 10px;
    }

    .carousel-btn.next {
        right: 10px;
    }
}

@media (max-width: 480px) {
    .tab-navigation {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }

    .tab-btn {
        width: 100%;
        justify-content: center;
        padding: 15px;
        border-bottom: 1px solid #e0e0e0;
        border-radius: 0;
    }

    .tab-btn.active {
        border-bottom: 3px solid #27ae60;
    }

    .tab-layout {
        width: 100%;
        max-width: 100%;
        padding: 0;
    }

    .tab-carousel {
        width: 100%;
        max-width: 100%;
    }

    .tab-text-content {
        width: 100%;
        max-width: 100%;
        padding: 0;
    }

    .tab-text-content h2 {
        font-size: 22px;
    }

    .carousel-container {
        width: 100%;
        max-width: 100%;
        border-radius: 10px;
    }

    .carousel-slide {
        width: 100%;
        max-width: 100%;
    }

    .carousel-slide img {
        height: 250px;
        width: 100%;
        max-width: 100%;
        object-fit: cover;
    }

    .table-responsive {
        border: 1px solid #ddd;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        width: 100%;
        max-width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .table-responsive table {
        font-size: 11px;
        min-width: 700px;
        width: 700px;
        display: table;
    }

    .table-responsive th,
    .table-responsive td {
        padding: 8px 6px;
        font-size: 10px;
        white-space: normal;
        word-wrap: break-word;
    }

    .table-responsive th {
        font-size: 11px;
        font-weight: 600;
    }
}
}
}