@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;500;600;700&display=swap');
/* Mobile-first approach */
:root {
    --container-padding: 20px;
    --header-height: 60px;
}


/* Global font settings */
* {
    font-family: 'Raleway', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Raleway", sans-serif;
    line-height: 1.6;
    ;
   
}


 

/* SCROLL BUTTON */
.scroll-top-button {
    position: fixed;
    bottom: 30px;
    left: 30px; /* Changed from right to left */
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #21aad4;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.scroll-top-button.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.scroll-top-button i {
    color: white;
    font-size: 20px;
    position: absolute;
}

.progress-ring {
    position: absolute;
    transform: rotate(-90deg);
}

.progress-ring-circle {
    fill: transparent;
    stroke: white;
    stroke-width: 3;
    stroke-dasharray: 125.6; /* 2 * π * radius */
    stroke-dashoffset: 125.6;
    transition: stroke-dashoffset 0.1s ease;
}

/* custom scrollbar */
/* Main scrollbar styles */
::-webkit-scrollbar {
    width: 3px;
    height: 3px;
}

::-webkit-scrollbar-track {
    background: #ffffff;
    border-radius: 20px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #21aad4 0%, #21aad4 100%);
    border-radius: 20px;
    min-height: 40px;
}

::-webkit-scrollbar-corner {
    background: transparent;
}

/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: #21aad4 transparent;
}

/* Ensure hover state matches */
::-webkit-scrollbar-thumb:hover,
::-webkit-scrollbar-thumb:active {
    background: #21aad4;
}
/* Hero Section */
/* Hero Section Styles */
/* Base Styles */
/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



.hero {
    height: 47vh;
    position: relative;
    overflow: hidden;
    background: #000000;
    min-height: 400px;
}

#hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Slide Styles */
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    transform: scale(1.1);
    transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out, transform 0.8s ease-in-out;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    z-index: 2;
}

.slide.leaving {
    opacity: 0;
    visibility: hidden;
    transform: scale(0.95);
    z-index: 1;
}

/* Split Styles */
.split-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide-split {
    position: absolute;
    left: 0;
    width: 100%;
    height: calc(100% / 8);
    overflow: hidden;
    transform: translateX(-101%);
    transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
    will-change: transform;
}

.slide.active .slide-split {
    transform: translateX(0);
}

.slide.leaving .slide-split {
    transform: translateX(101%);
}

/* Split Positions and Delays */
.slide-split:nth-child(1) { top: 0%; transition-delay: 0s; }
.slide-split:nth-child(2) { top: 12.5%; transition-delay: 0.05s; }
.slide-split:nth-child(3) { top: 25%; transition-delay: 0.1s; }
.slide-split:nth-child(4) { top: 37.5%; transition-delay: 0.15s; }
.slide-split:nth-child(5) { top: 50%; transition-delay: 0.2s; }
.slide-split:nth-child(6) { top: 62.5%; transition-delay: 0.25s; }
.slide-split:nth-child(7) { top: 75%; transition-delay: 0.3s; }
.slide-split:nth-child(8) { top: 87.5%; transition-delay: 0.35s; }

/* Image Styles */
.slide-split img {
    position: absolute;
    width: 100%;
    height: 800%;
    object-fit: cover;
    transform: translateY(calc(-100% * var(--offset)));
    will-change: transform;
}

/* Image Offsets */
.slide-split:nth-child(1) img { --offset: 0; }
.slide-split:nth-child(2) img { --offset: 0.125; }
.slide-split:nth-child(3) img { --offset: 0.25; }
.slide-split:nth-child(4) img { --offset: 0.375; }
.slide-split:nth-child(5) img { --offset: 0.5; }
.slide-split:nth-child(6) img { --offset: 0.625; }
.slide-split:nth-child(7) img { --offset: 0.75; }
.slide-split:nth-child(8) img { --offset: 0.875; }

/* Content Overlay */
.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: 2;
}

/* Hero Content */
.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 3;
    width: 90%;
    max-width: 800px;
    opacity: 0;
    transition: opacity 0.5s ease 0.3s;
}

.slide.active .hero-content {
    opacity: 1;
}

.hero-content h1 {
    font-size: 42px;
    margin-bottom: 30px;
    background: rgba(0,0,0,0.5);
    padding: 20px;
    border-radius: 5px;
    line-height: 1.4;
    transform: translateY(20px);
    transition: transform 0.5s ease 0.3s;
}

.slide.active .hero-content h1 {
    transform: translateY(0);
}

