.title-area.about-us .sec-title {
    line-height: 1.2;
    margin-bottom: 10px!important;
}
/* ===== LIGHT GEOMETRIC APPROACH ===== */
.geometric-approach {
    position: relative;
    padding: 50px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    color: #0f172a;
    overflow: hidden;
}

/* Background Shapes */
.geo-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.shape {
    position: absolute;
    border: 1px solid rgba(15, 23, 42, 0.08);
}

.circle {
    top: 20%;
    right: 15%;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    animation: floatCircle 20s infinite linear;
}

.triangle {
    bottom: 25%;
    left: 10%;
    width: 150px;
    height: 150px;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    animation: floatTriangle 25s infinite linear reverse;
}

.square {
    top: 40%;
    left: 15%;
    width: 100px;
    height: 100px;
    transform: rotate(15deg);
    animation: rotateSquare 30s infinite linear;
}

.line {
    bottom: 40%;
    right: 25%;
    width: 300px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(15, 23, 42, 0.1), transparent);
}

@keyframes floatCircle {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(100px, 100px) rotate(360deg); }
}

@keyframes floatTriangle {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(-100px, -100px) rotate(-360deg); }
}

@keyframes rotateSquare {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Container */
.container {
    position: relative;
    z-index: 2;
}

/* Content Styling */
.sub-title {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #e11b22;
    margin-bottom: 15px;
    padding-left: 20px;
    position: relative;
}

.sub-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 10px;
    height: 2px;
    background: #17479e;
    transform: translateY(-50%);
}

.sec-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #0f172a;
}

.sec-text {
    font-size: 18px;
    line-height: 1.6;
    color: #000;
    margin-bottom: 25px;
}

.sec-text:last-of-type {
    margin-bottom: 0;
}

/* Image Box Styling */
.img-box3.style1 {
    position: relative;
    max-width: 450px;
    margin: 0 auto;
}

.img1 {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s ease;
}

.img1:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.img1 img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    transition: transform 0.5s ease;
}

/* Responsive */
@media (max-width: 1200px) {
    .sec-title {
        font-size: 42px;
    }
    
    .img-box3.style1 {
        max-width: 400px;
    }
}

@media (max-width: 992px) {
    .geometric-approach {
        padding: 80px 0;
    }
    
    .sec-title {
        font-size: 36px;
    }
    
    .sec-text {
        font-size: 17px;
    }
    
    .img-box3.style1 {
        max-width: 350px;
        margin-bottom: 60px;
    }
    
    .shape {
        opacity: 0.5;
    }
}

@media (max-width: 768px) {
    .sec-title {
        font-size: 32px;
    }
    
    .sub-title {
        font-size: 13px;
        letter-spacing: 2px;
    }
    
    .img-box3.style1 {
        max-width: 100%;
    }
    
    .img1 {
        transform: none;
    }
    
    .shape {
        display: none;
    }
}

@media (max-width: 576px) {
    .geometric-approach {
        padding: 60px 0;
    }
    
    .sec-title {
        font-size: 28px;
    }
    
    .sec-text {
        font-size: 16px;
    }
}

.title-area.industires-bfsi-text h2 {
		color:#17479e!important;
		}

/* ===== GEOMETRIC INDUSTRY CHALLENGES WITH ICONS ===== */
.geometric-industry {
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 30px 0;
    overflow: hidden;
}

/* Background Elements - Enhanced Effects */
.geo-industry-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.geo-grid-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(96, 165, 250, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(96, 165, 250, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
}

.geo-circle-element {
    position: absolute;
    top: 10%;
    right: 10%;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 2px dashed rgba(96, 165, 250, 0.15);
    animation: rotateClockwise 60s infinite linear;
}

.geo-line-element {
    position: absolute;
    bottom: 20%;
    left: 5%;
    width: 300px;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(225, 27, 34, 0.3), 
        transparent);
    transform: rotate(-15deg);
}

@keyframes rotateClockwise {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Title Styling */
.title-area {
    position: relative;
    z-index: 2;
}

.sub-title {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #e11b22;
    margin-bottom: 15px;
    padding-left: 20px;
    position: relative;
}

.sub-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 10px;
    height: 2px;
    background: #17479e;
    transform: translateY(-50%);
}

.sec-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 15px;
    color: #0f172a;
}

.sec-subtitle {
    font-size: 18px;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Icon-based Cards */
.icon-challenge-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 20px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.icon-challenge-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(96, 165, 250, 0.3);
    background: rgba(255, 255, 255, 1);
}

.icon-challenge-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #17479e, #e11b22);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.icon-challenge-card:hover::before {
    opacity: 1;
}

.icon-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    margin-bottom: 25px;
}

.challenge-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    color: #17479e;
    background: rgba(255, 255, 255, 0.95);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(96, 165, 250, 0.2);
    transition: all 0.3s ease;
    border: 1px solid rgba(96, 165, 250, 0.1);
}

.icon-challenge-card:hover .challenge-icon {
    color: #e11b22;
    background: #ffffff;
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 5px 20px rgba(225, 27, 34, 0.3);
}

.icon-shape {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(96, 165, 250, 0.1);
    border: 2px solid rgba(96, 165, 250, 0.2);
    transition: all 0.4s ease;
}

/* Shape Variations */
.shape-circle {
    border-radius: 50%;
}

.shape-triangle {
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.shape-square {
    border-radius: 15px;
}

.shape-hexagon {
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
}

.shape-diamond {
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.shape-pentagon {
    clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
}

.icon-challenge-card:hover .icon-shape {
    transform: rotate(45deg);
    background: rgba(225, 27, 34, 0.1);
    border-color: rgba(225, 27, 34, 0.2);
}

.challenge-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    color: #0f172a;
    margin-bottom: 20px;
    min-height: 50px;
}

.challenge-indicator {
    margin-top: 15px;
}

.indicator-bar {
    height: 6px;
    background: rgba(226, 232, 240, 0.8);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 8px;
    position: relative;
}

.indicator-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: linear-gradient(90deg, #17479e, #e11b22);
    border-radius: 3px;
    width: 0;
    transition: width 1.5s ease-in-out;
}

.icon-challenge-card:hover .indicator-bar::after {
    width: var(--indicator-width, 0%);
}

/* Attractive Bottom Line */
.attractive-line-wrapper {
    position: relative;
    margin-top: 0px;
    margin-bottom: 0px;
    padding: 10px 0;
    z-index: 2;
}

.attractive-line-content {
    position: relative;
}

.attractive-line-text {
    font-size: 28px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 20px;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.highlight-word {
    position: relative;
    color: #17479e;
    font-weight: 800;
    padding: 0 5px;
}

.highlight-word::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 5px;
    right: 5px;
    height: 4px;
    background: linear-gradient(90deg, #17479e, #e11b22);
    border-radius: 2px;
    z-index: -1;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.attractive-line-text:hover .highlight-word::after {
    opacity: 1;
}

.attractive-line-decoration {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
    height: 4px;
}

.line-decoration-main {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(96, 165, 250, 0.7), 
        rgba(225, 27, 34, 0.7), 
        transparent);
    border-radius: 1px;
    animation: lineGlow 3s infinite ease-in-out;
}

.line-decoration-dot {
    position: absolute;
    top: 50%;
    width: 12px;
    height: 12px;
    background: #e11b22;
    border-radius: 50%;
    transform: translateY(-50%);
    animation: dotPulse 2s infinite ease-in-out;
}

.dot-left {
    left: 10%;
    animation-delay: 0s;
}

.dot-right {
    right: 10%;
    animation-delay: 0.5s;
}

@keyframes lineGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

@keyframes dotPulse {
    0%, 100% { transform: translateY(-50%) scale(1); }
    50% { transform: translateY(-50%) scale(1.2); }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .sec-title {
        font-size: 42px;
    }
    
    .attractive-line-text {
        font-size: 24px;
    }
}

@media (max-width: 992px) {
    .geometric-industry {
        padding: 80px 0;
    }
    
    .sec-title {
        font-size: 36px;
    }
    
    .challenge-title {
        min-height: 60px;
        font-size: 17px;
    }
    
    .attractive-line-text {
        font-size: 22px;
    }
    
    .attractive-line-decoration {
        max-width: 350px;
    }
}

@media (max-width: 768px) {
    .sec-title {
        font-size: 32px;
    }
    
    .sec-subtitle {
        font-size: 16px;
    }
    
    .icon-challenge-card {
        padding: 25px;
    }
    
    .icon-wrapper {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }
    
    .challenge-icon {
        width: 50px;
        height: 50px;
    }
    
    .challenge-title {
        min-height: auto;
        font-size: 16px;
    }
    
    .attractive-line-text {
        font-size: 20px;
    }
    
    .attractive-line-decoration {
        max-width: 300px;
    }
}

@media (max-width: 576px) {
    .geometric-industry {
        padding: 60px 0;
    }
    
    .sec-title {
        font-size: 28px;
    }
    
    .sub-title {
        font-size: 13px;
        letter-spacing: 2px;
    }
    
    .icon-challenge-card {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .icon-wrapper {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }
    
    .challenge-icon {
        width: 45px;
        height: 45px;
    }
    
    .attractive-line-wrapper {
        margin-top: 30px;
        padding: 20px 0;
    }
    
    .attractive-line-text {
        font-size: 18px;
    }
    
    .attractive-line-decoration {
        max-width: 250px;
    }
    
    .line-decoration-dot {
        width: 10px;
        height: 10px;
    }
}

/* ===== GEOMETRIC INDUSTRY CHALLENGES WITH ICONS ===== */
.geometric-industry {
    position: relative;
    background: linear-gradient(135deg, #ecf0f0 0%, #ecf0f0 100%);
    padding: 30px 0;
    overflow: hidden;
}

/* Background Elements - Enhanced Effects */
.geo-industry-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.geo-grid-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(96, 165, 250, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(96, 165, 250, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
}

.geo-circle-element {
    position: absolute;
    top: 10%;
    right: 10%;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 2px dashed rgba(96, 165, 250, 0.15);
    animation: rotateClockwise 60s infinite linear;
}

.geo-line-element {
    position: absolute;
    bottom: 20%;
    left: 5%;
    width: 300px;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(225, 27, 34, 0.3), 
        transparent);
    transform: rotate(-15deg);
}

@keyframes rotateClockwise {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Title Styling */
.title-area {
    position: relative;
    z-index: 2;
}

.sub-title {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #e11b22;
    margin-bottom: 15px;
    padding-left: 20px;
    position: relative;
}

.sub-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 10px;
    height: 2px;
    background: #17479e;
    transform: translateY(-50%);
}

.sec-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 15px;
    color: #17479e;
}

.sec-subtitle {
    font-size: 18px;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Icon-based Cards */
.icon-challenge-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 20px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.icon-challenge-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(96, 165, 250, 0.3);
    background: rgba(255, 255, 255, 1);
}

.icon-challenge-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #17479e, #e11b22);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.icon-challenge-card:hover::before {
    opacity: 1;
}

.icon-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    margin-bottom: 25px;
}

.challenge-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    color: #17479e;
    background: rgba(255, 255, 255, 0.95);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(96, 165, 250, 0.2);
    transition: all 0.3s ease;
    border: 1px solid rgba(96, 165, 250, 0.1);
}

