/* Critical Path CSS - Above the fold content prioritized */
@charset "UTF-8";

/* Core styles for above-the-fold content - loaded first */
:root {
    --primary-color: #13214A;
    --accent-color: #6BA368;
    --dark-text: #1B1B1B;
    --body-text: #4B4B4B;
    --background: #FFFFFF;
    --section-bg: #F6F6F6;
    --highlight-cta: #94D2BD;
    --gradient-primary: linear-gradient(135deg, #13214A 0%, #0A9396 100%);
    --box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--body-text);
    line-height: 1.6;
    background-color: var(--background);
    text-rendering: optimizeSpeed;
}

/* Focus on content first, load navbar styles upfront */
.navbar {
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: var(--transition);
    padding: 1rem 0;
    background: var(--background);
}

.navbar-brand {
    margin-right: 2rem;
    padding: 0;
    display: flex;
    align-items: center;
}

.brand-logo {
    height: 70px;
    width: auto;
    object-fit: contain;
}

/* Hero section - likely above the fold */
.hero-section {
    position: relative;
    overflow: hidden;
}

.carousel-item {
    height: 800px;
    position: relative;
    color: white;
}

.carousel-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(19, 33, 74, 0.4), rgba(19, 33, 74, 0.4));
}

.carousel-item .container {
    height: 100%;
    position: relative;
    z-index: 2;
}

.carousel-item .row {
    height: 100%;
}

/* Carousel Controls */
.carousel-controls-wrapper {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
    padding: 40px 0 20px;
    z-index: 3;
}

/* Right Side Indicators */
.carousel-indicators {
    right: 30px;
    left: auto;
    bottom: 50%;
    transform: translateY(50%);
    flex-direction: column;
    margin: 0;
    padding: 0;
    width: auto;
    z-index: 3;
}

.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--background);
    opacity: 0.5;
    transition: all 0.3s ease;
    margin: 8px 0;
    border: 2px solid transparent;
    cursor: pointer;
}

.carousel-indicators .active {
    opacity: 1;
    transform: scale(1.2);
    border-color: var(--background);
    background-color: transparent;
}

/* Bottom Controls */
.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 300px;
    margin: 0 auto;
}

.carousel-control {
    background: none;
    border: none;
    color: white;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    opacity: 0.7;
    cursor: pointer;
}

.carousel-control:hover {
    opacity: 1;
    transform: translateX(0);
}

.carousel-control i {
    font-size: 20px;
}

.control-text {
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .carousel-controls-wrapper {
        padding: 30px 0 15px;
    }

    .carousel-controls {
        max-width: 200px;
    }

    .carousel-control {
        padding: 6px 12px;
        font-size: 12px;
    }

    .carousel-control i {
        font-size: 16px;
    }

    .control-text {
        display: none;
    }

    .carousel-indicators {
        right: 20px;
    }

    .carousel-indicators [data-bs-target] {
        width: 10px;
        height: 10px;
        margin: 6px 0;
    }
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
    padding: 0 15px;
}

.carousel-item.active .hero-content {
    opacity: 1;
    transform: translateY(0);
}
/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loader {
    text-align: center;
}

.loader-logo {
    margin-bottom: 20px;
    animation: pulse 1.5s infinite;
}

.loader-progress {
    width: 200px;
    height: 3px;
    background: rgba(19, 33, 74, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.loader-progress .progress-bar {
    width: 0;
    height: 100%;
    background: var(--primary-color);
    animation: progress 2s ease infinite;
}

@keyframes progress {
    0% {
        width: 0;
        margin-left: 0;
    }
    50% {
        width: 100%;
        margin-left: 0;
    }
    100% {
        width: 0;
        margin-left: 100%;
    }
}

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

/* Navigation */
.navbar-brand {
    margin-right: 2rem;
    padding: 0;
    display: flex;
    align-items: center;
}

.brand-logo {
    height: 70px;
    width: auto;
    object-fit: contain;
}

.nav-link {
    font-weight: 500;
    color: var(--dark-text) !important;
    padding: 0.5rem 1rem !important;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.nav-link:hover {
    color: var(--accent-color) !important;
}

.nav-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-link:hover .nav-line {
    width: 100%;
}

.navbar-scrolled {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
}

.nav-call-button {
    margin-left: 2rem;
}

.btn-call {
    display: flex;
    align-items: center;
    background: #fff;
    border: 1px solid #E8E8E8;
    border-radius: 60px;
    padding: 0;
    transition: all 0.3s ease;
    color: var(--dark-text);
    font-weight: 500;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    text-decoration: none;
}

.btn-call:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    color: var(--dark-text);
    background: #f8f9fa;
}

.call-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.call-icon i {
    font-size: 24px;
}

.call-info {
    padding: 0 24px 0 16px;
    display: flex;
    flex-direction: column;
}

.call-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--body-text);
    margin-bottom: 2px;
}

.call-number {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: 0.5px;
}

