/**********************************/
/********** General CSS ***********/
/**********************************/
body {
    font-family: 'Montserrat', sans-serif;
    color: #757575;
    font-weight: 400;
    background: #ffffff;
}

a {
    color: #4F84C4;
    transition: 0.5s;
}

a:hover,
a:active,
a:focus {
    color: #757575;
    outline: none;
    text-decoration: none;
}

p {
    color: #757575;
    padding: 0;
    margin: 0 0 15px 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Quicksand', sans-serif;
    color: #757575;
    margin: 0 0 15px 0;
    padding: 0;
}

.back-to-top {
    position: fixed;
    display: none;
    background: #4F84C4;
    color: #ffffff;
    width: 44px;
    height: 44px;
    text-align: center;
    line-height: 1;
    font-size: 16px;
    border-radius: 5px;
    right: 15px;
    bottom: 15px;
    transition: background 0.5s;
    z-index: 11;
}

.back-to-top i {
    padding-top: 12px;
    color: #ffffff;
}


/**********************************/
/********* Header Nav CSS *********/
/**********************************/
#nav {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    z-index: 999;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    overflow: visible !important;
}

#nav.header-scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    padding: 5px 0;
}

#nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 50%, #667eea 100%);
    background-size: 200% 100%;
    animation: gradient-slide 3s ease infinite;
}

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

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 60px;
    max-width: 1400px;
    margin: 0 auto;
    transition: padding 0.4s ease;
}

#nav.header-scrolled .nav-container {
    padding: 10px 60px;
}

.nav-left {
    display: flex;
    align-items: center;
}

#nav #logo {
    margin: 0;
}

#nav #logo a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

#nav #logo a:hover {
    transform: scale(1.05);
}

#nav #logo img {
    max-height: 45px;
    transition: all 0.4s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

#nav.header-scrolled #logo img {
    max-height: 38px;
}

.logo-text {
    font-family: 'Quicksand', sans-serif;
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

#nav-menu-container {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 5px;
    list-style: none;
    margin: 0;
    padding: 0;
    overflow: visible !important;
}

.nav-menu li {
    position: relative;
}

/* Navbar Dropdown */
.nav-dropdown {
    position: relative;
    overflow: visible !important;
}

.nav-dropdown .dropdown-trigger {
    cursor: pointer;
}

.nav-dropdown .dropdown-icon {
    font-size: 10px;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    min-width: 240px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 9999 !important;
    list-style: none;
    margin: 0;
    pointer-events: none;
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    background: #ffffff;
    border-radius: 2px;
    transform: translateX(-50%) rotate(45deg);
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu .game-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: #4a5568;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    border-radius: 8px;
    margin: 0 8px;
}

.dropdown-menu .game-link i {
    font-size: 18px;
    color: #667eea;
    width: 20px;
    text-align: center;
}

.dropdown-menu .game-link:hover {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    color: #667eea;
}

/* Games Modal */
.games-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
}

.games-modal.active {
    display: flex;
}

.games-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
}

.games-container {
    position: relative;
    background: #ffffff;
    border-radius: 24px;
    width: 90%;
    max-width: 1000px;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
    animation: modal-enter 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes modal-enter {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(30px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.games-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    color: #667eea;
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.games-close:hover {
    background: #667eea;
    color: #ffffff;
    transform: rotate(90deg) scale(1.1);
}

.game-panel {
    display: flex;
    flex-direction: column;
    height: 100%;
    max-height: 90vh;
}

.game-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 30px;
    text-align: center;
}

.game-header h2 {
    color: #ffffff;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}

.game-header h2 i {
    margin-right: 10px;
}

.game-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    margin: 0;
}

.game-body {
    flex: 1;
    overflow-y: auto;
    padding: 30px;
}

.game-footer {
    padding: 20px 30px;
    background: #f8f9fc;
    border-top: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

/* Event Simulator Styles */
.simulator-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.simulator-category h3 {
    color: #2d3748;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.simulator-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.simulator-item {
    position: relative;
    cursor: pointer;
}

.sim-checkbox {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.sim-item-content {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: #f8f9fc;
    border-radius: 12px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.simulator-item:hover .sim-item-content {
    background: #ffffff;
    border-color: #e2e8f0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.sim-checkbox:checked + .sim-item-content {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border-color: #667eea;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.2);
}

.sim-item-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.sim-item-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sim-item-name {
    color: #2d3748;
    font-size: 15px;
    font-weight: 600;
}

.sim-item-price {
    color: #667eea;
    font-size: 14px;
    font-weight: 700;
}

.simulator-total {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.total-label {
    color: #718096;
    font-size: 14px;
    font-weight: 600;
}

.total-amount {
    color: #667eea;
    font-size: 28px;
    font-weight: 700;
    font-family: 'Quicksand', sans-serif;
}

.btn-reset-sim,
.btn-reset-memory {
    padding: 12px 24px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    border: none;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-reset-sim:hover,
.btn-reset-memory:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

.btn-reset-sim i,
.btn-reset-memory i {
    transition: transform 0.3s ease;
}

.btn-reset-sim:hover i,
.btn-reset-memory:hover i {
    transform: rotate(180deg);
}

/* Memory Game Styles */
.memory-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
}

.memory-stat {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

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

.memory-stat-value {
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    font-family: 'Quicksand', sans-serif;
}

.memory-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    max-width: 600px;
    margin: 0 auto;
}

.memory-card {
    aspect-ratio: 1;
    position: relative;
    cursor: pointer;
    perspective: 1000px;
}

.memory-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
}

.memory-card.flipped .memory-card-inner {
    transform: rotateY(180deg);
}

.memory-card.matched .memory-card-inner {
    animation: match-bounce 0.6s ease;
}

@keyframes match-bounce {
    0%, 100% { transform: rotateY(180deg) scale(1); }
    50% { transform: rotateY(180deg) scale(1.1); }
}

.memory-card-front,
.memory-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.memory-card-front {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    font-size: 40px;
}

.memory-card-back {
    background: #ffffff;
    transform: rotateY(180deg);
    font-size: 48px;
    border: 3px solid #667eea;
}

.memory-card:hover .memory-card-front {
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

/* Responsive */
@media (max-width: 991.98px) {
    .simulator-grid {
        grid-template-columns: 1fr;
    }
    
    .memory-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 767.98px) {
    .games-container {
        width: 95%;
        max-height: 95vh;
    }
    
    .game-header {
        padding: 20px;
    }
    
    .game-header h2 {
        font-size: 22px;
    }
    
    .game-body {
        padding: 20px;
    }
    
    .memory-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .game-footer {
        flex-direction: column;
        padding: 15px 20px;
    }
    
    .simulator-total {
        align-items: center;
    }
    
    .btn-reset-sim,
    .btn-reset-memory {
        width: 100%;
        justify-content: center;
    }
}

.nav-menu li a {
    position: relative;
    display: flex;
    align-items: center;
    padding: 10px 18px;
    text-decoration: none;
    color: #4a5568;
    font-size: 15px;
    font-weight: 600;
    font-family: 'Quicksand', sans-serif;
    transition: all 0.3s ease;
    border-radius: 12px;
    overflow: hidden;
}

.nav-menu li a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 12px;
}

.nav-menu li a:hover::before {
    opacity: 1;
}

.nav-menu li:hover a,
.nav-menu > .menu-active > a {
    color: #667eea;
}

.nav-indicator {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 80%;
    height: 3px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    border-radius: 3px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-menu li:hover .nav-indicator,
.nav-menu > .menu-active > a .nav-indicator {
    transform: translateX(-50%) scaleX(1);
}

.nav-menu li.menu-active a {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15) 0%, rgba(118, 75, 162, 0.15) 100%);
    color: #667eea;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-cta {
    padding: 10px 24px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    font-family: 'Quicksand', sans-serif;
    border-radius: 30px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
}

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

.nav-cta:hover::before {
    left: 100%;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    color: #ffffff;
}

/* Hamburger Menu */
#mobile-nav-toggle {
    position: relative;
    display: none;
    border: 0;
    background: none;
    cursor: pointer;
    padding: 10px;
    outline: none;
    transition: transform 0.3s ease;
}

#mobile-nav-toggle:hover {
    transform: scale(1.1);
}

.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 24px;
    position: relative;
}

.hamburger-line {
    display: block;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    border-radius: 3px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: absolute;
}

.hamburger-line:nth-child(1) {
    top: 0;
}

.hamburger-line:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
    width: 70%;
    margin-left: 15%;
}

.hamburger-line:nth-child(3) {
    bottom: 0;
}

#mobile-nav-toggle.active .hamburger-line:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

#mobile-nav-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: translateX(20px);
}

#mobile-nav-toggle.active .hamburger-line:nth-child(3) {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}

/* Mobile Nav */
#mobile-nav {
    position: fixed;
    top: 0;
    padding-top: 100px;
    bottom: 0;
    z-index: 998;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    left: -100%;
    width: 100%;
    text-align: center;
    overflow-y: auto;
    transition: left 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

#mobile-nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
}

#mobile-nav ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#mobile-nav ul li {
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

body.mobile-nav-active #mobile-nav ul li {
    opacity: 1;
    transform: translateY(0);
}

#mobile-nav ul li:nth-child(1) { transition-delay: 0.1s; }
#mobile-nav ul li:nth-child(2) { transition-delay: 0.15s; }
#mobile-nav ul li:nth-child(3) { transition-delay: 0.2s; }
#mobile-nav ul li:nth-child(4) { transition-delay: 0.25s; }
#mobile-nav ul li:nth-child(5) { transition-delay: 0.3s; }
#mobile-nav ul li:nth-child(6) { transition-delay: 0.35s; }
#mobile-nav ul li:nth-child(7) { transition-delay: 0.4s; }