.icon-challenge-card:hover .challenge-icon {
    color: #e11b22;
    background: #ffffff;
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 5px 20px rgba(225, 27, 34, 0.3);
}

.icon-shape {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(96, 165, 250, 0.1);
    border: 2px solid rgba(96, 165, 250, 0.2);
    transition: all 0.4s ease;
}

/* Shape Variations */
.shape-circle {
    border-radius: 50%;
}

.shape-triangle {
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.shape-square {
    border-radius: 15px;
}

.shape-hexagon {
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
}

.shape-diamond {
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.shape-pentagon {
    clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
}

.icon-challenge-card:hover .icon-shape {
    transform: rotate(45deg);
    background: rgba(225, 27, 34, 0.1);
    border-color: rgba(225, 27, 34, 0.2);
}

.challenge-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    color: #0f172a;
    margin-bottom: 20px;
    min-height: 50px;
}

.challenge-indicator {
    margin-top: 15px;
}

.indicator-bar {
    height: 6px;
    background: rgba(226, 232, 240, 0.8);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 8px;
    position: relative;
}

.indicator-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: linear-gradient(90deg, #17479e, #e11b22);
    border-radius: 3px;
    width: 0;
    transition: width 1.5s ease-in-out;
}

.icon-challenge-card:hover .indicator-bar::after {
    width: var(--indicator-width, 0%);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .sec-title {
        font-size: 42px;
    }
}

@media (max-width: 992px) {
    .geometric-industry {
        padding: 80px 0;
    }
    
    .sec-title {
        font-size: 36px;
    }
    
    .challenge-title {
        min-height: 60px;
        font-size: 17px;
    }
}

@media (max-width: 768px) {
    .sec-title {
        font-size: 32px;
    }
    
    .sec-subtitle {
        font-size: 16px;
    }
    
    .icon-challenge-card {
        padding: 25px;
    }
    
    .icon-wrapper {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }
    
    .challenge-icon {
        width: 50px;
        height: 50px;
    }
    
    .challenge-title {
        min-height: auto;
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .geometric-industry {
        padding: 60px 0;
    }
    
    .sec-title {
        font-size: 28px;
    }
    
    .sub-title {
        font-size: 13px;
        letter-spacing: 2px;
    }
    
    .icon-challenge-card {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .icon-wrapper {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }
    
    .challenge-icon {
        width: 45px;
        height: 45px;
    }
}

/* ===== ICON FOCUS AREAS ===== */
.icon-focus-areas {
    position: relative;
    /* background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%); */
    background: linear-gradient(135deg, #fff 0%, #fff 100%); */
    padding: 30px 0;
    overflow: hidden;
}

/* Background Pattern */
.icon-focus-areas::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(96, 165, 250, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(225, 27, 34, 0.05) 0%, transparent 50%);
    z-index: 1;
}

.container-fluid {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Title Styling */
.title-area {
    position: relative;
    z-index: 3;
}




/* Icon Categories Grid - CENTERED LAYOUT */
.icon-categories-grid {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    margin: 0 auto;
}

.icon-category-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
}

.icon-category-card {
    perspective: 1000px;
    width: 100%;
    max-width: 380px;
    min-height: 250px;
}

.icon-card-inner {
    position: relative;
    height: 100%;
    background: white;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.icon-card-inner:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border-color: rgba(96, 165, 250, 0.3);
}

/* Icon Header - CENTERED */
.icon-header {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0px;
    width: 100%;
}

.icon-wrapper {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 25px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
    border: 2px solid rgba(96, 165, 250, 0.2);
}

.icon-wrapper svg {
    position: relative;
    z-index: 2;
    color: #17479e;
    transition: all 0.4s ease;
    width: 48px;
    height: 48px;
}

.icon-card-inner:hover .icon-wrapper {
    transform: rotate(5deg) scale(1.1);
    background: linear-gradient(135deg, rgba(225, 27, 34, 0.1) 0%, rgba(239, 68, 68, 0.1) 100%);
    border-color: rgba(225, 27, 34, 0.3);
}

.icon-card-inner:hover .icon-wrapper svg {
    color: #e11b22;
}

/* Content Styling - CENTERED */
.icon-content {
    flex: 1;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
}

.icon-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
    color: #0f172a;
    margin-bottom: 10px;
    transition: all 0.3s ease;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
}

.icon-card-inner:hover .icon-title {
    color: #1e40af;
}

.icon-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #000;
    margin-bottom: 10px;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
}

/* Icon Variations - CENTERED */
.icon-grid::after {
    content: '';
    position: absolute;
    top: 10px;
    right: 10px;
    width: 15px;
    height: 15px;
    border: 2px solid #17479e;
    border-radius: 4px;
    opacity: 0.5;
    transition: all 0.4s ease;
}

.icon-monitor::after {
    content: '';
    position: absolute;
    top: 15px;
    right: 15px;
    width: 8px;
    height: 8px;
    background: #17479e;
    border-radius: 50%;
    opacity: 0.5;
    animation: pulse 2s infinite;
    transition: all 0.4s ease;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.2); }
}

.icon-digital::after {
    content: '';
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 12px;
    height: 12px;
    background: linear-gradient(45deg, #17479e, #17479e);
    border-radius: 2px;
    opacity: 0.5;
    transition: all 0.4s ease;
}

.icon-renewable::after {
    content: '⚡';
    position: absolute;
    bottom: 10px;
    right: 10px;
    font-size: 12px;
    opacity: 0.5;
    transition: all 0.4s ease;
}

.icon-manufacturing::after {
    content: '';
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 10px;
    height: 10px;
    border: 2px solid #17479e;
    border-radius: 50%;
    opacity: 0.5;
    transition: all 0.4s ease;
}

/* Hover Effect */
.icon-hover-effect {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 30%, rgba(96, 165, 250, 0.05) 50%, transparent 70%);
    opacity: 0;
    transition: opacity 0.6s ease;
}

.icon-card-inner:hover .icon-hover-effect {
    opacity: 1;
    animation: shine 2s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .icon-category-card {
        max-width: 350px;
        min-height: 360px;
    }
    
    .icon-card-inner {
        padding: 35px 25px;
    }
    
    .icon-title {
        font-size: 20px;
        max-width: 280px;
    }
    
    .sec-title {
        font-size: 42px;
    }
    
    .icon-wrapper {
        width: 90px;
        height: 90px;
    }
    
    .icon-wrapper svg {
        width: 44px;
        height: 44px;
    }
}

@media (max-width: 992px) {
    .icon-focus-areas {
        padding: 80px 0;
    }
    
    .icon-category-row {
        gap: 25px;
    }
    
    .icon-category-card {
        max-width: 320px;
        min-height: 340px;
    }
    
    .sec-title {
        font-size: 36px;
    }
    
    .icon-wrapper {
        width: 85px;
        height: 85px;
    }
    
    .icon-wrapper svg {
        width: 40px;
        height: 40px;
    }
    
    .icon-title {
        font-size: 19px;
        max-width: 260px;
    }
    
    .icon-desc {
        font-size: 15px;
        max-width: 260px;
    }
}

