/* ============================================
   SUPPORT PAGE STYLES
   ============================================ */

/* Hero Section */
.support-hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-image: url('../assets/images/noc (1) 1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding-top: 120px;
    padding-bottom: 120px;
    margin-top: 0;
    overflow: hidden;
}

/* Animated Background Shapes */
.support-hero-animated-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.support-hero-floating-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    animation: supportHeroFloat 25s infinite ease-in-out;
}

.support-hero-shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.support-hero-shape-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 10%;
    animation-delay: 3s;
}

.support-hero-shape-3 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 15%;
    animation-delay: 6s;
}

.support-hero-shape-4 {
    width: 180px;
    height: 180px;
    top: 30%;
    right: 25%;
    animation-delay: 9s;
}

@keyframes supportHeroFloat {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.4;
    }
    25% {
        transform: translate(40px, -40px) rotate(90deg);
        opacity: 0.6;
    }
    50% {
        transform: translate(-30px, 30px) rotate(180deg);
        opacity: 0.5;
    }
    75% {
        transform: translate(30px, 40px) rotate(270deg);
        opacity: 0.7;
    }
}

.support-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.75) 0%, rgba(13, 27, 42, 0.65) 100%);
    z-index: 1;
}

.support-hero-section .container {
    position: relative;
    z-index: 2;
}

.support-hero-content-wrapper {
    position: relative;
    z-index: 3;
    animation: fadeInUp 1s ease-out;
}

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

/* Hero Badge */
.support-hero-badge {
    display: inline-block;
    padding: 0.75rem 1.75rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.2s both;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.5px;
}

.support-hero-badge i {
    color: #4ade80;
}

.support-hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    line-height: 1.1;
    letter-spacing: -0.02em;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.support-hero-subtitle {
    font-size: 1.75rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1.5rem;
    font-weight: 500;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out 0.4s both;
}

.support-hero-description {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 1s ease-out 0.5s both;
}

/* Support Statistics */
.support-hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 3rem 0 3rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.support-stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 1.25rem 1.75rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    min-width: 180px;
}

.support-stat-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.support-stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.1) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.support-stat-content {
    text-align: left;
}

.support-stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    margin-bottom: 0.25rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

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

.support-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 2rem;
    animation: fadeInUp 1s ease-out 0.7s both;
}

.support-learn-btn {
    background-color: transparent;
    border: 2px solid white;
    color: white;
    padding: 14px 35px;
    border-radius: 28px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.support-learn-btn:hover {
    background-color: white;
    color: #00399E;
    border-color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.support-cta-arrow {
    width: 45px;
    height: 45px;
    transition: transform 0.3s ease;
}

.support-hero-cta:hover .support-cta-arrow {
    transform: translateY(-5px);
}

/* Services Section */
.support-services-section {
    background-color: white;
    padding: 80px 0;
}

.services-timeline-wrapper {
    position: relative;
    padding-left: 15px;
    padding-right: 15px;
}

.service-row {
    /* border-bottom: 1px solid #e9ecef; */
    position: relative;
    min-height: 400px;
}

/* Add spacing around the timeline line */
.service-row .col-lg-6 {
    padding-left: 40px;
    padding-right: 40px;
}

/* For columns without order classes (default left-right layout) */
.service-row .col-lg-6:not(.order-lg-1):not(.order-lg-2):first-child {
    padding-right: 50px;
    padding-left: 15px;
}

.service-row .col-lg-6:not(.order-lg-1):not(.order-lg-2):last-child {
    padding-left: 50px;
    padding-right: 15px;
}

/* For columns with order-lg-1 (appears first visually, but is second in DOM) */
.service-row .col-lg-6.order-lg-1 {
    padding-right: 50px;
    padding-left: 15px;
}

/* For columns with order-lg-2 (appears second visually, but is first in DOM) */
.service-row .col-lg-6.order-lg-2 {
    padding-left: 50px;
    padding-right: 15px;
}

.service-row:last-child {
    border-bottom: none;
}

/* Continuous Timeline Line */
.service-timeline-line-continuous {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background-color: #00399E;
    transform: translateX(-50%);
    z-index: 1;
}

.service-timeline-dot {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 24px;
    background-color: #00399E;
    border-radius: 50%;
    border: 1px solid #00399E;
    box-shadow: 0 0 0 3px #00399E;
    z-index: 2;
    color: #00399E;
}

.service-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-radius: 20px !important;
}

.service-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #00399E;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.service-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.service-contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.service-contact-btn {
    background-color: #00399E;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    width: fit-content;
}

