.floating {
    animation-name: floating;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
    margin-top: 5px;
}

@keyframes floating {
    from {
        transform: translate(0, 0px);
    }

    65% {
        transform: translate(0, 15px);
    }

    to {
        transform: translate(0, -0px);
    }
}

.floating2 {
    animation-name: floating;
    animation-duration: 4s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
    margin-bottom: 5px;
}

@keyframes floating2 {
    from {
        transform: translate(0, -0px);
    }

    65% {
        transform: translate(0, 15px);
    }

    to {
        transform: translate(0, 0px);
    }
}

.quote {
    display: inline-block;
    margin: 1em;
    overflow: hidden;
}

.quote blockquote {
    background-color: #fff;
    border: solid 2px #757575;
    display: inline-block;
    margin: 0;
    padding: 1em;
    position: relative;
}

.quote blockquote:before {
    background-color: #fff;
    bottom: -10%;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: -10%;
    transform: rotate(-15deg) skew(5deg);
}

.quote blockquote cite {
    display: block;
    font-style: italic;
    text-align: right;
}

.quote blockquote cite:before {
    content: "- ";
}

.quote blockquote>* {
    position: relative;
    z-index: 1;
}

.animated-border-quote {
    display: inline-block;
    margin: 1em;
    max-width: 20em;
    overflow: hidden;
}

.animated-border-quote blockquote {
    background-color: #fff;
    border: solid 2px #757575;
    display: inline-block;
    margin: 0;
    padding: 1em;
    position: relative;
}

.animated-border-quote blockquote:before {
    animation: clockwise 30s infinite linear;
    background-color: #fff;
    bottom: 10%;
    content: "";
    left: 0;
    opacity: .5;
    position: absolute;
    right: 0;
    top: 10%;
}

.animated-border-quote blockquote:after {
    animation: counter 30s infinite linear;
    background-color: #fff;
    bottom: 10%;
    content: "";
    left: 0;
    opacity: .5;
    position: absolute;
    right: 0;
    top: 10%;
}

.animated-border-quote blockquote cite {
    display: block;
    font-style: italic;
    text-align: right;
}

.animated-border-quote blockquote cite:before {
    content: "- ";
}

.animated-border-quote blockquote>* {
    position: relative;
    z-index: 1;
}

@keyframes clockwise {
    0% {
        transform: rotate(0);
    }

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

@keyframes counter {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(-360deg);
    }
}

.animated-shadow-quote {
    display: inline-block;
    margin: 1em;
    max-width: 20em;
    position: relative;
}

.animated-shadow-quote blockquote {
    animation: shadows 2s linear infinite alternate;
    display: inline-block;
    margin: 0;
    padding: 1em;
}

.animated-shadow-quote blockquote cite {
    display: block;
    font-style: italic;
    text-align: right;
}

.animated-shadow-quote blockquote cite:before {
    content: "- ";
}

@keyframes shadows {
    0% {
        box-shadow: 0 2px 4px -2px rgba(0, 0, 0, 0.25);
        transform: scale(0.95);
    }

    100% {
        box-shadow: 0 0 4px 2px rgba(0, 0, 0, 0.25);
        transform: scale(1);
    }
}

.square-brackets-quote {
    display: inline-block;
    font-family: sans-serif;
    margin: 1em;
    max-width: 20em;
}

.square-brackets-quote blockquote {
    border: solid 1em #ccc;
    display: inline-block;
    margin: 0;
    padding: 1em;
    position: relative;
}

.square-brackets-quote blockquote:before {
    background-color: #fff;
    bottom: -1em;
    content: "";
    left: 2em;
    position: absolute;
    right: 2em;
    top: -1em;
}

.square-brackets-quote blockquote cite {
    color: #757575;
    display: block;
    font-size: small;
    font-style: normal;
    text-align: right;
    text-transform: uppercase;
}

.square-brackets-quote blockquote>* {
    position: relative;
    z-index: 1;
}