@media (max-width: 991.98px) {
    .nav-call-button {
        margin: 1rem 0;
    }
    
    .btn-call {
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .call-icon {
        width: 48px;
        height: 48px;
    }

    .call-icon i {
        font-size: 20px;
    }

    .call-info {
        padding: 0 20px 0 12px;
    }

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

    .call-number {
        font-size: 16px;
    }
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
    padding: 0 15px;
}

.carousel-item.active .hero-content {
    opacity: 1;
    transform: translateY(0);
}

.text-gradient {
    background: white;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: block;
    animation: fadeInUp 0.6s ease-out forwards;
}

.hero-content .lead {
    color: rgba(255, 255, 255, 0.9);
}

.btn-outline-light:hover {
    background-color: white;
    color: var(--primary-color);
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .carousel-item {
        height: 700px;
    }
}

@media (max-width: 991px) {
    .carousel-item {
        height: 600px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding-top: 100px;
    }
    
    .carousel-item {
        height: 500px;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 10%;
    }
    
    .carousel-indicators {
        right: 20px;
    }
    
    .carousel-indicators [data-bs-target] {
        width: 10px;
        height: 10px;
        margin: 6px 0;
    }
    
    .hero-content {
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content .lead {
        font-size: 1.1rem;
    }

    .carousel-overlay {
        background: linear-gradient(to bottom, rgba(19, 33, 74, 0.95), rgba(19, 33, 74, 0.8));
    }
}

@media (max-width: 576px) {
    .carousel-item {
        height: 450px;
    }

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

    .hero-buttons .btn {
        display: block;
        width: 50%;
        margin: 0.5rem 0;
        margin-left: auto; 
        margin-right: auto;
    }
}

/* Clientele Section */
.clientele-section {
    background-color: var(--background);
    padding: 60px 0;
    position: relative;
}

.clientele-section h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 50px;
    text-align: center;
}

.logo-carousel {
    position: relative;
    padding: 20px 0;
}

.swiper-container {
    padding: 20px;
    overflow: hidden;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.client-logo {
    width: 250px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.client-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(0%);
    opacity: 1;
    transition: all 0.3s ease;
}

.client-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}

.client-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

@media (max-width: 768px) {
    .clientele-section h2 {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .client-logo {
        width: 200px;
        height: 120px;
        padding: 15px;
    }
}

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

    .client-logo {
        width: 160px;
        height: 100px;
        padding: 10px;
    }
}

/* Cards */
.card {
    border: none;
    border-radius: 16px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.card:hover::before {
    opacity: 0.1;
}

.card-title {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Buttons */
.btn-primary, .btn-outline-light {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--primary-color);
    border: none;
    border-radius: 50px;
    padding: 10px 20px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary .arrow-circle, .btn-outline-light .arrow-circle {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.btn-primary:hover .arrow-circle, .btn-outline-light:hover .arrow-circle {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(3px);
}

.btn-primary:hover, .btn-outline-light:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(19, 33, 74, 0.2);
}

.btn-outline-primary
{
    border-color: var(--primary-color) !important;
    color: var(--primary-color) !important;

}

.btn-outline-primary:hover
{
    background-color: var(--accent-color) !important;
    border-color: var(--accent-color) !important;
    color: white !important;
}

.btn:hover
{
    background-color: var(--accent-color);
}

.btn-outline-light {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: white;
    font-size: 16px;
}

.btn-outline-light:hover {
    background: white;
    color: var(--primary-color);
}

.btn-outline-light:hover .arrow-circle {
    background: rgba(19, 33, 74, 0.1);
}

@media (max-width: 768px) {
    .btn-primary, .btn-outline-light {
        padding: 10px 20px;
        font-size: 14px;
    }

    .btn-primary .arrow-circle, .btn-outline-light .arrow-circle {
        width: 28px;
        height: 28px;
    }
}

/* Sections */
section {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.bg-light {
    background-color: var(--section-bg) !important;
}

/* Footer */
.site-footer {
    background: #6BA368;
background: linear-gradient(217deg, rgba(107, 163, 104, 1) 0%, rgba(19, 33, 74, 1) 60%);
    color: rgba(255, 255, 255, 0.7);
    position: relative;
}

.footer-top {
    padding: 140px 0px;
}

.footer-logo {
    max-height: 50px;
    width: auto;
    filter: brightness(0) invert(1); /* Ensure logo is white if it's not already */
}

.footer-about {
    font-size: 0.95rem;
    margin-bottom: 0;
    line-height: 1.7;
}

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

.footer-widget .widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent-color);
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.footer-widget p {
    font-size: 0.95rem;
}

/* Newsletter Form */
.newsletter-form .form-control {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 30px 0 0 30px;
    padding: 0.75rem 1.2rem;
}

.newsletter-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form .form-control:focus {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: var(--accent-color);
    box-shadow: none;
    color: white;
}

.newsletter-form .btn {
    background-color: var(--accent-color);
    border: none;
    border-radius: 0 30px 30px 0;
    padding: 0.75rem 1.2rem;
    color: white;
    transition: all 0.3s ease;
}

.newsletter-form .btn:hover {
    background-color: #5a9357; /* Darker accent */
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--accent-color);
    color: white;
    transform: translateY(-3px);
}

/* Footer Bottom */
.footer-bottom {
    background-color: rgba(0, 0, 0, 0.1);
    padding: 20px 0;
}

.copyright-text,
.design-credit {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.design-credit i {
    color: var(--accent-color);
}

@media (max-width: 767px) {
    .site-footer,
    .footer-top,
    .footer-widget,
    .footer-bottom,
    .footer-links,
    .newsletter-form,
    .social-icons {
        text-align: center !important;
        justify-content: center !important;
        align-items: center !important;
    }
    .footer-links {
        padding-left: 0;
    }
    .footer-widget {
        margin-bottom: 2rem;
    }
    .social-icons {
        flex-direction: row;
        margin: 0 auto;
    }
    .footer-widget .widget-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

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

@keyframes float {
    0% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
    100% { transform: translateY(0) rotate(0deg); }
}

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

@keyframes scrollLine {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    50.1% { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* Form Elements */
.form-control {
    border-radius: 12px;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(0, 95, 115, 0.1);
}

/* Accordion */
.accordion-button {
    border-radius: 12px !important;
    padding: 1rem 1.5rem;
    font-weight: 500;
}

.accordion-button:not(.collapsed) {
    background: var(--gradient-primary);
    color: white;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--section-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-color);
}

/* Creative Elements */
.brand-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--gradient-primary);
    border-radius: 50%;
    margin-left: 4px;
    animation: pulse 2s infinite;
}

/* Button Enhancements */
.btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.btn:hover::after {
    transform: translateX(0);
} 

.pd0{padding-bottom: 0px;}

/* Introduction Section */
.introduction-section {
    background-color: var(--background);
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.introduction-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(19, 33, 74, 0.03) 0%, rgba(10, 147, 150, 0.03) 100%);
    z-index: 0;
}

.intro-content {
    position: relative;
    z-index: 1;
}

.introduction-section h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.introduction-section .lead {
    color: var(--body-text);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.intro-image-wrapper {
    position: relative;
    padding: 20px;
}

.intro-image {
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.intro-image-shape {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #6BA368 0%, rgba(107, 163, 104, 0.7) 100%);
    opacity: 0.15;
    transform: translate(-20px, -20px);
    border-radius: 20px;
    z-index: 1;
}

.intro-image-wrapper:hover .intro-image {
    transform: translate(-5px, -5px);
}

.intro-image-wrapper:hover .intro-image-shape {
    transform: translate(-15px, -15px);
}

@media (max-width: 991px) {
    .introduction-section {
        padding: 60px 0;
    }

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

    .introduction-section .lead {
        font-size: 1rem;
        line-height: 1.6;
    }
}

@media (max-width: 768px) {
    .introduction-section {
        padding: 40px 0;
    }

    .intro-image-wrapper {
        padding: 15px;
        margin-bottom: 30px;
    }

    .intro-image-shape {
        transform: translate(-15px, -15px);
    }
}

/* Services Section */
.services-section {
    background: #6BA368;
    background: #6BA368;
background: linear-gradient(217deg, rgba(107, 163, 104, 1) 0%, rgba(19, 33, 74, 1) 60%);
    padding: 120px 0;
    position: relative;
}

.service-item {
    margin-bottom: 100px;
}

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

.service-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.service-image img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.service-item:hover .service-image img {
    transform: scale(1.05);
}

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

.service-title-home {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.service-description-home {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16p;
    line-height: 1.6;
    margin-bottom: 30px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.service-link i {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.service-link:hover {
    color: rgba(255, 255, 255, 0.8);
}

.service-link:hover i {
    transform: translateX(5px);
}

@media (max-width: 991px) {
    .services-section {
        padding: 80px 0;
    }

    .service-item {
        margin-bottom: 60px;
    }

    .service-content {
        padding: 20px 0;
        text-align: center;
    }

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

    .service-description {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 60px 0;
    }

    .service-item {
        margin-bottom: 40px;
    }

    .service-title {
        font-size: 1.8rem;
    }

    .service-description {
        font-size: 1rem;
    }
}

/* Services CTA */
.service-cta {
    margin-top: 70px;
    padding: 60px 0;
    position: relative;
   
    overflow: hidden;
    background: linear-gradient(217deg, rgba(107, 163, 104, 1) 0%, rgba(19, 33, 74, 1) 60%);
}

.cta-shape-1,
.cta-shape-2 {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    pointer-events: none;
}

.cta-shape-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    left: -100px;
    animation: float 8s ease-in-out infinite;
}

.cta-shape-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    right: -50px;
    animation: float 6s ease-in-out infinite reverse;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-label {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.cta-title {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.creative-text {
    display: inline-block;
    position: relative;
    overflow: hidden;
    height: 3rem;
}

.text-rotate {
    display: block;
    animation: rotateWords 9s cubic-bezier(0.23, 1, 0.32, 1) infinite;
}

.text-rotate span {
    display: block;
    height: 3rem;
    padding: 0.2rem 0;
}

.cta-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(to right, #fff, rgba(255, 255, 255, 0.8));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

@keyframes rotateWords {
    0%, 33% {
        transform: translateY(0);
    }
    34%, 66% {
        transform: translateY(-3rem);
    }
    67%, 99% {
        transform: translateY(-6rem);
    }
    100% {
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    50% {
        transform: translate(20px, 20px) rotate(5deg);
    }
}

@media (max-width: 991px) {
    .service-cta {
        margin-top: 60px;
        padding: 40px 20px;
    }

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

    .cta-description {
        font-size: 1rem;
        padding: 0 20px;
    }

    .cta-stats {
        flex-direction: column;
        gap: 2rem;
    }

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

@media (max-width: 768px) {
    .service-cta {
        margin-top: 40px;
        padding: 30px 15px;
    }

    .cta-title {
        font-size: 1.8rem;
    }

    .creative-text {
        height: 2.5rem;
    }

    .text-rotate span {
        height: 2.5rem;
    }
}

/* Case Studies Section */
.case-studies-section {
    padding: 120px 0px;
    background-color: var(--section-bg);
    position: relative;
    overflow: hidden;
}

.section-label {
    display: inline-block;
    padding: 8px 16px;
    background: var(--gradient-primary);
    border-radius: 20px;
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.section-title {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-description {
    color: var(--body-text);
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
}

.case-study-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.case-study-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.case-study-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9;
}

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

.case-study-card:hover .case-study-image img {
    transform: scale(1.1);
}

.case-study-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 1;
}

.case-study-category {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 30px;
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
    backdrop-filter: blur(5px);
}

.case-study-content {
    padding: 30px;
}

.case-study-title {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.case-study-description {
    color: var(--body-text);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.case-study-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--body-text);
    font-size: 0.9rem;
}

.meta-item i {
    color: var(--accent-color);
    font-size: 1.1rem;
}

.case-study-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.case-study-link i {
    transition: transform 0.3s ease;
}

.case-study-link:hover {
    color: var(--accent-color);
}

.case-study-link:hover i {
    transform: translateX(5px);
}

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

    .section-description {
        font-size: 1rem;
    }

    .case-study-title {
        font-size: 1.3rem;
    }
}

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

    .case-study-content {
        padding: 20px;
    }

    .case-study-meta {
        flex-direction: column;
        gap: 10px;
    }
}

.case-studies-section .btn-outline-light {
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    background: transparent;
    padding: 12px 30px;
    transition: all 0.3s ease;
}

.case-studies-section .btn-outline-light:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(19, 33, 74, 0.2);
}

.case-studies-section .btn-outline-light i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.case-studies-section .btn-outline-light:hover i {
    transform: translateX(5px);
}

.services-section .section-label {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.9);
}

.services-section .section-title {
    color: white;
    margin-bottom: 1.5rem;
}

.services-section .section-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Digital Insights Section */
.digital-insights-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(19, 33, 74, 0.02) 0%, rgba(10, 147, 150, 0.02) 100%);
    position: relative;
}

/* Featured Insight */
.featured-insight {
    position: relative;
    height: 100%;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.featured-insight:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.insight-image {
    position: relative;
    overflow: hidden;
}

.insight-image img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.featured-insight:hover .insight-image img {
    transform: scale(1.05);
}

.insight-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary-color);
    color: white;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
}

.insight-content {
    padding: 30px;
}

.insight-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
}

.insight-category {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.9rem;
}

.insight-date {
    color: var(--body-text);
    font-size: 0.9rem;
}

.insight-title {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.insight-excerpt {
    color: var(--body-text);
    margin-bottom: 20px;
    line-height: 1.6;
}

.insight-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.insight-link:hover {
    color: var(--accent-color);
}

.insight-link i {
    transition: transform 0.3s ease;
}

.insight-link:hover i {
    transform: translateX(5px);
}

/* Vlogs */
.latest-vlogs {
    height: 100%;
    padding: 30px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.latest-vlogs h4 {
    color: var(--primary-color);
    font-weight: 700;
}

.vlog-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}

.vlog-item:last-child {
    border-bottom: none;
}

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

.vlog-thumbnail {
    position: relative;
    width: 120px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
}

.vlog-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.play-button i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.vlog-item:hover .play-button {
    background: var(--primary-color);
}

.vlog-item:hover .play-button i {
    color: white;
}

.vlog-content h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.duration {
    font-size: 0.9rem;
    color: var(--body-text);
}

/* Recent Blogs */
.insight-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

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

/* Recent Blogs Carousel */
.recent-blogs-carousel {
    position: relative;
    padding: 0 50px; /* Space for navigation buttons */
}

.insights-swiper {
    padding-bottom: 50px; /* Space for pagination */
    overflow: visible; /* Allow shadows to be seen */
}

.insights-swiper .swiper-slide {
    height: auto; /* Ensure cards dictate height */
}

.insights-swiper .insight-card {
    height: 100%; /* Make cards fill the slide height */
    margin-bottom: 20px; /* Add space for shadows */
}

/* Pagination */
.insights-pagination {
    bottom: 10px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: auto !important;
}

.insights-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: rgba(19, 33, 74, 0.3);
    opacity: 1;
    transition: all 0.3s ease;
}

.insights-pagination .swiper-pagination-bullet-active {
    background-color: var(--primary-color);
    width: 25px;
    border-radius: 5px;
}

/* Navigation Buttons */
.insights-button-prev,
.insights-button-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background-color: white;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.insights-button-prev {
    left: 0;
}

.insights-button-next {
    right: 0;
}

.insights-button-prev::after,
.insights-button-next::after {
    font-size: 1.2rem;
    font-weight: 600;
}

.insights-button-prev:hover,
.insights-button-next:hover {
    background-color: var(--primary-color);
    color: white;
}

@media (max-width: 768px) {
    .recent-blogs-carousel {
        padding: 0 15px;
    }

    .insights-button-prev,
    .insights-button-next {
        display: none; /* Hide arrows on smaller screens, rely on swipe */
    }
}

.digital-insights-section .btn-outline-light {
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    background: transparent;
    padding: 12px 30px;
    transition: all 0.3s ease;
}

.digital-insights-section .btn-outline-light:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(19, 33, 74, 0.2);
}

.digital-insights-section .btn-outline-light i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.digital-insights-section .btn-outline-light:hover i {
    transform: translateX(5px);
}

/* About Hero Section */
.about-hero-section {
    padding: 180px 0 100px;
    background: #6BA368;
    background: linear-gradient(217deg, rgba(107, 163, 104, 1) 0%, rgba(19, 33, 74, 1) 60%);
    position: relative;
    overflow: hidden;
}

.about-hero-content {
    padding-right: 50px;
}

.about-hero-content .section-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin: 1rem 0 2rem;
    color: white;
}

.about-hero-content .lead {
    color: rgba(255, 255, 255, 0.9);
}

.about-hero-content .section-label {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.9);
}