#mobile-nav ul li a {
    color: #4a5568;
    font-size: 18px;
    text-transform: uppercase;
    padding: 15px 25px;
    position: relative;
    text-decoration: none;
    width: 100%;
    display: block;
    outline: none;
    font-weight: 700;
    font-family: 'Quicksand', sans-serif;
    transition: all 0.3s ease;
}

#mobile-nav ul li a:hover,
#mobile-nav ul li.menu-active a {
    color: #667eea;
    background: rgba(102, 126, 234, 0.08);
}

#mobile-body-overly {
    width: 100%;
    height: 100%;
    z-index: 997;
    top: 0;
    left: 0;
    position: fixed;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

#mobile-body-overly.show {
    display: block;
    opacity: 1;
}

@media (min-width: 992px) {
    .nav-container {
        padding-left: 60px;
        padding-right: 60px;
    }
}

@media (max-width: 991.98px) {
    .nav-container {
        padding: 15px 20px;
    }
    
    #nav-menu-container {
        display: none;
    }

    #mobile-nav-toggle {
        display: block;
    }

    .nav-cta {
        display: none;
    }
}

@media (max-width: 767.98px) {
    .logo-text {
        display: none;
    }
    
    #nav #logo img {
        max-height: 40px;
    }
}



/**********************************/
/*********** Header CSS ***********/
/**********************************/
#header {
    position: relative;
    padding: 90px 0;
    margin-top: 90px;
    background: linear-gradient(rgba(256, 256, 256, .9), rgba(256, 256, 256, .9)), url(../img/header-bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

#header .header-content {
    width: 100%;
    text-align: left;
}

#header .header-content h2 {
    color: #666666;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
}

#header .header-content h2 span {
    color: #4F84C4;
}

#header .header-content ul {
    margin-left: 32px;
    margin-bottom: 30px;
}

#header .header-content ul li {
    font-size: 22px;
}

#header .header-content ul li i {
    color: #4F84C4;
}

#header .header-content .btn {
    padding: 7px 20px;
    color: #4F84C4;
    font-size: 22px;
    border: 2px solid #4F84C4;
}

#header .header-content .btn:hover {
    color: #ffffff;
    background: #4F84C4;
}

#header .header-img {
    position: relative;
    overflow: hidden;
    text-align: right;
}

#header .header-img img {
    max-height: calc(100vh - 180px);
}

@media (max-width: 767.98px) {
    #header .header-img {
        text-align: left;
        margin-top: 45px;
    }
}




/**********************************/
/******* Section Header CSS *******/
/**********************************/
.section-header {
    position: relative;
    max-width: 700px;
    margin: 0 auto 45px auto;
    padding-bottom: 20px;
}

.section-header::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 8px;
    left: calc(50% - 25px);
    bottom: 0;
    background: #cccccc;
    border-radius: 10px;
}

.section-header h2 {
    position: relative;
    color: #4F84C4;
    font-size: 60px;
    font-weight: 700;
    text-align: center;
    text-transform: capitalize;
}

.section-header p {
    color: #999999;
    font-size: 22px;
    font-weight: 400;
    text-align: center;
    margin: 0
}



/**********************************/
/********** Feature CSS ***********/
/**********************************/
#feature {
    position: relative;
    padding: 90px 0;
    background: #ffffff;
}

#feature .col-md-4:first-child .product-feature {
    text-align: right;
}

#feature .product-feature {
    position: relative;
    width: 100%;
    float: left;
    margin-bottom: 45px;
}

#feature .product-feature:last-child {
    margin: 0;
}

#feature .product-icon {
    position: relative;
    width: 70px;
    height: inherit;
    float: left;
}

#feature .product-icon i {
    color: #4F84C4;
    font-size: 50px;
    margin-top: 5px;
}

#feature .product-content {
    position: relative;
    width: calc(100% - 70px);
    float: left;
}

#feature .product-feature h2 {
    color: #4F84C4;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 5px;
}

#feature .product-feature p {
    margin-bottom: 0;
}

#feature .product-img {
    position: relative;
    width: 100%;
    padding: 0 30px;
    overflow: hidden;
}

#feature .product-img img {
    width: 100%;
}

@media (max-width: 767.98px) {
    #feature .col-md-4:first-child .product-feature {
        text-align: left;
    }
    
    #feature .col-md-4:first-child .product-feature .product-icon {
        float: left;
    }
    
    #feature .col-md-4:first-child .product-feature .product-content {
        float: right;
    }
    
    #feature .product-img img {
        margin: 45px 0;
    }
}



/**********************************/
/********** Process CSS ***********/
/**********************************/
#process {
    position: relative;
    padding: 75px 0 45px 0;
    background: #f7f7f7;
}

#process .process-col {
    width: 100%;
    text-align: center;
    margin-bottom: 45px;
}

#process .process-col::after {
    position: absolute;
    top: 12px;
    right: -12px;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 45px;
    color: #dddddd;
}

#process .col-md-4:last-child .process-col::after {
    display: none;
}

#process .process-col i {
    color: #4F84C4;
    font-size: 90px;
    margin-bottom: 15px;
}

#process .process-col h2 {
    color: #4F84C4;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 10px;
}

#process .process-col p {
    font-size: 16px;
    margin: 0;
}

@media (max-width: 767.98px) {
    #process .process-col::after {
        opacity: 0;
    }
}



/**********************************/
/********** Products CSS **********/
/**********************************/
#products {
    position: relative;
    padding: 90px 0;
}

#products .product-single {
    position: relative;
    width: 100%;
    padding: 30px;
    text-align: center;
    background: #f7f7f7;
    border-radius: 5px;
}

#products .product-single .product-img {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-bottom: 30px;
}

#products .product-img img {
    max-width: 100%;
}

#products .product-content {
    position: relative;
    width: 100%;
}

#products .product-content h2 {
    color: #4F84C4;
    font-size: 20px;
    font-weight: 600;
}

#products .product-content h3 {
    color: #4F84C4;
    font-size: 25px;
    font-weight: 700;
}

#products .product-content .btn {
    color: #4F84C4;
    font-size: 18px;
    border: 2px solid #4F84C4;
}

#products .product-content .btn:hover {
    color: #ffffff;
    background: #4F84C4;
}

@media (max-width: 767.98px) {
    #products .product-single {
        margin-bottom: 45px;
    }
    
    #products .col-md-3:last-child .product-single {
        margin-bottom: 0;
    }
}



/**********************************/
/******** Testimonial CSS *********/
/**********************************/
#testimonials {
    position: relative;
    padding: 90px 0;
    background: #f7f7f7;
}

#testimonials .testimonial-item {
    position: relative;
    width: 100%;
    padding: 0 15px;
    text-align: center;
}

#testimonials .testimonial-img {
    position: relative;
    width: 100%;
    margin-bottom: 15px;
}

#testimonials .testimonial-item img {
    margin: 0 auto;
    max-width: 100px;
    max-height: 100px;
    border: 1px solid rgba(0, 0, 0, .1);
    border-radius: 5px;
}

#testimonials .testimonial-content {
    position: relative;
    width: 100%;
    text-align: center;
}

#testimonials .testimonial-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: #4F84C4;
    margin-bottom: 5px;
}

#testimonials .testimonial-content h4 {
    color: #999999;
    font-size: 16px;
    font-weight: 500;
    font-style: italic;
    margin-bottom: 15px;
}

#testimonials .testimonial-item p {
    color: #757575;
    font-size: 16px;
    font-weight: 400;
    margin: 0;
}

#testimonials .owl-nav,
#testimonials .owl-dots {
    margin-top: 15px;
    text-align: center;
}

#testimonials .owl-dot {
    display: inline-block;
    margin: 0 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(0, 0, 0, .1);
}

#testimonials .owl-dot.active {
    background: #4F84C4;
}



/**********************************/
/************ FAQs CSS ************/
/**********************************/
#faqs {
    position: relative;
    padding: 90px 0;
}

#faqs .card {
    margin-bottom: 15px;
    border: none;
    border-radius: 0;
}

#faqs .card:last-child {
    margin-bottom: 0;
}

#faqs .card-header {
    padding: 0;
    border: none;
}

#faqs .card-header span {
    display: block;
    float: left;
    width: 50px;
    height: inherit;
    margin-right: 10px;
    padding: 15px 0;
    text-align: center;
    color: #ffffff;
    background: #4F84C4;
}

#faqs .card-header a {
    display: block;
    float: right;
    width: calc(100% - 65px);
    padding: 15px 0;
    color: #757575;
    font-size: 16px;
    font-weight: 400;
}

#faqs .card-header [data-toggle="collapse"]:after {
    font-family: 'font Awesome 5 Free';
    content: "\f067";
    float: right;
    margin-right: 15px;
    color: #4F84C4;
    font-size: 14px;
    font-weight: 900;
    transition: .3s;
}

#faqs .card-header [data-toggle="collapse"][aria-expanded="true"]:after {
    font-family: 'font Awesome 5 Free';
    content: "\f068";
    float: right;
    margin-right: 15px;
    color: #4F84C4;
    font-size: 14px;
    font-weight: 900;
    transition: .3s;
}

#faqs .card-body {
    color: #757575;
    font-size: 16px;
    font-weight: 400;
    border: 1px solid;
    border-color: rgba(0, 0, 0, .03) rgba(0, 0, 0, .05) rgba(0, 0, 0, .05) rgba(0, 0, 0, .05);
}

#faqs .contact-info {
    position: relative;
    width: 100%;
}

#faqs .contact-info h2 {
    color: #4F84C4;
    font-size: 30px;
    font-weight: 700;
}

#faqs .contact-info p {
    color: #757575;
    font-size: 16px;
    font-weight: 400;
}

#faqs .contact-info h3 {
    color: #757575;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

#faqs .contact-info h3 i {
    width: 20px;
    color: #4F84C4;
    margin-right: 5px;
}

#faqs .contact-info a {
    margin: 10px 0 15px 0;
    font-size: 18px;
    color: #4F84C4;
    border: 2px solid #4F84C4;
}