/* Button Styles */
.learn-more {
    background: #21aad4;
    color: white;
    border: none;
    padding: 15px 35px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.5s ease 0.4s;
}

.slide.active .learn-more {
    transform: translateY(0);
    opacity: 1;
}

.learn-more:hover {
    background: #1c95bb;
    transform: translateY(-2px);
}

/* Navigation Styles */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.2);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    color: white;
    font-size: 20px;
    z-index: 3;
    transition: all 0.3s ease;
}

.slider-nav:hover {
    background: rgba(255,255,255,0.3);
}

.slider-nav.prev { left: 20px; }
.slider-nav.next { right: 20px; }

/* Dots Navigation */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(255,255,255,0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #21aad4;
    transform: scale(1.2);
}

/* Progress Bar */
.slide-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(255,255,255,0.2);
    z-index: 3;
}

.progress-bar {
    height: 100%;
    width: 0;
    background: #21aad4;
    transition: width 0.1s linear;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .hero-content h1 {
        font-size: 36px;
    }
}

@media (max-width: 1024px) {
    .slide-split {
        height: calc(100% / 6);
    }
    
    .slide-split img {
        height: 600%;
    }
}

@media (min-width: 800px) and (max-width: 1024px) {
    .slide-split {
        height: calc(100% / 5);
    }
    
    .slide-split img {
        height: 500%;
    }
}

@media (max-width: 992px) {
    .hero {
        height: 70vh;
        min-height: 350px;
    }

    .hero-content h1 {
        font-size: 28px;
        padding: 12px;
        margin-bottom: 15px;
    }
}

@media (max-width: 768px) {
    .hero {
        height: 60vh;
        min-height: 300px;
    }

    .hero-content {
        width: 100%;
        padding: 0 15px;
    }

    .hero-content h1 {
        font-size: 24px;
        padding: 10px;
        margin-bottom: 15px;
        line-height: 1.3;
    }

    .slide-split {
        height: calc(100% / 4);
    }

    .slide-split img {
        height: 400%;
    }

    .learn-more {
        padding: 10px 20px;
        font-size: 14px;
    }

    .slider-nav {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .hero {
        height: 50vh;
        min-height: 250px;
    }

    .hero-content h1 {
        font-size: 20px;
        padding: 8px;
        margin-bottom: 12px;
    }

    .slide-split {
        height: calc(100% / 3);
    }

    .slide-split img {
        height: 300%;
    }

    .learn-more {
        padding: 8px 16px;
        font-size: 13px;
    }

    .slider-dots {
        bottom: 15px;
    }

    .dot {
        width: 8px;
        height: 8px;
        margin: 0 4px;
    }
}

@media (max-width: 375px) {
    .hero {
        height: 45vh;
        min-height: 200px;
    }

    .hero-content h1 {
        font-size: 18px;
        padding: 6px;
        margin-bottom: 10px;
        line-height: 1.2;
    }

    .learn-more {
        padding: 6px 14px;
        font-size: 12px;
    }

    .slider-nav {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
}

@media (max-height: 480px) and (orientation: landscape) {
    .hero {
        height: 90vh;
        min-height: 180px;
    }

    .hero-content h1 {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .learn-more {
        padding: 5px 12px;
        font-size: 12px;
    }
}


/* Solutions Section */
/* Reset and Base Styles */
/* Base Reset and Variables */
:root {
    --primary-blue: #1B3168;
    --accent-blue: #21aad4;
    --text-dark: #444;
    --text-light: #555;
    --overlay-blue: rgba(33, 170, 212, 0.664);
    --shadow-card: 0 4px 15px rgba(0,0,0,0.1);
    --shadow-hover: 0 8px 25px rgba(0,0,0,0.15);
    --transition-quick: all 0.3s ease;
    --transition-medium: all 0.4s ease;
    --transition-smooth: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f8f9fa;
}

/* Solutions Section */
.solutions-section {
    max-width: 1600px;
    margin: 0 auto;
    padding: 60px 30px;
    overflow: hidden;
}

/* Header Styles */
.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-header h1 {
    font-size: 26px;
    color: var(--primary-blue);
    margin-bottom: 25px;
    line-height: 1.2;
}

.section-header h2 {
    color: var(--primary-blue);
    font-size: 24px;
    margin-bottom: 20px;
    line-height: 1.3;
    text-transform: uppercase;
}

.section-header h3 {
    color: var(--accent-blue);
    font-size: 22px;
    margin-bottom: 25px;
}

.section-header p {
    max-width: 1200px;
    margin: 0 auto;
    color: var(--text-dark);
    font-size: 21px;
    line-height: 1.6;
}

/* Solutions Grid */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    padding: 20px;
}

/* Solution Cards */
.solution-card {
    background: white;
    border-radius: 16px;
    overflow: visible;
    box-shadow: var(--shadow-card);
    transition: var(--transition-medium);
    position: relative;
    min-width: 0;
}

/* Card Image Container */
.card-image {
    height: 300px;
    overflow: hidden;
    position: relative;
    border-radius: 16px 16px 0 0;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
    will-change: transform;
}

/* Split Overlay */
.split-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    z-index: 1;
    pointer-events: none;
}

.split-overlay .split-piece {
    position: relative;
    width: 100%;
    height: 100%;
    background: var(--overlay-blue);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Icon Circle */
.icon-circle {
    position: absolute;
    top: 270px;
    left: 25px;
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.15);
    transition: var(--transition-medium);
    z-index: 2;
}

.icon-circle i {
    font-size: 24px;
    color: var(--accent-blue);
    transition: var(--transition-quick);
}

/* Card Content */
.card-content {
    padding: 45px 25px 35px;
}

.card-content h4 {
    color: var(--primary-blue);
    font-size: 26px;
    margin-bottom: 20px;
    line-height: 1.3;
    transition: var(--transition-quick);
}

.card-content p {
    color: var(--text-light);
    font-size: 18px;
    margin-bottom: 25px;
    line-height: 1.6;
}

.read-more {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-quick);
}