.about-hero-image {
    position: relative;
}

.about-hero-image img {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.about-hero-image:hover img {
    transform: translateY(-10px);
}

/* Our Story Section */
.our-story-section {
    padding: 100px 0;
    background: var(--section-bg);
    position: relative;
    overflow: hidden;
}

.vision-card, .mission-card {
    padding: 60px;
    border-radius: 20px;
    height: 100%;
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    cursor: pointer;
}

.vision-card {
    background: linear-gradient(217deg, rgba(107, 163, 104, 1) 0%, rgba(19, 33, 74, 1) 60%);
    color: white;
}

.mission-card {
    background: white;
    color: #2F3B35;
}

.card-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.circle-1, .circle-2 {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    transition: all 0.5s ease;
}

.vision-card .circle-1 {
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, rgba(255,255,255,0.1), rgba(255,255,255,0.2));
    top: -100px;
    right: -100px;
}

.vision-card .circle-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg, rgba(255,255,255,0.1), rgba(255,255,255,0.15));
    bottom: -150px;
    left: -150px;
}

.mission-card .circle-1 {
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, rgba(47,59,53,0.1), rgba(47,59,53,0.15));
    top: -100px;
    left: -100px;
}

.mission-card .circle-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg, rgba(47,59,53,0.1), rgba(47,59,53,0.1));
    bottom: -150px;
    right: -150px;
}

