/* Custom Styles for Dolphin Trade Pro */

/* Large Join Button Styles */
.banner__button-wrap {
    text-align: center;
    margin: 30px 0;
}

.tg-btn-large {
    display: inline-block;
    padding: 18px 50px;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    color: #000;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.tg-btn-large:hover {
    transform: translateY(-3px);
    color: #000;
    text-decoration: none;
}

.tg-btn-large:active {
    transform: translateY(-1px);
}

.tg-btn-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    transition: left 0.5s;
}

.tg-btn-large:hover::before {
    left: 100%;
}

/* Responsive */
@media (max-width: 768px) {
    .tg-btn-large {
        padding: 15px 35px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .tg-btn-large {
        padding: 12px 25px;
        font-size: 14px;
        width: 100%;
        max-width: 280px;
    }
}

/* Success Modal Styles - Dark Theme */
.success-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    animation: fadeIn 0.3s ease-in-out;
}

.success-modal-content {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    margin: 10% auto;
    padding: 0;
    border-radius: 20px;
    width: 90%;
    max-width: 450px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.1);
    animation: slideIn 0.4s ease-out;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.success-modal-header {
    padding: 20px;
    position: relative;
}

.close-modal {
    color: #fff;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
    opacity: 0.8;
    transition: all 0.3s ease;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-modal:hover {
    opacity: 1;
    background-color: rgba(255, 255, 255, 0.1);
    transform: rotate(90deg);
}

.success-modal-body {
    padding: 50px 30px;
    text-align: center;
    color: #fff;
}

.success-icon {
    margin-bottom: 25px;
}

.success-icon i {
    font-size: 70px;
    color: #00d4aa;
    animation: bounceIn 0.6s ease-out;
    text-shadow: 0 0 20px rgba(0, 212, 170, 0.3);
}

.success-modal-body h3 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 28px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
}

.success-modal-body p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 35px;
    line-height: 1.7;
    font-size: 16px;
    font-weight: 400;
}

.success-modal-body .tg-btn {
    margin-top: 15px;
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.success-modal-body .tg-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

.success-modal-body .tg-btn:active {
    transform: translateY(-1px);
}

/* Animations */
@keyframes fadeIn {
    from { 
        opacity: 0; 
    }
    to { 
        opacity: 1; 
    }
}

@keyframes slideIn {
    from {
        transform: translateY(-80px) scale(0.9);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

@keyframes bounceIn {
    0% {
        transform: scale(0.3);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .success-modal-content {
        margin: 15% auto;
        width: 95%;
        border-radius: 15px;
    }
    
    .success-modal-body {
        padding: 40px 25px;
    }
    
    .success-icon i {
        font-size: 60px;
    }
    
    .success-modal-body h3 {
        font-size: 24px;
    }
    
    .success-modal-body p {
        font-size: 15px;
    }
    
    .success-modal-body .tg-btn {
        padding: 12px 30px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .success-modal-content {
        margin: 20% auto;
        width: 98%;
    }
    
    .success-modal-body {
        padding: 35px 20px;
    }
    
    .success-modal-header {
        padding: 15px;
    }
    
    .success-icon i {
        font-size: 50px;
    }
    
    .success-modal-body h3 {
        font-size: 22px;
    }
}

/* Dark theme enhancements */
.success-modal-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #667eea, #764ba2, #00d4aa);
    opacity: 0.8;
}

/* Glowing effect for the modal */
.success-modal-content {
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        0 0 50px rgba(102, 126, 234, 0.1);
}
.text-green{
    color: #CCFF00 !important;
}
.bg-green{
    background-color: #CCFF00 !important;
}
/* Team Hero Section Styles */
.team__hero-content {
    padding: 80px 0;
    text-align: center;
    position: relative;
    z-index: 2;
}

/* Canvas Particle Effect Styles */
.particle-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.team__area {
    position: relative;
    /* background: linear-gradient(135deg, #0f1419 0%, #1a1f2e 50%, #0f1419 100%); */
    overflow: hidden;
    cursor: pointer;
}

.team__hero-title {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 40px;
    line-height: 1.2;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.5px;
}

.team__hero-button {
    margin-top: 30px;
}

.team__area {
    position: relative;
    /* background: linear-gradient(135deg, #0f1419 0%, #1a1f2e 50%, #0f1419 100%); */
    overflow: hidden;
}

.team__area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: #000; */
    z-index: 1;
}

/* Responsive styles for team hero */
@media (max-width: 1200px) {
    .team__hero-title {
        font-size: 42px;
    }
}

@media (max-width: 992px) {
    .team__hero-title {
        font-size: 36px;
    }
    
    .team__hero-content {
        padding: 60px 0;
    }
}

@media (max-width: 768px) {
    .team__hero-title {
        font-size: 30px;
        margin-bottom: 30px;
    }
    
    .team__hero-content {
        padding: 50px 0;
    }
}

@media (max-width: 480px) {
    .team__hero-title {
        font-size: 24px;
        line-height: 1.3;
    }
    
    .team__hero-content {
        padding: 40px 0;
    }
}

/* Performance Section Styles */
.performance__area {
    position: relative;
    overflow: hidden;
}

.performance__card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    height: 100%;
}

.performance__card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: #CCFF00;
    box-shadow: 0 20px 40px rgba(204, 255, 0, 0.1);
}

.performance__icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #CCFF00, #99CC00);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    color: #000;
}