.read-more i {
    transition: var(--transition-quick);
}

/* Hover Effects */
.solution-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

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

.solution-card:hover .icon-circle {
    background: var(--accent-blue);
    transform: scale(1.1) rotate(360deg);
}

.solution-card:hover .icon-circle i {
    color: white;
}

.solution-card:hover h4 {
    color: var(--accent-blue);
}

.solution-card:hover .read-more {
    color: var(--accent-blue);
}

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

/* Split Overlay Animation Delays */
.split-piece:nth-child(1) { transition-delay: 0s; }
.split-piece:nth-child(2) { transition-delay: 0.08s; }
.split-piece:nth-child(3) { transition-delay: 0.16s; }
.split-piece:nth-child(4) { transition-delay: 0.24s; }

.solution-card:not(:hover) .split-piece:nth-child(4) {
    transform: translateY(100%);
    transition-delay: 0.24s;
}
.solution-card:not(:hover) .split-piece:nth-child(3) {
    transform: translateY(100%);
    transition-delay: 0.16s;
}
.solution-card:not(:hover) .split-piece:nth-child(2) {
    transform: translateY(100%);
    transition-delay: 0.08s;
}
.solution-card:not(:hover) .split-piece:nth-child(1) {
    transform: translateY(100%);
    transition-delay: 0s;
}

/* Responsive Design */
@media screen and (max-width: 1400px) {
    .section-header h1 { font-size: 42px; }
    .section-header h2 { font-size: 28px; }
    .section-header h3 { font-size: 24px; }
    .section-header p { font-size: 20px; }
    .solution-card { min-width: 0; }
    .card-content h4 { font-size: 22px; }
    .card-content p { font-size: 16px; }
    .card-image { height: 250px; }
    .icon-circle { top: 220px; }
}

@media screen and (max-width: 1200px) {
    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .card-content h4 { font-size: 20px; }
    .card-content p { font-size: 14px; }
    .card-image { height: 220px; }
    .icon-circle {
        top: 190px;
        width: 50px;
        height: 50px;
    }
    .icon-circle i { font-size: 20px; }
}

@media screen and (max-width: 992px) {
    .solutions-section { padding: 40px 20px; }
    .solutions-grid { gap: 30px; }
    .card-content {
        padding: 35px 15px 25px;
    }
    .card-content h4 {
        font-size: 18px;
        margin-bottom: 15px;
    }
    .card-content p {
        font-size: 13px;
        margin-bottom: 20px;
    }
    .read-more { font-size: 14px; }
}

@media screen and (max-width: 768px) {
    .solutions-section { padding: 40px 20px; }
    .section-header h1 { font-size: 36px; }
    .section-header h2 { font-size: 24px; }
    .section-header h3 { font-size: 20px; }
    .section-header p { font-size: 18px; }
    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .card-image { height: 250px; }
    .icon-circle {
        top: 220px;
        width: 50px;
        height: 50px;
    }
}