.icon-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.vision-card .icon-circle {
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

.mission-card .icon-circle {
    background: rgba(47, 59, 53, 0.1);
    box-shadow: 0 4px 15px rgba(47, 59, 53, 0.1);
}

.icon-circle i {
    font-size: 24px;
    transition: all 0.3s ease;
}

.vision-card .icon-circle i {
    color: white;
}

.mission-card .icon-circle i {
    color: #2F3B35;
}

.vision-title, .mission-title {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.vision-text, .mission-text {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

.hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255,255,255,0), rgba(255,255,255,0.1));
    opacity: 0;
    transition: all 0.5s ease;
    z-index: 1;
}

/* Hover Effects */
.vision-card:hover, .mission-card:hover {
    transform: translateY(-10px);
}

.vision-card:hover .circle-1,
.mission-card:hover .circle-1 {
    transform: scale(1.2) rotate(10deg);
}

.vision-card:hover .circle-2,
.mission-card:hover .circle-2 {
    transform: scale(1.1) rotate(-5deg);
}

.vision-card:hover .icon-circle,
.mission-card:hover .icon-circle {
    transform: scale(1.1);
}

.vision-card:hover .icon-circle i,
.mission-card:hover .icon-circle i {
    transform: rotate(360deg);
}

.vision-card:hover .hover-overlay,
.mission-card:hover .hover-overlay {
    opacity: 1;
}