.service-contact-btn:hover {
    background-color: #002d7a;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 57, 158, 0.3);
}

.service-contact-btn i {
    font-size: 1.1rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .support-hero-section {
        background-attachment: scroll;
    }
    
    .support-hero-title {
        font-size: 3.5rem;
    }
    
    .support-hero-subtitle {
        font-size: 1.5rem;
    }
    
    .support-hero-description {
        font-size: 1.05rem;
    }
    
    .support-hero-stats {
        gap: 2rem;
    }
    
    .support-stat-item {
        min-width: 160px;
        padding: 1rem 1.5rem;
    }
    
    .support-stat-number {
        font-size: 1.75rem;
    }
    
    .support-stat-icon {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    .service-title {
        font-size: 2rem;
    }
    
    .service-description {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .support-hero-section {
        min-height: 100vh;
        padding-top: 100px;
        padding-bottom: 80px;
    }
    
    .support-hero-title {
        font-size: 2.5rem;
    }
    
    .support-hero-subtitle {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
    }
    
    .support-hero-description {
        font-size: 1rem;
        margin-bottom: 2.5rem;
    }
    
    .support-hero-badge {
        padding: 0.65rem 1.5rem;
        font-size: 0.85rem;
        margin-bottom: 1.5rem;
    }
    
    .support-hero-stats {
        gap: 1.5rem;
        margin: 2.5rem 0 2.5rem;
    }
    
    .support-stat-item {
        min-width: 140px;
        padding: 1rem 1.25rem;
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .support-stat-content {
        text-align: center;
    }
    
    .support-stat-number {
        font-size: 1.5rem;
    }
    
    .support-stat-label {
        font-size: 0.8rem;
    }
    
    .support-stat-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .support-services-section {
        padding: 60px 0;
    }
    
    .service-row {
        margin-bottom: 3rem !important;
        padding-bottom: 3rem !important;
    }
    
    .service-title {
        font-size: 1.75rem;
    }
    
    .service-description {
        font-size: 0.95rem;
    }
    
    .service-contact-btn {
        width: 100%;
        justify-content: flex-start;
    }
    
    /* Hide timeline on mobile */
    .service-timeline-line-continuous,
    .service-timeline-dot {
        display: none;
    }
}

@media (max-width: 576px) {
    .support-hero-section {
        min-height: 100vh;
        padding-top: 80px;
        padding-bottom: 60px;
    }
    
    .support-hero-title {
        font-size: 2rem;
    }
    
    .support-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .support-hero-description {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }
    
    .support-hero-badge {
        padding: 0.6rem 1.25rem;
        font-size: 0.8rem;
        margin-bottom: 1.25rem;
    }
    
    .support-hero-stats {
        gap: 1rem;
        margin: 2rem 0 2rem;
    }
    
    .support-stat-item {
        min-width: calc(50% - 0.5rem);
        padding: 0.875rem 1rem;
    }
    
    .support-stat-number {
        font-size: 1.35rem;
    }
    
    .support-stat-label {
        font-size: 0.75rem;
    }
    
    .support-learn-btn {
        padding: 12px 28px;
        font-size: 0.9rem;
    }
    
    .support-cta-arrow {
        width: 35px;
        height: 35px;
    }
    .service-row .col-lg-6 {
        padding-left: 0px !important;
        padding-right: 0px !important;
    }
    .service-row .col-lg-6:not(.order-lg-1):not(.order-lg-2):last-child {
        padding-left: 0px !important;
        padding-right: 0px !important;
    }
    .service-row .col-lg-6.order-lg-2 {
        padding-left: 0px !important;
        padding-right: 0px !important;
    }
    .service-row .col-lg-6.order-lg-1 {
        padding-right: 0px !important;
        padding-left: 0px !important;
    }
    .service-row .col-lg-6:not(.order-lg-1):not(.order-lg-2):last-child {
        padding-left: 0px !important;
        padding-right: 0px !important;
    }
    .service-row .col-lg-6.order-lg-2{
        padding-left: 0px !important;
        padding-right: 0px !important;
    }
    .service-row .col-lg-6.order-lg-1{
        padding-right: 0px !important;
        padding-left: 0px !important;
    }
    .service-contact-btn{
        margin-top: 10px !important;
    }
}