@media screen and (max-width: 480px) {
    .section-header h1 { font-size: 32px; }
    .section-header h2 { font-size: 20px; }
    .card-image { height: 200px; }
    .icon-circle { top: 170px; }
    .card-content { padding: 35px 20px 25px; }
}

/* Print Styles */
@media print {
    .solutions-section {
        padding: 20px;
    }
    .solution-card {
        break-inside: avoid;
        box-shadow: none;
    }
    .split-overlay,
    .icon-circle {
        display: none;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .solution-card,
    .card-image img,
    .icon-circle,
    .split-overlay .split-piece,
    .read-more,
    .read-more i {
        transition: none;
    }
}

/* SECTORS THAT WE SUPPORT */
/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    background: #f0f2f5;
    font-size: larger;
}

/* Animations */


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

/* Section styles */
.sectors-section {
    padding: 40px 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Header styles */
.header {
    text-align: center;
    margin-bottom: 60px;
    padding: 0 20px;
}

.header h1 {
    color: #21aad4;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 10px;
}

.header h2 {
    color: #003366;
    font-size: clamp(1.5rem, 3vw, 2rem);
}

/* Grid layout */
.sectors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
    gap: clamp(15px, 3vw, 30px);
    perspective: 1000px;
}

/* Card styles */
.sector-card {
    background: #21aad4;
    border-radius: 20px;
    padding: clamp(20px, 4vw, 30px);
    color: white;
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
    transform-style: preserve-3d;
    cursor: pointer;
}

.sector-card:hover {
    transform: translateY(-15px) rotateX(10deg);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.sector-icon {
    font-size: clamp(2em, 5vw, 3em);
    margin-bottom: 20px;
    display: inline-block;
    animation: float 3s ease-in-out infinite;
}

.sector-title {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    font-weight: bold;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.sector-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: white;
    transition: width 0.4s ease;
}

.sector-card:hover .sector-title::after {
    width: 100%;
}

.sector-description {
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    line-height: 1.6;
    opacity: 0.9;
}

.sector-details {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.5s ease;
    margin-top: 15px;
    padding: 0 15px;
    font-size: clamp(0.85rem, 1.4vw, 0.95rem);
}

.sector-card:hover .sector-details {
    max-height: 200px;
    opacity: 1;
    padding: 15px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
}

/* Shine effect */
.sector-card::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: 0.5s;
}

.sector-card:hover::before {
    left: 100%;
}

/* Responsive animations */
@media (hover: hover) {
    .sector-card:hover {
        transform: translateY(-15px) rotateX(10deg);
    }
}

@media (hover: none) {
    .sector-card:active {
        transform: translateY(-5px);
    }
}

/* Media queries */
@media screen and (max-width: 768px) {
    .sectors-section {
        padding: 20px 0;
    }

    .header {
        margin-bottom: 40px;
    }

    .sector-card {
        transform: none !important;
    }

    .sector-details {
        max-height: none;
        opacity: 1;
        padding: 15px;
        background: rgba(255,255,255,0.1);
        border-radius: 10px;
    }
}





/* OUR LEADERSHIP */
/* LEADERSHIP SECTION */
:root {
    --primary-blue: #13294B;
    --primary-yellow: #21aad4;
    --banner-green: #58a43b;
    --text-gray: #666666;
    --background: #f8f9fa;
    --card-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    --hover-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, sans-serif;
    background-color: var(--background);
}

.leadership-section {
    padding: 80px 0;
    background: white;
}

.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
}

.content-wrapper {
    display: flex;
    gap: 80px;
}

.leadership-header {
    flex: 0 0 380px;
}

.leadership-header h1 {
    color: var(--primary-blue);
    font-size: 42px;
    font-weight: 600;
    margin: 0 0 24px 0;
    line-height: 1.2;
    position: relative;
}

.leadership-header h1::after {
    content: '';
    position: absolute;
    bottom: -16px;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--primary-yellow);
}

.leadership-header p {
    color: var(--text-gray);
    font-size: 17px;
    line-height: 1.7;
    margin: 32px 0;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--primary-yellow);
    color: white;
    padding: 16px 32px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%;
    height: 300%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%) rotate(45deg) scale(0);
    transition: transform 0.5s ease;
}

.cta-button:hover {
    background: #58a43b;
    transform: translateY(-2px);
}

.cta-button:hover::after {
    transform: translate(-50%, -50%) rotate(45deg) scale(1);
}

.leadership-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.leader-card {
    background: rgb(255, 255, 255);
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
}

.leader-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--hover-shadow);
}