@media (max-width: 768px) {
    .icon-category-row {
        flex-direction: column;
        align-items: center;
    }
    
    .icon-category-card {
        max-width: 100%;
        width: 100%;
        min-height: auto;
    }
    
    .sec-title {
        font-size: 32px;
    }
    
    .sec-subtitle {
        font-size: 16px;
    }
    
    .icon-card-inner {
        padding: 35px 25px;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .icon-title {
        min-height: auto;
        font-size: 20px;
        max-width: 100%;
    }
    
    .icon-desc {
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .icon-focus-areas {
        padding: 60px 0;
    }
    
    .container-fluid {
        padding: 0 15px;
    }
    
    .sec-title {
        font-size: 28px;
    }
    
    .sub-title {
        font-size: 13px;
        letter-spacing: 2px;
    }
    
    .icon-card-inner {
        padding: 30px 20px;
    }
    
    .icon-header {
        margin-bottom: 25px;
    }
    
    .icon-wrapper {
        width: 80px;
        height: 80px;
    }
    
    .icon-wrapper svg {
        width: 36px;
        height: 36px;
    }
    
    .icon-title {
        font-size: 18px;
    }
    
    .icon-desc {
        font-size: 15px;
    }
}

.th-btn {
    position: relative;
    z-index: 1;
    overflow: hidden;
    vertical-align: middle;
    text-align: center;
    background-color: var(--theme-color);
    color: var(--white-color);
    font-family: var(--body-font);
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-transform: capitalize;
    border: none;
    font-size: 14px!important;
    font-weight: 400;
    padding: 15px 30px!important;
    border-radius: 10px;
    -webkit-transition: all .3s 0s ease-out;
    transition: all .3s 0s ease-out;
    gap: 8px;
}
/* ===== COMPACT WHAT WE DELIVER SECTION ===== */
.wwd-compact-section {
    position: relative;
    padding: 40px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    max-height: 1200px;
    overflow: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Title */
.wwd-sec-title {
    font-size: 36px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 15px;
    color: #0f172a;
    text-align: center;
}

/* Compact Tabs Navigation - SMOOTH ANIMATIONS */
.wwd-compact-tabs-nav {
    background: white;
    border-radius: 12px;
    padding: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(226, 232, 240, 0.8);
    margin-bottom: 20px;
}

.wwd-compact-nav-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
    width: 100%;
}

.wwd-compact-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12px 8px;
    background: white;
    border-radius: 8px;
    border: 1px solid rgba(226, 232, 240, 0.8);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    height: 80px;
    position: relative;
    overflow: hidden;
}

.wwd-compact-tab:hover {
    border-color: rgba(96, 165, 250, 0.3);
    background: rgba(96, 165, 250, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(96, 165, 250, 0.1);
}

.wwd-compact-tab.wwd-ctab-active {
    background: linear-gradient(135deg, #17479e 0%, #17479e 100%);
    border-color: transparent;
    box-shadow: 0 6px 20px rgba(96, 165, 250, 0.25);
    transform: translateY(-2px);
}

.wwd-compact-tab.wwd-ctab-active::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: #e11b22;
    animation: tabActiveLine 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes tabActiveLine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(0); }
}

.wwd-compact-tab.wwd-ctab-active .wwd-ctab-icon {
    background: white;
    color: #17479e;
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 4px 8px rgba(96, 165, 250, 0.2);
}

.wwd-compact-tab.wwd-ctab-active .wwd-ctab-text {
    color: white;
    transform: translateY(1px);
}

.wwd-ctab-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(96, 165, 250, 0.1);
    border-radius: 8px;
    color: #17479e;
    margin-bottom: 6px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.wwd-ctab-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s;
}

.wwd-compact-tab:hover .wwd-ctab-icon::after {
    width: 100%;
    height: 100%;
}

.wwd-ctab-text {
    font-size: 13px;
    font-weight: 600;
    color: #0f172a;
    line-height: 1.2;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    word-break: break-word;
    max-width: 100%;
    padding: 0 4px;
}

/* Compact Content Area - SMOOTH TRANSITIONS */
.wwd-compact-content-area {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(226, 232, 240, 0.8);
    
    overflow-y: hidden;
    position: relative;
   
}




/* Hide scrollbar but keep functionality */
.wwd-compact-content-area::-webkit-scrollbar {
    width: 6px;
}

.wwd-compact-content-area::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 3px;
}

.wwd-compact-content-area::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 3px;
    transition: background 0.3s ease;
}