.performance__number {
    font-size: 36px;
    font-weight: 700;
    color: #CCFF00;
    margin-bottom: 10px;
    line-height: 1;
}

.performance__label {
    font-size: 16px;
    color: #fff;
    margin-bottom: 5px;
    font-weight: 500;
}

.performance__period {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

/* Trading Statistics Chart */
.trading__stats-wrap {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
}

.trading__stats-header {
    text-align: center;
    margin-bottom: 40px;
}

.trading__stats-header h4 {
    font-size: 24px;
    color: #fff;
    margin-bottom: 10px;
}

.trading__stats-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
}

.trading__stats-chart {
    position: relative;
}

.chart__bars {
    display: flex;
    align-items: end;
    justify-content: space-between;
    height: 200px;
    margin-bottom: 20px;
    padding: 0 10px;
}

.chart__bar {
    background: linear-gradient(to top, #CCFF00, #99CC00);
    width: 8%;
    border-radius: 4px 4px 0 0;
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
}

.chart__bar:hover {
    background: linear-gradient(to top, #CCFF00, #FFFF00);
    transform: scaleY(1.1);
}

.chart__bar::before {
    content: attr(data-value);
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: #CCFF00;
    padding: 5px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    opacity: 0;
    transition: opacity 0.3s ease;
    white-space: nowrap;
}

.chart__bar:hover::before {
    opacity: 1;
}

.chart__labels {
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
}

.chart__labels span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    width: 8%;
    text-align: center;
}

/* Responsive Design for Performance Section */
@media (max-width: 992px) {
    .performance__card {
        margin-bottom: 30px;
    }
    
    .performance__number {
        font-size: 30px;
    }
    
    .trading__stats-wrap {
        padding: 30px 20px;
    }
    
    .chart__bars {
        height: 150px;
    }
}

@media (max-width: 768px) {
    .performance__number {
        font-size: 24px;
    }
    
    .performance__icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .chart__bar {
        width: 7%;
    }
    
    .chart__labels span {
        font-size: 12px;
        width: 7%;
    }
}

/* Enhanced Features Section Styles */
.trading__features-wrap {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
}

.trading__features-content .title {
    font-size: 28px;
    color: #fff;
    margin-bottom: 30px;
}

.trading__features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.trading__features-list li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
}

.trading__features-list li i {
    color: #CCFF00;
    margin-right: 15px;
    font-size: 18px;
}

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