#faqs .contact-info a:hover {
    color: #ffffff;
    background: #4F84C4;
}

#faqs .social {
    position: relative;
    width: 100%;
}

#faqs .social a {
    display: inline-block;
    margin: 10px 10px 0 0;
    width: 40px;
    height: 40px;
    padding: 3px 0;
    text-align: center;
    font-size: 20px;
    border: 2px solid #4F84C4;
    border-radius: 4px;
}

#faqs .social a i {
    color: #4F84C4;
}

#faqs .social a:hover {
    background: #4F84C4;
}

#faqs .social a:hover i {
    color: #ffffff;
}

@media (max-width: 767.98px) {
    #faqs .contact-info {
        margin-top: 45px;
    }
}



/**********************************/
/********** Footer CSS ************/
/**********************************/
#footer {
    position: relative;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #ffffff;
    padding: 0;
}

#footer .footer-top {
    padding: 60px 0 40px;
    background: transparent;
}

#footer .footer-top .footer-info {
    margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
    color: #ffffff;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    font-family: 'Quicksand', sans-serif;
}

#footer .footer-top .footer-info h3 span {
    color: #4F84C4;
}

#footer .footer-top .footer-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
}

#footer .footer-top .footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

#footer .footer-top .footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(79, 132, 196, 0.15);
    color: #4F84C4;
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
}

#footer .footer-top .footer-social a:hover {
    background: #4F84C4;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(79, 132, 196, 0.4);
}

#footer .footer-top h4 {
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
    font-family: 'Quicksand', sans-serif;
    position: relative;
    padding-bottom: 12px;
}

#footer .footer-top h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: #4F84C4;
    border-radius: 2px;
}

#footer .footer-top .footer-links {
    margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#footer .footer-top .footer-links ul li {
    margin-bottom: 12px;
}

#footer .footer-top .footer-links ul li:last-child {
    margin-bottom: 0;
}

#footer .footer-top .footer-links ul li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding-left: 0;
}

#footer .footer-top .footer-links ul li a::before {
    content: '\f105';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: -20px;
    opacity: 0;
    color: #4F84C4;
    transition: all 0.3s ease;
}

#footer .footer-top .footer-links ul li a:hover {
    color: #4F84C4;
    padding-left: 20px;
}

#footer .footer-top .footer-links ul li a:hover::before {
    opacity: 1;
    left: 0;
}

#footer .footer-top .footer-contact {
    margin-bottom: 30px;
}

#footer .footer-top .footer-contact p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    line-height: 1.6;
}

#footer .footer-top .footer-contact p i {
    color: #4F84C4;
    font-size: 18px;
    margin-right: 12px;
    margin-top: 3px;
    min-width: 20px;
}

#footer .footer-top .footer-contact p a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

#footer .footer-top .footer-contact p a:hover {
    color: #4F84C4;
}

#footer .footer-top .footer-newsletter {
    margin-bottom: 30px;
}

#footer .footer-top .footer-newsletter p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    margin-bottom: 20px;
    line-height: 1.6;
}

#footer .footer-top .footer-newsletter .newsletter-form {
    position: relative;
}

#footer .footer-top .footer-newsletter .newsletter-form input {
    width: 100%;
    padding: 12px 50px 12px 18px;
    border: 2px solid rgba(79, 132, 196, 0.3);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    font-size: 14px;
    transition: all 0.3s ease;
    outline: none;
}

#footer .footer-top .footer-newsletter .newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

#footer .footer-top .footer-newsletter .newsletter-form input:focus {
    border-color: #4F84C4;
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 0 3px rgba(79, 132, 196, 0.15);
}

#footer .footer-top .footer-newsletter .newsletter-form button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: #4F84C4;
    color: #ffffff;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

#footer .footer-top .footer-newsletter .newsletter-form button:hover {
    background: #3a6ba8;
    transform: translateY(-50%) scale(1.05);
}

#footer .footer-bottom {
    padding: 25px 0;
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

#footer .footer-bottom .footer-copyright {
    text-align: center;
}

#footer .footer-bottom .footer-copyright p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin: 0;
}

#footer .footer-bottom .footer-copyright p a {
    color: #4F84C4;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.3s ease;
}

#footer .footer-bottom .footer-copyright p a:hover {
    color: #ffffff;
}

@media (max-width: 767.98px) {
    #footer .footer-top {
        padding: 45px 0 30px;
    }

    #footer .footer-top .footer-info,
    #footer .footer-top .footer-links,
    #footer .footer-top .footer-contact,
    #footer .footer-top .footer-newsletter {
        text-align: center;
        margin-bottom: 35px;
    }

    #footer .footer-top h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    #footer .footer-top .footer-social {
        justify-content: center;
    }

    #footer .footer-top .footer-contact p {
        justify-content: center;
    }

    #footer .footer-top .footer-links ul li a:hover {
        padding-left: 0;
    }

    #footer .footer-top .footer-links ul li a::before {
        display: none;
    }
}


/**********************************/
/************ Blog CSS ************/
/**********************************/

/* Blog Hero Section */
.blog-hero {
    position: relative;
    padding: 140px 0 80px;
    margin-top: 92px;
    background: linear-gradient(135deg, rgba(79, 132, 196, 0.08) 0%, rgba(26, 26, 46, 0.12) 100%);
    text-align: center;
    overflow: hidden;
}

.blog-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 20% 50%, rgba(79, 132, 196, 0.1) 0%, transparent 50%),
                      radial-gradient(circle at 80% 80%, rgba(79, 132, 196, 0.08) 0%, transparent 50%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.blog-hero h1 {
    position: relative;
    color: #4F84C4;
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    z-index: 1;
}

.blog-hero p {
    position: relative;
    color: #757575;
    font-size: 22px;
    max-width: 700px;
    margin: 0 auto 30px;
    z-index: 1;
}

.blog-hero .hero-search {
    position: relative;
    max-width: 600px;
    margin: 40px auto 0;
    z-index: 1;
}

.blog-hero .hero-search input {
    width: 100%;
    padding: 16px 60px 16px 25px;
    border: 2px solid rgba(79, 132, 196, 0.2);
    border-radius: 50px;
    font-size: 16px;
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    outline: none;
}

.blog-hero .hero-search input:focus {
    border-color: #4F84C4;
    box-shadow: 0 8px 30px rgba(79, 132, 196, 0.2);
}

.blog-hero .hero-search .search-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #4F84C4;
    font-size: 20px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.blog-hero .hero-search .search-icon:hover {
    transform: translateY(-50%) scale(1.1);
}

/* Blog Filter Tabs */
.blog-filter-tabs {
    padding: 40px 0;
    background: #ffffff;
    border-bottom: 1px solid #e8ecf1;
}

.filter-tabs-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.blog-tab {
    display: inline-flex;
    align-items: center;
    padding: 12px 28px;
    border: none;
    border-radius: 30px;
    background: #f5f7fa;
    color: #757575;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.blog-tab i {
    margin-right: 8px;
    font-size: 16px;
}

.blog-tab:hover {
    background: #4F84C4;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(79, 132, 196, 0.3);
}

.blog-tab.active {
    background: linear-gradient(135deg, #4F84C4 0%, #3a6ba8 100%);
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(79, 132, 196, 0.4);
    transform: translateY(-2px);
}

/* Blog Grid Section */
.blog-grid-section {
    padding: 60px 0 80px;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fc 100%);
}

.blog-post-item {
    margin-bottom: 35px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 36px rgba(79, 132, 196, 0.18);
}

.blog-card-img {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
}

.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-card:hover .blog-card-img img {
    transform: scale(1.1);
}

.blog-card-img .category-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, #4F84C4 0%, #3a6ba8 100%);
    color: #ffffff;
    padding: 8px 18px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(79, 132, 196, 0.4);
    z-index: 2;
}

.blog-card-body {
    padding: 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 15px;
    font-size: 13px;
    color: #999999;
}

.blog-card-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.blog-card-meta i {
    color: #4F84C4;
    font-size: 14px;
}

.blog-card-title {
    color: #2c3e50;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.blog-card-title a {
    color: inherit;
    text-decoration: none;
}

.blog-card-title a:hover {
    color: #4F84C4;
}

.blog-card-excerpt {
    color: #757575;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
    flex: 1;
}

.blog-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid #f0f2f7;
}

.btn-read-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 22px;
    color: #4F84C4;
    font-size: 14px;
    font-weight: 700;
    background: rgba(79, 132, 196, 0.08);
    border: 2px solid #4F84C4;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-read-more i {
    transition: transform 0.3s ease;
}

.btn-read-more:hover {
    background: #4F84C4;
    color: #ffffff;
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(79, 132, 196, 0.3);
}

.btn-read-more:hover i {
    transform: translateX(5px);
}

.blog-card-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.author-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4F84C4 0%, #3a6ba8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
}

.author-name {
    font-size: 13px;
    color: #757575;
    font-weight: 600;
}

/* Blog Newsletter Section */
.blog-newsletter {
    padding: 80px 0;
    background: linear-gradient(135deg, #4F84C4 0%, #2c4a74 100%);
    position: relative;
    overflow: hidden;
}

.blog-newsletter::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.blog-newsletter::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -100px;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
}

.blog-newsletter .container {
    position: relative;
    z-index: 1;
}

.blog-newsletter h2 {
    color: #ffffff;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
}

.blog-newsletter p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    text-align: center;
    margin-bottom: 35px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.blog-newsletter-form {
    max-width: 550px;
    margin: 0 auto;
    display: flex;
    gap: 15px;
}

.blog-newsletter-form input {
    flex: 1;
    padding: 16px 25px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 16px;
    outline: none;
    transition: all 0.3s ease;
}

.blog-newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

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