.wwd-compact-content-area::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* Tab Content - SMOOTH ANIMATIONS */
.wwd-ctab-content {
    display: none;
    opacity: 0;
    transform: translateY(10px);
    animation: tabContentOut 0.3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.wwd-ctab-content.wwd-ctab-show {
    display: block;
    opacity: 1;
    transform: translateY(0);
    animation: tabContentIn 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes tabContentIn {
    0% {
        opacity: 0;
        transform: translateY(15px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes tabContentOut {
    0% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(-10px);
    }
}

/* Visual Box */
.wwd-cvisual-box {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 500px;
    margin-bottom: 15px;
    transform: translateX(-5px);
    opacity: 0;
    animation: visualSlideIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    animation-delay: 0.1s;
}

@keyframes visualSlideIn {
    0% {
        opacity: 0;
        transform: translateX(-10px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.wwd-cimg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.wwd-cvisual-box:hover .wwd-cimg {
    transform: scale(1.05);
}

.wwd-cstats {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    gap: 10px;
    padding: 10px;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    transf
    41orm: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.wwd-cvisual-box:hover .wwd-cstats {
    transform: translateY(0);
}

.wwd-cstat {
    flex: 1;
    text-align: center;
    padding: 8px 10px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    backdrop-filter: blur(4px);
    transform: scale(0.9);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.wwd-cvisual-box:hover .wwd-cstat {
    transform: scale(1);
    opacity: 1;
}

.wwd-cvisual-box:hover .wwd-cstat:nth-child(1) {
    transition-delay: 0.1s;
}

.wwd-cvisual-box:hover .wwd-cstat:nth-child(2) {
    transition-delay: 0.2s;
}

.wwd-cnum {
    font-size: 22px;
    font-weight: 800;
    color: #17479e;
    line-height: 1;
    margin-bottom: 2px;
    transition: color 0.3s ease;
}

.wwd-cstat:hover .wwd-cnum {
    color: #e11b22;
}

.wwd-clabel {
    font-size: 11px;
    font-weight: 600;
    color: #0f172a;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* Content Box */
.wwd-ccontent-box {
    padding: 0 0 0 15px;
    transform: translateX(5px);
    opacity: 0;
    animation: contentSlideIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    animation-delay: 0.2s;
}

@keyframes contentSlideIn {
    0% {
        opacity: 0;
        transform: translateX(10px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.wwd-ctitle {
    font-size: 22px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.2;
    transition: color 0.3s ease;
}

.wwd-ccontent-box:hover .wwd-ctitle {
    color: #1e40af;
}

.wwd-cdesc {
    font-size: 14px;
    line-height: 1.5;
    color: #000;
    transition: color 0.3s ease;
}

/* Features */
.wwd-cfeatures {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.wwd-cfeature {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 8px 12px;
    background: rgba(96, 165, 250, 0.05);
    border-radius: 8px;
    border-left: 3px solid rgba(96, 165, 250, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(0);
    cursor: pointer;
}

.wwd-cfeature:hover {
    background: rgba(96, 165, 250, 0.1);
    transform: translateX(5px);
    border-left-color: #e11b22;
    box-shadow: 0 4px 12px rgba(96, 165, 250, 0.1);
}

.wwd-cfeat-icon {
    color: #17479e;
    font-weight: bold;
    font-size: 16px;
    line-height: 1.2;
 
    flex-shrink: 0;
    margin-top: 1px;
    transition: color 0.3s ease;
}

.wwd-cfeature:hover .wwd-cfeat-icon {
    color: #e11b22;
    transform: scale(1.2);
}

.wwd-cfeat-text {
    font-size: 14px;
	font-weight:500;
    color: #000;
    line-height: 1.4;
    flex: 1;
    transition: color 0.3s ease;
}

.wwd-cfeature:hover .wwd-cfeat-text {
    color: #1e40af;
}

/* Outcome */
.wwd-coutcome {
    padding: 15px;
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.1) 0%, rgba(59, 130, 246, 0.05) 100%);
    border-radius: 10px;
    border-left: 4px solid #17479e;
    margin-top: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(0);
}

.wwd-coutcome:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(96, 165, 250, 0.15);
    border-left-color: #e11b22;
}

.wwd-coutcome-title {
    font-size: 14px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 6px;
    transition: color 0.3s ease;
}

.wwd-coutcome:hover .wwd-coutcome-title {
    color: #1e40af;
}

.wwd-coutcome-text {
    font-size: 13px;
    line-height: 1.5;
    color: #475569;
    font-weight: 700;
    transition: color 0.3s ease;
}

/* Grid Spacing */
.g-4 {
    --bs-gutter-x: 1rem;
    --bs-gutter-y: 1rem;
}

/* .row {
    margin: calc(var(--bs-gutter-y) * -1) 0;
} */

.col-lg-6 {
    padding: var(--bs-gutter-y) var(--bs-gutter-x);
}

/* Margin utilities */
.mb-3 { margin-bottom: 1rem !important; }
.mb-15 { margin-bottom: 0.9375rem !important; }
.mb-30 { margin-bottom: 1.875rem !important; }
.mb-40 { margin-bottom: 2.5rem !important; }

/* Responsive adjustments for 1200x800 screen */
@media (max-width: 1200px) {
    .wwd-compact-section {
        padding: 30px 0;
        max-height: 680px;
    }
    
    .wwd-sec-title {
        font-size: 32px;
    }
    
    .wwd-compact-nav-row {
        gap: 6px;
    }
    
    .wwd-compact-tab {
        padding: 10px 6px;
        height: 75px;
    }
    
    .wwd-ctab-icon {
        width: 28px;
        height: 28px;
        margin-bottom: 4px;
    }
    
    .wwd-ctab-text {
        font-size: 12px;
    }
    
    .wwd-cvisual-box {
        height: 220px;
    }
    
    .wwd-cnum {
        font-size: 20px;
    }
    
    .wwd-ctitle {
        font-size: 20px;
    }
}

@media (max-width: 992px) {
    .wwd-compact-section {
        max-height: none;
        padding: 25px 0;
    }
    
   
    
    .wwd-cvisual-box {
        height: 200px;
    }
    
    .wwd-ccontent-box {
        padding: 0;
    }
}

@media (max-width: 768px) {
    .wwd-compact-section {
        padding: 20px 0;
    }
    
    .wwd-sec-title {
        font-size: 28px;
        margin-bottom: 10px;
    }
    
    .wwd-compact-tabs-nav {
        margin-bottom: 15px;
    }
    
    .wwd-compact-nav-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .wwd-compact-tab {
        height: 70px;
        flex-direction: row;
        justify-content: flex-start;
        text-align: left;
        padding: 10px 15px;
        gap: 12px;
    }
    
    .wwd-ctab-icon {
        margin-bottom: 0;
        flex-shrink: 0;
    }
    
    .wwd-ctab-text {
        text-align: left;
        padding: 0;
    }
    
    .wwd-compact-content-area {
        padding: 15px;
       
    }
    
    .wwd-cvisual-box {
        height: 180px;
    }
    
    .wwd-ctitle {
        font-size: 18px;
    }
    
    .wwd-cfeature {
        padding: 5px 8px;
    }
    
    .wwd-cfeat-text {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .wwd-compact-section {
        padding: 15px 0;
    }
    
    .wwd-sec-title {
        font-size: 24px;
    }
    
    .wwd-compact-nav-row {
        grid-template-columns: 1fr;
    }
    
    
    
    .wwd-cvisual-box {
        height: 160px;
    }
    
    .wwd-cnum {
        font-size: 18px;
    }
     .wwd-ctitle {
        font-size: 16px;
    }
    
    .wwd-cdesc {
        font-size: 13px;
    }
}

.accelerators-horizontal {
  padding: 40px 0;
  background: linear-gradient(180deg, #f8fafc, #ffffff);
}

.steps-horizontal {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  align-items: center;
  position: relative;
}

/* Connecting Line */
.steps-horizontal::before {
  content: "";
  position: absolute;
  top: 34px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(to right, #17479e, #10b981, #8b5cf6);
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-icon{
  width: 68px;
  height: 68px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  box-shadow: 0 14px 30px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}

.step-icon svg{
  width: 34px;
  height: 34px;
  display: block;
  fill: #fff;

  /* makes different SVG paths look consistent */
  overflow: visible;
}

.step-icon.blue {
  background: linear-gradient(135deg, #17479e , #17479e );
}
.step-icon.green {
  background: linear-gradient(135deg, #17479e , #17479e );
}
.step-icon.purple {
  background: linear-gradient(135deg, #17479e , #17479e );
}

.step-icon.orange {
  background: linear-gradient(135deg, #17479e , #17479e );
}

.step-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px 15px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.06);
  max-width: 260px;
}

.step-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #000;
  margin-bottom: 8px;
}

.step-card p {
  font-size: 14px;
  color: #000;
  line-height: 1.6;
}

.step:hover .step-icon {
  transform: translateY(-6px) scale(1.05);
}


@media (max-width: 768px) {
  .steps-horizontal {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .steps-horizontal::before {
    display: none;
  }
}


.accelerators-horizontal h2,
.modern-header h2 {
  color: #17479e;       /* Dark navy */
  font-weight: 800;
  position: relative;
  z-index: 3;
}


/* UNIQUE LIGHT SECTION STYLES ONLY */
.light-cta-section {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  padding: 2
  0px 0;
  position: relative;
  overflow: hidden;
  font-family: 'Inter', sans-serif;
}

/* Animated Background Container */
.light-animated-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

/* Floating Bubbles */
.light-bubble {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
  animation: floatLight 25s infinite linear;
}

.lb1 {
  width: 300px;
  height: 300px;
  top: 10%;
  right: 5%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
  animation-duration: 30s;
}

.lb2 {
  width: 200px;
  height: 200px;
  bottom: 15%;
  left: 5%;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.06) 0%, transparent 70%);
  animation-duration: 35s;
  animation-delay: -5s;
}

.lb3 {
  width: 150px;
  height: 150px;
  top: 40%;
  right: 20%;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.07) 0%, transparent 70%);
  animation-duration: 28s;
  animation-delay: -10s;
}

.lb4 {
  width: 180px;
  height: 180px;
  bottom: 25%;
  right: 15%;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.05) 0%, transparent 70%);
  animation-duration: 32s;
  animation-delay: -15s;
}

.lb5 {
  width: 120px;
  height: 120px;
  top: 20%;
  left: 10%;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.06) 0%, transparent 70%);
  animation-duration: 26s;
  animation-delay: -20s;
}

/* Grid Pattern */
.light-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(59, 130, 246, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59, 130, 246, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  animation: gridMoveLight 40s linear infinite;
}

/* Sparkles */
.light-sparkle {
  position: absolute;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.9) 0%, transparent 70%);
  border-radius: 50%;
  animation: sparkleLight 4s infinite ease-in-out;
}

.ls1 {
  width: 8px;
  height: 8px;
  top: 30%;
  left: 20%;
  animation-delay: 0s;
}

.ls2 {
  width: 6px;
  height: 6px;
  top: 60%;
  right: 25%;
  animation-delay: 1.3s;
}

.ls3 {
  width: 10px;
  height: 10px;
  bottom: 40%;
  left: 30%;
  animation-delay: 2.7s;
}

/* Container & Layout */
.light-cta-section .container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.light-cta-section .cta-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 2;
}

/* Left Content */
.light-cta-section .cta-left h2 {
  color: #0f172a;
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 40px;
  font-weight: 700;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.9);
}

/* Buttons */
.light-cta-section .cta-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.light-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: none;
}

.light-cta-btn svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.light-cta-btn:hover svg {
  transform: scale(1.1);
}

/* Primary Button */
.primary-light {
  background: linear-gradient(135deg, #17479e 0%, #17479e 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.2);
}

.primary-light::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s;
  z-index: -1;
}

.primary-light:hover::before {
  left: 100%;
}

.primary-light:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

/* Outline Button */
.outline-light {
  background: transparent;
  color: #475569;
  border: 2px solid #e2e8f0;
  transition: all 0.3s ease;
}

.outline-light:hover {
  border-color: #17479e;
  color: #17479e;
  background: rgba(59, 130, 246, 0.05);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.1);
}

/* Profile Card */
.light-profile-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  overflow: hidden;
  max-width: 380px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.8);
  position: relative;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.light-profile-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

/* Profile Image */
.light-profile-image {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.light-profile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.light-profile-card:hover .light-profile-image img {
  transform: scale(1.05);
}

.light-profile-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: linear-gradient(135deg, #17479e 0%, #17479e 100%);
  color: white;
  font-size: 14px;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: 8px;
  letter-spacing: 2px;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

/* Profile Info */
.light-profile-info {
  padding: 24px;
}

.light-profile-info h4 {
  font-size: 22px;
  color: #0f172a;
  margin-bottom: 8px;
  font-weight: 700;
}

.light-profile-info p {
  font-size: 15px;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Animations */
@keyframes floatLight {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(20px, -20px) rotate(90deg);
  }
  50% {
    transform: translate(-15px, 15px) rotate(180deg);
  }
  75% {
    transform: translate(10px, -10px) rotate(270deg);
  }
}

@keyframes gridMoveLight {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(40px, 40px);
  }
}

@keyframes sparkleLight {
  0%, 100% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.5);
  }
}

/* Responsive */
@media (max-width: 1024px) {
  .light-cta-section .cta-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
  }
  
  .light-profile-card {
    max-width: 100%;
    width: 100%;
  }
  
  .light-cta-section .cta-left h2 {
    font-size: 36px;
  }
  
  .light-bubble {
    opacity: 0.5;
  }
}

@media (max-width: 768px) {
  .light-cta-section {
    padding: 60px 0;
  }
  
  .light-cta-section .cta-left h2 {
    font-size: 32px;
  }
  
  .light-cta-section .cta-actions {
    flex-direction: column;
  }
  
  .light-cta-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .light-cta-section .cta-left h2 {
    font-size: 28px;
  }
  
  .light-profile-info h4 {
    font-size: 20px;
  }
  
  .light-profile-info p {
    font-size: 14px;
  }
}

.ps-section-2 {
    padding: 50px 0;
    background: linear-gradient(135deg, #fff 0%, #fff 100%);
    position: relative;
    overflow: hidden;
}


/* Floating Dots */
.floating-dots {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.dot {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(30, 102, 208, 0.3), transparent);
    filter: blur(10px);
    animation: floatDot 20s infinite ease-in-out;
}

.dot-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.dot-2 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    right: 10%;
    animation-delay: 5s;
}

.dot-3 {
    width: 100px;
    height: 100px;
    top: 60%;
    left: 80%;
    animation-delay: 10s;
}

@keyframes floatDot {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}

/* Process Flow */
.process-flow {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.flow-item {
    position: relative;
    margin-bottom: 10px;
}

.flow-step {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #1e66d0, #e11d2e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 18px;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(30, 102, 208, 0.3);
}

.step-line {
    position: absolute;
    top: 60px;
    bottom: -80px;
    width: 2px;
    background: linear-gradient(to bottom, #1e66d0, #e11d2e, transparent);
    opacity: 0.5;
}

.flow-content {
    margin-left: 80px;
    display: flex;
    align-items: center;
    gap: 40px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border-radius: 20px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.flow-content:hover {
    transform: translateX(10px);
    border-color: rgba(255, 255, 255, 0.2);
   background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.highlight-words {
    position: relative;
    color: #17479e!important;
    font-weight: 800;
    padding: 0 5px;
}


.highlight-words::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 5px;
    right: 5px;
    height: 4px;
    background: linear-gradient(90deg, #17479e, #e11b22);
    border-radius: 2px;
    z-index: -1;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.flow-problem, .flow-solution {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 20px;
}

.flow-icon {
    position: relative;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.problem-icon {
    color: #e11d2e;
    background: rgba(225, 29, 46, 0.1);
    border: 2px solid rgba(225, 29, 46, 0.3);
    border-radius: 18px;
}

.solution-icon {
    color: #1e66d0;
    background: rgba(30, 102, 208, 0.1);
    border: 2px solid rgba(30, 102, 208, 0.3);
    border-radius: 18px;
}

.icon-rings {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px solid currentColor;
    border-radius: 18px;
    opacity: 0.3;
    animation: pulseRing 2s infinite;
}

.icon-pulse {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: currentColor;
    border-radius: 18px;
    opacity: 0.1;
    animation: pulseGlow 2s infinite;
}

@keyframes pulseRing {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.1); opacity: 0.1; }
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.1; }
    50% { opacity: 0.2; }
}

.flow-text {
    flex: 1;
}

.flow-text h4 {
    font-size: 16px;
    font-weight: 700;
}

.flow-text p {
    font-size: 14px;
	margin-bottom:0px;
}

.flow-transition {
    position: relative;
    width: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.transition-line {
    position: absolute;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, #e11d2e, #1e66d0);
}

.transition-arrow {
    position: relative;
    z-index: 2;
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #e11d2e, #1e66d0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    animation: slideArrow 2s infinite;
}

@keyframes slideArrow {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(10px); }
}

/* Buttons */
.btn-problem-details {
    background: transparent;
    border: 1px solid rgb(255 255 255 / 30%);
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-problem-details:hover {
    background: rgba(225, 29, 46, 0.1);
    transform: translateY(-2px);
}

/* Stats */
.solution-stats {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.stat-badge {
    background: rgba(30, 102, 208, 0.2);
    color: #1e66d0;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid rgba(30, 102, 208, 0.3);
}

/* Details Panel */
.flow-details {
    margin-left: 80px;
    margin-top: 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 0 0 20px 20px;
}

.flow-details.active {
    max-height: 300px;
}

.details-content {
    padding: 30px;
}

.details-content h5 {
    color: white;
    font-size: 18px;
    margin-bottom: 20px;
}

.details-content h6 {
    color: white;
    font-size: 16px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.details-content ul {
    list-style: none;
    padding: 0;
}

.details-content li {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.details-content li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: currentColor;
}

/* Responsive */
@media (max-width: 992px) {
    .flow-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .flow-transition {
        width: 100%;
        height: 80px;
    }
    
    .transition-line {
        width: 2px;
        height: 100%;
        background: linear-gradient(to bottom, #e11d2e, #1e66d0);
    }
    
    .transition-arrow {
        transform: rotate(90deg);
    }
    
    @keyframes slideArrow {
        0%, 100% { transform: rotate(90deg) translateY(0); }
        50% { transform: rotate(90deg) translateY(10px); }
    }
    
    .flow-problem, .flow-solution {
        width: 100%;
    }
    
    .flow-details {
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    .ps-section-2 {
        padding: 70px 0;
    }
    
    .display-4 {
        font-size: 32px;
    }
    
    .flow-step {
        display: none;
    }
    
    .flow-content {
        margin-left: 0;
    }
    
    .flow-problem, .flow-solution {
        flex-direction: column;
        text-align: center;
    }
}

.sp-ribbon-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.sp-ribbon-head {
    margin-bottom: 50px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.sp-ribbon-kicker {
    display: inline-block;
    margin-bottom: 12px;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    color: #3b82f6;
    background: rgba(59, 130, 246, 0.1);
    padding: 6px 16px;
    border-radius: 20px;
}

.sp-ribbon-title {
    margin-bottom: 16px;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: #1e293b;
    background: linear-gradient(90deg, #1e293b, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sp-ribbon-sub {
    margin-bottom: 0;
    font-size: 1.125rem;
    line-height: 1.6;
    color: #64748b;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.sp-ribbon-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 24px;
    margin-top: 20px;
}

.sp-ribbon {
    padding: 28px 24px;
    margin-bottom: 0;
    border-radius: 12px;
    background: white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.sp-ribbon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, currentColor 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sp-ribbon:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.sp-ribbon:hover::before {
    opacity: 1;
}

.sp-blue { 
    border-top-color: #3b82f6;
    color: #3b82f6;
}
.sp-navy { 
    border-top-color: #1e40af;
    color: #1e40af;
}
.sp-red { 
    border-top-color: #dc2626;
    color: #dc2626;
}

.sp-ribbon-badge {
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sp-ribbon-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}
.sp-blue .sp-ribbon-dot { 
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}
.sp-navy .sp-ribbon-dot { 
    background: linear-gradient(135deg, #1e40af, #3b82f6);
    box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.2);
}
.sp-red .sp-ribbon-dot { 
    background: linear-gradient(135deg, #dc2626, #ef4444);
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.2);
}

.sp-ribbon-body h4 {
    margin-bottom: 0;
    font-size: 1.125rem;
    line-height: 1.5;
    color: #1e293b;
    font-weight: 600;
}

.animate-on-scroll {
    margin-bottom: 0 !important;
}

@media (max-width: 768px) {
    .sp-ribbon-section {
        padding: 40px 0;
    }
    
    .sp-ribbon-title {
        font-size: 2rem;
    }
    
    .sp-ribbon-list {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .sp-ribbon {
        padding: 20px 16px;
    }
    
    .sp-ribbon-head {
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .sp-ribbon-title {
        font-size: 1.75rem;
    }
    
    .sp-ribbon-kicker {
        font-size: 0.75rem;
        padding: 4px 12px;
    }
}

@media (min-width: 768px) {

  .hero3-wrapper {
    position: relative;
    margin-top: -450px!important;

  }
}


  /* ================
   Our Latest Insights
   ================ */
.insights-area {
  padding: 40px 0;
  background: #ecf0f0;
}

.insights-header {
  margin-bottom: 40px;
}

.insights-title { text-align:center;
  font-size: 32px;
  line-height: 1.25;
  color: #003a78; /* deep blue similar to LTTS */
  font-weight: 700;
}

/* Swiper wrapper */
.insights-slider {
  position: relative;
  padding-bottom: 40px;
}

.insights-slider .swiper-slide {
  height: auto;
  display: flex;
}

/* Cards */
.insight-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 0 1px #e4e7eb;
  display: flex;
  flex-direction: column;
  height: 100%;
  text-align:center;
}

/* image-type cards */
.insight-card--image .insight-media {
  position: relative;
  overflow: hidden;
}

.insight-media img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 360px;
  object-fit: cover;
}

.insight-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 4px 12px;
  font-size: 12px;
  border-radius: 999px;
  background: #00c1a3;
  color: #ffffff;
  font-weight: 600;
}

/* overlay title for image cards */
.insight-content--overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 18px 20px 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.75), rgba(0,0,0,0));
}

.insight-content--overlay .insight-heading {
  color: #ffffff;
}

/* text-only card */
.insight-card--text {
  background: #f6f7fb;
  padding: 26px 28px;
}

.insight-card--text .insight-media--flat {
  margin-bottom: 10px;
  position: relative;
}

.insight-card--text .insight-tag {
  position: static;
  display: inline-block;
  background: #00c1a3;
  color: #ffffff;
}

.insight-content {
  padding: 0;
}

.insight-heading {
  font-size: 20px;
  line-height: 1.4;
  color: #003a78;
  margin-bottom: 12px;
  font-weight: 700;
  padding:30px;
}

.insight-text {
  font-size: 14px;
  line-height: 1.7;
  color: #4b5563;
  margin-bottom: 18px;
}

.insight-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 8px;
  background: #003a78;
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
}

/* arrows */
.insights-nav {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.insights-arrow {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border: 1px solid #d1d5db;
  background: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.insights-arrow:hover {
  background: #003a78;
  color: #ffffff;
  border-color: #003a78;
}

/* responsive tweaks */
@media (max-width: 767px) {
  .insights-title { text-align:center;
    font-size: 26px;
  }

  .insight-card--text {
    padding: 22px 20px;
  }
}


.service-item.style3 .box-title {
	font-size:18px;
}


/* Super size LinkedIn icon */
a.light-cta-btn svg path[d*="M8 11v5M8 8v.01M12 16v-3"] {
  /* This targets the parent svg via the path */
}

a.light-cta-btn svg:has(path[d*="M8 11v5M8 8v.01M12 16v-3"]) {
  width: 44px !important;
  height: 44px !important;
  transform: scale(1.8);
}

/* ===========================
   RIGHT VISUAL
=========================== */
.cta-visual {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* Image */
.image-wrapper {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.35);
}

.image-wrapper img {
  width: 100%;
  display: block;
}

/* Image Tag */
.image-tag {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(0,0,0,0.65);
  padding: 12px 18px;
  border-radius: 14px;
  font-size: 14px;
}

/* Profile Card */
.profile-card {
  background: #fff;
  color: #0b2c5d;
  padding: 5px;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}

.profile-card h4 {
  font-size: 20px;
  margin-bottom: 5px;
}

.profile-card p {
  font-size: 14px;
  opacity: 0.75;
  margin-bottom: 15px;
}

/* Tags */
.profile-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 15px;
}

.profile-tags span {
  background: #e9f0ff;
  color: #17479e;
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 30px;
}

/* Links */
.profile-links {
  display: flex;
  gap: 15px;
}

.profile-links a {
  display: flex;
  gap: 8px;
  align-items: center;
  text-decoration: none;
  font-size: 14px;
  color: #17479e;
  font-weight: 600;
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 992px) {
  .cta-box {
    grid-template-columns: 1fr;
  }

  .cta-title {
    font-size: 38px;
  }

  .cta-visual {
    max-width: 420px;
    margin: auto;
  }
}

@media (max-width: 576px) {
  .cta-modern {
    padding: 80px 0;
  }

  .cta-title {
    font-size: 32px;
  }

  .cta-desc {
    font-size: 15px;
  }
}

.solidpro-cta-modern {
  position: relative;
  padding: 30px 0;
  background: linear-gradient(135deg, #0a1931 0%, #1a2b4e 100%);
  overflow: hidden;
  font-family: 'Inter', system-ui, sans-serif;
}

/* Background Elements */
.cta-bg-elements {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.bg-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.3;
}

.bg-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(23, 71, 158, 0.2) 0%, transparent 70%);
  top: -300px;
  right: -200px;
  filter: blur(80px);
  animation: glowPulse 8s ease-in-out infinite;
}

/* Waves Container */
.waves-container {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.waves {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: scaleY(1.5);
}

/* Wave Animations */
.wave-1 {
  animation: waveMove 20s linear infinite;
  opacity: 0.8;
}

.wave-2 {
  animation: waveMove 15s linear infinite reverse;
  opacity: 0.6;
  animation-delay: -5s;
}

.wave-3 {
  animation: waveMove 25s linear infinite;
  opacity: 0.4;
  animation-delay: -10s;
}

@keyframes waveMove {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Floating Particles */
.floating-particles {
  position: absolute;
  inset: 0;
}

.particle {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: floatParticle 20s infinite linear;
}

/* Create multiple particles with different properties */
.floating-particles .particle:nth-child(1) {
  width: 4px;
  height: 4px;
  top: 20%;
  left: 10%;
  animation-duration: 25s;
  animation-delay: 0s;
  background: rgba(23, 71, 158, 0.3);
}

.floating-particles .particle:nth-child(2) {
  width: 6px;
  height: 6px;
  top: 40%;
  left: 80%;
  animation-duration: 30s;
  animation-delay: -5s;
  background: rgba(225, 27, 34, 0.2);
}

.floating-particles .particle:nth-child(3) {
  width: 3px;
  height: 3px;
  top: 70%;
  left: 30%;
  animation-duration: 20s;
  animation-delay: -10s;
  background: rgba(255, 255, 255, 0.15);
}

.floating-particles .particle:nth-child(4) {
  width: 5px;
  height: 5px;
  top: 30%;
  left: 60%;
  animation-duration: 35s;
  animation-delay: -15s;
  background: rgba(23, 71, 158, 0.25);
}

.floating-particles .particle:nth-child(5) {
  width: 2px;
  height: 2px;
  top: 60%;
  left: 20%;
  animation-duration: 18s;
  animation-delay: -7s;
  background: rgba(225, 27, 34, 0.15);
}

.floating-particles .particle:nth-child(6) {
  width: 4px;
  height: 4px;
  top: 80%;
  left: 70%;
  animation-duration: 28s;
  animation-delay: -12s;
  background: rgba(255, 255, 255, 0.1);
}

.floating-particles .particle:nth-child(7) {
  width: 3px;
  height: 3px;
  top: 25%;
  left: 40%;
  animation-duration: 22s;
  animation-delay: -8s;
  background: rgba(23, 71, 158, 0.2);
}

.floating-particles .particle:nth-child(8) {
  width: 5px;
  height: 5px;
  top: 55%;
  left: 90%;
  animation-duration: 32s;
  animation-delay: -18s;
  background: rgba(225, 27, 34, 0.18);
}

@keyframes floatParticle {
  0% {
    transform: translate(0, 0) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translate(100px, -100px) rotate(360deg);
    opacity: 0;
  }
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.05); }
}

/* Container Layout */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.cta-container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
}

/* Left Panel - Modern Traditional Design */
.cta-content-panel {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  position: relative;
  animation: fadeInUp 0.8s ease-out;
}

.cta-content-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #17479e, #e11b22, #17479e);
  background-size: 200% 100%;
  animation: gradientFlow 3s linear infinite;
}

.content-inner {
  padding: 30px;
}

/* Traditional Badge */
.traditional-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 8px 16px;
  border-radius: 30px;
  margin-bottom: 30px;
}

.badge-icon {
  color: #e11b22;
  font-size: 18px;
}

.badge-text {
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Modern Heading */
.cta-heading {
  margin-bottom: 40px;
}

.heading-line {
  display: block;
  color: #ffffff;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 5px;
  position: relative;
}

.heading-line::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #e11b22, transparent);
  border-radius: 2px;
}

@keyframes gradientFlow {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Contact Methods */
.contact-methods {
  margin: 40px 0;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  margin-bottom: 15px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}

.contact-method::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 0;
  background: #e11b22;
  border-radius: 0 3px 3px 0;
  transition: height 0.3s ease;
}

.contact-method:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(23, 71, 158, 0.3);
  transform: translateY(-2px);
}

.contact-method:hover::before {
  height: 70%;
}

.method-icon {
  width: 50px;
  height: 50px;
  background: rgba(23, 71, 158, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e11b22;
  font-size: 20px;
  flex-shrink: 0;
}

.method-content {
  flex: 1;
}

.method-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 5px;
}

.method-value {
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  display: block;
  margin-bottom: 5px;
  transition: color 0.3s ease;
}

.method-value:hover {
  color: #e11b22;
}

.method-subtext {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
}

/* Action Buttons */
.cta-action-buttons {
  display: flex;
  gap: 15px;
  margin-top: 40px;
}

.btn-primary, .btn-secondary {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 32px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(90deg, #17479e, #e11b22);
  color: white;
  border: none;
  flex: 1;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(23, 71, 158, 0.4);
}

.btn-arrow {
  margin-left: auto;
  font-size: 20px;
  transition: transform 0.3s ease;
}

.btn-primary:hover .btn-arrow {
  transform: translateX(5px);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

/* Right Panel - Visual Section */
.cta-visual-panel {
  position: relative;
  animation: fadeInUp 1s ease-out;
}

.traditional-frame {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  height: 100%;
}

.traditional-frame::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  pointer-events: none;
}

.gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 150px;
  background: linear-gradient(180deg, rgba(23, 71, 158, 0.4) 0%, transparent 100%);
  z-index: 1;
  border-radius: 20px 20px 0 0;
}

/* Person Container */
.person-container {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 25px;
}

.person-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: transform 0.5s ease;
}

.person-container:hover .person-image {
  transform: scale(1.03);
}

/* Image Badge */
.image-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  padding: 15px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 200px;
  animation: slideInRight 0.6s ease-out;
}

.badge-title {
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 5px;
}

.badge-subtitle {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
}

/* Person Info Card */
.person-info-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.person-details {
  text-align: center;
  margin-bottom: 25px;
}

.person-name {
  color: #ffffff;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 5px;
}

.person-title {
  color: #e11b22;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
}

.person-department {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  margin-bottom: 15px;
}

/* Credentials */
.person-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 15px;
}

