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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Header Styles */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo svg {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-link:hover {
    color: #2E8B57;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 200px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-radius: 8px;
    padding: 1rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    list-style: none;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    display: block;
    padding: 0.5rem 1rem;
    color: #333;
    text-decoration: none;
    transition: background 0.3s ease;
}

.dropdown-link:hover {
    background: #f8f9fa;
    color: #2E8B57;
}

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

.login-btn {
    background: #2E8B57;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.login-btn:hover {
    background: #236B43;
    transform: translateY(-2px);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 3px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    margin-top: 80px;
    height: 70vh;
    min-height: 500px;
    position: relative;
    overflow: hidden;
}

.hero-slider {
    height: 100%;
}

.swiper-slide {
    height: 100%;
}

.hero-content {
    height: 100%;
    background: linear-gradient(135deg, #2E8B57 0%, #3CB371 100%);
    display: flex;
    align-items: center;
    position: relative;
}

.hero-content::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1560472354-b33ff0c44a43?w=800&h=600&fit=crop') center/cover;
    opacity: 0.1;
}

.hero-alt {
    background: linear-gradient(135deg, #3CB371 0%, #2E8B57 100%);
}

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

.hero-text {
    max-width: 50%;
    color: white;
    animation: fadeInUp 1s ease;
}

.hero-text h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.hero-text h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.cta-btn {
    display: inline-block;
    background: white;
    color: #2E8B57;
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

/* Swiper Customization */
.swiper-pagination-bullet {
    background: white;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: white;
}

.swiper-button-next,
.swiper-button-prev {
    color: white;
}

/* Services Section */
.services {
    padding: 5rem 0;
    background: #f8f9fa;
}

.services-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.services-header h4 {
    color: #2E8B57;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.services-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2E8B57;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.services-header .headn h2 {
    text-align: center !important;
    margin: 0 auto;
    max-width: 100%;
}

.services-header p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}

/* Responsive Adjustments for Services Section */

/* Large Tablets and Small Laptops (1024px - 900px) */
@media (max-width: 1024px) and (min-width: 901px) {
    .services {
        padding: 4rem 0;
    }

    .services-header h2 {
        font-size: 2.2rem;
    }

    .services-header h4 {
        font-size: 1rem;
    }

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

    .services-header {
        max-width: 700px;
        margin-bottom: 3rem;
    }
}

/* Medium Tablets (900px - 768px) */
@media (max-width: 900px) {
    .services {
        padding: 3.5rem 0;
    }

    .services-header {
        max-width: 90%;
        margin-bottom: 2.5rem;
    }

    .services-header h2 {
        font-size: 2rem;
    }

    .services-header h4 {
        font-size: 0.95rem;
        margin-bottom: 0.8rem;
    }

    .services-header p {
        font-size: 0.95rem;
    }

    .services-header .headn {
        flex-direction: column;
        align-items: center;
    }
}

/* Small Tablets and Large Phones (768px - 600px) */
@media (max-width: 768px) and (min-width: 601px) {
    .services {
        padding: 3rem 0;
    }

    .services-header {
        max-width: 95%;
        margin-bottom: 2rem;
    }

    .services-header h2 {
        font-size: 1.8rem;
        line-height: 1.4;
    }

    .services-header h4 {
        font-size: 0.9rem;
        margin-bottom: 0.7rem;
    }

    .services-header p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
}

/* Small Phones (600px - 480px) */
@media (max-width: 600px) {
    .services {
        padding: 2.5rem 0;
    }

    .services-header {
        max-width: 100%;
        margin-bottom: 1.5rem;
        padding: 0 15px;
    }

    .services-header h2 {
        font-size: 1.6rem;
        line-height: 1.3;
    }

    .services-header h4 {
        font-size: 0.85rem;
        margin-bottom: 0.6rem;
    }

    .services-header p {
        font-size: 0.85rem;
        line-height: 1.4;
    }

    .services-header .headn {
        flex-direction: column;
        align-items: center;
    }
}

/* Very Small Phones (480px and below) */
@media (max-width: 480px) {
    .services {
        padding: 2rem 0;
    }

    .services-header {
        max-width: 100%;
        margin-bottom: 1.2rem;
        padding: 0 10px;
    }

    .services-header h2 {
        font-size: 1.4rem;
        line-height: 1.3;
    }

    .services-header h4 {
        font-size: 0.8rem;
        margin-bottom: 0.5rem;
    }

    .services-header p {
        font-size: 0.8rem;
        line-height: 1.4;
    }
}

/* Very Narrow Screens (below 360px) */
@media (max-width: 360px) {
    .services {
        padding: 1.5rem 0;
    }

    .services-header {
        margin-bottom: 1rem;
        padding: 0 8px;
    }

    .services-header h2 {
        font-size: 1.3rem;
    }

    .services-header h4 {
        font-size: 0.75rem;
    }

    .services-header p {
        font-size: 0.75rem;
    }
}

/* Landscape Orientation for Small Devices */
@media (max-height: 500px) and (orientation: landscape) {
    .services {
        padding: 2rem 0;
    }

    .services-header h2 {
        font-size: 1.8rem;
    }

    .services-header h4 {
        font-size: 0.9rem;
    }

    .services-header p {
        font-size: 0.9rem;
    }

    .services-header .headn {
        flex-direction: row;
        justify-content: center;
        gap: 1rem;
    }
}

/* Accessibility for Touch Devices */
@media (hover: none) {
    .services-header {
        /* No hover-specific styles to disable */
    }
}

/* High-Resolution Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .services {
        background: #f8f9fa;
    }
}

/* Reduced Motion Support (Preserving Original) */
@media (prefers-reduced-motion: reduce) {
    .services,
    .services-header,
    .services-header .headn {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.service-card {
    background: #2E8B57;
    padding: 3rem 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.5s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(46, 139, 87, 0.3);
}

.service-alt {
    background: #9ACD32;
}

.service-alt:hover {
    box-shadow: 0 20px 40px rgba(154, 205, 50, 0.3);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: rgba(255,255,255,0.3);
    transform: scale(1.1);
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    color: white;
    font-size: 1.3rem;
    font-weight: 600;
}

/* RFP Section */
.rfp-section {
    padding: 4rem 0;
    background: #9ACD32;
}

.rfp-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.rfp-left {
    text-align: center;
}

.rfp-icon {
    width: 120px;
    height: 120px;
    background: rgba(255,255,255,0.2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.rfp-icon i {
    font-size: 3rem;
    color: white;
}

.rfp-left p {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    font-weight: 500;
}

.rfp-btn {
    background: white;
    color: #9ACD32;
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

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

.rfp-right h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.rfp-right h2 {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.rfp-right p {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.rfp-image {
    border-radius: 15px;
    overflow: hidden;
    max-width: 300px;
}

.rfp-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
}

/* Market Information Section */
.market-info {
    padding: 5rem 0;
    background: #2E8B57;
    color: white;
}

.market-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.market-date h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.market-date h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

.market-info-btn {
    background: #9ACD32;
    color: white;
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.market-info-btn:hover {
    background: #8BC34A;
    transform: translateY(-2px);
}

.market-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.tab-btn {
    background: rgba(255,255,255,0.2);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.tab-btn.active,
.tab-btn:hover {
    background: white;
    color: #2E8B57;
}

.market-table-container {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.tab-content {
    display: none;
}

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

.market-table {
    width: 100%;
    border-collapse: collapse;
}

.market-table thead {
    background: #2E8B57;
    color: white;
}

.market-table th,
.market-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.market-table th {
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.market-table td {
    color: #333;
    font-weight: 500;
}

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

/* Media Centre Section */
.media-centre {
    padding: 5rem 0;
    background: #f8f9fa;
}

.media-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 4rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.media-title h4 {
    color: #2E8B57;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.media-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2E8B57;
}

.media-btn {
    background: #9ACD32;
    color: white;
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.media-btn:hover {
    background: #8BC34A;
    transform: translateY(-2px);
}

.media-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: repeat(3, 1fr);
    gap: 2rem;
    height: 600px;
}

.media-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.media-card.large {
    grid-row: span 2;
}

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

.media-image {
    position: relative;
    height: 60%;
    overflow: hidden;
}

.media-card.large .media-image {
    height: 70%;
}

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

.media-card:hover .media-image img {
    transform: scale(1.05);
}

.media-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: #2E8B57;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.media-content {
    padding: 1.5rem;
    height: 40%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.media-card.large .media-content {
    height: 30%;
}

.media-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    line-height: 1.4;
    margin-bottom: 1rem;
}

.media-card.large .media-content h3 {
    font-size: 1.3rem;
}

.media-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    font-size: 0.9rem;
}

.media-date i {
    color: #2E8B57;
}

/* Challenge Section */
.challenge {
    padding: 4rem 0;
    background: #2E8B57;
    color: white;
}

.challenge-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.challenge-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.challenge-text p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.challenge-btn {
    background: white;
    color: #2E8B57;
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

/* Footer */
.footer {
    background: #f8f9fa;
    padding: 4rem 0 2rem;
    color: #666;
}

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

.footer-section h4 {
    color: #2E8B57;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer-section h5 {
    color: #333;
    font-weight: 600;
    margin-bottom: 0.5rem;
    margin-top: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #2E8B57;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.certification img {
    margin-top: 1rem;
    max-width: 100px;
    height: auto;
}

.footer-bottom {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #2E8B57;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #236B43;
    transform: translateY(-2px);
}

.rating-section img,
.iso-section img {
    max-width: 120px;
    height: auto;
    margin-top: 0.5rem;
}

.compliance-badges {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.compliance-badges img {
    max-width: 80px;
    height: auto;
}

.app-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.app-links img {
    max-width: 135px;
    height: auto;
}

.footer-copyright {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright p {
    color: #999;
    font-size: 0.9rem;
}

/* Chat Widget */
.chat-widget {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
}

.chat-button {
    width: 60px;
    height: 60px;
    background: #2E8B57;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(46, 139, 87, 0.3);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.chat-button:hover {
    background: #236B43;
    transform: scale(1.1);
}

.chat-button i {
    font-size: 1.5rem;
}

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

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(46, 139, 87, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(46, 139, 87, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(46, 139, 87, 0);
    }
}

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

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

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes rotateIn {
    from {
        opacity: 0;
        transform: rotate(-180deg) scale(0.5);
    }
    to {
        opacity: 1;
        transform: rotate(0) scale(1);
    }
}

@keyframes bounceInDown {
    0%, 60%, 75%, 90%, 100% {
        transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }
    0% {
        opacity: 0;
        transform: translate3d(0, -3000px, 0);
    }
    60% {
        opacity: 1;
        transform: translate3d(0, 25px, 0);
    }
    75% {
        transform: translate3d(0, -10px, 0);
    }
    90% {
        transform: translate3d(0, 5px, 0);
    }
    100% {
        transform: none;
    }
}

@keyframes shake {
    0%, 100% {
        transform: translateX(0);
    }
    10%, 30%, 50%, 70%, 90% {
        transform: translateX(-5px);
    }
    20%, 40%, 60%, 80% {
        transform: translateX(5px);
    }
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes shimmer {
    0% {
        background-position: -200px 0;
    }
    100% {
        background-position: calc(200px + 100%) 0;
    }
}

/* Enhanced AOS Animation Classes */
[data-aos] {
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

[data-aos="fade-up"] {
    transform: translateY(30px);
}

[data-aos="fade-left"] {
    transform: translateX(30px);
}

[data-aos="fade-right"] {
    transform: translateX(-30px);
}

[data-aos="zoom-in"] {
    transform: scale(0.8);
}

[data-aos="rotate-in"] {
    transform: rotate(180deg) scale(0.8);
}

/* Service Cards Enhanced Animation */
.service-card {
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: calc(var(--delay, 0) * 0.1s);
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.service-card:hover::after {
    left: 100%;
}

/* Market Table Enhanced Animation */
.market-table tbody tr {
    transition: all 0.3s ease;
    animation: slideInLeft 0.5s ease forwards;
    animation-delay: calc(var(--row-index, 0) * 0.1s);
}

.market-table tbody tr:nth-child(even) {
    animation-name: slideInRight;
}

/* Media Cards Enhanced Animation */
.media-card {
    animation: zoomIn 0.6s ease forwards;
    animation-delay: calc(var(--card-index, 0) * 0.15s);
}

.media-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.media-card:hover::before {
    transform: translateX(100%);
}

/* Navigation Enhanced Animation */
.nav-link {
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: #2E8B57;
    transition: left 0.3s ease;
}

.nav-link:hover::before {
    left: 0;
}

/* Button Enhanced Animations */
.cta-btn,
.rfp-btn,
.market-info-btn,
.media-btn,
.challenge-btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.cta-btn::before,
.rfp-btn::before,
.market-info-btn::before,
.media-btn::before,
.challenge-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.cta-btn:hover::before,
.rfp-btn:hover::before,
.market-info-btn:hover::before,
.media-btn:hover::before,
.challenge-btn:hover::before {
    width: 300px;
    height: 300px;
}

/* Logo Animation */
.nav-logo svg {
    animation: rotateIn 1s ease;
}

.nav-logo:hover svg {
    animation: shake 0.5s ease;
}

/* Chat Widget Enhanced Animation */
.chat-button {
    animation: pulse 2s infinite, bounceInDown 1s ease;
}

.chat-button:hover {
    animation: shake 0.5s ease;
}

/* Header Scroll Animation */
.header {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Enhanced Footer Animations */
.footer-section {
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: calc(var(--section-index, 0) * 0.2s);
    position: relative;
    overflow: hidden;
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #2E8B57, transparent);
    transition: left 0.6s ease;
}

.footer-section:hover::before {
    left: 100%;
}

.footer-section h4 {
    position: relative;
    transition: all 0.3s ease;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #2E8B57;
    transition: width 0.3s ease;
}

.footer-section:hover h4::after {
    width: 50px;
}

.footer-section ul li {
    transform: translateX(-20px);
    opacity: 0;
    animation: slideInLeft 0.5s ease forwards;
    animation-delay: calc(var(--li-index, 0) * 0.1s + var(--section-index, 0) * 0.3s);
}

.footer-section ul li a {
    position: relative;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-section ul li a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -5px;
    width: 0;
    height: 100%;
    background: rgba(46, 139, 87, 0.1);
    transition: width 0.3s ease;
    z-index: -1;
}

.footer-section ul li a:hover::before {
    width: calc(100% + 10px);
}

.footer-section ul li a:hover {
    color: #2E8B57;
    transform: translateX(5px);
}

/* Social Media Icons Animation */
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(46, 139, 87, 0.1);
    border-radius: 50%;
    color: #2E8B57;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-links a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: #2E8B57;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
    z-index: -1;
}

.social-links a:hover::before {
    width: 100%;
    height: 100%;
}

.social-links a:hover {
    color: white;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 5px 15px rgba(46, 139, 87, 0.3);
}

/* Certification Badge Animation */
.certification {
    position: relative;
    animation: rotateIn 1s ease;
    animation-delay: 1s;
}

.certification img {
    transition: all 0.3s ease;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.certification:hover img {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 8px 25px rgba(46, 139, 87, 0.2);
}

/* Footer Bottom Animation */
.footer-bottom {
    position: relative;
    overflow: hidden;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #2E8B57, transparent);
    animation: shimmer 2s infinite;
}

.footer-bottom p {
    animation: fadeInUp 1s ease;
    animation-delay: 1.5s;
}

/* Newsletter Signup Animation */
.newsletter-signup {
    margin-top: 20px;
    display: flex;
    gap: 10px;
    animation: fadeInUp 0.8s ease;
    animation-delay: 0.5s;
}

.newsletter-input {
    flex: 1;
    padding: 12px;
    border: 2px solid transparent;
    border-radius: 25px;
    background: rgba(255,255,255,0.1);
    color: white;
    transition: all 0.3s ease;
}

.newsletter-input:focus {
    outline: none;
    border-color: #2E8B57;
    background: rgba(255,255,255,0.15);
}

.newsletter-btn {
    padding: 12px 20px;
    background: #2E8B57;
    color: white;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.newsletter-btn:hover::before {
    width: 200px;
    height: 200px;
}

.newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(46, 139, 87, 0.3);
}

/* Enhanced Contact Info Styling */
.contact-info {
    margin-top: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
    transform: translateX(-10px);
    opacity: 0;
    animation: slideInLeft 0.6s ease forwards;
    animation-delay: calc(var(--contact-index, 0) * 0.2s + 1s);
}

.contact-item:hover {
    background: rgba(46, 139, 87, 0.1);
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(46, 139, 87, 0.1);
}

.contact-item i {
    color: #2E8B57;
    font-size: 1.2rem;
    margin-top: 5px;
    transition: all 0.3s ease;
}

.contact-item:hover i {
    color: #3CB371;
    transform: scale(1.2);
}

.contact-item div {
    flex: 1;
}

.contact-item h5 {
    margin: 0 0 5px 0;
    color: #2E8B57;
    font-weight: 600;
}

.contact-item p {
    margin: 0;
    color: #ccc;
    font-size: 0.9rem;
}

/* Footer Stats Animation */
.footer-stats {
    display: flex;
    justify-content: space-around;
    padding: 30px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 30px;
}

.stat-item {
    text-align: center;
    animation: zoomIn 0.8s ease forwards;
    animation-delay: calc(var(--stat-index, 0) * 0.15s + 1.2s);
}

.stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: #2E8B57;
    display: block;
    animation: countUp 2s ease forwards;
}

.stat-label {
    font-size: 0.9rem;
    color: #ccc;
    margin-top: 5px;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #2E8B57;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    transform: translateY(100px);
    opacity: 0;
    z-index: 1000;
}

.back-to-top.visible {
    transform: translateY(0);
    opacity: 1;
}

.back-to-top:hover {
    background: #3CB371;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(46, 139, 87, 0.3);
}

/* Animated Progress Bar */
.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, #2E8B57, #3CB371);
    z-index: 9999;
    transform-origin: left;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

/* Responsive Animation Adjustments */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Responsive Design (Original) */
@media (max-width: 1024px) {
    .media-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
        height: auto;
    }
    
    .media-card.large {
        grid-row: span 1;
        grid-column: span 2;
    }
    
    .media-image,
    .media-card.large .media-image {
        height: 200px;
    }
    
    .media-content,
    .media-card.large .media-content {
        height: auto;
        padding: 1rem;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hero-text {
        max-width: 100%;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .services-header h2 {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .rfp-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .market-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .market-tabs {
        justify-content: center;
    }
    
    .media-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .media-grid {
        grid-template-columns: 1fr;
    }
    
    .media-card.large {
        grid-column: span 1;
    }
    
    .challenge-content {
        flex-direction: column;
        text-align: center;
    }
    
    .challenge-text h2 {
        font-size: 2rem;
    }
    
    .footer-bottom {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-copyright {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-text h1 {
        font-size: 1.8rem;
    }
    
    .hero-text p {
        font-size: 1rem;
    }
    
    .services-header h2 {
        font-size: 1.8rem;
    }
    
    .media-title h2 {
        font-size: 2rem;
    }
    
    .market-table {
        font-size: 0.8rem;
    }
    
    .market-table th,
    .market-table td {
        padding: 0.5rem;
    }
    
    .tab-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Enhanced Responsive Design (Additions) */

/* Large Tablets and Small Laptops (1024px - 900px) */
@media (max-width: 1024px) and (min-width: 901px) {
    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

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

    .rfp-content {
        gap: 2rem;
    }

    .rfp-right h2 {
        font-size: 2rem;
    }

    .market-table th,
    .market-table td {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
}

/* Medium Tablets (900px - 768px) */
@media (max-width: 900px) {
    .container {
        padding: 0 15px;
    }

    .nav-container {
        padding: 0 15px;
    }

    .hero {
        height: 60vh;
        min-height: 400px;
    }

    .hero-text {
        max-width: 70%;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .cta-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .services-header h2 {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .rfp-right h2 {
        font-size: 1.8rem;
    }

    .rfp-image {
        max-width: 250px;
        margin: 0 auto;
    }

    .market-tabs {
        flex-direction: column;
        align-items: center;
    }

    .tab-btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

    .challenge-text h2 {
        font-size: 1.8rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-section ul {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .social-links {
        justify-content: center;
    }
}

/* Small Tablets and Large Phones (768px - 600px) */
@media (max-width: 768px) and (min-width: 601px) {
    .hero-text {
        max-width: 100%;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-text p {
        font-size: 0.9rem;
    }

    .services-header h2 {
        font-size: 1.8rem;
    }

    .service-card {
        padding: 2rem 1.5rem;
    }

    .rfp-icon {
        width: 100px;
        height: 100px;
    }

    .rfp-icon i {
        font-size: 2.5rem;
    }

    .market-table {
        font-size: 0.85rem;
    }

    .market-table th,
    .market-table td {
        padding: 0.6rem;
    }

    .media-title h2 {
        font-size: 1.8rem;
    }

    .challenge-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .footer-section h4 {
        font-size: 1.1rem;
    }

    .contact-item {
        padding: 10px;
    }

    .stat-number {
        font-size: 1.8rem;
    }
}

/* Small Phones (600px - 480px) */
@media (max-width: 600px) {
    .nav-logo svg {
        height: 40px;
    }

    .hero {
        height: 50vh;
        min-height: 350px;
    }

    .hero-text h1 {
        font-size: 1.8rem;
    }

    .hero-text h4 {
        font-size: 1rem;
    }

    .hero-text p {
        font-size: 0.9rem;
    }

    .cta-btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
    }

    .services {
        padding: 3rem 0;
    }

    .services-header h4 {
        font-size: 1rem;
    }

    .services-header h2 {
        font-size: 1.6rem;
    }

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

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

    .service-icon i {
        font-size: 1.5rem;
    }

    .service-card h3 {
        font-size: 1.2rem;
    }

    .rfp-section {
        padding: 3rem 0;
    }

    .rfp-right h2 {
        font-size: 1.6rem;
    }

    .rfp-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .market-info {
        padding: 3rem 0;
    }

    .market-date h2 {
        font-size: 1.6rem;
    }

    .market-date h3 {
        font-size: 1.2rem;
    }

    .market-info-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .market-table-container {
        overflow-x: auto;
    }

    .market-table {
        min-width: 600px;
    }

    .media-centre {
        padding: 3rem 0;
    }

    .media-title h2 {
        font-size: 1.6rem;
    }

    .media-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .media-image {
        height: 150px;
    }

    .media-content h3 {
        font-size: 1rem;
    }

    .challenge {
        padding: 3rem 0;
    }

    .challenge-text h2 {
        font-size: 1.6rem;
    }

    .challenge-text p {
        font-size: 1rem;
    }

    .footer {
        padding: 3rem 0 1.5rem;
    }

    .footer-section h4 {
        font-size: 1rem;
    }

    .footer-section ul li a {
        font-size: 0.9rem;
    }

    .social-links a {
        width: 35px;
        height: 35px;
    }

    .newsletter-input {
        padding: 10px;
        font-size: 0.9rem;
    }

    .newsletter-btn {
        padding: 10px 15px;
        font-size: 0.9rem;
    }

    .contact-item i {
        font-size: 1rem;
    }

    .contact-item p {
        font-size: 0.85rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .back-to-top {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .chat-button {
        width: 50px;
        height: 50px;
    }

    .chat-button i {
        font-size: 1.2rem;
    }
}

/* Very Small Phones (480px and below) */
@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }

    .nav-container {
        padding: 0 10px;
    }

    .nav-logo svg {
        height: 35px;
    }

    .mobile-menu-toggle span {
        width: 20px;
        height: 2px;
    }

    .hero {
        height: 45vh;
        min-height: 300px;
    }

    .hero-text h1 {
        font-size: 1.5rem;
    }

    .hero-text h4 {
        font-size: 0.9rem;
    }

    .hero-text p {
        font-size: 0.85rem;
    }

    .cta-btn {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }

    .services {
        padding: 2rem 0;
    }

    .services-header h4 {
        font-size: 1rem;
    }

    .services-header h2 {
        font-size: 1.4rem;
    }

    .services-header p {
        font-size: 0.9rem;
    }

    .service-card {
        padding: 1.5rem 1rem;
    }

    .service-icon {
        width: 50px;
        height: 50px;
    }

    .service-icon i {
        font-size: 1.2rem;
    }

    .service-card h3 {
        font-size: 1.1rem;
    }

    .rfp-section {
        padding: 2rem 0;
    }

    .rfp-icon {
        width: 80px;
        height: 80px;
    }

    .rfp-icon i {
        font-size: 2rem;
    }

    .rfp-left p {
        font-size: 1rem;
    }

    .rfp-right h4 {
        font-size: 1rem;
    }

    .rfp-right h2 {
        font-size: 1.4rem;
    }

    .rfp-right p {
        font-size: 0.9rem;
    }

    .rfp-btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
    }

    .rfp-image {
        max-width: 200px;
    }

    .market-info {
        padding: 2rem 0;
    }

    .market-date h2 {
        font-size: 1.4rem;
    }

    .market-date h3 {
        font-size: 1.1rem;
    }

    .market-info-btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
    }

    .tab-btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
    }

    .market-table th,
    .market-table td {
        padding: 0.4rem;
        font-size: 0.75rem;
    }

    .media-centre {
        padding: 2rem 0;
    }

    .media-title h4 {
        font-size: 1rem;
    }

    .media-title h2 {
        font-size: 1.4rem;
    }

    .media-btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
    }

    .media-content h3 {
        font-size: 0.9rem;
    }

    .media-date {
        font-size: 0.8rem;
    }

    .challenge {
        padding: 2rem 0;
    }

    .challenge-text h2 {
        font-size: 1.4rem;
    }

    .challenge-text p {
        font-size: 0.9rem;
    }

    .challenge-btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
    }

    .footer {
        padding: 2rem 0 1rem;
    }

    .footer-content {
        gap: 2rem;
    }

    .footer-section h4 {
        font-size: 0.9rem;
    }

    .footer-section ul li a {
        font-size: 0.85rem;
    }

    .contact-item {
        padding: 8px;
        gap: 10px;
    }

    .contact-item h5 {
        font-size: 0.9rem;
    }

    .contact-item p {
        font-size: 0.8rem;
    }

    .social-links a {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }

    .certification img {
        max-width: 80px;
    }

    .rating-section img,
    .iso-section img {
        max-width: 100px;
    }

    .compliance-badges img {
        max-width: 60px;
    }

    .app-links img {
        max-width: 120px;
    }

    .newsletter-input {
        padding: 8px;
        font-size: 0.85rem;
    }

    .newsletter-btn {
        padding: 8px 12px;
        font-size: 0.85rem;
    }

    .stat-number {
        font-size: 1.2rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .footer-copyright p {
        font-size: 0.8rem;
    }

    .back-to-top {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    .chat-button {
        width: 45px;
        height: 45px;
        bottom: 1.5rem;
        right: 1.5rem;
    }

    .chat-button i {
        font-size: 1rem;
    }
}

/* Very Narrow Screens (below 360px) */
@media (max-width: 360px) {
    .container {
        padding: 0 8px;
    }

    .nav-container {
        padding: 0 5px;
    }

    .nav-logo svg {
        height: 30px;
    }

    .mobile-menu-toggle span {
        width: 18px;
        height: 2px;
    }

    .hero {
        height: 40vh;
        min-height: 250px;
    }

    .hero-text h1 {
        font-size: 1.2rem;
    }

    .hero-text h4 {
        font-size: 0.8rem;
    }

    .hero-text p {
        font-size: 0.75rem;
        margin-bottom: 1rem;
    }

    .cta-btn {
        padding: 0.4rem 0.6rem;
        font-size: 0.7rem;
    }

    .services {
        padding: 1.2rem 0;
    }

    .services-header h4 {
        font-size: 0.7rem;
    }

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

    .services-header p {
        font-size: 0.7rem;
    }

    .service-card {
        padding: 1rem 0.5rem;
    }

    .service-icon {
        width: 40px;
        height: 40px;
    }

    .service-icon i {
        font-size: 0.9rem;
    }

    .service-card h3 {
        font-size: 1rem;
    }

    .rfp-section {
        padding: 1.5rem 0;
    }

    .rfp-icon {
        width: 70px;
        height: 70px;
    }

    .rfp-icon i {
        font-size: 1.5rem;
    }

    .rfp-left p {
        font-size: 0.9rem;
    }

    .rfp-right h4 {
        font-size: 0.9rem;
    }

    .rfp-right h2 {
        font-size: 1.2rem;
    }

    .rfp-right p {
        font-size: 0.75rem;
    }

    .rfp-btn {
        padding: 0.5rem 0.8rem;
        font-size: 0.7rem;
    }

    .rfp-image {
        max-width: 180px;
    }

    .market-info {
        padding: 1.5rem 0;
    }

    .market-date h2 {
        font-size: 1.2rem;
    }

    .market-date h3 {
        font-size: 0.9rem;
    }

    .market-info-btn {
        padding: 0.5rem 0.8rem;
        font-size: 0.7rem;
    }

    .tab-btn {
        padding: 0.5rem 0.8rem;
        font-size: 0.7rem;
    }

    .market-table th,
    .market-table td {
        padding: 0.2rem;
        font-size: 0.65rem;
    }

    .media-centre {
        padding: 1.5rem 0;
    }

    .media-title h4 {
        font-size: 0.9rem;
    }

    .media-title h2 {
        font-size: 1.2rem;
    }

    .media-btn {
        padding: 0.5rem 0.8rem;
        font-size: 0.7rem;
    }

    .media-content h3 {
        font-size: 0.8rem;
    }

    .media-date {
        font-size: 0.7rem;
    }

    .challenge {
        padding: 1.5rem 0;
    }

    .challenge-text h2 {
        font-size: 1.2rem;
    }

    .challenge-text p {
        font-size: 0.8rem;
    }

    .challenge-btn {
        padding: 0.5rem 0.8rem;
        font-size: 0.7rem;
    }

    .footer {
        padding: 1.5rem 0 0.8rem;
    }

    .footer-content {
        gap: 1.5rem;
    }

    .footer-section h4 {
        font-size: 0.8rem;
    }

    .footer-section ul li a {
        font-size: 0.7rem;
    }

    .contact-item {
        padding: 6px;
        gap: 8px;
    }

    .contact-item h5 {
        font-size: 0.8rem;
    }

    .contact-item p {
        font-size: 0.7rem;
    }

    .social-links a {
        width: 25px;
        height: 25px;
        font-size: 0.7rem;
    }

    .certification img {
        max-width: 70px;
    }

    .rating-section img,
    .iso-section img {
        max-width: 90px;
    }

    .compliance-badges img {
        max-width: 50px;
    }

    .app-links img {
        max-width: 110px;
    }

    .newsletter-input {
        padding: 6px;
        font-size: 0.7rem;
    }

    .newsletter-btn {
        padding: 6px 10px;
        font-size: 0.7rem;
    }

    .stat-number {
        font-size: 1rem;
    }

    .stat-label {
        font-size: 0.7rem;
    }

    .footer-copyright p {
        font-size: 0.7rem;
    }

    .back-to-top {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }

    .chat-button {
        width: 40px;
        height: 40px;
        bottom: 1rem;
        right: 1rem;
    }

    .chat-button i {
        font-size: 0.9rem;
    }
}

/* Ultra Small Phones (below 320px) */
@media (max-width: 320px) {
    .hero {
        height: 35vh;
        min-height: 200px;
    }

    .hero-text h1 {
        font-size: 1.1rem;
    }

    .hero-text h4 {
        font-size: 0.7rem;
    }

    .hero-text p {
        font-size: 0.7rem;
        margin-bottom: 0.8rem;
    }

    .services-header h2 {
        font-size: 1.1rem;
    }

    .service-card h3 {
        font-size: 0.9rem;
    }

    .rfp-right h2 {
        font-size: 1.1rem;
    }

    .market-date h2 {
        font-size: 1.1rem;
    }

    .media-title h2 {
        font-size: 1.1rem;
    }

    .challenge-text h2 {
        font-size: 1.1rem;
    }

    .tab-btn {
        padding: 0.4rem 0.6rem;
        font-size: 0.65rem;
    }

    .market-table th,
    .market-table td {
        padding: 0.15rem;
        font-size: 0.6rem;
    }

    .social-links a {
        width: 22px;
        height: 22px;
        font-size: 0.6rem;
    }

    .newsletter-input {
        padding: 4px;
        font-size: 0.65rem;
    }

    .newsletter-btn {
        padding: 4px 8px;
        font-size: 0.65rem;
    }
}

/* Landscape Orientation for Small Devices */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        height: 80vh;
        min-height: 300px;
    }

    .hero-text h1 {
        font-size: 1.8rem;
    }

    .hero-text p {
        font-size: 0.9rem;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .media-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        height: auto;
    }

    .footer-content {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

/* Accessibility for Touch Devices */
@media (hover: none) {
    .nav-link:hover,
    .dropdown-link:hover,
    .login-btn:hover,
    .cta-btn:hover,
    .rfp-btn:hover,
    .market-info-btn:hover,
    .media-btn:hover,
    .challenge-btn:hover,
    .service-card:hover,
    .media-card:hover,
    .social-links a:hover,
    .certification:hover img,
    .back-to-top:hover,
    .chat-button:hover {
        transform: none;
        box-shadow: none;
    }

    .dropdown:hover .dropdown-menu {
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
    }

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

/* High-Resolution Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hero-content::before,
    .media-image img,
    .rfp-image img {
        background-size: cover;
    }

    .certification img,
    .rating-section img,
    .iso-section img,
    .compliance-badges img,
    .app-links img {
        image-rendering: crisp-edges;
    }
}

/* Smooth scrolling enhancement */
html {
    scroll-padding-top: 80px;
}

/* Loading states */
.loading {
    opacity: 0.5;
    pointer-events: none;
}

/* Focus states for accessibility */
button:focus,
a:focus,
input:focus {
    outline: 2px solid #2E8B57;
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .service-card,
    .challenge,
    .market-info {
        border: 2px solid #000;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}