.stat__item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.stat__item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: #CCFF00;
    transform: translateY(-5px);
}

.stat__number {
    font-size: 24px;
    font-weight: 700;
    color: #CCFF00;
    margin-bottom: 8px;
}

.stat__label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

/* Market Coverage Styles */
.market__coverage-wrap h4 {
    font-size: 24px;
    color: #fff;
}

.market__item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.market__item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: #CCFF00;
    transform: translateY(-5px);
}

.market__icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #CCFF00, #99CC00);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 20px;
    color: #000;
}

.market__item h5 {
    color: #fff;
    margin-bottom: 8px;
    font-size: 16px;
    font-weight: 600;
}

.market__item p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin: 0;
}

/* Strategy Cards Styles */
.strategies__details-wrap .title {
    font-size: 28px;
    color: #fff;
}

.strategy__card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.strategy__card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: #CCFF00;
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(204, 255, 0, 0.1);
}

.strategy__icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #CCFF00, #99CC00);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: #000;
}

.strategy__title {
    font-size: 20px;
    color: #fff;
    margin-bottom: 15px;
    font-weight: 600;
}

.strategy__desc {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
    line-height: 1.6;
}

.strategy__stats .stat {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.strategy__stats .stat:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.stat__label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.stat__value {
    color: #fff;
    font-weight: 600;
    font-size: 14px;
}

/* Performance Metrics Styles */
.performance__metrics-wrap h4 {
    font-size: 24px;
    color: #fff;
}

.metric__item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px 15px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.metric__item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: #CCFF00;
    transform: translateY(-5px);
}

.metric__number {
    font-size: 20px;
    font-weight: 700;
    color: #CCFF00;
    margin-bottom: 8px;
    line-height: 1;
}

.metric__label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.2;
}

/* Responsive Design */
@media (max-width: 992px) {
    .trading__features-wrap {
        padding: 30px 20px;
    }
    
    .trading__stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .strategy__card {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .trading__features-content .title {
        font-size: 24px;
    }
    
    .strategies__details-wrap .title {
        font-size: 24px;
    }
    
    .strategy__icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .strategy__title {
        font-size: 18px;
    }
    
    .metric__number {
        font-size: 18px;
    }
    
    .metric__label {
        font-size: 11px;
    }
}

/* How It Works Enhanced Styles */
.process__details-wrap .title {
    font-size: 28px;
    color: #fff;
}

.process__benefit-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.process__benefit-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: #CCFF00;
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(204, 255, 0, 0.1);
}

.benefit__icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #CCFF00, #99CC00);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: #000;
}

.benefit__title {
    font-size: 20px;
    color: #fff;
    margin-bottom: 15px;
    font-weight: 600;
}

.benefit__desc {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    line-height: 1.6;
}

.benefit__features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.benefit__features li {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
}

.benefit__features li i {
    color: #CCFF00;
    margin-right: 10px;
    font-size: 12px;
}

/* Timeline Styles */
.timeline__process-wrap h4 {
    font-size: 24px;
    color: #fff;
}

.timeline__container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline__container::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #CCFF00, #99CC00);
    transform: translateX(-50%);
}

.timeline__item {
    position: relative;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
}

.timeline__item:nth-child(odd) {
    flex-direction: row;
}

.timeline__item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline__marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #CCFF00, #99CC00);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.timeline__number {
    font-size: 18px;
    font-weight: 700;
    color: #000;
}

.timeline__content {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px;
    width: calc(50% - 40px);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.timeline__item:nth-child(odd) .timeline__content {
    margin-right: auto;
}

.timeline__item:nth-child(even) .timeline__content {
    margin-left: auto;
}

.timeline__content:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: #CCFF00;
    transform: translateY(-5px);
}

.timeline__time {
    color: #CCFF00;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
}

.timeline__title {
    color: #fff;
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 600;
}