/* Animation for icon spin */
@keyframes iconSpin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 991px) {
    .vision-card, .mission-card {
        padding: 40px;
    }

    .vision-title, .mission-title {
        font-size: 2rem;
    }

    .vision-text, .mission-text {
        font-size: 1.1rem;
    }

    .circle-1, .circle-2 {
        transform: scale(0.8);
    }
}

@media (max-width: 768px) {
    .our-story-section {
        padding: 60px 0;
    }

    .vision-card, .mission-card {
        padding: 30px;
    }

    .icon-circle {
        width: 50px;
        height: 50px;
        margin-bottom: 25px;
    }

    .icon-circle i {
        font-size: 20px;
    }

    .vision-title, .mission-title {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }

    .vision-text, .mission-text {
        font-size: 1rem;
    }
}

/* Team Section */
.team-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(19, 33, 74, 0.02) 0%, rgba(10, 147, 150, 0.02) 100%);
}

/* Founder Profile */
.founder-profile {
    background: white;
    border-radius: 30px;
    padding: 60px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.founder-image-wrapper {
    position: relative;
    padding: 20px;
}

.founder-image {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.founder-image img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.founder-shape {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(217deg, rgba(107, 163, 104, 0.2) 0%, rgba(19, 33, 74, 0.2) 60%);
    transform: translate(-20px, -20px);
    border-radius: 30px;
    z-index: 1;
}

.founder-content {
    padding: 20px 0;
}

.founder-title {
    margin-bottom: 25px;
}

.founder-title h3 {
    color: var(--primary-color);
    font-size: 2.8rem;
    margin-bottom: 10px;
}

.founder-role {
    display: inline-block;
    background: var(--gradient-primary);
    padding: 8px 20px;
    border-radius: 20px;
    color: white;
    font-size: 1rem;
    font-weight: 500;
}

.founder-bio {
    color: var(--body-text);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.founder-social {
    display: flex;
    gap: 15px;
}

.founder-social .social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 25px;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.founder-social .social-link:hover {
    background: var(--gradient-primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(19, 33, 74, 0.1);
}

/* Team Member Cards */
.team-member-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.member-image-wrapper {
    position: relative;
    overflow: hidden;
}

.member-image {
    position: relative;
    padding-top: 100%;
}

.member-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.member-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(19, 33, 74, 0.9), rgba(10, 147, 150, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.member-social {
    transform: translateY(20px);
    transition: all 0.3s ease;
    display: flex;
    gap: 15px;
}

.member-social a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.member-social a:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
}

.team-member-card:hover .member-overlay {
    opacity: 1;
}

.team-member-card:hover .member-social {
    transform: translateY(0);
}

.team-member-card:hover .member-image img {
    transform: scale(1.1);
}

.member-content {
    padding: 25px;
    position: relative;
}

.member-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 25px;
    width: 50px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.member-content h4 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.member-role {
    display: block;
    color: var(--accent-color);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.member-content p {
    color: var(--body-text);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Advisory Board */
.advisory-board {
    margin-top: 80px;
}

.section-line {
    width: 60px;
    height: 3px;
    background: var(--gradient-primary);
    margin: 20px auto;
    border-radius: 2px;
}

.advisor-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: all 0.3s ease;
}

.advisor-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.advisor-image-wrapper {
    position: relative;
    width: 100px;
    padding: 10px;
}

.advisor-image {
    position: relative;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    z-index: 2;
}

.advisor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.advisor-shape {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(217deg, rgba(107, 163, 104, 0.2) 0%, rgba(19, 33, 74, 0.2) 60%);
    border-radius: 50%;
    transform: translate(-5px, -5px);
    z-index: 1;
}

.advisor-title h4 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.advisor-role {
    display: inline-block;
    background: var(--gradient-primary);
    padding: 6px 16px;
    border-radius: 15px;
    color: white;
    font-size: 0.85rem;
    font-weight: 500;
}

.advisor-content p {
    color: var(--body-text);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

.advisor-social {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.advisor-social .social-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(19, 33, 74, 0.05);
    border-radius: 20px;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.advisor-social .social-link:hover {
    background: var(--gradient-primary);
    color: white;
    transform: translateY(-3px);
}

@media (max-width: 991px) {
    .founder-profile {
        padding: 30px;
    }

    .founder-title h3 {
        font-size: 2.2rem;
    }

    .founder-bio {
        font-size: 1rem;
    }

    .advisor-header {
        flex-direction: column;
        text-align: center;
    }

    .advisor-image-wrapper {
        margin: 0 auto;
    }

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

@media (max-width: 768px) {
    .team-section {
        padding: 60px 0;
    }

    .founder-profile {
        padding: 20px;
    }

    .founder-title h3 {
        font-size: 1.8rem;
    }

    .founder-social {
        flex-direction: column;
    }

    .member-content h4 {
        font-size: 1.2rem;
    }
}

/* Values Section */
.values-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(19, 33, 74, 0.02) 0%, rgba(10, 147, 150, 0.02) 100%);
    position: relative;
    overflow: hidden;
}

.value-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
}

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

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(19, 33, 74, 0.05) 0%, rgba(10, 147, 150, 0.05) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.value-icon i {
    font-size: 28px;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    background: var(--gradient-primary);
}

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

.value-card h4 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.value-card p {
    color: var(--body-text);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 991px) {
    .values-section {
        padding: 80px 0;
    }

    .value-card {
        padding: 30px 25px;
    }

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

    .value-icon i {
        font-size: 24px;
    }

    .value-card h4 {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .values-section {
        padding: 60px 0;
    }

    .value-card {
        padding: 25px 20px;
        margin-bottom: 20px;
    }

    .value-card h4 {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }

    .value-card p {
        font-size: 0.9rem;
    }
}

/* Impact Numbers Section */
.impact-numbers-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.impact-numbers-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0,0,0,0.1), transparent);
}

.impact-card {
    background: white;
    padding: 40px 20px;
    text-align: center;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.impact-icon-container {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.impact-card:hover .impact-icon-container {
    transform: scale(1.1);
    background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
}

.impact-icon {
    font-size: 28px;
    color: #495057;
    transition: color 0.3s ease;
}

.impact-card:hover .impact-icon {
    color: #212529;
}

.impact-number {
    font-size: 3rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 10px;
    line-height: 1.2;
}

.impact-label {
    font-size: 1.1rem;
    color: #6c757d;
    font-weight: 500;
    margin: 0;
    line-height: 1.4;
}

@media (max-width: 991px) {
    .impact-numbers-section {
        padding: 80px 0;
    }
    
    .impact-number {
        font-size: 2.5rem;
    }
    
    .impact-label {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .impact-numbers-section {
        padding: 60px 0;
    }
    
    .impact-card {
        padding: 30px 15px;
        margin-bottom: 20px;
    }
    
    .impact-icon-container {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }
    
    .impact-icon {
        font-size: 24px;
    }
    
    .impact-number {
        font-size: 2.25rem;
    }
}

/* Key Highlights */
.key-highlights {
    position: relative;
}

.highlight-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    height: 100%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    z-index: 1;
}

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

.highlight-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(19, 33, 74, 0.05) 0%, rgba(10, 147, 150, 0.05) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.highlight-icon i {
    font-size: 24px;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.highlight-content {
    position: relative;
    z-index: 2;
}

.highlight-content h4 {
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.highlight-content p {
    color: var(--body-text);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.highlight-shape {
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: linear-gradient(217deg, rgba(107, 163, 104, 0.05) 0%, rgba(19, 33, 74, 0.05) 60%);
    border-radius: 20px;
    transform: translate(50%, -50%) rotate(45deg);
    z-index: 1;
    transition: all 0.3s ease;
}

.highlight-card:hover .highlight-icon {
    background: var(--gradient-primary);
}

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

.highlight-card:hover .highlight-shape {
    transform: translate(45%, -45%) rotate(45deg) scale(1.1);
    background: linear-gradient(217deg, rgba(107, 163, 104, 0.08) 0%, rgba(19, 33, 74, 0.08) 60%);
}

@media (max-width: 991px) {
    .highlight-card {
        padding: 25px;
    }

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

    .highlight-icon i {
        font-size: 20px;
    }

    .highlight-content h4 {
        font-size: 1.2rem;
    }

    .highlight-content p {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .highlight-card {
        padding: 20px;
        margin-bottom: 20px;
    }

    .highlight-shape {
        width: 120px;
        height: 120px;
    }
}

/* Leadership Hero Section */
.leadership-hero-section {
    padding: 180px 0 100px;
    background: linear-gradient(217deg, rgba(107, 163, 104, 1) 0%, rgba(19, 33, 74, 1) 60%);
    position: relative;
    overflow: hidden;
}

.leadership-hero-content {
    padding-right: 50px;
}

.leadership-hero-content .section-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin: 1rem 0 2rem;
    color: white;
}

.leadership-hero-content .lead {
    color: rgba(255, 255, 255, 0.9);
}

.leadership-hero-content .section-label {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.9);
}

/* Founder Section */
.founder-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(19, 33, 74, 0.02) 0%, rgba(10, 147, 150, 0.02) 100%);
}

.founder-quote {
    position: relative;
    padding: 30px;
    margin: 30px 0;
    background: rgba(107, 163, 104, 0.05);
    border-radius: 20px;
}

.founder-quote i {
    position: absolute;
    top: -15px;
    left: 20px;
    font-size: 2.5rem;
    color: var(--accent-color);
    opacity: 0.2;
}

.founder-quote p {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--primary-color);
    margin: 0;
}

.founder-expertise {
    margin: 30px 0;
}

.founder-expertise h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.expertise-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.expertise-list li {
    position: relative;
    padding-left: 25px;
    color: var(--body-text);
    font-size: 0.95rem;
}

.expertise-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--accent-color);
    border-radius: 50%;
}

/* Team Member Cards */
.member-expertise {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 15px 0;
}

.member-expertise span {
    padding: 4px 12px;
    background: rgba(107, 163, 104, 0.1);
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--accent-color);
    font-weight: 500;
}

/* Advisory Board Section */
.advisory-board-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(19, 33, 74, 0.02) 0%, rgba(10, 147, 150, 0.02) 100%);
}