.giant-quotes-quote {
    display: inline-block;
    font-family: sans-serif;
    margin: 1em;
    max-width: 20em;
}

.giant-quotes-quote blockquote {
    display: inline-block;
    margin: 0;
    padding: 1em;
    position: relative;
}

.giant-quotes-quote blockquote:before {
    color: #f90;
    content: "\201C";
    font-size: 4em;
    left: 0;
    line-height: .75em;
    position: absolute;
    top: 0;
    transform: scale(2, 8);
    transform-origin: top;
}

.giant-quotes-quote blockquote:after {
    color: #f90;
    content: "\201D";
    font-size: 4em;
    line-height: .75em;
    position: absolute;
    right: 0;
    top: 0;
    transform: scale(2, 8);
    transform-origin: top;
}

.giant-quotes-quote blockquote>* {
    padding: 0 2em;
}

.giant-quotes-quote blockquote cite {
    color: #c60;
    display: block;
    font-style: normal;
    text-align: right;
    text-transform: uppercase;
}

/* ========================================
   MODERN HERO VIDEO SECTION STYLES
   ======================================== */

.hero-video-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #000;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

#hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: 50%;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: contain;
    z-index: 1;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 176, 155, 0.8), rgba(150, 201, 61, 0.8));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.6;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    max-width: 700px;
    margin: 0 auto 2rem;
}

.hero-buttons .btn {
    font-size: 1.1rem;
    border-radius: 50px;
    padding: 1rem 2.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, #00b09b, #96c93d);
    border: 2px solid #00b09b;
    box-shadow: 0 8px 25px rgba(0, 176, 155, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 176, 155, 0.4);
    background: linear-gradient(135deg, #008f7a, #7bb32e);
}

.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: white;
    background: transparent;
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    color: white;
    transform: translateY(-3px);
}

.hero-stats {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.scroll-down {
    width: 50px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    animation: bounce 2s infinite;
    cursor: pointer;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* ========================================
   VALUE PROPOSITION SECTION STYLES
   ======================================== */

.value-proposition-section {
    padding: 5rem 0;
}

.value-content {
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.value-content:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1) !important;
    transform: translateY(-5px);
}

.icon-wrapper {
    background: linear-gradient(135deg, rgba(0, 176, 155, 0.1), rgba(150, 201, 61, 0.1));
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.services-grid {
    max-width: 800px;
    margin: 0 auto;
}

.service-tag {
    background: linear-gradient(135deg, #00b09b, #96c93d);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 176, 155, 0.2);
}

.service-tag:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 176, 155, 0.3);
}

/* ========================================
   MAIN SERVICES SECTION STYLES
   ======================================== */

.main-services-section {
    padding: 5rem 0;
}

.featured-service-card {
    background: linear-gradient(135deg, #00b09b 0%, #96c93d 100%);
    position: relative;
    overflow: hidden;
}

.service-bg-pattern {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    z-index: 1;
}

.service-bg-pattern::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.service-card {
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15) !important;
    border-color: #00b09b;
}

.service-icon-wrapper {
    background: #f8f9fa;
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

/* ========================================
   PROGRAMS SECTION STYLES
   ======================================== */

.programs-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.program-card {
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    overflow: hidden;
}

.program-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1) !important;
}

.program-bg-accent {
    position: absolute;
    top: 0;
    right: 0;
    width: 4px;
    height: 100%;
    opacity: 0.8;
}

.program-icon-img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.feature-item {
    font-size: 14px;
}

/* ========================================
   LEADERSHIP QUOTE SECTION STYLES
   ======================================== */

.leadership-quote-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.quote-image-wrapper {
    position: relative;
    display: inline-block;
}

.quote-image {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border: 4px solid #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.quote-mark {
    position: absolute;
    bottom: -10px;
    right: -10px;
    width: 40px;
    height: 40px;
    background: #007bff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

.quote-card {
    border-left: 4px solid #007bff;
}

.blockquote {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #495057;
}

/* ========================================
   FOCUS SECTORS SECTION STYLES
   ======================================== */

.focus-sectors-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.featured-service-card {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    position: relative;
    overflow: hidden;
}

.service-bg-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="2"/></svg>');
    background-size: 100px 100px;
    opacity: 0.3;
}