.credential {
  background: rgba(23, 71, 158, 0.3);
  color: rgba(255, 255, 255, 0.9);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  border: 1px solid rgba(23, 71, 158, 0.5);
}

/* Connect Links */
.connect-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.connect-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.3s ease;
}

.connect-link.linkedin {
  background: rgba(10, 102, 194, 0.2);
  color: #ffffff;
  border: 1px solid rgba(10, 102, 194, 0.3);
}

.connect-link.email {
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.connect-link:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.1);
}

.connect-link i {
  font-size: 18px;
}

.connect-link.linkedin i {
  color: #0a66c2;
}

.connect-link.email i {
  color: #e11b22;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ===========================================
   RESPONSIVE DESIGN
============================================ */

@media (max-width: 1024px) {
  .cta-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .heading-line {
    font-size: 36px;
  }
  
  .content-inner {
    padding: 40px;
  }
  
  .waves-container {
    height: 150px;
  }
}

@media (max-width: 768px) {
  .solidpro-cta-modern {
    padding: 60px 0;
  }
  
  .heading-line {
    font-size: 30px;
  }
  
  .content-inner {
    padding: 30px;
  }
  
  .cta-action-buttons {
    flex-direction: column;
  }
  
  .contact-method {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .method-icon {
    margin: 0 auto;
  }
  
  .person-image {
    height: 250px;
  }
  
  .waves-container {
    height: 100px;
  }
}

@media (max-width: 480px) {
  .heading-line {
    font-size: 26px;
  }
  
  .content-inner {
    padding: 20px;
  }
  
  .contact-method {
    padding: 20px;
  }
  
  .person-info-card {
    padding: 20px;
  }
  
  .person-credentials {
    flex-direction: column;
    align-items: center;
  }
  
  .waves-container {
    height: 80px;
  }
}

/* Accessibility Enhancements */
@media (prefers-reduced-motion: reduce) {
  .bg-glow,
  .wave-1,
  .wave-2,
  .wave-3,
  .particle,
  .btn-primary::before,
  .person-image,
  .contact-method,
  .connect-link,
  .cta-content-panel::before {
    animation: none;
    transition: none;
  }
}

/* Performance Optimization */
@media (prefers-reduced-motion: reduce) {
  .floating-particles {
    display: none;
  }
}

/* ===============================
            SolidPro – LTTS Style Ribbons
            =============================== */

            .sp-ribbon-section{
                background:#fff;
               
            }

            .sp-ribbon-head{
                max-width: 760px;
                margin-bottom: 10px;
            }

            .sp-ribbon-kicker{
                display:inline-block;
                font-size: 12px;
                letter-spacing: .18em;
                text-transform: uppercase;
                font-weight: 800;
                color:#1E66D0;
                margin-bottom: 10px;
            }

            .sp-ribbon-title{
                font-size: clamp(28px, 3vw, 42px);
                line-height: 1.15;
                font-weight: 900;
                color:#070C16;
                margin-bottom: 12px;
            }

            .sp-ribbon-sub{
                font-size: 15px;
                line-height: 1.7;
                color:#5c6475;
            }

            .sp-ribbon-list{
                display:flex;
                flex-direction:column;
                gap: 18px;
            }

            /* Ribbon card */
            .sp-ribbon{
                position: relative;
                display:grid;
                grid-template-columns: 50px 1fr 220px;
                gap: 18px;
                align-items:center;
                padding: 0px 0px;
                border-radius: 16px;
                border: 1px solid #e8ecf2;
                background: #ffffff;
                box-shadow: 0 14px 30px rgba(0,0,0,.07);
                overflow:hidden;
            }

            /* subtle diagonal texture */
            .sp-ribbon::before{
                content:"";
                position:absolute;
                inset:-60px -60px auto auto;
                width: 180px;
                height: 180px;
                transform: rotate(25deg);
                opacity:.08;
               
            }

            /* Left badge "ribbon" */
            .sp-ribbon-badge{
                position: relative;
                display:flex;
                align-items:center;
                gap: 10px;
                padding: 15px 20px;
                border-radius: 12px;
                color:#fff;
                font-weight: 800;
                letter-spacing: .08em;
                text-transform: uppercase;
                font-size: 12px;
            }

            .sp-ribbon-dot{
                width: 10px;
                height: 10px;
                border-radius: 999px;
                background: rgba(255,255,255,.95);
                box-shadow: 0 0 0 4px rgba(255,255,255,.18);
            }

            .sp-ribbon-body h4{
                margin: 0 0 6px 0;
                font-size: 18px;
                font-weight: 900;
                color:#070C16;
            }

            .sp-ribbon-body p{
                margin:0;
                font-size: 14.5px;
                line-height: 1.6;
                color:#5c6475;
            }

            .sp-ribbon-meta{
                display:flex;
                justify-content:flex-end;
                gap: 10px;
                flex-wrap: wrap;
            }

            .sp-pill{
                display:inline-flex;
                align-items:center;
                padding: 8px 12px;
                border-radius: 999px;
                font-size: 12px;
                font-weight: 700;
                background:#f3f6fb;
                color:#1f2a44;
                border: 1px solid #e6ebf2;
            }

            /* Hover polish */
            .sp-ribbon:hover{
                transform: translateY(-2px);
                transition: transform .22s ease;
            }

            /* Color themes */
          
          
          
          
            /* Responsive */
            @media (max-width: 992px){
                .sp-ribbon{
                    grid-template-columns: 1fr;
                }
                .sp-ribbon-meta{
                    justify-content:flex-start;
                }
            }
			
		
			.about-item-wrap h5 {
				font-size:18px;
			}

            .brochere-download {
	min-height:250px;
}

 /* =========================
   SOLIDPRO EDAG STYLE CTA
========================= */
.solidpro-cta {
  background: #1f2a30;
  padding: 30px 0;
  position: relative;
  overflow: hidden;
  font-family: "Inter", sans-serif;
}

/* Angled background */
.solidpro-cta::before {
  content: "";
  position: absolute;
  left: -120px;
  top: 0;
  width: 72%;
  height: 100%;
  background: #222f36;
  transform: skewX(-8deg);
}

/* Layout */
.cta-wrapper {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
}

/* LEFT */
.cta-left h2 {
  color: #fff;
  font-size: 38px;
  line-height: 1.3;
  margin-bottom: 40px;
  max-width: 640px;
}

/* Buttons */
.cta-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  transition: all .3s ease;
}

.cta-btn svg {
  width: 18px;
  height: 18px;
}

/* SolidPro Pattern Button */
.cta-btn.primary {
  color: #fff;
  background: #e60032;
  background-image:
    repeating-linear-gradient(
      -45deg,
      rgba(255,255,255,0.08),
      rgba(255,255,255,0.08) 12px,
      transparent 12px,
      transparent 24px
    );
}

.cta-btn.primary:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

/* Outline */
.cta-btn.outline {
  border: 1px solid #fff;
  color: #fff;
}

.cta-btn.outline:hover {
  background: #fff;
  color: #1f2a30;
}

/* RIGHT PROFILE */
.profile-card {
  background: #fff;
  max-width: 320px;
  box-shadow: 0 30px 60px rgba(0,0,0,.45);
}

/* Image with angle */
.profile-image {
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 92% 100%, 0 100%);
}