.advisor-expertise {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.advisor-expertise span {
    padding: 4px 12px;
    background: rgba(19, 33, 74, 0.05);
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--primary-color);
    font-weight: 500;
}

@media (max-width: 991px) {
    .leadership-hero-section {
        padding: 150px 0 80px;
    }

    .leadership-hero-content {
        padding-right: 0;
        text-align: center;
        margin-bottom: 40px;
    }

    .leadership-hero-content .section-title {
        font-size: 2.8rem;
    }

    .expertise-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .leadership-hero-section {
        padding: 120px 0 60px;
    }

    .leadership-hero-content .section-title {
        font-size: 2.2rem;
    }

    .founder-quote {
        padding: 20px;
    }

    .founder-quote p {
        font-size: 1.1rem;
    }

    .member-expertise, .advisor-expertise {
        justify-content: center;
    }
}

/* CSR Consulting Page Styles */
.csr-hero-section {
    padding: 180px 0 100px;
    background: linear-gradient(217deg, rgba(107, 163, 104, 1) 0%, rgba(19, 33, 74, 1) 60%);
    position: relative;
    overflow: hidden;
}

.csr-hero-content {
    padding-right: 50px;
}


.csr-hero-content .section-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin: 1rem 0 2rem;
    color: white;
}



.csr-hero-content .lead {
    color: rgba(255, 255, 255, 0.9);
}