.highlight-quote {
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* ========================================
   STARTUPS SHOWCASE SECTION STYLES
   ======================================== */

.startups-showcase-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.stat-card {
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.stat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1) !important;
}

.stat-number {
    background: linear-gradient(45deg, #007bff, #28a745);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.startup-logos-section {
    border: 1px solid #e9ecef;
}

.startup-logo {
    transition: all 0.3s ease;
}

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

.startup-logo-img {
    max-height: 80px;
    width: auto;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.startup-logo:hover .startup-logo-img {
    filter: grayscale(0%);
}

/* ========================================
   PARTNERSHIPS SECTION STYLES
   ======================================== */

.partnerships-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.partner-logo {
    transition: all 0.3s ease;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
}

.partner-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.partner-logo-img {
    max-height: 60px;
    width: auto;
    filter: grayscale(50%);
    transition: all 0.3s ease;
}

.partner-logo:hover .partner-logo-img {
    filter: grayscale(0%);
}

.floating {
    animation: float 6s ease-in-out infinite;
}

.floating2 {
    animation: float 6s ease-in-out infinite reverse;
}

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

.partnership-content {
    border: 1px solid #e9ecef;
}

/* ========================================
   COMMON UTILITY CLASSES
   ======================================== */

.divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #00b09b, #96c93d);
    border: none;
    border-radius: 2px;
}

.bg-gradient {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
}

/* ========================================
   COLLABORATIONS SECTION STYLES
   ======================================== */

.collaborations-section .collaboration-logo {
    transition: all 0.3s ease;
    padding: 15px;
}

.collaborations-section .collaboration-logo:hover {
    transform: scale(1.05);
}

.collaborations-section .collaboration-logo img {
    max-height: 50px;
    width: auto;
    filter: grayscale(70%);
    transition: all 0.3s ease;
}

.collaborations-section .collaboration-logo:hover img {
    filter: grayscale(0%);
}

/* ========================================
   NEWS & RESOURCES SECTION STYLES
   ======================================== */

.news-resources-section {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    position: relative;
    overflow: hidden;
}

.news-resources-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><polygon points="0,0 100,0 50,50" fill="rgba(255,255,255,0.05)"/></svg>');
    background-size: 200px 200px;
    opacity: 0.3;
}

.news-card {
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15) !important;
}

.video-wrapper iframe {
    border-radius: 8px;
}

.resource-link {
    transition: all 0.3s ease;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    background: rgba(255, 255, 255, 0.1) !important;
}

.resource-link:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    transform: translateX(5px);
}

/* ========================================
   TESTIMONIALS SECTION STYLES
   ======================================== */

.testimonials-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.testimonial-card {
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1) !important;
}

.testimonial-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-avatar {
    position: relative;
}

.testimonial-avatar::after {
    content: '"';
    position: absolute;
    top: -10px;
    right: -10px;
    width: 30px;
    height: 30px;
    background: #007bff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    font-weight: bold;
}

/* ========================================
   RESPONSIVE DESIGN IMPROVEMENTS
   ======================================== */

@media (max-width: 768px) {
    .quote-image {
        width: 150px;
        height: 150px;
    }
    
    .stat-number {
        font-size: 2.5rem !important;
    }
    
    .partner-logo {
        padding: 15px;
    }
    
    .partner-logo-img {
        max-height: 50px;
    }
    
    .news-card {
        margin-bottom: 2rem;
    }
    
    .testimonial-img {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 576px) {
    .program-card,
    .quote-card,
    .service-card,
    .featured-service-card {
        margin-bottom: 2rem;
    }
    
    .startup-logo-img {
        max-height: 60px;
    }
    
    .collaboration-logo img {
        max-height: 40px;
    }
}

/* ========================================
   ACCESSIBILITY IMPROVEMENTS
   ======================================== */

.program-card:focus,
.testimonial-card:focus,
.partner-logo:focus {
    outline: 2px solid #007bff;
    outline-offset: 2px;
}

/* ========================================
   PRINT STYLES
   ======================================== */

@media print {
    .floating,
    .floating2 {
        animation: none;
    }
    
    .news-resources-section {
        background: white !important;
        color: black !important;
    }
    
    .featured-service-card {
        background: white !important;
        color: black !important;
        border: 1px solid #ccc !important;
    }
}

/* ========================================
   MODERN HEADER STYLES
   ======================================== */

.modern-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    height: 70px;
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.modern-header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
}