.profile-image img {
  width: 100%;
  display: block;
}

/* Badge */
.profile-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(0,0,0,.7);
  color: #fff;
  font-size: 11px;
  padding: 6px 10px;
  letter-spacing: 2px;
}

/* Info */
.profile-info {
  padding: 16px;
}

.profile-info h4 {
  font-size: 18px;
  margin-bottom: 6px;
  color: #111;
}

.profile-info p {
  font-size: 14px;
  color: #444;
  line-height: 1.5;
  margin-bottom: 8px;
}

.profile-meta {
  display: block;
  font-size: 13px;
  color: #666;
  margin-bottom: 10px;
}


.profile-highlight {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: #0b5cff;
}

/* Responsive */
@media(max-width: 992px) {
  .cta-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }

  .solidpro-cta::before {
    width: 120%;
  }
}


/* =======================
   SIMPLE ANIMATED CONTACT
======================= */
.contact-simple {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  overflow: hidden;
  font-family: 'Inter', -apple-system, sans-serif;
}

/* Animated Background */
.bg-animation {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.circle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 204, 0, 0.1), transparent 70%);
  filter: blur(40px);
  animation: float 20s infinite ease-in-out;
}

.c1 {
  width: 300px;
  height: 300px;
  top: 10%;
  right: 10%;
  background: radial-gradient(circle, rgba(255, 204, 0, 0.15), transparent 70%);
  animation-delay: 0s;
}