.timeline__desc {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

/* Success Metrics Styles */
.success__metrics-wrap {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
}

.success__content .title {
    font-size: 28px;
    color: #fff;
    margin-bottom: 15px;
}

.success__content .desc {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 1.6;
}

.success__stats {
    display: flex;
    gap: 30px;
}

.success__stat {
    display: flex;
    align-items: center;
    gap: 15px;
}

.success__stat .stat__icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #CCFF00, #99CC00);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #000;
}

.success__stat .stat__info h4 {
    font-size: 24px;
    color: #CCFF00;
    margin-bottom: 5px;
    font-weight: 700;
}

.success__stat .stat__info p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin: 0;
}

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

.feature__item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.feature__item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: #CCFF00;
    transform: translateX(10px);
}

.feature__icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #CCFF00, #99CC00);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #000;
    flex-shrink: 0;
}

.feature__content h5 {
    color: #fff;
    font-size: 16px;
    margin-bottom: 5px;
    font-weight: 600;
}

.feature__content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin: 0;
    line-height: 1.4;
}

/* Responsive Design for How It Works */
@media (max-width: 992px) {
    .process__benefit-card {
        margin-bottom: 30px;
    }
    
    .timeline__container::before {
        left: 30px;
    }
    
    .timeline__item {
        flex-direction: row !important;
        padding-left: 80px;
    }
    
    .timeline__marker {
        left: 30px;
        transform: translateX(-50%);
    }
    
    .timeline__content {
        width: 100%;
        margin: 0 !important;
    }
    
    .success__stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .success__features {
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .process__details-wrap .title {
        font-size: 24px;
    }
    
    .benefit__icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .benefit__title {
        font-size: 18px;
    }
    
    .timeline__marker {
        width: 40px;
        height: 40px;
    }
    
    .timeline__number {
        font-size: 16px;
    }
    
    .timeline__title {
        font-size: 16px;
    }
    
    .success__content .title {
        font-size: 24px;
    }
    
    .success__stat .stat__info h4 {
        font-size: 20px;
    }
    
    .feature__item {
        padding: 15px;
        gap: 15px;
    }
    
    .feature__icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}

/* Brand Area Custom Styles */
.brand__area .swiper-container {
    overflow: visible;
}

.brand__area .swiper-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
}

.brand__area .swiper-slide {
    flex: 1;
    max-width: 20%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.brand__item {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    transition: all 0.3s ease;
}

.brand__item:hover {
    transform: scale(1.1);
}

.brand__item img {
    max-width: 100%;
    height: auto;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.brand__item:hover img {
    opacity: 1;
}

/* Responsive Design for Brand Area */
@media (max-width: 1200px) {
    .brand__area .swiper-slide {
        max-width: 20%;
    }
}

@media (max-width: 992px) {
    .brand__area .swiper-wrapper {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    
    .brand__area .swiper-slide {
        flex: 0 0 auto;
        max-width: 30%;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .brand__area .swiper-slide {
        max-width: 45%;
    }
    
    .brand__item {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .brand__area .swiper-wrapper {
        flex-direction: column;
        gap: 15px;
    }
    
    .brand__area .swiper-slide {
        max-width: 80%;
    }
    
    .brand__item {
        padding: 10px;
    }
}

/* Certificate Section Styles */
.certificate-content {
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.certificate-content p {
    color: #e0e0e0;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.registration-info {
    margin: 25px 0;
    padding: 20px;
    background: rgba(43, 134, 245, 0.1);
    border-left: 4px solid #2B86F5;
    border-radius: 8px;
}

.registration-info p {
    margin-bottom: 10px;
}

.registration-info strong {
    color: #2B86F5;
}

.verification-info {
    padding: 20px;
    background: rgba(30, 94, 251, 0.1);
    border-radius: 8px;
}

.verification-info strong {
    color: #1E5EFB;
}

.certificate-display {
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.certificate-display embed {
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}