/* Brand Styling */
.modern-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.modern-brand:hover {
    text-decoration: none;
    transform: scale(1.02);
}

.brand-logo {
    height: 45px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

.brand-text {
    font-size: 1.4rem;
    font-weight: 700;
    color: #00b09b;
    letter-spacing: -0.5px;
    transition: all 0.3s ease;
}

.modern-brand:hover .brand-text {
    color: #96c93d;
}

/* Navigation Styling */
.modern-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.modern-nav-link {
    position: relative;
    color: #333 !important;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.75rem 1rem !important;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.modern-nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #00b09b, #96c93d);
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 2px;
}

.modern-nav-link:hover,
.modern-nav-link.active {
    color: #00b09b !important;
    background: rgba(0, 176, 155, 0.05);
    text-decoration: none;
}

.modern-nav-link:hover::before,
.modern-nav-link.active::before {
    width: 80%;
}

/* CTA Button */
.modern-cta-btn {
    background: linear-gradient(135deg, #00b09b, #96c93d);
    color: white !important;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    margin-left: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 176, 155, 0.3);
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.modern-cta-btn:hover {
    background: linear-gradient(135deg, #008f7a, #7bb32e);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 176, 155, 0.4);
    color: white !important;
    text-decoration: none;
}

.modern-cta-btn i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.modern-cta-btn:hover i {
    transform: translateX(2px);
}

/* Mobile Toggler */
.modern-toggler {
    border: none;
    padding: 0.5rem;
    border-radius: 8px;
    background: rgba(0, 176, 155, 0.1);
    transition: all 0.3s ease;
}

.modern-toggler:focus {
    box-shadow: 0 0 0 3px rgba(0, 176, 155, 0.2);
}

.modern-toggler:hover {
    background: rgba(0, 176, 155, 0.15);
}

/* Body Padding Adjustment */
body {
    padding-top: 70px;
}

/* ========================================
   RESPONSIVE HEADER DESIGN
   ======================================== */

@media (max-width: 991px) {
    .modern-header {
        height: 65px;
    }

    body {
        padding-top: 65px;
    }

    .brand-logo {
        height: 40px;
    }

    .brand-text {
        font-size: 1.2rem;
    }

    .modern-nav {
        background: white;
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        margin-top: 1rem;
        padding: 1rem;
        flex-direction: column;
        gap: 0.25rem;
    }

    .modern-nav-link {
        width: 100%;
        text-align: center;
        padding: 0.75rem 1rem !important;
    }

    .modern-cta-btn {
        margin: 0.5rem 0 0 0;
        justify-content: center;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .modern-header {
        height: 60px;
    }

    body {
        padding-top: 60px;
    }

    .brand-logo {
        height: 35px;
    }

    .brand-text {
        font-size: 1.1rem;
    }

    .modern-nav-link {
        font-size: 0.85rem;
        padding: 0.6rem 0.75rem !important;
    }

    .modern-cta-btn {
        font-size: 0.8rem;
        padding: 0.5rem 1.25rem;
    }
}

@media (max-width: 576px) {
    .modern-brand {
        gap: 0.5rem;
    }

    .brand-text {
        font-size: 1rem;
    }

    .modern-nav {
        padding: 0.75rem;
    }

    .modern-nav-link {
        font-size: 0.8rem;
        padding: 0.5rem !important;
    }
}

/* ========================================
   HEADER SCROLL ANIMATION
   ======================================== */

@keyframes headerSlideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

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

.modern-header {
    animation: headerSlideDown 0.5s ease-out;
}

/* ========================================
   ENHANCED ACCESSIBILITY
   ======================================== */

.modern-nav-link:focus,
.modern-cta-btn:focus,
.modern-toggler:focus {
    outline: 2px solid #96c93d;
    outline-offset: 2px;
    border-radius: 6px;
}

@media (prefers-reduced-motion: reduce) {

    .modern-header,
    .modern-nav-link,
    .modern-cta-btn,
    .brand-logo,
    .brand-text {
        transition: none;
    }

    .modern-header {
        animation: none;
    }
}

/* ====== ADDITIONAL MODERN SECTIONS STYLES ====== */

/* Programs & Communities Section */
.programs-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.program-card {
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    overflow: hidden;
}

.program-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1) !important;
}

.program-bg-accent {
    position: absolute;
    top: 0;
    right: 0;
    width: 4px;
    height: 100%;
    opacity: 0.8;
}

.program-icon-img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.feature-item {
    font-size: 14px;
}

/* Leadership Quote Section */
.leadership-quote-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.quote-image-wrapper {
    position: relative;
    display: inline-block;
}

.quote-image {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border: 4px solid #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.quote-mark {
    position: absolute;
    bottom: -10px;
    right: -10px;
    width: 40px;
    height: 40px;
    background: #007bff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

.quote-card {
    border-left: 4px solid #007bff;
}

.blockquote {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #495057;
}

/* Focus Sectors Section */
.focus-sectors-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.featured-service-card {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    position: relative;
    overflow: hidden;
}

.service-bg-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="2"/></svg>');
    background-size: 100px 100px;
    opacity: 0.3;
}

.highlight-quote {
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Startups Showcase Section */
.startups-showcase-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.stat-card {
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.stat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1) !important;
}

.stat-number {
    background: linear-gradient(45deg, #007bff, #28a745);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.startup-logos-section {
    border: 1px solid #e9ecef;
}

.startup-logo {
    transition: all 0.3s ease;
}

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

.startup-logo-img {
    max-height: 80px;
    width: auto;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.startup-logo:hover .startup-logo-img {
    filter: grayscale(0%);
}

/* Partnerships Section */
.partnerships-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.partner-logo {
    transition: all 0.3s ease;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
}

.partner-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.partner-logo-img {
    max-height: 60px;
    width: auto;
    filter: grayscale(50%);
    transition: all 0.3s ease;
}

.partner-logo:hover .partner-logo-img {
    filter: grayscale(0%);
}

.floating {
    animation: float 6s ease-in-out infinite;
}

.floating2 {
    animation: float 6s ease-in-out infinite reverse;
}

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

.partnership-content {
    border: 1px solid #e9ecef;
}

/* ========================================
   COMMON UTILITY CLASSES
   ======================================== */

.divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #00b09b, #96c93d);
    border: none;
    border-radius: 2px;
}

.bg-gradient {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
}

/* ========================================
   COLLABORATIONS SECTION STYLES
   ======================================== */

.collaborations-section .collaboration-logo {
    transition: all 0.3s ease;
    padding: 15px;
}

.collaborations-section .collaboration-logo:hover {
    transform: scale(1.05);
}

.collaborations-section .collaboration-logo img {
    max-height: 50px;
    width: auto;
    filter: grayscale(70%);
    transition: all 0.3s ease;
}

.collaborations-section .collaboration-logo:hover img {
    filter: grayscale(0%);
}

/* ========================================
   NEWS & RESOURCES SECTION STYLES
   ======================================== */

.news-resources-section {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    position: relative;
    overflow: hidden;
}

.news-resources-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><polygon points="0,0 100,0 50,50" fill="rgba(255,255,255,0.05)"/></svg>');
    background-size: 200px 200px;
    opacity: 0.3;
}

.news-card {
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15) !important;
}

.video-wrapper iframe {
    border-radius: 8px;
}

.resource-link {
    transition: all 0.3s ease;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    background: rgba(255, 255, 255, 0.1) !important;
}

.resource-link:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    transform: translateX(5px);
}