.c2 {
  width: 200px;
  height: 200px;
  bottom: 20%;
  left: 10%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.1), transparent 70%);
  animation-delay: -7s;
}

.c3 {
  width: 150px;
  height: 150px;
  top: 50%;
  left: 20%;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.1), transparent 70%);
  animation-delay: -14s;
}

.grid-dots {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.03) 1px, transparent 0);
  background-size: 40px 40px;
  animation: gridMove 40s linear infinite;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Layout */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* Left Side */
.contact-left {
  padding-right: 40px;
}

.tag {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(255, 204, 0, 0.1);
  color: #ffcc00;
  font-size: 14px;
  font-weight: 600;
  border-radius: 20px;
  margin-bottom: 30px;
  border: 1px solid rgba(255, 204, 0, 0.2);
}

h2 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.1;
  color: white;
  margin-bottom: 20px;
}

h2 .dot {
  color: #ffcc00;
}

.subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 50px;
  line-height: 1.6;
}

/* Contact Methods */
.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

.contact-item:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 204, 0, 0.2);
  transform: translateX(10px);
}

.icon-wrapper {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 204, 0, 0.1);
  border-radius: 14px;
  color: #ffcc00;
  flex-shrink: 0;
}

.contact-info {
  flex: 1;
}

.label {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 6px;
  font-weight: 500;
}

.value {
  display: block;
  font-size: 18px;
  font-weight: 600;
  color: white;
}

.arrow {
  color: #ffcc00;
  font-size: 20px;
  font-weight: 300;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
}

.contact-item:hover .arrow {
  opacity: 1;
  transform: translateX(0);
}

.schedule-btn {
  padding: 10px 20px;
  background: rgba(59, 130, 246, 0.1);
  color: #17479e;
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.schedule-btn:hover {
  background: rgba(59, 130, 246, 0.2);
}

/* Main CTA */
.main-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  background: linear-gradient(135deg, #ffcc00, #ff8c00);
  color: #0f172a;
  text-decoration: none;
  border-radius: 14px;
  font-size: 18px;
  font-weight: 700;
  transition: all 0.3s ease;
}

.main-cta:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(255, 140, 0, 0.3);
  gap: 16px;
}

.main-cta svg {
  transition: transform 0.3s ease;
}

.main-cta:hover svg {
  transform: translateX(8px);
}

/* Right Side */
.contact-right {
  perspective: 1000px;
}

.profile-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transform-style: preserve-3d;
  transition: transform 0.6s ease;
}

.profile-card:hover {
  transform: rotateY(5deg) rotateX(5deg);
}

.image-container {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.profile-card:hover .image-container img {
  transform: scale(1.05);
}

.image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.9) 0%, transparent 50%);
}

.status-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(34, 197, 94, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  color: #22c55e;
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.status-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse 2s infinite ease-in-out;
}

.profile-content {
  padding: 30px;
}

.profile-content h3 {
  font-size: 28px;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
}

.role {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 24px;
  font-size: 16px;
}

.stats {
  display: flex;
  gap: 20px;
}

.stat {
  text-align: center;
  flex: 1;
}