.blog-newsletter-form button {
    padding: 16px 35px;
    border: none;
    border-radius: 50px;
    background: #ffffff;
    color: #4F84C4;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.blog-newsletter-form button:hover {
    background: #f5f7fa;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Blog Pagination */
.blog-pagination {
    margin-top: 50px;
}

.blog-pagination .pagination .page-link {
    color: #4F84C4;
    background: #ffffff;
    border: 2px solid #e0e6ed;
    padding: 12px 18px;
    margin: 0 5px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.blog-pagination .pagination .page-link:hover {
    background: #4F84C4;
    color: #ffffff;
    border-color: #4F84C4;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(79, 132, 196, 0.3);
}

.blog-pagination .pagination .page-item.active .page-link {
    background: linear-gradient(135deg, #4F84C4 0%, #3a6ba8 100%);
    border-color: #4F84C4;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(79, 132, 196, 0.3);
}

.blog-pagination .pagination .page-item.disabled .page-link {
    color: #cccccc;
    background: #f7f7f7;
    border-color: #e0e6ed;
}

@media (max-width: 767.98px) {
    .blog-hero {
        padding: 120px 0 60px;
    }

    .blog-hero h1 {
        font-size: 36px;
    }

    .blog-hero p {
        font-size: 18px;
    }

    .blog-newsletter h2 {
        font-size: 32px;
    }

    .blog-newsletter-form {
        flex-direction: column;
    }

    .blog-newsletter-form button {
        width: 100%;
    }
}

/**********************************/
/***** Modern Page Redesign CSS *****/
/**********************************/

/* ===== HOME PAGE REDESIGN ===== */

/* Modern Hero Section */
.modern-hero {
    position: relative;
    min-height: 90vh;
    margin-top: 92px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.modern-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}

.modern-hero .hero-content {
    position: relative;
    z-index: 2;
    color: #ffffff;
}

.modern-hero h1 {
    font-size: 64px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 25px;
    line-height: 1.2;
    animation: fadeInUp 0.8s ease-out;
}

.modern-hero h1 span {
    color: #ffd700;
}

.modern-hero p {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 35px;
    max-width: 600px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.modern-hero .hero-buttons {
    display: flex;
    gap: 20px;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.modern-hero .btn-hero-primary {
    padding: 16px 40px;
    background: #ffffff;
    color: #667eea;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.modern-hero .btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    color: #764ba2;
}

.modern-hero .btn-hero-secondary {
    padding: 16px 40px;
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.modern-hero .btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
    transform: translateY(-3px);
}

.modern-hero .hero-image {
    position: relative;
    z-index: 2;
    animation: fadeInRight 0.8s ease-out 0.3s both;
}

.modern-hero .hero-image img {
    max-width: 100%;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

/* Features Section */
.features-modern {
    padding: 100px 0;
    background: #f8f9fc;
    position: relative;
}

.features-modern .section-header {
    margin-bottom: 60px;
}

.feature-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
}

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

.feature-card .feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: #ffffff;
    transition: all 0.4s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-card h3 {
    color: #2d3748;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.feature-card p {
    color: #718096;
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
}

/* Our Big Clients Section */
.clients-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8f9fc 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.clients-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 10% 20%, rgba(102, 126, 234, 0.05) 0%, transparent 50%),
                      radial-gradient(circle at 90% 80%, rgba(118, 75, 162, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.clients-section .section-header {
    margin-bottom: 60px;
}

.clients-carousel {
    overflow: hidden;
    position: relative;
    z-index: 1;
    padding: 20px 0;
}

.clients-carousel::before,
.clients-carousel::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.clients-carousel::before {
    left: 0;
    background: linear-gradient(to right, #f8f9fc 0%, transparent 100%);
}

.clients-carousel::after {
    right: 0;
    background: linear-gradient(to left, #ffffff 0%, transparent 100%);
}

.clients-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 30px;
    position: relative;
    animation: scroll-carousel 30s linear infinite;
    will-change: transform;
}

.clients-grid:hover {
    animation-play-state: paused;
}

@keyframes scroll-carousel {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.client-logo {
    flex: 0 0 260px;
    min-width: 260px;
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.client-logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.client-logo:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.25);
}

.client-logo:hover::before {
    opacity: 1;
}

.client-logo .client-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: #667eea;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.client-logo:hover .client-icon {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    transform: scale(1.1) rotate(5deg);
}

.client-logo h4 {
    color: #2d3748;
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.client-logo:hover h4 {
    color: #ffffff;
}

.client-logo p {
    color: #718096;
    font-size: 14px;
    margin: 8px 0 0;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.client-logo:hover p {
    color: rgba(255, 255, 255, 0.9);
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
}

.stat-item {
    text-align: center;
    color: #ffffff;
    margin-bottom: 30px;
}

.stat-item .stat-number {
    display: block;
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 10px;
    font-family: 'Quicksand', sans-serif;
}

.stat-item .stat-label {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ===== EQUIPMENT PAGE REDESIGN ===== */

.equipment-hero {
    position: relative;
    padding: 140px 0 80px;
    margin-top: 92px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.08) 0%, rgba(118, 75, 162, 0.08) 100%);
    text-align: center;
}

.equipment-hero h1 {
    font-size: 56px;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 20px;
}

.equipment-hero p {
    font-size: 22px;
    color: #718096;
    max-width: 700px;
    margin: 0 auto 40px;
}

/* Equipment Cards */
.equipment-card-modern {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 30px;
}

.equipment-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
}

.equipment-card-modern .card-image {
    position: relative;
    height: 280px;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
}

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

.equipment-card-modern:hover .card-image img {
    transform: scale(1.1);
}

.equipment-card-modern .card-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 8px 18px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.equipment-card-modern .card-content {
    padding: 30px;
}

.equipment-card-modern .card-content h3 {
    color: #2d3748;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.equipment-card-modern .card-content p {
    color: #718096;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.equipment-card-modern .card-price {
    font-size: 28px;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 20px;
}

.equipment-card-modern .card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #f0f2f7;
}

.btn-equipment-rent {
    padding: 12px 28px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    border: none;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-equipment-rent:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

/* How It Works Modern */
.how-it-works-modern {
    padding: 100px 0;
    background: #ffffff;
}

.step-card {
    text-align: center;
    padding: 40px 30px;
    position: relative;
    margin-bottom: 40px;
}

.step-card .step-number {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    position: relative;
    z-index: 2;
}

.step-card h3 {
    color: #2d3748;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.step-card p {
    color: #718096;
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
}

.step-connector {
    position: absolute;
    top: 80px;
    right: -50%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    z-index: 1;
}

/* ===== CONTACT PAGE REDESIGN ===== */

.contact-hero {
    position: relative;
    padding: 140px 0 80px;
    margin-top: 92px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.08) 0%, rgba(118, 75, 162, 0.08) 100%);
    text-align: center;
}

.contact-hero h1 {
    font-size: 56px;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 20px;
}

.contact-hero p {
    font-size: 22px;
    color: #718096;
    max-width: 700px;
    margin: 0 auto;
}

.contact-cards-grid {
    padding: 80px 0;
    background: #ffffff;
}

.contact-info-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    padding: 50px 40px;
    color: #ffffff;
    height: 100%;
}

.contact-info-card h3 {
    color: #ffffff;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 25px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.contact-info-item i {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    font-size: 20px;
    flex-shrink: 0;
}

.contact-info-item .info-content h4 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

.contact-info-item .info-content p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-size: 16px;
}

.contact-form-modern {
    background: #ffffff;
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.contact-form-modern h3 {
    color: #2d3748;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
}

.form-group-modern {
    margin-bottom: 25px;
}

.form-group-modern input,
.form-group-modern textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
    outline: none;
    font-family: 'Montserrat', sans-serif;
}

.form-group-modern input:focus,
.form-group-modern textarea:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-group-modern textarea {
    min-height: 150px;
    resize: vertical;
}

.btn-submit-modern {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

/* ===== ANIMATIONS ===== */

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

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

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

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

@media (max-width: 767.98px) {
    .modern-hero {
        min-height: auto;
        padding: 120px 0 60px;
        text-align: center;
    }
    
    .modern-hero h1 {
        font-size: 40px;
    }
    
    .modern-hero p {
        font-size: 18px;
    }
    
    .modern-hero .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .stat-item .stat-number {
        font-size: 40px;
    }
    
    .step-connector {
        display: none;
    }
    
    .contact-info-card {
        margin-bottom: 30px;
    }

    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .client-logo {
        padding: 30px 20px;
    }

    .client-logo .client-icon {
        width: 70px;
        height: 70px;
        font-size: 32px;
    }

    .client-logo h4 {
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .clients-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .clients-section {
        padding: 60px 0;
    }
}

/**********************************/
/****** EQUIPMENT PAGE CSS ********/
/**********************************/

/* Equipment Filter Buttons */
#equipment .equipment-filter {
    text-align: center;
    margin-bottom: 40px;
}

#equipment .equipment-filter .filter-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 8px 10px 0;
    padding: 12px 22px;
    border: 2px solid #667eea;
    border-radius: 30px;
    background: transparent;
    color: #667eea;
    font-size: 15px;
    font-weight: 700;
    transition: all 0.3s ease;
    cursor: pointer;
}

#equipment .equipment-filter .filter-btn i {
    margin-right: 8px;
    font-size: 14px;
}

#equipment .equipment-filter .filter-btn:hover,
#equipment .equipment-filter .filter-btn.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    border-color: #667eea;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

/* Equipment Download Button */
#equipment .equipment-filter .download-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 8px 10px 0;
    padding: 12px 22px;
    border: 2px solid #667eea;
    border-radius: 30px;
    background: transparent;
    color: #667eea;
    font-size: 15px;
    font-weight: 700;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}

#equipment .equipment-filter .download-btn:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    border-color: #667eea;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

/* Equipment Search */
#equipment .equipment-search {
    margin-bottom: 30px;
}

#equipment .equipment-search .search-container {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
}