.image-wrapper {
    position: relative;
    aspect-ratio: 1/1;
    overflow: hidden;
}

.leader-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.leader-card:hover .leader-image {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.274); /* Solid overlay color for a professional look */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateX(-100%); /* Start off-screen to the left */
    transition: opacity 0.4s ease, transform 0.4s ease; /* Fast transition for hover-in */
}

.leader-card:hover .image-overlay {
    opacity: 1;
    transform: translateX(0); /* Slide in to the original position */
    transition: opacity 0.4s ease, transform 0.9s ease; /* Fast transition for hover-in */
}

/* Slower transition for hover-out */
.leader-card:not(:hover) .image-overlay {
    transition: opacity 1s ease, transform 0.5s ease; /* Slower transition for hover-out */
}

.image-overlay span {
    color: white;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    padding-bottom: 4px; /* Space for the underline effect */
}

.image-overlay span::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-yellow);
    transition: width 0.9s ease;
}

.leader-card:hover .image-overlay span::after {
    width: 100%;
}
.arrow-icon {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: white;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.leader-card:hover .arrow-icon {
    background: var(--primary-yellow);
    color: white;
}

.leader-info {
    padding: 24px;
}

.leader-info h2 {
    color: var(--primary-blue);
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 8px 0;
}

.leader-info p {
    color: var(--text-gray);
    font-size: 15px;
    margin: 0;
}

@media (max-width: 1200px) {
    .content-wrapper {
        flex-direction: column;
        gap: 60px;
    }
    
    .leadership-header {
        flex: none;
        max-width: 600px;
    }
}

@media (max-width: 768px) {
    .leadership-section {
        padding: 60px 0;
    }

    .leadership-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .leadership-header h1 {
        font-size: 36px;
    }

    .content-wrapper {
        gap: 40px;
    }
}

@media (max-width: 480px) {
    .leadership-header h1 {
        font-size: 32px;
    }
    
    .container {
        padding: 0 20px;
    }
}




/* footer */
/* DAYAH Footer Specific Styles */
/* Reset and Base Styles */
:root {
    --primary: #21aad4;
    --accent: #78bb3f;
    --white: #fff;
    --dark: #333;
    --border: rgba(255,255,255,.1);
    --trans: .3s ease;
    --shadow: 0 4px 15px rgba(0,0,0,.1);
  }
  
  .footer {
    width: 100%;
    color: var(--white);
    font-family: system-ui, -apple-system, sans-serif;
  }
  
  .discover-banner {
    padding: 24px 5%;
    background: var(--primary) url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0L60 30L30 60L0 30Z' fill='none' stroke='rgba(255,255,255,.15)'/%3E%3C/svg%3E");
  }
  
  .banner-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
  }
  
  .banner-content p {
    font-weight: 700;
    font-size: 1.2rem;
  }
  
  .brochure-btn {
    background: var(--accent);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--trans);
  }
  
  .brochure-btn:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
  }
  
  .footer-main {
    background: #fff8f8;
    padding: 60px 5%;
    color: var(--dark);
  }
  
  .footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .footer-brand {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  
  .footer-logo { width: 200px }
  
  .brand-tagline {
    font-size: 18px;
    line-height: 1.6;
    font-weight: 700;
  }
  
  .signup-wrapper {
    width: 100%;
    max-width: 400px;
  }
  
  .signup-container {
    display: flex;
    gap: 8px;
    background: linear-gradient(90deg, rgba(0,0,0,.1), transparent);
    padding: 8px;
    border-radius: 30px;
  }
  
  .signup-input {
    flex: 1;
    padding: 12px 20px;
    border: 1px solid rgba(0,0,0,.1);
    border-radius: 30px;
  }
  
  .signup-btn {
    background: var(--accent);
    color: var(--white);
    padding: 12px 24px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--trans);
  }
  
  .signup-btn:hover {
    background: var(--primary);
    transform: translateX(5px);
  }
  
  .social-links {
    display: flex;
    gap: 16px;
  }
  
  .social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: transform .4s cubic-bezier(.68,-.55,.265,1.55);
  }
  
  .social-link:hover {
    transform: rotate(360deg) scale(1.2);
  }
  
  .social-link.facebook { background: #4267B2 }
  .social-link.twitter { background: #000 }
  .social-link.linkedin { background: #0A66C2 }
  .social-link.youtube { background: #FF0000 }
  .social-link.instagram {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  }
  
  .footer-column {
    position: relative;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='100%25' viewBox='0 0 100 400'%3E%3Cg fill='%23f0f0f0' fill-opacity='.6'%3E%3Cpath d='M20 10C14.477 10 10 14.477 10 20c0 5.523 4.477 10 10 10s10-4.477 10-10c0-5.523-4.477-10-20-10zM20 50l-5 15h10l-5 15 15-20H25l5-10z'/%3E%3Cpath d='M20 90c-8.284 0-15 6.716-15 15 0 8.284 6.716 15 15 15 8.284 0 15-6.716 15-15 0-8.284-6.716-15-15-15z'/%3E%3C/g%3E%3C/svg%3E") no-repeat left center;
    padding-left: 40px;
  }
  
  .footer-column h3 {
    font-size: 22px;
    margin-bottom: 24px;
    position: relative;
  }
  
  .footer-column h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent);
  }
  
  .footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .footer-column li { margin-bottom: 12px }
  
  .footer-column a {
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--trans);
  }
  
  .footer-column a i {
    font-size: 12px;
    transition: transform var(--trans);
  }
  
  .footer-column a:hover {
    color: var(--accent);
    transform: translateX(10px);
  }
  
  .footer-column a:hover i {
    transform: translateX(5px);
  }
  
  .footer-column address {
    font-style: normal;
  }
  
  .footer-column address p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .footer-column address i {
    color: var(--accent);
    width: 20px;
  }
  
  .footer-bottom {
    padding: 24px 5%;
    background: var(--primary);
    border-top: 1px solid var(--border);
  }
  
  .footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .copyright-link, .surge-link {
    color: var(--white);
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }
  
  .copyright-icon {
    font-size: 1.2em;
    filter: drop-shadow(0 2px 2px rgba(0,0,0,.2));
    background: linear-gradient(135deg, #fff 10%, #e6e6e6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transform: translateY(-1px);
  }
  
  .copyright-link:hover .copyright-icon {
    transform: translateY(-2px);
  }
  
  @media (max-width: 992px) {
    .footer-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 30px;
    }
    .footer-brand {
      grid-column: 1/-1;
      text-align: center;
    }
  }
  
  @media (max-width: 768px) {
    .banner-content, .signup-container {
      flex-direction: column;
      text-align: center;
    }
    .footer-grid {
      grid-template-columns: 1fr;
    }
    .footer-column {
      text-align: center;
      padding: 20px;
    }
    .footer-column h3::after {
      left: 50%;
      transform: translateX(-50%);
    }
    .footer-bottom-content {
      flex-direction: column;
      gap: 10px;
    }
  }
  
  @media (max-width: 480px) {
    .footer { font-size: 14px }
    .footer-logo { width: 120px }
    .social-link {
      width: 32px;
      height: 32px;
    }
  }
  /* Add these properties to remove underlines */
.brochure-btn {
    text-decoration: none;
  }
  
  .footer-column a {
    text-decoration: none;
  }
  
  .footer-column address a {
    text-decoration: none;
  }
  
  .social-link {
    text-decoration: none;
  }
  
  .social-link:hover {
    text-decoration: none;
  }
  
  .copyright-link, .surge-link {
    text-decoration: none;
  }
  
  .copyright-link:hover, .surge-link:hover {
    text-decoration: none;
  }

  .signup-btn.loading {
    opacity: 0.7;
    cursor: not-allowed;
}

.fa-spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
/* Message styling for signup form */
.message {
    margin-top: 15px;
    padding: 12px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    opacity: 1;
    transition: opacity 0.3s ease;
    text-align: center;
    width: 100%;
    max-width: 400px;
}

.message.success {
    background-color: rgba(120, 187, 63, 0.15);
    color: #78bb3f;
    border: 1px solid rgba(120, 187, 63, 0.3);
}

.message.error {
    background-color: rgba(255, 76, 76, 0.15);
    color: #ff4c4c;
    border: 1px solid rgba(255, 76, 76, 0.3);
}

/* Loading state for button */
.signup-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Message animation */
@keyframes slideIn {
    from {
        transform: translateY(-10px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.message {
    animation: slideIn 0.3s ease forwards;
}

/* Custom styling for different message types */
.message::before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-right: 8px;
}

.message.success::before {
    content: "\f00c"; /* Checkmark icon */
    color: #78bb3f;
}

.message.error::before {
    content: "\f071"; /* Warning icon */
    color: #ff4c4c;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .message {
        font-size: 13px;
        padding: 10px 16px;
    }
}

/* Make sure messages are visible in the signup wrapper */
.signup-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}