.csr-hero-content .section-label {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 768px)
{
     .csr-hero-content .section-title {
        font-size: 2.2rem;
        text-align: center;
    }

    .about-hero-content .section-title {
        font-size: 2.2rem;
        text-align: center;
    }
    
    .csr-hero-content .section-label {
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        color: rgba(255, 255, 255, 0.9);
        text-align: center;
        margin-left: auto;
        margin-right: auto;
        max-width: 100%;
        display: block;
    }

    .about-hero-content .section-label {
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        color: rgba(255, 255, 255, 0.9);
        text-align: center;
        margin-left: auto;
        margin-right: auto;
        max-width: 100%;
        display: block;
    }

    .about-hero-content 
    {
        padding: 0;
    }
    .csr-hero-content
    {
        padding: 0;
    }

    .csr-hero-content .lead
    {
        text-align: center;
    }

    .about-hero-content  .lead
    {
        text-align: center;
    }
    .about-content 
    {
        text-align: justify;
    }
}

/* Service Overview Section */
.service-overview-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: transform 0.3s ease, background 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
}

.service-icon i {
    font-size: 32px;
    color: #495057;
    transition: color 0.3s ease;
}

.service-card:hover .service-icon i {
    color: #212529;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #212529;
    margin-bottom: 15px;
}

.service-description {
    color: #6c757d;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.service-features li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: #495057;
}

.service-features li i {
    color: #0a9396;
    margin-right: 10px;
    font-size: 1.1rem;
}

.service-link {
    color: #0a9396;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s ease;
}

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

.service-link:hover {
    color: #097b7d;
}

.service-link:hover i {
    transform: translateX(5px);
}