#equipment .equipment-search .search-input {
    width: 100%;
    padding: 12px 50px 12px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 30px;
    font-size: 16px;
    background: #ffffff;
    transition: all 0.3s ease;
    outline: none;
}

#equipment .equipment-search .search-input:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

#equipment .equipment-search .search-btn {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

#equipment .equipment-search .search-btn:hover {
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

/* Equipment Items Grid */
#equipment .equipment-list {
    margin-bottom: 30px;
}

.equipment-item {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 30px;
}

.equipment-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
}

.equipment-item .equipment-item-img {
    position: relative;
    height: 260px;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.equipment-item .equipment-item-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
    padding: 20px;
}

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

.equipment-item .equipment-item-content {
    padding: 25px;
}

.equipment-item .equipment-item-content h3 {
    color: #2d3748;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.equipment-item .equipment-item-content p {
    color: #718096;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.equipment-item .equipment-item-content .price {
    color: #667eea;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.equipment-item .equipment-item-content .btn {
    padding: 8px 24px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    border: none;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.equipment-item .equipment-item-content .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

/* Equipment Pagination */
.equipment-pagination {
    margin-top: 50px;
}

.equipment-pagination .pagination .page-link {
    color: #667eea;
    background: #ffffff;
    border: 2px solid #e0e6ed;
    padding: 12px 18px;
    margin: 0 5px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.equipment-pagination .pagination .page-link:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    border-color: #667eea;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.equipment-pagination .pagination .page-item.active .page-link {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: #667eea;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.equipment-pagination .pagination .page-item.disabled .page-link {
    color: #cccccc;
    background: #f7f7f7;
    border-color: #e0e6ed;
}

/* CTA Section */
#cta {
    position: relative;
    padding: 90px 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.95) 0%, rgba(118, 75, 162, 0.95) 100%), url(../img/header-bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
}

#cta h2 {
    color: #ffffff;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 15px;
}

#cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 20px;
    margin-bottom: 30px;
}

#cta .btn {
    padding: 14px 40px;
    color: #667eea;
    font-size: 18px;
    font-weight: 700;
    border: 2px solid #ffffff;
    background: #ffffff;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

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

/* Responsive */
@media (max-width: 767.98px) {
    #equipment .equipment-filter .filter-btn,
    #equipment .equipment-filter .download-btn {
        width: 100%;
        margin-bottom: 10px;
    }
}


/**********************************/
/******* PORTFOLIO PAGE CSS *******/
/**********************************/

/* Portfolio Hero */
.portfolio-hero {
    position: relative;
    padding: 140px 0 80px;
    margin-top: 92px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.08) 0%, rgba(118, 75, 162, 0.08) 100%);
    text-align: center;
    overflow: hidden;
}

.portfolio-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 20% 50%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
                      radial-gradient(circle at 80% 80%, rgba(118, 75, 162, 0.08) 0%, transparent 50%);
    animation: pulse 8s ease-in-out infinite;
}

.portfolio-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite reverse;
}

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

.portfolio-hero h1 {
    position: relative;
    color: #667eea;
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    z-index: 1;
}

.portfolio-hero p {
    position: relative;
    color: #718096;
    font-size: 22px;
    max-width: 700px;
    margin: 0 auto 40px;
    z-index: 1;
}

.portfolio-hero .hero-stats {
    position: relative;
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 50px;
    z-index: 1;
}

.portfolio-hero .hero-stat {
    text-align: center;
}

.portfolio-hero .hero-stat .stat-number {
    display: block;
    color: #667eea;
    font-size: 48px;
    font-weight: 700;
    font-family: 'Quicksand', sans-serif;
    margin-bottom: 8px;
}

.portfolio-hero .hero-stat .stat-label {
    color: #718096;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Portfolio Filter */
.portfolio-filter-section {
    padding: 60px 0 30px;
    background: #ffffff;
}

.portfolio-filter {
    text-align: center;
    margin-bottom: 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.portfolio-filter .filter-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border: 2px solid #e0e6ed;
    border-radius: 30px;
    background: #ffffff;
    color: #718096;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.portfolio-filter .filter-btn i {
    margin-right: 8px;
    font-size: 14px;
}

.portfolio-filter .filter-btn:hover,
.portfolio-filter .filter-btn.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    border-color: #667eea;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

/* Portfolio Grid */
.portfolio-grid {
    padding: 30px 0 80px;
}

.portfolio-grid-item {
    position: relative;
    width: 100%;
    margin-bottom: 30px;
}

.portfolio-grid-item .portfolio-grid-item {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    height: 350px;
    background: #ffffff;
}

.portfolio-grid-item .portfolio-grid-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 40px rgba(102, 126, 234, 0.2);
}

.portfolio-grid-item .portfolio-grid-item > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-grid-item .portfolio-grid-item:hover > img {
    transform: scale(1.1);
}

.portfolio-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(102, 126, 234, 0.95) 0%, rgba(118, 75, 162, 0.8) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.portfolio-grid-item .portfolio-grid-item:hover .portfolio-grid-overlay {
    opacity: 1;
}

.portfolio-grid-overlay .overlay-category {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    width: fit-content;
}

.portfolio-grid-overlay h4 {
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.portfolio-grid-overlay p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    margin: 0;
    line-height: 1.6;
}

.portfolio-grid-overlay .overlay-link {
    display: inline-flex;
    align-items: center;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    margin-top: 15px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

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

.portfolio-grid-overlay .overlay-link:hover {
    transform: translateX(5px);
}

.portfolio-grid-overlay .overlay-link:hover i {
    transform: translateX(5px);
}

/* Portfolio CTA */
.portfolio-cta {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.95) 0%, rgba(118, 75, 162, 0.95) 100%), url(../img/header-bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    text-align: center;
}

.portfolio-cta h2 {
    color: #ffffff;
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 20px;
}

.portfolio-cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 20px;
    margin-bottom: 35px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.portfolio-cta .btn-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.portfolio-cta .btn-primary {
    padding: 14px 40px;
    color: #667eea;
    font-size: 18px;
    font-weight: 700;
    border: 2px solid #ffffff;
    background: #ffffff;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.portfolio-cta .btn-primary:hover {
    background: transparent;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.portfolio-cta .btn-secondary {
    padding: 14px 40px;
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.portfolio-cta .btn-secondary:hover {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Portfolio Next Button Section */
.portfolio-next-section {
    padding: 80px 0 60px;
    text-align: center;
    position: relative;
}

.portfolio-next-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #667eea 50%, transparent 100%);
}

.next-button-container {
    position: relative;
    display: inline-block;
}

.portfolio-next-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 22px 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 60px;
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    font-family: 'Quicksand', sans-serif;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px rgba(102, 126, 234, 0.4);
    min-width: 320px;
    justify-content: center;
}

.portfolio-next-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.7s ease;
}

.portfolio-next-btn:hover::before {
    left: 100%;
}

.portfolio-next-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(102, 126, 234, 0.5);
}

.portfolio-next-btn:active {
    transform: translateY(-2px);
}

.portfolio-next-btn .btn-text {
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.portfolio-next-btn .btn-icon {
    position: relative;
    z-index: 2;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.portfolio-next-btn:hover .btn-icon {
    transform: translateX(5px) scale(1.1);
    background: rgba(255, 255, 255, 0.3);
}

.portfolio-next-btn .btn-circle {
    position: absolute;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.6s ease;
    pointer-events: none;
}

.portfolio-next-btn:hover .btn-circle {
    width: 400px;
    height: 400px;
    margin-top: -200px;
    margin-left: -200px;
}

.portfolio-next-btn .btn-counter {
    position: absolute;
    top: -12px;
    right: -12px;
    background: #ffffff;
    color: #667eea;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 3;
    transition: all 0.3s ease;
}

.portfolio-next-btn:hover .btn-counter {
    transform: scale(1.1);
}

/* Loading State */
.portfolio-next-btn.loading {
    pointer-events: none;
    opacity: 0.8;
}

.portfolio-next-btn.loading .btn-icon {
    animation: rotate-icon 1s linear infinite;
}

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

/* Loaded State */
.portfolio-next-btn.loaded {
    background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
    box-shadow: 0 10px 40px rgba(72, 187, 120, 0.4);
    cursor: default;
}

.portfolio-next-btn.loaded .btn-icon {
    background: rgba(255, 255, 255, 0.3);
    animation: check-bounce 0.6s ease;
}

@keyframes check-bounce {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.3);
    }
}

.portfolio-next-btn.loaded .btn-counter {
    background: #48bb78;
    color: #ffffff;
}

.load-more-hint {
    margin-top: 20px;
    color: #718096;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
}

/* Hidden Items */
.hidden-item {
    display: none !important;
}

/* Portfolio Hidden Items Container */
.portfolio-hidden-items {
    margin-top: 40px;
}

/* Responsive */
@media (max-width: 767.98px) {
    .portfolio-hero {
        padding: 120px 0 60px;
    }

    .portfolio-hero h1 {
        font-size: 36px;
    }

    .portfolio-hero p {
        font-size: 18px;
    }

    .portfolio-hero .hero-stats {
        gap: 30px;
        flex-wrap: wrap;
    }

    .portfolio-hero .hero-stat .stat-number {
        font-size: 36px;
    }

    .portfolio-cta h2 {
        font-size: 32px;
    }

    .portfolio-cta .btn-group {
        flex-direction: column;
        align-items: center;
    }

    .portfolio-cta .btn-primary,
    .portfolio-cta .btn-secondary {
        width: 100%;
        max-width: 300px;
    }

    .portfolio-next-btn {
        min-width: auto;
        width: 100%;
        max-width: 320px;
        padding: 18px 35px;
        font-size: 16px;
    }

    .portfolio-next-btn .btn-icon {
        width: 35px;
        height: 35px;
    }

    .portfolio-next-btn .btn-counter {
        font-size: 12px;
        padding: 5px 12px;
    }

    .portfolio-next-section {
        padding: 60px 0 40px;
    }
}