/* ========================================
   TESTIMONIALS SECTION STYLES
   ======================================== */

.testimonials-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.testimonial-card {
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1) !important;
}

.testimonial-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-avatar {
    position: relative;
}

.testimonial-avatar::after {
    content: '"';
    position: absolute;
    top: -10px;
    right: -10px;
    width: 30px;
    height: 30px;
    background: #007bff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    font-weight: bold;
}

/* ========================================
   RESPONSIVE DESIGN IMPROVEMENTS
   ======================================== */

@media (max-width: 768px) {
    .quote-image {
        width: 150px;
        height: 150px;
    }
    
    .stat-number {
        font-size: 2.5rem !important;
    }
    
    .partner-logo {
        padding: 15px;
    }
    
    .partner-logo-img {
        max-height: 50px;
    }
    
    .news-card {
        margin-bottom: 2rem;
    }
    
    .testimonial-img {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 576px) {
    .program-card,
    .quote-card,
    .service-card,
    .featured-service-card {
        margin-bottom: 2rem;
    }
    
    .startup-logo-img {
        max-height: 60px;
    }
    
    .collaboration-logo img {
        max-height: 40px;
    }
}

/* ========================================
   ACCESSIBILITY IMPROVEMENTS
   ======================================== */

.program-card:focus,
.testimonial-card:focus,
.partner-logo:focus {
    outline: 2px solid #007bff;
    outline-offset: 2px;
}

/* ========================================
   PRINT STYLES
   ======================================== */

@media print {
    .floating,
    .floating2 {
        animation: none;
    }
    
    .news-resources-section {
        background: white !important;
        color: black !important;
    }
    
    .featured-service-card {
        background: white !important;
        color: black !important;
        border: 1px solid #ccc !important;
    }
}

/* ========================================
   MODERN HEADER STYLES
   ======================================== */

.modern-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    height: 70px;
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.modern-header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
}