/* Service CTA Section */
.service-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #13214a 0%, #0a9396 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.service-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/pattern.png') repeat;
    opacity: 0.1;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-description {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.cta-buttons .btn {
    padding: 12px 30px;
    font-weight: 500;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.cta-buttons .btn-primary {
    background: white;
    color: #13214a;
    border: none;
}

.cta-buttons .btn-primary:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
}

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

.cta-buttons .btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

@media (max-width: 991px) {
    .service-overview-section {
        padding: 80px 0;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
    }
    
    .service-icon i {
        font-size: 28px;
    }
    
    .service-title {
        font-size: 1.3rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .service-overview-section {
        padding: 60px 0;
    }
    
    .service-card {
        margin-bottom: 30px;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
    
    .cta-description {
        font-size: 1.1rem;
    }
}

/* Final CTA Section */
.final-cta-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.final-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/pattern.png') repeat;
    opacity: 0.05;
}

.final-cta-content {
    position: relative;
    z-index: 1;
    padding: 60px 0;
}

.final-cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #13214a;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #13214a 0%, #0a9396 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.final-cta-description {
    font-size: 1.2rem;
    color: #495057;
    margin-bottom: 30px;
    line-height: 1.6;
}

.final-cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.final-cta-buttons .btn {
    padding: 12px 30px;
    font-weight: 500;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.final-cta-buttons .btn-primary {
    background: linear-gradient(135deg, #13214a 0%, #0a9396 100%);
    border: none;
    color: white;
}

.final-cta-buttons .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(19, 33, 74, 0.2);
}

.final-cta-buttons .btn-outline-primary {
    border: 2px solid #13214a;
    color: #13214a;
    background: transparent;
}

.final-cta-buttons .btn-outline-primary:hover {
    background: #13214a;
    color: white;
    transform: translateY(-2px);
}

@media (max-width: 991px) {
    .final-cta-title {
        font-size: 2rem;
    }
    
    .final-cta-description {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .final-cta-content {
        padding: 40px 0;
    }
    
    .final-cta-title {
        font-size: 1.8rem;
    }
    
    .final-cta-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .final-cta-buttons .btn {
        width: 100%;
    }
}

/* Enhanced Dropdown Menu */
.dropdown-menu {
    background: var(--background);
    border: none;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    padding: 0.5rem;
    margin-top: 0.5rem;
    opacity: 0;
    transform: translateY(-10px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
    pointer-events: none;
    visibility: hidden;
    min-width: 220px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.dropdown {
    position: relative;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
    visibility: visible;
    transition-delay: 0.1s;
}

/* Add a small invisible area to prevent the menu from disappearing */
.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    width: 100%;
    height: 10px;
    background: transparent;
}

.dropdown-item {
    color: var(--dark-text);
    font-weight: 500;
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dropdown-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
    transform: translateX(-100%);
}

.dropdown-item:hover {
    color: white;
    transform: translateX(5px);
    padding-left: 1.5rem;
}

.dropdown-item:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.dropdown-item.active {
    background: var(--gradient-primary);
    color: white;
    transform: translateX(5px);
    padding-left: 1.5rem;
}

.dropdown-item.active::before {
    opacity: 1;
    transform: translateX(0);
}

.dropdown-toggle {
    position: relative;
    transition: all 0.3s ease;
}

.dropdown-toggle::after {
    display: inline-block;
    margin-left: 0.5rem;
    vertical-align: middle;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.dropdown:hover .dropdown-toggle {
    color: var(--accent-color);
}

.dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
    border-top-color: var(--accent-color);
}

@media (max-width: 991.98px) {
    .dropdown-menu {
        background: transparent;
        box-shadow: none;
        padding: 0;
        margin: 0;
        border: none;
        backdrop-filter: none;
    }

    .dropdown-menu::before {
        display: none;
    }

    .dropdown-item {
        padding: 0.75rem 1rem;
        border-radius: 0;
        border-left: 3px solid transparent;
    }

    .dropdown-item:hover {
        transform: none;
        background: var(--gradient-primary);
        color: white;
        padding-left: 1rem;
        border-left-color: var(--accent-color);
    }

    .dropdown-item.active {
        transform: none;
        padding-left: 1rem;
        border-left-color: var(--accent-color);
    }
}

/* Desktop: Hover to open */
@media (min-width: 992px) {
  .dropdown:hover .dropdown-menu {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
    visibility: visible;
    transition-delay: 0.1s;
  }
  .dropdown-menu {
    display: block;
  }
}

/* Mobile: Show submenu only if .show class is present (Bootstrap toggles this on click) */
@media (max-width: 991.98px) {
  .dropdown-menu {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transform: none;
    transition: none;
    display: none;
  }
  .dropdown.show .dropdown-menu {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    display: block;
  }
}

.text-primary {
    background: linear-gradient(217deg, rgba(107, 163, 104, 1) 0%, rgba(19, 33, 74, 1) 60%) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    color: transparent !important;
}

.sub-service-title
{
    margin: 15px 0px;
    color: var(--primary-color);
}

.sub-service-card
{
    background: #fff;
    padding: 30px;
    border-radius: 10px;   
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

  
.sub-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* About Page CTA Section */
.cta-section {
    padding: 80px 0;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
    margin-top: 60px;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    z-index: 1;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 250px;
    height: 250px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    z-index: 1;
}

.cta-wrapper {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-content h2 {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 0;
}

.cta-section .btn {
    padding: 15px 30px;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.cta-section .btn-primary {
    background: #fff;
    color: var(--primary-color);
    border: none;
}

.cta-section .btn-primary:hover {
    background: var(--accent-color);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.cta-section .btn i {
    transition: transform 0.3s ease;
}

.cta-section .btn:hover i {
    transform: translateX(5px);
}

@media (max-width: 991px) {
    .cta-section {
        padding: 60px 0;
    }
    
    .cta-wrapper {
        padding: 30px;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .cta-section {
        padding: 50px 0;
    }
    
    .cta-wrapper {
        padding: 25px;
    }
    
    .cta-content h2 {
        font-size: 1.75rem;
        margin-bottom: 15px;
    }
    
    .cta-section .btn {
        margin-top: 20px;
        width: 100%;
    }
    
    .cta-content, .col-lg-4 {
        text-align: center;
    }
}

.obiikriationz
{
    color: #ba933e;
    text-decoration: none;
}   

.obiikriationz:hover
{
    color: #e7c781;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Mobile Navigation Improvements - Add to the end of the file */
@media (max-width: 991.98px) {
    .navbar-toggler {
        border: none;
        padding: 8px;
        border-radius: 6px;
        transition: all 0.2s ease;
    }
    
    .navbar-toggler:focus {
        box-shadow: 0 0 0 3px rgba(107, 163, 104, 0.2);
        outline: none;
    }
    
    .navbar-toggler-icon {
        transition: all 0.3s ease;
    }
    
    .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
        transform: rotate(90deg);
    }
    
    .navbar-collapse {
        transition: all 0.3s ease-in-out;
        opacity: 0;
        transform: translateY(-10px);
    }
    
    .navbar-collapse.show {
        opacity: 1;
        transform: translateY(0);
    }
    
    .navbar-nav .nav-item {
        transition: all 0.2s ease;
    }
    
    .navbar-nav .nav-link {
        position: relative;
        transition: all 0.2s ease;
    }
    
    .navbar-nav .nav-link:active {
        background-color: rgba(107, 163, 104, 0.1);
        border-radius: 4px;
    }
    
    .dropdown-menu {
        transition: max-height 0.4s ease, opacity 0.4s ease, padding 0.4s ease;
    }
    
    .dropdown-item {
        transition: all 0.2s ease;
    }
}

/* Better design for extra small screens */
@media (max-width: 767.98px) {
    .navbar-brand {
        margin-right: 0;
    }
    
    .brand-logo {
        height: 60px;
    }
    
    .navbar-toggler {
        padding: 6px;
    }
    
    .nav-call-button .btn-call {
        padding: 10px 15px;
    }
    
    .call-icon {
        width: 38px;
        height: 38px;
    }
    
    .call-info {
        padding: 0 15px 0 10px;
    }
}

/* Extra small device improvements */
@media (max-width: 575.98px) {
    .navbar {
        padding: 10px 0;
    }
    
    .navbar-collapse {
        margin: 0 -10px;
    }
    
    .brand-logo {
        height: 50px;
    }
    
    .call-icon {
        width: 34px;
        height: 34px;
    }
    
    .call-info {
        padding: 0 10px 0 8px;
    }
    
    .call-number {
        font-size: 14px;
    }
}