/**********************************/
/***** BLOG DETAIL PAGE CSS *******/
/**********************************/

/* Blog Detail Hero */
.blog-detail-hero {
    position: relative;
    padding: 160px 0 100px;
    margin-top: 92px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    overflow: hidden;
}

.blog-detail-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: 0;
}

.blog-detail-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.blog-category-badge-large {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 8px 24px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
}

.blog-detail-hero-content h1 {
    color: #ffffff;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 30px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.blog-detail-meta-large {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.meta-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 20px;
    backdrop-filter: blur(10px);
}

.meta-text {
    text-align: left;
}

.meta-label {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 3px;
}

.meta-value {
    display: block;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
}

/* Reading Progress Bar */
.reading-progress-bar {
    position: fixed;
    top: 92px;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(0, 0, 0, 0.1);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.reading-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    width: 0%;
    transition: width 0.1s ease;
    border-radius: 0 2px 2px 0;
}

/* Blog Detail Section */
.blog-detail-section {
    padding: 80px 0;
    background: #f8f9fc;
}

.blog-detail-article {
    background: #ffffff;
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
}

.blog-detail-body {
    color: #4a5568;
    font-size: 18px;
    line-height: 1.9;
}

.blog-detail-body h2 {
    color: #2d3748;
    font-size: 32px;
    font-weight: 700;
    margin-top: 50px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 3px solid #667eea;
    display: inline-block;
}

.blog-detail-body h3 {
    color: #667eea;
    font-size: 24px;
    font-weight: 600;
    margin-top: 35px;
    margin-bottom: 18px;
}

.blog-detail-body p {
    margin-bottom: 20px;
    line-height: 1.9;
}

.blog-detail-body ul {
    margin: 25px 0;
    padding-left: 0;
    list-style: none;
}

.blog-detail-body ul li {
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
    line-height: 1.8;
}

.blog-detail-body ul li::before {
    content: '\f058';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #667eea;
    font-size: 18px;
}

.blog-detail-body strong {
    color: #2d3748;
    font-weight: 700;
}

.blog-detail-body em {
    color: #667eea;
    font-style: italic;
}

.blog-detail-body img {
    max-width: 100%;
    border-radius: 16px;
    margin: 30px 0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

/* Share Section */
.share-section {
    background: #ffffff;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    margin-bottom: 35px;
}

.share-section h4 {
    color: #2d3748;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
}

.share-section h4 i {
    color: #667eea;
    margin-right: 10px;
}

.share-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 30px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    color: #ffffff;
}

.share-facebook {
    background: #1877f2;
}

.share-twitter {
    background: #1da1f2;
}

.share-linkedin {
    background: #0077b5;
}

.share-whatsapp {
    background: #25d366;
}

/* Author Bio */
.author-bio-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 35px;
    color: #ffffff;
}

.author-avatar-large {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    flex-shrink: 0;
    backdrop-filter: blur(10px);
}

.author-info h4 {
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.author-info p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
}

/* Back to Blog */
.back-to-blog-section {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
}

.btn-back-blog {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: #ffffff;
    color: #667eea;
    border: 2px solid #667eea;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.2);
}

.btn-back-blog:hover {
    background: #667eea;
    color: #ffffff;
    transform: translateX(-5px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.btn-more-articles {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.btn-more-articles:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.5);
    color: #ffffff;
}

/* Blog Sidebar */
.blog-sidebar {
    position: sticky;
    top: 120px;
}

.sidebar-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    margin-bottom: 30px;
}

.sidebar-card h4 {
    color: #2d3748;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f2f7;
}

.sidebar-card h4 i {
    color: #667eea;
    margin-right: 10px;
}

/* Table of Contents */
.toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.toc-item {
    margin-bottom: 12px;
}

.toc-sub-item {
    padding-left: 20px;
}

.toc-link {
    color: #718096;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    padding: 8px 12px;
    border-radius: 8px;
}

.toc-link:hover {
    color: #667eea;
    background: rgba(102, 126, 234, 0.08);
    padding-left: 18px;
}

/* Sidebar Posts */
.sidebar-post-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-decoration: none;
    margin-bottom: 15px;
}

.sidebar-post-item:hover {
    background: #f8f9fc;
    transform: translateX(5px);
}

.sidebar-post-thumb {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
}

.sidebar-post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sidebar-post-text h5 {
    color: #2d3748;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.4;
}

.sidebar-post-text span {
    color: #a0aec0;
    font-size: 13px;
}

.sidebar-post-text span i {
    margin-right: 5px;
    color: #667eea;
}

/* Newsletter Card */
.newsletter-card {
    text-align: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

.newsletter-card > i {
    font-size: 48px;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 15px;
}

.newsletter-card h4 {
    color: #ffffff;
    border-bottom: none;
}

.newsletter-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    margin-bottom: 20px;
}

.sidebar-newsletter-form {
    display: flex;
    gap: 10px;
}

.sidebar-newsletter-form input {
    flex: 1;
    padding: 12px 18px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
}

.sidebar-newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.sidebar-newsletter-form input:focus {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.2);
}

.sidebar-newsletter-form button {
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background: #ffffff;
    color: #667eea;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sidebar-newsletter-form button:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Related Posts Section */
.related-posts-section {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 2px solid #e2e8f0;
}

.related-posts-grid {
    display: flex;
    gap: 30px;
}

.related-post-card-modern {
    display: block;
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
}

.related-post-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
}

.related-post-img {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

.related-post-card-modern:hover .related-post-img img {
    transform: scale(1.1);
}

.related-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.related-post-info {
    padding: 25px;
}

.related-post-info h4 {
    color: #2d3748;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.related-post-card-modern:hover .related-post-info h4 {
    color: #667eea;
}

.related-meta {
    color: #a0aec0;
    font-size: 14px;
}

.related-meta i {
    color: #667eea;
    margin-right: 5px;
}

/* Responsive */
@media (max-width: 992px) {
    .blog-sidebar {
        position: static;
        margin-top: 40px;
    }

    .related-posts-grid {
        flex-direction: column;
    }
}

@media (max-width: 767.98px) {
    .blog-detail-hero {
        padding: 120px 0 60px;
    }

    .blog-detail-hero-content h1 {
        font-size: 32px;
    }

    .blog-detail-meta-large {
        gap: 20px;
    }

    .blog-detail-article {
        padding: 30px 20px;
    }

    .blog-detail-body {
        font-size: 16px;
    }

    .blog-detail-body h2 {
        font-size: 26px;
    }

    .author-bio-section {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }

    .share-buttons {
        flex-direction: column;
    }

    .share-btn {
        justify-content: center;
    }

    .back-to-blog-section {
        flex-direction: column;
    }

    .btn-back-blog,
    .btn-more-articles {
        justify-content: center;
    }
}


/**********************************/
/******* CAREERS PAGE CSS *********/
/**********************************/

/* Careers Hero */
.careers-hero {
    position: relative;
    padding: 180px 0 120px;
    margin-top: 92px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    overflow: hidden;
}

.careers-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}

.careers-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.careers-hero h1 {
    color: #ffffff;
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
    animation: fadeInUp 0.8s ease-out;
}

.careers-hero p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 22px;
    margin-bottom: 50px;
    line-height: 1.7;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.careers-hero .hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.careers-hero .hero-stat {
    text-align: center;
}

.careers-hero .hero-stat .stat-number {
    display: block;
    font-size: 56px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
    font-family: 'Quicksand', sans-serif;
}

.careers-hero .hero-stat .stat-label {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Why Join Us Section */
.why-join-section {
    padding: 100px 0;
    background: #f8f9fc;
}

.why-join-grid {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.benefit-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
}

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

.benefit-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: #667eea;
    transition: all 0.4s ease;
}

.benefit-card:hover .benefit-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    transform: scale(1.1) rotate(5deg);
}

.benefit-card h3 {
    color: #2d3748;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.benefit-card p {
    color: #718096;
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
}

/* Open Positions Section */
.open-positions-section {
    padding: 100px 0;
    background: #ffffff;
}

.positions-list {
    max-width: 1000px;
    margin: 0 auto;
}

.position-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 35px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.position-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
    border-color: #667eea;
}

.position-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.position-info h3 {
    color: #2d3748;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 12px;
}

.position-meta {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.position-meta span {
    color: #718096;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.position-meta span i {
    color: #667eea;
}

.position-badge {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

.position-body p {
    color: #4a5568;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.position-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 2px solid #f0f2f7;
}

.position-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.tag {
    background: rgba(102, 126, 234, 0.08);
    color: #667eea;
    padding: 6px 16px;
    border-radius: 15px;
    font-size: 13px;
    font-weight: 600;
}

.btn-apply {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    border: none;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-apply:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
    color: #ffffff;
}

/* Apply Section */
.apply-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8f9fc 0%, #ffffff 100%);
}

.apply-info-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 24px;
    padding: 50px 40px;
    color: #ffffff;
    height: 100%;
    box-shadow: 0 10px 40px rgba(102, 126, 234, 0.3);
}

.apply-info-card h2 {
    color: #ffffff;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.apply-info-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 35px;
}

.apply-benefits {
    margin-bottom: 40px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
}

.benefit-item i {
    font-size: 24px;
    color: #ffffff;
}

.benefit-item span {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
}

.contact-apply h4 {
    color: #ffffff;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

.contact-apply p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-apply p i {
    color: #ffffff;
    width: 20px;
}

.contact-apply p a {
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.contact-apply p a:hover {
    opacity: 0.8;
}

.apply-form-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 50px 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.apply-form-card h3 {
    color: #2d3748;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
}

.careers-form .form-row {
    display: flex;
    gap: 20px;
}

.careers-form .form-row .form-group-modern {
    flex: 1;
}

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

.form-group-modern input,
.form-group-modern select,
.form-group-modern textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
    outline: none;
    font-family: 'Montserrat', sans-serif;
    background: #f8f9fc;
}

.form-group-modern input:focus,
.form-group-modern select:focus,
.form-group-modern textarea:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    background: #ffffff;
}

