/* GIC Banner Section */
.index-gic-banner {
    background: linear-gradient(135deg, #0a0e17 0%, #121a2a 100%);
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(230, 184, 0, 0.1);
}

.index-gic-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #FFD700, #CFB53B);
}

.index-gic-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

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

.index-gic-heading {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 25px;
}

.index-gic-heading .highlight {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.index-gic-heading .highlight::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 100%;
    height: 12px;
    background: rgba(230, 184, 0, 0.3);
    z-index: -1;
    transform: skew(-15deg);
}

.index-gic-description {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 40px;
}

.index-gic-cta {
    display: inline-block;
    background: linear-gradient(135deg, #FFD700, #CFB53B);
    color: #121212;
    padding: 16px 40px;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 25px rgba(230, 184, 0, 0.4);
}

.index-gic-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(230, 184, 0, 0.6);
}

.index-gic-visual {
    position: relative;
    perspective: 1000px;
}

.index-gic-image {
    width: 100%;
    max-width: 500px;
    border-radius: 12px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(230, 184, 0, 0.2);
    transform: rotateY(-10deg);
    transition: transform 0.5s ease;
}

.index-gic-visual:hover .index-gic-image {
    transform: rotateY(-5deg) scale(1.03);
}

.index-gic-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(230, 184, 0, 0.15) 0%, transparent 70%);
    filter: blur(50px);
    z-index: -1;
    transform: translate(-50%, -50%);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .index-gic-container {
        gap: 40px;
    }
    
    .index-gic-heading {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .index-gic-banner {
        padding: 80px 20px;
    }
    
    .index-gic-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .index-gic-visual {
        order: -1;
        margin-bottom: 40px;
    }
    
    .index-gic-image {
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .index-gic-heading {
        font-size: 2rem;
    }
    
    .index-gic-description {
        font-size: 1.1rem;
    }
    
    .index-gic-cta {
        padding: 14px 30px;
        font-size: 1rem;
    }
}


/* GIC Charges/Rates Section */
.index-gic-charges {
    background: linear-gradient(135deg, #0a0e17 0%, #121a2a 100%);
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(230, 184, 0, 0.1);
}

.index-gic-charges::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #FFD700, #CFB53B);
}

.index-gic-charges-container {
    max-width: 1200px;
    margin: 0 auto;
}

.index-gic-charges-heading {
    text-align: center;
    font-size: 2.8rem;
    color: #fff;
    margin-bottom: 60px;
    font-weight: 700;
}

.index-gic-charges-heading .highlight {
    color: var(--primary);
    position: relative;
}

.index-gic-charges-heading .highlight::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(230, 184, 0, 0.3);
    z-index: -1;
}

.index-gic-charges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.index-gic-charges-card {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    border: 1px solid rgba(230, 184, 0, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.index-gic-charges-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #FFD700, #CFB53B);
}

.index-gic-charges-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(230, 184, 0, 0.2);
    border-color: rgba(230, 184, 0, 0.4);
}

.index-gic-charges-card-title {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.index-gic-charges-card-rate {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary);
    margin: 20px 0;
    position: relative;
    display: inline-block;
}

.index-gic-charges-card-rate::after {
    content: '†';
    position: absolute;
    top: 10px;
    right: -15px;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
}

.index-gic-charges-card-term {
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 30px;
    font-weight: 600;
}

.index-gic-charges-card-cta {
    display: inline-block;
    background: linear-gradient(135deg, #FFD700, #CFB53B);
    color: #121212;
    padding: 14px 30px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(230, 184, 0, 0.3);
}

.index-gic-charges-card-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(230, 184, 0, 0.5);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .index-gic-charges-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .index-gic-charges {
        padding: 80px 20px;
    }
    
    .index-gic-charges-heading {
        font-size: 2.2rem;
        margin-bottom: 40px;
    }
    
    .index-gic-charges-card-rate {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .index-gic-charges-grid {
        grid-template-columns: 1fr;
    }
    
    .index-gic-charges-heading {
        font-size: 2rem;
    }
    
    .index-gic-charges-card {
        padding: 30px 20px;
    }
}


/* GIC Services Section */
.index-gic-services {
    background: linear-gradient(135deg, #0a0e17 0%, #121a2a 100%);
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(230, 184, 0, 0.1);
}

.index-gic-services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #FFD700, #CFB53B);
}

.index-gic-services-container {
    max-width: 1200px;
    margin: 0 auto;
}

.index-gic-services-heading {
    text-align: center;
    font-size: 2.8rem;
    color: #fff;
    margin-bottom: 60px;
    font-weight: 700;
}

.index-gic-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.index-gic-services-card {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 40px 30px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    border: 1px solid rgba(230, 184, 0, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.index-gic-services-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #FFD700, #CFB53B);
}

.index-gic-services-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(230, 184, 0, 0.2);
    border-color: rgba(230, 184, 0, 0.4);
}

.index-gic-services-card-title {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 20px;
    font-weight: 700;
    min-height: 60px;
}

.index-gic-services-card-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 30px;
}

.index-gic-services-card-rate-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(230, 184, 0, 0.1);
    padding: 15px;
    border-radius: 8px;
    border: 1px solid rgba(230, 184, 0, 0.2);
}

.index-gic-services-card-rate-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.index-gic-services-card-rate {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    position: relative;
}

.index-gic-services-card-rate::after {
    content: '†';
    position: absolute;
    top: 5px;
    right: -12px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Special styling for US$ GIC card */
.index-gic-services-card.usd {
    border: 1px solid rgba(230, 184, 0, 0.4);
}

.index-gic-services-card.usd::before {
    background: linear-gradient(90deg, #FFD700, #e6b800, #CFB53B);
    height: 7px;
}

.index-gic-services-card.usd .index-gic-services-card-rate {
    font-size: 2rem;
}

/* Responsive Grid Layout */
@media (min-width: 1100px) {
    .index-gic-services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .index-gic-services-grid::after {
        content: '';
        grid-column: span 3;
        display: flex;
        justify-content: center;
    }
    
    .index-gic-services-card:nth-last-child(-n+2) {
        grid-column: span 1.5;
    }
}

@media (max-width: 1099px) {
    .index-gic-services-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    }
}

@media (max-width: 768px) {
    .index-gic-services {
        padding: 80px 20px;
    }
    
    .index-gic-services-heading {
        font-size: 2.2rem;
        margin-bottom: 40px;
    }
    
    .index-gic-services-card {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .index-gic-services-heading {
        font-size: 2rem;
    }
    
    .index-gic-services-grid {
        grid-template-columns: 1fr;
    }
}