/* Brand Styling */
.modern-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.modern-brand:hover {
    text-decoration: none;
    transform: scale(1.02);
}

.brand-logo {
    height: 45px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

.brand-text {
    font-size: 1.4rem;
    font-weight: 700;
    color: #00b09b;
    letter-spacing: -0.5px;
    transition: all 0.3s ease;
}

.modern-brand:hover .brand-text {
    color: #96c93d;
}

/* Navigation Styling */
.modern-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.modern-nav-link {
    position: relative;
    color: #333 !important;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.75rem 1rem !important;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.modern-nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #00b09b, #96c93d);
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 2px;
}

.modern-nav-link:hover,
.modern-nav-link.active {
    color: #00b09b !important;
    background: rgba(0, 176, 155, 0.05);
    text-decoration: none;
}

.modern-nav-link:hover::before,
.modern-nav-link.active::before {
    width: 80%;
}

/* CTA Button */
.modern-cta-btn {
    background: linear-gradient(135deg, #00b09b, #96c93d);
    color: white !important;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    margin-left: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 176, 155, 0.3);
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.modern-cta-btn:hover {
    background: linear-gradient(135deg, #008f7a, #7bb32e);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 176, 155, 0.4);
    color: white !important;
    text-decoration: none;
}

.modern-cta-btn i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.modern-cta-btn:hover i {
    transform: translateX(2px);
}

/* Mobile Toggler */
.modern-toggler {
    border: none;
    padding: 0.5rem;
    border-radius: 8px;
    background: rgba(0, 176, 155, 0.1);
    transition: all 0.3s ease;
}

.modern-toggler:focus {
    box-shadow: 0 0 0 3px rgba(0, 176, 155, 0.2);
}

.modern-toggler:hover {
    background: rgba(0, 176, 155, 0.15);
}

/* Body Padding Adjustment */
body {
    padding-top: 70px;
}

/* ========================================
   RESPONSIVE HEADER DESIGN
   ======================================== */

@media (max-width: 991px) {
    .modern-header {
        height: 65px;
    }

    body {
        padding-top: 65px;
    }

    .brand-logo {
        height: 40px;
    }

    .brand-text {
        font-size: 1.2rem;
    }

    .modern-nav {
        background: white;
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        margin-top: 1rem;
        padding: 1rem;
        flex-direction: column;
        gap: 0.25rem;
    }

    .modern-nav-link {
        width: 100%;
        text-align: center;
        padding: 0.75rem 1rem !important;
    }

    .modern-cta-btn {
        margin: 0.5rem 0 0 0;
        justify-content: center;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .modern-header {
        height: 60px;
    }

    body {
        padding-top: 60px;
    }

    .brand-logo {
        height: 35px;
    }

    .brand-text {
        font-size: 1.1rem;
    }

    .modern-nav-link {
        font-size: 0.85rem;
        padding: 0.6rem 0.75rem !important;
    }

    .modern-cta-btn {
        font-size: 0.8rem;
        padding: 0.5rem 1.25rem;
    }
}

@media (max-width: 576px) {
    .modern-brand {
        gap: 0.5rem;
    }

    .brand-text {
        font-size: 1rem;
    }

    .modern-nav {
        padding: 0.75rem;
    }

    .modern-nav-link {
        font-size: 0.8rem;
        padding: 0.5rem !important;
    }
}

/* ========================================
   HEADER SCROLL ANIMATION
   ======================================== */

@keyframes headerSlideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

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

.modern-header {
    animation: headerSlideDown 0.5s ease-out;
}

/* ========================================
   ENHANCED ACCESSIBILITY
   ======================================== */

.modern-nav-link:focus,
.modern-cta-btn:focus,
.modern-toggler:focus {
    outline: 2px solid #96c93d;
    outline-offset: 2px;
    border-radius: 6px;
}

@media (prefers-reduced-motion: reduce) {

    .modern-header,
    .modern-nav-link,
    .modern-cta-btn,
    .brand-logo,
    .brand-text {
        transition: none;
    }

    .modern-header {
        animation: none;
    }
}

/* ========================================
   MODERN FOOTER STYLES
   ======================================== */

.modern-footer-area {
    background: #1a1a1a;
    color: #ffffff;
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.modern-footer-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 176, 155, 0.05) 0%, rgba(150, 201, 61, 0.05) 100%);
    z-index: 1;
}

.modern-footer-area .container {
    position: relative;
    z-index: 2;
}

/* Footer Main Content */
.footer-main-content {
    margin-bottom: 3rem;
}

/* Footer Brand Section */
.footer-brand-section {
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
    filter: brightness(1.2);
}

.footer-brand-name {
    color: #00b09b;
    font-weight: 600;
    font-size: 1.2rem;
    margin: 0;
    line-height: 1.4;
}

.footer-description {
    color: #b8b8b8;
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Contact Grid */
.footer-contact-grid {
    display: grid;
    gap: 1.5rem;
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border-left: 3px solid #00b09b;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(5px);
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #00b09b, #96c93d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-details h6 {
    color: #ffffff;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-details p {
    color: #b8b8b8;
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

.contact-hours {
    color: #96c93d;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Footer Widgets */
.footer-widget {
    height: 100%;
}

.footer-widget-title {
    color: #ffffff;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(135deg, #00b09b, #96c93d);
    border-radius: 2px;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #b8b8b8;
    text-decoration: none;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    padding: 0.25rem 0;
}

.footer-links a:hover {
    color: #00b09b;
    text-decoration: none;
    transform: translateX(5px);
}

.footer-links a i {
    font-size: 0.7rem;
    color: #96c93d;
    transition: transform 0.3s ease;
}

.footer-links a:hover i {
    transform: translateX(3px);
}

/* Social Media Section */
.social-description {
    color: #b8b8b8;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.footer-social-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    color: #b8b8b8;
    text-decoration: none;
    border-radius: 8px;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.social-link:hover {
    text-decoration: none;
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.1);
}

.social-link.facebook:hover {
    background: rgba(59, 89, 152, 0.2);
    color: #3b5998;
}

.social-link.twitter:hover {
    background: rgba(29, 161, 242, 0.2);
    color: #1da1f2;
}

.social-link.linkedin:hover {
    background: rgba(0, 119, 181, 0.2);
    color: #0077b5;
}

.social-link.instagram:hover {
    background: rgba(225, 48, 108, 0.2);
    color: #e1306c;
}

.social-link i {
    font-size: 1.1rem;
}

/* Newsletter Section */
.newsletter-section {
    background: rgba(255, 255, 255, 0.03);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-title {
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.newsletter-description {
    color: #b8b8b8;
    font-size: 0.85rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.newsletter-form .input-group {
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.newsletter-input {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #ffffff;
    font-size: 0.9rem;
    padding: 0.75rem 1rem;
    border-radius: 25px 0 0 25px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.newsletter-input::placeholder {
    color: #b8b8b8;
}

.newsletter-input:focus {
    background: rgba(255, 255, 255, 0.15);
    border: none;
    box-shadow: none;
    color: #ffffff;
}

.newsletter-btn {
    background: linear-gradient(135deg, #00b09b, #96c93d);
    border: none;
    color: white;
    padding: 0.75rem 1.25rem;
    border-radius: 0 25px 25px 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-btn:hover {
    background: linear-gradient(135deg, #008f7a, #7bb32e);
    transform: translateX(-2px);
    box-shadow: 0 6px 20px rgba(0, 176, 155, 0.4);
}

.newsletter-btn i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.newsletter-btn:hover i {
    transform: translateX(3px);
}

/* Footer Bottom */
.footer-bottom {
    background: #0d0d0d;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
}

.footer-bottom-content {
    text-align: left;
}

.copyright-text {
    color: #888888;
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.5;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: #b8b8b8;
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #00b09b;
    text-decoration: none;
}

.footer-bottom-links .separator {
    color: #555555;
    font-size: 0.8rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .modern-footer-area {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-logo {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        text-align: left;
    }
    
    .footer-brand-name {
        font-size: 1.1rem;
    }
    
    .footer-contact-grid {
        gap: 1rem;
    }
    
    .contact-item {
        padding: 0.75rem;
    }
    
    .contact-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .footer-social-links {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .social-link {
        padding: 0.6rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .newsletter-section {
        padding: 1rem;
    }
    
    .newsletter-input,
    .newsletter-btn {
        padding: 0.6rem 0.8rem;
        font-size: 0.85rem;
    }
    
    .footer-bottom-content {
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .footer-bottom-links {
        justify-content: center;
        gap: 0.5rem;
    }
    
    .footer-bottom-links a {
        font-size: 0.75rem;
    }
}

@media (max-width: 576px) {
    .footer-contact-grid {
        gap: 0.75rem;
    }
    
    .contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 1rem;
    }
    
    .footer-widget-title {
        font-size: 1rem;
        text-align: center;
    }
    
    .footer-links {
        text-align: center;
    }
    
    .newsletter-form .input-group {
        flex-direction: column;
        border-radius: 8px;
    }
    
    .newsletter-input {
        border-radius: 8px 8px 0 0;
        text-align: center;
    }
    
    .newsletter-btn {
        border-radius: 0 0 8px 8px;
        padding: 0.75rem;
    }
}

/* Print Styles */
@media print {
    .modern-footer-area {
        background: white !important;
        color: black !important;
    }
    
    .footer-brand-name,
    .footer-widget-title,
    .contact-details h6 {
        color: black !important;
    }
    
    .footer-description,
    .contact-details p,
    .footer-links a,
    .social-description {
        color: #666 !important;
    }
    
    .contact-icon,
    .newsletter-btn {
        background: #666 !important;
    }
}