.form-group-modern textarea {
    min-height: 140px;
    resize: vertical;
}

.careers-form .btn-submit-modern {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.careers-form .btn-submit-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

/* Careers CTA */
.careers-cta {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.95) 0%, rgba(118, 75, 162, 0.95) 100%), url(../img/header-bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    text-align: center;
}

.careers-cta h2 {
    color: #ffffff;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.careers-cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 20px;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.careers-cta .btn-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.careers-cta .btn-primary {
    padding: 16px 40px;
    color: #667eea;
    font-size: 18px;
    font-weight: 700;
    border: 2px solid #ffffff;
    background: #ffffff;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.careers-cta .btn-primary:hover {
    background: transparent;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.careers-cta .btn-secondary {
    padding: 16px 40px;
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.careers-cta .btn-secondary:hover {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 992px) {
    .apply-info-card {
        margin-bottom: 30px;
    }
}

@media (max-width: 767.98px) {
    .careers-hero {
        padding: 120px 0 80px;
    }

    .careers-hero h1 {
        font-size: 40px;
    }

    .careers-hero p {
        font-size: 18px;
    }

    .careers-hero .hero-stats {
        gap: 30px;
        flex-wrap: wrap;
    }

    .careers-hero .hero-stat .stat-number {
        font-size: 40px;
    }

    .position-header {
        flex-direction: column;
        gap: 15px;
    }

    .position-footer {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }

    .btn-apply {
        width: 100%;
        justify-content: center;
    }

    .careers-form .form-row {
        flex-direction: column;
    }

    .careers-cta h2 {
        font-size: 32px;
    }

    .careers-cta .btn-group {
        flex-direction: column;
        align-items: center;
    }

    .careers-cta .btn-primary,
    .careers-cta .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
}


/**********************************/
/******** PRICE LIST CSS **********/
/**********************************/

/* Price List Container */
.price-list-container {
    padding: 80px 0;
    background: linear-gradient(180deg, #f8f9fc 0%, #ffffff 100%);
}

.price-list-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 60px 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.price-list-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
}

.price-list-card .price-list-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.price-list-card h2 {
    color: #2d3748;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.price-list-card p {
    color: #718096;
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.price-list-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 180px;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    border: 2px solid #667eea;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    color: #ffffff;
}

.btn-secondary {
    background: transparent;
    color: #667eea;
    border: 2px solid #667eea;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.btn-primary i,
.btn-secondary i {
    margin-right: 10px;
    font-size: 18px;
}

.price-list-contact {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid #e2e8f0;
}

.price-list-contact h3 {
    color: #2d3748;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.price-list-contact p {
    color: #718096;
    font-size: 16px;
    margin-bottom: 20px;
}

.price-list-contact .contact-link {
    display: inline-flex;
    align-items: center;
    color: #667eea;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.price-list-contact .contact-link i {
    margin-right: 8px;
}

.price-list-contact .contact-link:hover {
    color: #764ba2;
    transform: translateX(5px);
}

/* Responsive */
@media (max-width: 767.98px) {
    .price-list-card {
        padding: 40px 30px;
        margin: 0 15px;
    }

    .price-list-card .price-list-icon {
        width: 100px;
        height: 100px;
        font-size: 40px;
    }

    .price-list-card h2 {
        font-size: 28px;
    }

    .price-list-card p {
        font-size: 16px;
    }

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

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
}

/**********************************/
/***** PARTNERSHIPS PAGE CSS ******/
/**********************************/

/* Partners Hero */
.partners-hero {
    position: relative;
    padding: 180px 0 120px;
    margin-top: 92px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    overflow: hidden;
}

.partners-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}

.partners-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.partners-hero h1 {
    color: #ffffff;
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
    animation: fadeInUp 0.8s ease-out;
}

.partners-hero p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 22px;
    margin-bottom: 50px;
    line-height: 1.7;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.partners-hero .hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.partners-hero .btn-hero-primary {
    padding: 16px 40px;
    background: #ffffff;
    color: #667eea;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.partners-hero .btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    color: #764ba2;
}

.partners-hero .btn-hero-secondary {
    padding: 16px 40px;
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.partners-hero .btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
    transform: translateY(-3px);
}

/* Partners Stats */
.partners-stats-section {
    padding: 60px 0;
    background: #ffffff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.partner-stat {
    text-align: center;
    padding: 20px;
}

.partner-stat-number {
    display: block;
    font-size: 48px;
    font-weight: 700;
    color: #667eea;
    font-family: 'Quicksand', sans-serif;
    margin-bottom: 8px;
}

.partner-stat-label {
    font-size: 15px;
    color: #718096;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Life at Ayudha Section */
.life-at-ayudha-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fc 100%);
    position: relative;
    overflow: hidden;
}

.life-at-ayudha-section::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.life-at-ayudha-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(118, 75, 162, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.life-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
    gap: 25px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.gallery-card {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.25);
}

.gallery-card-large {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
}

.gallery-card-large .gallery-image {
    height: 100%;
    min-height: 450px;
}

.gallery-card-medium {
    grid-column: span 1;
    grid-row: span 1;
}

.gallery-card-medium .gallery-image {
    height: 210px;
}

.gallery-card-small {
    grid-column: span 1;
    grid-row: span 1;
}

.gallery-card-small .gallery-image {
    height: 180px;
}

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

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-card:hover .gallery-image img {
    transform: scale(1.15);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(26, 26, 46, 0.95) 0%, rgba(102, 126, 234, 0.3) 50%, transparent 100%);
    display: flex;
    align-items: flex-end;
    padding: 30px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

.gallery-content {
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.gallery-card:hover .gallery-content {
    transform: translateY(0);
}

.gallery-tag {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.gallery-content h3 {
    color: #ffffff;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}

.gallery-content h4 {
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
}

.gallery-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 16px;
    margin: 0;
    line-height: 1.6;
}

.culture-highlights {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    position: relative;
    z-index: 1;
}

.culture-highlight-item {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.culture-highlight-item::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.culture-highlight-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
}

.culture-highlight-item:hover::before {
    transform: scaleX(1);
}

.highlight-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #667eea;
    transition: all 0.4s ease;
}

.culture-highlight-item:hover .highlight-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    transform: scale(1.1) rotate(5deg);
}

.highlight-text h4 {
    color: #2d3748;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.highlight-text p {
    color: #718096;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 992px) {
    .life-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-card-large {
        grid-column: 1 / -1;
        grid-row: auto;
    }

    .gallery-card-large .gallery-image {
        min-height: 350px;
    }

    .culture-highlights {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767.98px) {
    .life-at-ayudha-section {
        padding: 60px 0;
    }

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

    .gallery-card-large .gallery-image {
        min-height: 280px;
    }

    .gallery-card-medium .gallery-image,
    .gallery-card-small .gallery-image {
        height: 220px;
    }

    .gallery-overlay {
        opacity: 1;
        background: linear-gradient(to top, rgba(26, 26, 46, 0.85) 0%, rgba(102, 126, 234, 0.2) 50%, transparent 100%);
    }

    .gallery-content {
        transform: translateY(0);
    }

    .gallery-content h3 {
        font-size: 22px;
    }

    .culture-highlights {
        grid-template-columns: 1fr;
    }
}

/* Why Partner Section */
.why-partner-section {
    padding: 100px 0;
    background: #f8f9fc;
}

.partner-benefits-grid {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.partner-benefit-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.partner-benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.partner-benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
}

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

.partner-benefit-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: #667eea;
    transition: all 0.4s ease;
}

.partner-benefit-card:hover .partner-benefit-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    transform: scale(1.1) rotate(5deg);
}

.partner-benefit-card h3 {
    color: #2d3748;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.partner-benefit-card p {
    color: #718096;
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
}

/* Partnership Process */
.partnership-process-section {
    padding: 100px 0;
    background: #ffffff;
}

.partnership-steps {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.partnership-step {
    text-align: center;
    padding: 40px 30px;
    position: relative;
    margin-bottom: 40px;
}

.partnership-step .step-number {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    position: relative;
    z-index: 2;
}

.partnership-step h3 {
    color: #2d3748;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.partnership-step p {
    color: #718096;
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
}

.partnership-step .step-connector {
    position: absolute;
    top: 80px;
    right: -50%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    z-index: 1;
}

/* Our Partners Section */
.our-partners-section {
    padding: 100px 0;
    background: #f8f9fc;
}

.partners-grid {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.partner-logo-card {
    margin-bottom: 30px;
}

.partner-logo-placeholder {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.partner-logo-placeholder:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.15);
}

.partner-logo-placeholder i {
    font-size: 40px;
    color: #667eea;
}

.partner-logo-placeholder span {
    color: #2d3748;
    font-size: 16px;
    font-weight: 700;
}

/* Partner Testimonials */
.partners-testimonials {
    padding: 100px 0;
    background: #ffffff;
}

.partner-testimonial-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    margin-bottom: 30px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.partner-testimonial-card:hover {
    border-color: #667eea;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.15);
}

.testimonial-quote i {
    font-size: 32px;
    color: #667eea;
    opacity: 0.3;
    margin-bottom: 15px;
}

.partner-testimonial-card > p {
    color: #4a5568;
    font-size: 16px;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 25px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author .author-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 24px;
    flex-shrink: 0;
}

.testimonial-author .author-info h4 {
    color: #2d3748;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

.testimonial-author .author-info span {
    color: #718096;
    font-size: 14px;
}

/* Partner Apply Section */
.partner-apply-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8f9fc 0%, #ffffff 100%);
}

/* Partners CTA */
.partners-cta {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.95) 0%, rgba(118, 75, 162, 0.95) 100%), url(../img/header-bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    text-align: center;
}