.number {
  display: block;
  font-size: 28px;
  font-weight: 800;
  color: #ffcc00;
  line-height: 1;
  margin-bottom: 6px;
}

.stat .label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0;
}

/* Animations */
@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  33% {
    transform: translateY(-30px) rotate(120deg);
  }
  66% {
    transform: translateY(30px) rotate(240deg);
  }
}

@keyframes gridMove {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(40px);
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.2);
  }
}

/* Responsive */
@media (max-width: 992px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  
  .contact-left {
    padding-right: 0;
  }
  
  h2 {
    font-size: 40px;
  }
}

@media (max-width: 768px) {
  .contact-simple {
    padding: 60px 0;
  }
  
  h2 {
    font-size: 36px;
  }
  
  .contact-item {
    padding: 20px;
  }
  
  .stats {
    gap: 15px;
  }
  
  .stat .number {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  h2 {
    font-size: 32px;
  }
  
  .contact-item {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .contact-info {
    text-align: center;
  }
  
  .stats {
    flex-direction: column;
    gap: 15px;
  }
  
  .main-cta {
    width: 100%;
    justify-content: center;
  }
}



    /* Force LinkedIn icon to be much larger */


/* Adjust button layout to accommodate larger icon */
.light-cta-btn:nth-child(3) {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
}
/* UNIQUE LIGHT SECTION STYLES ONLY */
.light-cta-section {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  font-family: 'Inter', sans-serif;
}

/* Animated Background Container */
.light-animated-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

/* Floating Bubbles */
.light-bubble {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
  animation: floatLight 25s infinite linear;
}

.lb1 {
  width: 300px;
  height: 300px;
  top: 10%;
  right: 5%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
  animation-duration: 30s;
}

.lb2 {
  width: 200px;
  height: 200px;
  bottom: 15%;
  left: 5%;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.06) 0%, transparent 70%);
  animation-duration: 35s;
  animation-delay: -5s;
}

.lb3 {
  width: 150px;
  height: 150px;
  top: 40%;
  right: 20%;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.07) 0%, transparent 70%);
  animation-duration: 28s;
  animation-delay: -10s;
}

.lb4 {
  width: 180px;
  height: 180px;
  bottom: 25%;
  right: 15%;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.05) 0%, transparent 70%);
  animation-duration: 32s;
  animation-delay: -15s;
}

.lb5 {
  width: 120px;
  height: 120px;
  top: 20%;
  left: 10%;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.06) 0%, transparent 70%);
  animation-duration: 26s;
  animation-delay: -20s;
}

/* Grid Pattern */
.light-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(59, 130, 246, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59, 130, 246, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  animation: gridMoveLight 40s linear infinite;
}

/* Sparkles */
.light-sparkle {
  position: absolute;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.9) 0%, transparent 70%);
  border-radius: 50%;
  animation: sparkleLight 4s infinite ease-in-out;
}

.ls1 {
  width: 8px;
  height: 8px;
  top: 30%;
  left: 20%;
  animation-delay: 0s;
}

.ls2 {
  width: 6px;
  height: 6px;
  top: 60%;
  right: 25%;
  animation-delay: 1.3s;
}

.ls3 {
  width: 10px;
  height: 10px;
  bottom: 40%;
  left: 30%;
  animation-delay: 2.7s;
}

/* Container & Layout */
.light-cta-section .container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.light-cta-section .cta-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 2;
}

/* Left Content */
.light-cta-section .cta-left h2 {
  color: #0f172a;
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 40px;
  font-weight: 700;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.9);
}

/* Buttons */
.light-cta-section .cta-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.light-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: none;
}

.light-cta-btn svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.light-cta-btn:hover svg {
  transform: scale(1.1);
}

/* Primary Button */
.primary-light {
  background: linear-gradient(135deg, #17479e 0%, #17479e 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.2);
}

.primary-light::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s;
  z-index: -1;
}

.primary-light:hover::before {
  left: 100%;
}

.primary-light:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

/* Outline Button */
.outline-light {
  background: transparent;
  color: #475569;
  border: 2px solid #e2e8f0;
  transition: all 0.3s ease;
}

.outline-light:hover {
  border-color: #17479e;
  color: #17479e;
  background: rgba(59, 130, 246, 0.05);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.1);
}

/* Profile Card */
.light-profile-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  overflow: hidden;
  max-width: 380px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.8);
  position: relative;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.light-profile-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

/* Profile Image */
.light-profile-image {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.light-profile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.light-profile-card:hover .light-profile-image img {
  transform: scale(1.05);
}

.light-profile-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: linear-gradient(135deg, #17479e 0%, #17479e 100%);
  color: white;
  font-size: 14px;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: 8px;
  letter-spacing: 2px;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

/* Profile Info */
.light-profile-info {
  padding: 24px;
}

.light-profile-info h4 {
  font-size: 22px;
  color: #0f172a;
  margin-bottom: 8px;
  font-weight: 700;
}

.light-profile-info p {
  font-size: 15px;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Animations */
@keyframes floatLight {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(20px, -20px) rotate(90deg);
  }
  50% {
    transform: translate(-15px, 15px) rotate(180deg);
  }
  75% {
    transform: translate(10px, -10px) rotate(270deg);
  }
}

@keyframes gridMoveLight {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(40px, 40px);
  }
}

@keyframes sparkleLight {
  0%, 100% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.5);
  }
}

/* Responsive */
@media (max-width: 1024px) {
  .light-cta-section .cta-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
  }
  
  .light-profile-card {
    max-width: 100%;
    width: 100%;
  }
  
  .light-cta-section .cta-left h2 {
    font-size: 36px;
  }
  
  .light-bubble {
    opacity: 0.5;
  }
}

@media (max-width: 768px) {
  .light-cta-section {
    padding: 60px 0;
  }
  
  .light-cta-section .cta-left h2 {
    font-size: 32px;
  }
  
  .light-cta-section .cta-actions {
    flex-direction: column;
  }
  
  .light-cta-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .light-cta-section .cta-left h2 {
    font-size: 28px;
  }
  
  .light-profile-info h4 {
    font-size: 20px;
  }
  
  .light-profile-info p {
    font-size: 14px;
  }
}

/* ENHANCED BUTTON HOVER EFFECTS */
.light-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 12px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: none;
}

/* Button Icons */
.light-cta-btn svg {
  width: 20px;
  height: 20px;
  transition: all 0.4s ease;
  position: relative;
  z-index: 2;
}

/* Outline Button Styles */
.outline-light {
  background: linear-gradient(135deg, #17479e 0%, #2d76e6 100%);
  color: #fff;
  border: 2px solid #e2e8f0;
  position: relative;
}

/* HOVER EFFECT 1: Gradient Slide */
.outline-light::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(59, 130, 246, 0.1), 
    rgba(59, 130, 246, 0.2),
    rgba(59, 130, 246, 0.1), 
    transparent);
  transition: left 0.7s ease;
  z-index: -1;
}

.outline-light:hover::before {
  left: 100%;
}

/* HOVER EFFECT 2: Color Fill */
.outline-light::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}

.outline-light:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* HOVER EFFECT 3: Border Animation */
.outline-light {
  background-clip: padding-box;
}

.outline-light:hover {
  border-color: transparent;
  color: 000;
  box-shadow: 
    0 8px 25px rgba(59, 130, 246, 0.3),
    0 0 0 1px rgba(59, 130, 246, 0.2);
}

/* HOVER EFFECT 4: Ripple Effect */
.outline-light .ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  transform: scale(0);
  animation: ripple 0.6s linear;
  z-index: 0;
}

@keyframes ripple {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* HOVER EFFECT 5: Icon Enhancement */
.outline-light:hover svg {
  transform: scale(1.15) rotate(5deg);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

/* HOVER EFFECT 6: 3D Lift */
.outline-light {
  transform-style: preserve-3d;
  perspective: 1000px;
}

.outline-light:hover {
  transform: 
    translateY(-4px) 
    translateZ(20px);
  box-shadow: 
    0 15px 35px rgba(59, 130, 246, 0.25),
    0 5px 15px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* HOVER EFFECT 7: Text Glow */
.outline-light:hover {
  text-shadow: 0 2px 8px rgba(255, 255, 255, 0.5);
}

/* HOVER EFFECT 8: Shimmer Overlay */
.outline-light .shimmer {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 255, 255, 0.1) 50%,
    transparent 70%
  );
  transform: rotate(45deg) translateX(-100%);
  transition: transform 0.8s ease;
  z-index: 1;
}

.outline-light:hover .shimmer {
  transform: rotate(45deg) translateX(100%);
}

/* Add shimmer span to HTML */
/* Add this inside each button:
<span class="shimmer"></span>
*/

/* HOVER EFFECT 9: Pulse Animation */
@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 
      0 8px 25px rgba(59, 130, 246, 0.3),
      0 0 0 1px rgba(59, 130, 246, 0.2);
  }
  50% {
    box-shadow: 
      0 8px 35px rgba(59, 130, 246, 0.5),
      0 0 0 1px rgba(59, 130, 246, 0.3);
  }
}

.outline-light:hover {
  animation: pulse-glow 2s infinite;
}

/* HOVER EFFECT 10: Inner Glow */
.outline-light {
  box-shadow: inset 0 0 0 0 rgba(59, 130, 246, 0);
}

.outline-light:hover {
  box-shadow: inset 0 0 30px 0 rgba(59, 130, 246, 0.1);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .outline-light:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.2);
  }
  
  .outline-light:hover svg {
    transform: scale(1.1);
  }
}