.partners-cta h2 {
    color: #ffffff;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.partners-cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 20px;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.partners-cta .btn-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.partners-cta .btn-primary {
    padding: 16px 40px;
    color: #667eea;
    font-size: 18px;
    font-weight: 700;
    border: 2px solid #ffffff;
    background: #ffffff;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.partners-cta .btn-primary:hover {
    background: transparent;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.partners-cta .btn-secondary {
    padding: 16px 40px;
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.partners-cta .btn-secondary:hover {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 767.98px) {
    .partners-hero {
        padding: 120px 0 80px;
    }

    .partners-hero h1 {
        font-size: 40px;
    }

    .partners-hero p {
        font-size: 18px;
    }

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

    .partners-hero .btn-hero-primary,
    .partners-hero .btn-hero-secondary {
        width: 100%;
        max-width: 300px;
    }

    .partner-stat-number {
        font-size: 36px;
    }

    .partnership-step .step-connector {
        display: none;
    }

    .partners-cta h2 {
        font-size: 32px;
    }

    .partners-cta .btn-group {
        flex-direction: column;
        align-items: center;
    }

    .partners-cta .btn-primary,
    .partners-cta .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
}


/**********************************/
/**** HOME PAGE ANIMATIONS ********/
/**********************************/

/* Typewriter Cursor Animation */
.typewriter-cursor {
    display: inline-block;
    width: 4px;
    height: 1em;
    background: linear-gradient(180deg, #667eea 0%, #764ba2 100%);
    margin-left: 8px;
    animation: cursor-blink 0.8s infinite;
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(102, 126, 234, 0.5);
}

@keyframes cursor-blink {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0;
    }
}

/* Hero Title Structure */
.hero-title {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
}

.hero-static-text {
    color: #ffffff;
    font-size: 64px;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.typewriter-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    position: relative;
}

/* Emoji Animation */
.typewriter-emoji {
    font-size: 56px;
    line-height: 1;
    animation: emoji-pop 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
    transition: all 0.3s ease;
}

@keyframes emoji-pop {
    0% {
        opacity: 0;
        transform: scale(0) rotate(-180deg);
    }
    60% {
        transform: scale(1.3) rotate(10deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

/* Typewriter Text with Gradient Colors */
.typewriter-text {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.2;
    background: linear-gradient(135deg, #ffd700 0%, #ff6b6b 25%, #667eea 50%, #48bb78 75%, #ffd700 100%);
    background-size: 300% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease infinite;
    text-shadow: none;
    position: relative;
}

.typewriter-text.color-0 {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.typewriter-text.color-1 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.typewriter-text.color-2 {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.typewriter-text.color-3 {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.typewriter-text.color-4 {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

/* Word Enter Animation */
.typewriter-text.entering {
    animation: word-enter 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes word-enter {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.8);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Word Exit Animation */
.typewriter-text.exiting {
    animation: word-exit 0.3s ease forwards;
}

@keyframes word-exit {
    0% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
    100% {
        opacity: 0;
        transform: translateY(-20px) scale(0.9);
    }
}

/* Floating particles around text */
.hero-title::before,
.hero-title::after {
    content: '✨';
    position: absolute;
    font-size: 24px;
    opacity: 0.6;
    animation: float-particle 3s ease-in-out infinite;
}

.hero-title::before {
    left: -40px;
    top: 10px;
    animation-delay: 0s;
}

.hero-title::after {
    right: -40px;
    top: 10px;
    animation-delay: 1.5s;
}

@keyframes float-particle {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-15px) rotate(180deg);
        opacity: 1;
    }
}

/* Fade In Text Animation */
.fade-in-text {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Slide Up Buttons */
.slide-up-buttons {
    opacity: 0;
    transform: translateY(40px);
    animation: slide-up 0.8s cubic-bezier(0.4, 0, 0.2, 1) 2s forwards;
}

@keyframes slide-up {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Counter Animation Styles */
.stat-number {
    position: relative;
    display: inline-block;
}

.counter {
    display: inline-block;
    font-weight: 700;
    transition: all 0.1s ease;
}

/* Stat Item Entrance Animation */
.stat-item {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-item.animated {
    opacity: 1;
    transform: translateY(0);
}

.stat-item:nth-child(1) { transition-delay: 0.1s; }
.stat-item:nth-child(2) { transition-delay: 0.2s; }
.stat-item:nth-child(3) { transition-delay: 0.3s; }
.stat-item:nth-child(4) { transition-delay: 0.4s; }

/* Hero Content Entrance */
.hero-content {
    opacity: 0;
    transform: translateX(-50px);
    animation: hero-slide-in 1s cubic-bezier(0.4, 0, 0.2, 1) 0.3s forwards;
}

@keyframes hero-slide-in {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Hero Image Entrance */
.hero-image {
    opacity: 0;
    transform: translateX(50px) scale(0.9);
    animation: hero-image-in 1s cubic-bezier(0.4, 0, 0.2, 1) 0.5s forwards;
}

@keyframes hero-image-in {
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

/* Floating Animation for Hero Image */
.hero-image img {
    animation: float-image 3s ease-in-out infinite;
}

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

/* Stats Section Pulse */
.stats-section {
    position: relative;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transition: all 0.5s ease;
}

.stat-item:hover::before {
    width: 200px;
    height: 200px;
}

/* Feature Card Staggered Animation */
.feature-card {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.feature-card:nth-child(1) { transition-delay: 0.1s; }
.feature-card:nth-child(2) { transition-delay: 0.2s; }
.feature-card:nth-child(3) { transition-delay: 0.3s; }
.feature-card:nth-child(4) { transition-delay: 0.4s; }
.feature-card:nth-child(5) { transition-delay: 0.5s; }
.feature-card:nth-child(6) { transition-delay: 0.6s; }

/* Responsive Adjustments */
@media (max-width: 767.98px) {
    .hero-content {
        transform: translateY(30px);
    }
    
    @keyframes hero-slide-in {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .hero-image {
        transform: translateY(30px);
    }
    
    @keyframes hero-image-in {
        to {
            opacity: 1;
            transform: translateY(0) scale(1);
        }
    }

    /* Hero Title Responsive */
    .hero-title {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .hero-static-text,
    .typewriter-text {
        font-size: 36px !important;
    }

    .typewriter-emoji {
        font-size: 36px;
    }

    .typewriter-wrapper {
        gap: 8px;
    }

    .hero-title::before,
    .hero-title::after {
        display: none;
    }
}

@media (max-width: 991.98px) {
    .hero-static-text,
    .typewriter-text {
        font-size: 48px;
    }

    .typewriter-emoji {
        font-size: 42px;
    }
}


/**********************************/
/**** FLOATING WHATSAPP WIDGET ****/
/**********************************/

.whatsapp-float-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    border: none;
    border-radius: 50%;
    color: #ffffff;
    font-size: 32px;
    cursor: pointer;
    z-index: 9999;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse-green 2s infinite;
}

.whatsapp-float-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.5);
    animation: none;
}

.whatsapp-float-btn .tooltip-text {
    position: absolute;
    right: 80px;
    background: #ffffff;
    color: #2d3748;
    padding: 10px 18px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.whatsapp-float-btn .tooltip-text::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 8px solid #ffffff;
}

.whatsapp-float-btn:hover .tooltip-text {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.notification-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 18px;
    height: 18px;
    background: #ff4444;
    border-radius: 50%;
    border: 3px solid #ffffff;
    animation: bounce-badge 1.5s infinite;
}

@keyframes bounce-badge {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

@keyframes pulse-green {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 0 0 20px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.whatsapp-popup {
    position: fixed;
    bottom: 110px;
    right: 30px;
    width: 380px;
    max-height: 550px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.whatsapp-popup.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.whatsapp-header {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.agent-avatar {
    width: 55px;
    height: 55px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #ffffff;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.agent-details h4 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 5px;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    font-weight: 600;
}

.status-badge i {
    font-size: 8px;
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.close-popup {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: #ffffff;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-popup:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.whatsapp-body {
    padding: 25px;
    background: #f0f2f5;
    flex: 1;
    overflow-y: auto;
    min-height: 300px;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%239C92AC' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.chat-message {
    margin-bottom: 15px;
}

.message-bubble {
    background: #ffffff;
    padding: 18px;
    border-radius: 0 12px 12px 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: relative;
    max-width: 100%;
}

.message-bubble::before {
    content: '';
    position: absolute;
    top: 0;
    left: -8px;
    width: 0;
    height: 0;
    border-top: 0 solid transparent;
    border-bottom: 12px solid transparent;
    border-right: 8px solid #ffffff;
}

.message-bubble p {
    color: #2d3748;
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 10px;
}

.message-bubble p:last-child {
    margin-bottom: 0;
}

.message-bubble ul {
    list-style: none;
    padding: 0;
    margin: 10px 0;
}

.message-bubble ul li {
    color: #4a5568;
    font-size: 13px;
    padding: 6px 0;
    border-bottom: 1px solid #f0f2f5;
}

.message-bubble ul li:last-child {
    border-bottom: none;
}

.message-time {
    display: block;
    text-align: right;
    color: #a0aec0;
    font-size: 12px;
    margin-top: 10px;
}

.whatsapp-footer {
    padding: 15px 20px;
    background: #ffffff;
    border-top: 1px solid #e2e8f0;
}

.whatsapp-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: #ffffff;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
    color: #ffffff;
}

.whatsapp-cta-btn i {
    font-size: 20px;
}

@media (max-width: 767.98px) {
    .whatsapp-popup {
        width: calc(100% - 30px);
        right: 15px;
        bottom: 100px;
        max-height: 450px;
    }

    .whatsapp-float-btn {
        width: 56px;
        height: 56px;
        font-size: 28px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float-btn .tooltip-text {
        display: none;
    }

    .agent-avatar {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }

    .agent-details h4 {
        font-size: 16px;
    }
}
