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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    overflow-x: hidden;
    width: 100%;
}

@media (prefers-reduced-motion: prefer-reduced-motion) {
    html {
        scroll-behavior: auto;
    }
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    padding-top: 0;
    margin-top: 0;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    position: relative;
}

.hero-container {
    width: 100%;
    max-width: 100%;
    height: auto;
    padding: 1.25rem;
    margin-top: 85px;
    overflow: hidden;
}

@media (min-width: 640px) {
    .hero-container {
        padding: 1.5rem;
        margin-top: 75px;
    }
}

@media (min-width: 1024px) {
    .hero-container {
        padding: 2rem;
        margin-top: 80px;
    }
}

.hero-slider-wrapper {
    position: relative;
    width: 100%;
    max-width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(72, 178, 229, 0.15);
}

@media (max-width: 640px) {
    .hero-slider-wrapper {
        aspect-ratio: 16 / 9;
        border-radius: 0.5rem;
    }
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    cursor: default;
}

.slide.clickable {
    cursor: default;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.slider-controls {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    z-index: 20;
}

@media (max-width: 640px) {
    .slider-controls {
        bottom: 1rem;
        gap: 0.5rem;
    }
}

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

@media (max-width: 640px) {
    .dot {
        width: 0.6rem;
        height: 0.6rem;
    }
}

.dot.active {
    width: 1.75rem;
    border-radius: 0.375rem;
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.1);
}

.partners-section {
    width: 100%;
    max-width: 100%;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafb 100%);
    padding: 1.5rem 1rem;
    margin-top: 0;
    position: relative;
    overflow: hidden;
    padding-bottom: 3rem;
}

@media (min-width: 640px) {
    .partners-section {
        padding: 2rem 1.5rem 3.5rem 1.5rem;
    }
}

@media (min-width: 1024px) {
    .partners-section {
        padding: 2.5rem 2rem 4rem 2rem;
    }
}

.partners-wave-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.partners-wave-bottom svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
    transform: rotate(180deg);
}

.partners-wave-bottom .shape-fill {
    fill: #e0f2fe;
}

@media (max-width: 768px) {
    .partners-wave-bottom svg {
        height: 40px;
    }
}

@media (max-width: 480px) {
    .partners-wave-bottom svg {
        height: 30px;
    }
}

.partners-title {
    text-align: center;
    font-size: 1.25rem;
    font-weight: 700;
    color: #094471;
    margin-bottom: 1rem;
    text-transform: capitalize;
    letter-spacing: 0.05em;
}

@media (min-width: 640px) {
    .partners-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .partners-title {
        font-size: 1.75rem;
        margin-bottom: 1.75rem;
    }
}

@media (max-width: 480px) {
    .partners-title {
        font-size: 1rem;
    }
}

.logos-wrapper {
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    border-radius: 0.5rem;
    padding: 1rem 0;
}

@media (min-width: 640px) {
    .logos-wrapper {
        border-radius: 0.75rem;
        padding: 1.25rem 0;
    }
}

@media (min-width: 1024px) {
    .logos-wrapper {
        padding: 1.5rem 0;
    }
}

.logos-slider {
    display: flex;
    gap: 1.5rem;
    animation: scroll-logos 30s linear infinite;
    width: max-content;
    padding: 0.5rem 1rem;
}

@media (max-width: 640px) {
    .logos-slider {
        gap: 1rem;
        padding: 0.5rem;
    }
}

.logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 160px;
    padding: 0.75rem;
    background: transparent;
    border-radius: 0;
    transition: all 0.3s ease;
}

@media (max-width: 640px) {
    .logo-item {
        width: 120px;
        padding: 0.5rem;
    }
}

@media (max-width: 480px) {
    .logo-item {
        width: 100px;
        padding: 0.4rem;
    }
}

.logo-item.clickable {
    cursor: pointer;
}

.logo-item.clickable:hover {
    transform: scale(1.05);
    box-shadow: none;
}

.logo-image-wrapper {
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
}

@media (max-width: 640px) {
    .logo-image-wrapper {
        height: 80px;
        margin-bottom: 0.35rem;
    }
}

@media (max-width: 480px) {
    .logo-image-wrapper {
        height: 70px;
        margin-bottom: 0.25rem;
    }
}

.logo-item img {
    max-width: 85%;
    max-height: 85%;
    object-fit: contain;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.logo-item.clickable img:hover {
    opacity: 1;
    transform: scale(1.1);
}

.logo-item.non-clickable {
    opacity: 0.7;
}

.logo-name {
    text-align: center;
    color: #094471;
    font-weight: 600;
    font-size: 0.9rem;
    line-height: 1.3;
    width: 100%;
    padding: 0 0.25rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 640px) {
    .logo-name {
        font-size: 0.7rem;
        padding: 0 0.15rem;
    }
}

@media (max-width: 480px) {
    .logo-name {
        font-size: 0.65rem;
        padding: 0 0.1rem;
    }
}

@keyframes scroll-logos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-180px * 4));
    }
}

.about-section {
    width: 100%;
    background: linear-gradient(360deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 3rem 1.25rem;
}

@media (min-width: 640px) {
    .about-section {
        padding: 4rem 1.5rem;
    }
}

@media (min-width: 1024px) {
    .about-section {
        padding: 5rem 2rem;
    }
}

.about-container {
    max-width: 1600px;
    margin: 0 auto;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

@media (min-width: 1024px) {
    .about-grid {
        gap: 4rem;
    }
}

.about-content {
    order: 2;
}

@media (min-width: 768px) {
    .about-content {
        order: 1;
    }
}

.about-title {
    font-size: 2rem;
    font-weight: 700;
    color: #094471;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-transform: capitalize;
}

@media (min-width: 640px) {
    .about-title {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .about-title {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .about-title {
        font-size: 1.5rem;
    }
}

.about-description {
    color: #4b5563;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .about-description {
        font-size: 1.05rem;
        line-height: 1.8;
    }
}

@media (max-width: 480px) {
    .about-description {
        font-size: 0.875rem;
        line-height: 1.6;
    }
}

.about-description p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.about-description h1,
.about-description h2,
.about-description h3,
.about-description h4 {
    color: #094471;
    font-weight: 600;
    margin: 1.5rem 0 0.75rem 0;
    line-height: 1.3;
}

.about-description h1 {
    font-size: 1.8rem;
}

.about-description h2 {
    font-size: 1.5rem;
}

.about-description h3 {
    font-size: 1.3rem;
}

.about-description h4 {
    font-size: 1.1rem;
}

.about-description ul {
    list-style-type: disc;
    margin-left: 2rem;
    margin-bottom: 1.5rem;
    padding-left: 0;
}

.about-description ol {
    list-style-type: decimal;
    margin-left: 2rem;
    margin-bottom: 1.5rem;
    padding-left: 0;
}

.about-description ul li,
.about-description ol li {
    margin-bottom: 0.75rem;
    padding-left: 0.5rem;
    line-height: 1.7;
}

.about-description ul ul,
.about-description ol ol,
.about-description ul ol,
.about-description ol ul {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.about-description strong,
.about-description b {
    color: #1f2937;
    font-weight: 600;
}

.about-description em,
.about-description i {
    font-style: italic;
}

.about-description a {
    color: white;
    text-decoration: none;
}

.about-description blockquote {
    border-left: 4px solid #48b2e5;
    padding-left: 1rem;
    margin: 1rem 0;
    font-style: italic;
    color: #6b7280;
}

.read-more-btn a {
    color: white;
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #48b2e5;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    text-decoration: none;
}

.read-more-btn:hover {
    background: #3a9acc;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(72, 178, 229, 0.3);
}

.read-more-btn i {
    transition: transform 0.3s ease;
}

.read-more-btn:hover i {
    transform: translateX(4px);
}

.about-image-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(72, 178, 229, 0.2);
    order: 1;
}

@media (min-width: 768px) {
    .about-image-slider {
        order: 2;
    }
}

.about-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.about-slide.active {
    opacity: 1;
}

.about-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    color: white;
    padding: 1.5rem 1rem;
}

.about-slide-title {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.about-slide-text {
    font-size: 0.9rem;
    opacity: 0.95;
}

.empty-state {
    text-align: center;
    padding: 2rem 1rem;
    color: #9ca3af;
    width: 100%;
}

.empty-state i {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    opacity: 0.5;
}

.empty-state p {
    font-size: 0.9rem;
    color: #6b7280;
}

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

.fade-in {
    animation: fadeIn 0.5s ease-in;
}

body {
    opacity: 0;
    transition: opacity 0.3s ease-in;
}

body.loaded {
    opacity: 1;
}

nav {
    opacity: 1 !important;
}

.slide-view-btn {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    background: rgba(72, 178, 229, 0.9);
    color: white;
    padding: 0.75rem 1.25rem;
    border-radius: 0.5rem;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    z-index: 10;
    display: none;
}

@media (max-width: 640px) {
    .slide-view-btn {
        bottom: 1rem;
        left: 1rem;
        padding: 0.4rem 0.7rem;
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .slide-view-btn {
        bottom: 0.75rem;
        left: 0.75rem;
        padding: 0.35rem 0.6rem;
        font-size: 0.65rem;
    }
}

.slide.clickable .slide-view-btn {
    display: block;
}

.slide-view-btn:hover {
    background: rgba(72, 178, 229, 1);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(72, 178, 229, 0.4);
}

.slide-view-btn i {
    margin-right: 0.3rem;
    font-size: 0.8rem;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    overflow-x: hidden;
    width: 100%;
}

@media (prefers-reduced-motion: prefer-reduced-motion) {
    html {
        scroll-behavior: auto;
    }
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    padding-top: 0;
    margin-top: 0;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    position: relative;
}

.hero-container {
    width: 100%;
    max-width: 100%;
    height: auto;
    padding: 1.25rem;
    margin-top: 85px;
    overflow: hidden;
}

@media (min-width: 640px) {
    .hero-container {
        padding: 1.5rem;
        margin-top: 75px;
    }
}

@media (min-width: 1024px) {
    .hero-container {
        padding: 2rem;
        margin-top: 80px;
    }
}

.hero-slider-wrapper {
    position: relative;
    width: 100%;
    max-width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(72, 178, 229, 0.15);
}

@media (max-width: 640px) {
    .hero-slider-wrapper {
        aspect-ratio: 16 / 9;
        border-radius: 0.5rem;
    }
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    cursor: default;
}

.slide.clickable {
    cursor: default;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.slider-controls {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    z-index: 20;
}

@media (max-width: 640px) {
    .slider-controls {
        bottom: 1rem;
        gap: 0.5rem;
    }
}

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

@media (max-width: 640px) {
    .dot {
        width: 0.6rem;
        height: 0.6rem;
    }
}

.dot.active {
    width: 1.75rem;
    border-radius: 0.375rem;
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.1);
}

.partners-section {
    width: 100%;
    max-width: 100%;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafb 100%);
    padding: 1.5rem 1rem;
    margin-top: 0;
    position: relative;
    overflow: hidden;
    padding-bottom: 3rem;
}

@media (min-width: 640px) {
    .partners-section {
        padding: 2rem 1.5rem 3.5rem 1.5rem;
    }
}

@media (min-width: 1024px) {
    .partners-section {
        padding: 2.5rem 2rem 4rem 2rem;
    }
}

.partners-wave-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.partners-wave-bottom svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
    transform: rotate(180deg);
}

.partners-wave-bottom .shape-fill {
    fill: #e0f2fe;
}

@media (max-width: 768px) {
    .partners-wave-bottom svg {
        height: 40px;
    }
}

@media (max-width: 480px) {
    .partners-wave-bottom svg {
        height: 30px;
    }
}

.partners-title {
    text-align: center;
    font-size: 1.25rem;
    font-weight: 700;
    color: #094471;
    margin-bottom: 1rem;
    text-transform: capitalize;
    letter-spacing: 0.05em;
}

@media (min-width: 640px) {
    .partners-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .partners-title {
        font-size: 1.75rem;
        margin-bottom: 1.75rem;
    }
}

@media (max-width: 480px) {
    .partners-title {
        font-size: 1rem;
    }
}

.logos-wrapper {
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    border-radius: 0.5rem;
    padding: 1rem 0;
}

@media (min-width: 640px) {
    .logos-wrapper {
        border-radius: 0.75rem;
        padding: 1.25rem 0;
    }
}

@media (min-width: 1024px) {
    .logos-wrapper {
        padding: 1.5rem 0;
    }
}

.logos-slider {
    display: flex;
    gap: 1.5rem;
    animation: scroll-logos 30s linear infinite;
    width: max-content;
    padding: 0.5rem 1rem;
}

@media (max-width: 640px) {
    .logos-slider {
        gap: 1rem;
        padding: 0.5rem;
    }
}

.logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 160px;
    padding: 0.75rem;
    background: transparent;
    border-radius: 0;
    transition: all 0.3s ease;
}

@media (max-width: 640px) {
    .logo-item {
        width: 120px;
        padding: 0.5rem;
    }
}

@media (max-width: 480px) {
    .logo-item {
        width: 100px;
        padding: 0.4rem;
    }
}

.logo-item.clickable {
    cursor: pointer;
}

.logo-item.clickable:hover {
    transform: scale(1.05);
    box-shadow: none;
}

.logo-image-wrapper {
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
}

@media (max-width: 640px) {
    .logo-image-wrapper {
        height: 80px;
        margin-bottom: 0.35rem;
    }
}

@media (max-width: 480px) {
    .logo-image-wrapper {
        height: 70px;
        margin-bottom: 0.25rem;
    }
}

.logo-item img {
    max-width: 85%;
    max-height: 85%;
    object-fit: contain;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.logo-item.clickable img:hover {
    opacity: 1;
    transform: scale(1.1);
}

.logo-item.non-clickable {
    opacity: 0.7;
}

.logo-name {
    text-align: center;
    color: #094471;
    font-weight: 600;
    font-size: 0.9rem;
    line-height: 1.3;
    width: 100%;
    padding: 0 0.25rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 640px) {
    .logo-name {
        font-size: 0.7rem;
        padding: 0 0.15rem;
    }
}

@media (max-width: 480px) {
    .logo-name {
        font-size: 0.65rem;
        padding: 0 0.1rem;
    }
}

@keyframes scroll-logos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-180px * 4));
    }
}

.about-section {
    width: 100%;
    background: linear-gradient(360deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 3rem 1.25rem;
}

@media (min-width: 640px) {
    .about-section {
        padding: 4rem 1.5rem;
    }
}

@media (min-width: 1024px) {
    .about-section {
        padding: 5rem 2rem;
    }
}

.about-container {
    max-width: 1600px;
    margin: 0 auto;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

@media (min-width: 1024px) {
    .about-grid {
        gap: 4rem;
    }
}

.about-content {
    order: 2;
}

@media (min-width: 768px) {
    .about-content {
        order: 1;
    }
}

.about-title {
    font-size: 2rem;
    font-weight: 700;
    color: #094471;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-transform: capitalize;
}

@media (min-width: 640px) {
    .about-title {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .about-title {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .about-title {
        font-size: 1.5rem;
    }
}

.about-description {
    color: #4b5563;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .about-description {
        font-size: 1.05rem;
        line-height: 1.8;
    }
}

@media (max-width: 480px) {
    .about-description {
        font-size: 0.875rem;
        line-height: 1.6;
    }
}

.about-description p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.about-description h1,
.about-description h2,
.about-description h3,
.about-description h4 {
    color: #094471;
    font-weight: 600;
    margin: 1.5rem 0 0.75rem 0;
    line-height: 1.3;
}

.about-description h1 {
    font-size: 1.8rem;
}

.about-description h2 {
    font-size: 1.5rem;
}

.about-description h3 {
    font-size: 1.3rem;
}

.about-description h4 {
    font-size: 1.1rem;
}

.about-description ul {
    list-style-type: disc;
    margin-left: 2rem;
    margin-bottom: 1.5rem;
    padding-left: 0;
}

.about-description ol {
    list-style-type: decimal;
    margin-left: 2rem;
    margin-bottom: 1.5rem;
    padding-left: 0;
}

.about-description ul li,
.about-description ol li {
    margin-bottom: 0.75rem;
    padding-left: 0.5rem;
    line-height: 1.7;
}

.about-description ul ul,
.about-description ol ol,
.about-description ul ol,
.about-description ol ul {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.about-description strong,
.about-description b {
    color: #1f2937;
    font-weight: 600;
}

.about-description em,
.about-description i {
    font-style: italic;
}

.about-description a {
    color: white;
    text-decoration: none;
}

.about-description blockquote {
    border-left: 4px solid #48b2e5;
    padding-left: 1rem;
    margin: 1rem 0;
    font-style: italic;
    color: #6b7280;
}

.read-more-btn a {
    color: white;
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #48b2e5;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    text-decoration: none;
}

.read-more-btn:hover {
    background: #3a9acc;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(72, 178, 229, 0.3);
}

.read-more-btn i {
    transition: transform 0.3s ease;
}

.read-more-btn:hover i {
    transform: translateX(4px);
}

.about-image-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(72, 178, 229, 0.2);
    order: 1;
}

@media (min-width: 768px) {
    .about-image-slider {
        order: 2;
    }
}

.about-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.about-slide.active {
    opacity: 1;
}

.about-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    color: white;
    padding: 1.5rem 1rem;
}

.about-slide-title {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.about-slide-text {
    font-size: 0.9rem;
    opacity: 0.95;
}

.empty-state {
    text-align: center;
    padding: 2rem 1rem;
    color: #9ca3af;
    width: 100%;
}

.empty-state i {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    opacity: 0.5;
}

.empty-state p {
    font-size: 0.9rem;
    color: #6b7280;
}

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

.fade-in {
    animation: fadeIn 0.5s ease-in;
}

body {
    opacity: 0;
    transition: opacity 0.3s ease-in;
}

body.loaded {
    opacity: 1;
}

nav {
    opacity: 1 !important;
}

.slide-view-btn {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    background: rgba(72, 178, 229, 0.9);
    color: white;
    padding: 0.75rem 1.25rem;
    border-radius: 0.5rem;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    z-index: 10;
    display: none;
}

@media (max-width: 640px) {
    .slide-view-btn {
        bottom: 1rem;
        left: 1rem;
        padding: 0.4rem 0.7rem;
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .slide-view-btn {
        bottom: 0.75rem;
        left: 0.75rem;
        padding: 0.35rem 0.6rem;
        font-size: 0.65rem;
    }
}

.slide.clickable .slide-view-btn {
    display: block;
}

.slide-view-btn:hover {
    background: rgba(72, 178, 229, 1);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(72, 178, 229, 0.4);
}

.slide-view-btn i {
    margin-right: 0.3rem;
    font-size: 0.8rem;
}

.services-section {
    width: 100%;
    background: #ffffff;
    padding: 3rem 1.25rem;
}

@media (min-width: 640px) {
    .services-section {
        padding: 4rem 1.5rem;
    }
}

@media (min-width: 1024px) {
    .services-section {
        padding: 5rem 2rem;
    }
}

.services-container-main {
    max-width: 1600px;
    margin: 0 auto;
}

.services-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

@media (min-width: 640px) {
    .services-header {
        margin-bottom: 3rem;
    }
}

.services-subtitle {
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    color: #48b2e5;
    font-weight: 700;
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.5rem;
}

@media (max-width: 480px) {
    .services-subtitle {
        font-size: 0.7rem;
    }
}

.services-title {
    font-size: 2rem;
    font-weight: 700;
    color: #094471;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-transform: capitalize;
}

@media (min-width: 640px) {
    .services-title {
        font-size: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .services-title {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .services-title {
        font-size: 1.5rem;
    }
}

.services-description {
    color: #64748b;
    margin: 1rem auto;
    max-width: 850px;
    font-size: 1rem;
    line-height: 1.7;
    font-weight: 500;
    padding: 0 1rem;
}

@media (max-width: 640px) {
    .services-description {
        font-size: 0.9rem;
        padding: 0 0.5rem;
    }
}

@media (max-width: 480px) {
    .services-description {
        font-size: 0.85rem;
    }
}

.services-title-underline {
    width: 80px;
    height: 4px;
    background: #48b2e5;
    margin: 1.5rem auto 0 auto;
    border-radius: 2px;
    opacity: 0.5;
}

@media (min-width: 640px) {
    .services-title-underline {
        width: 100px;
        height: 5px;
    }
}

.services-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

@media (max-width: 1024px) {
    .services-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
}

@media (max-width: 640px) {
    .services-cards-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

.service-card-item {
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 1.5rem;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

@media (max-width: 640px) {
    .service-card-item {
        border-radius: 1rem;
        padding: 1.5rem;
    }
}

.service-card-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px -12px rgba(72, 178, 229, 0.25);
    border-color: #48b2e5;
}

.service-card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #48b2e5, #094471);
    border-radius: 1.125rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: white;
}

@media (max-width: 640px) {
    .service-card-icon {
        width: 60px;
        height: 60px;
        font-size: 1.75rem;
        margin-bottom: 1.25rem;
    }
}

@media (max-width: 480px) {
    .service-card-icon {
        width: 55px;
        height: 55px;
        font-size: 1.5rem;
    }
}

.service-card-name {
    color: #094471;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.3;
}

@media (max-width: 640px) {
    .service-card-name {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }
}

@media (max-width: 480px) {
    .service-card-name {
        font-size: 1.1rem;
    }
}

.service-card-description {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

@media (max-width: 640px) {
    .service-card-description {
        font-size: 0.875rem;
        line-height: 1.6;
        margin-bottom: 1.25rem;
    }
}

@media (max-width: 480px) {
    .service-card-description {
        font-size: 0.85rem;
    }
}

.service-feature-list {
    list-style: none;
    margin-bottom: 1.5rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

@media (max-width: 767px) {
    .service-feature-list {
        grid-template-columns: 1fr;
    }
}

.service-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.88rem;
    line-height: 1.5;
    color: #4b5563;
}

@media (max-width: 480px) {
    .service-feature-item {
        font-size: 0.8rem;
    }
}

.service-feature-item i {
    color: #48b2e5;
    font-size: 0.9rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.service-learn-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #48b2e5;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: gap 0.3s ease;
}

@media (max-width: 480px) {
    .service-learn-more {
        font-size: 0.85rem;
    }
}

.service-learn-more:hover {
    gap: 0.75rem;
}

.view-all-services-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: #48b2e5;
    color: white;
    padding: 0.9rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0 auto;
    text-decoration: none;
    width: 15%;
}

@media (max-width: 640px) {
    .view-all-services-btn {
        padding: 0.75rem 1.75rem;
        font-size: 0.9rem;
        width: 50%;
    }
}

@media (max-width: 480px) {
    .view-all-services-btn {
        padding: 0.65rem 1.5rem;
        font-size: 0.85rem;
        width: 50%;
    }
}

.view-all-services-btn:hover {
    background: #3a9acc;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(72, 178, 229, 0.3);
}

.view-all-services-btn i {
    transition: transform 0.3s ease;
}

.view-all-services-btn:hover i {
    transform: translateX(4px);
}
.work-section {
    width: 100%;
    background: #f9fafb;
    padding: 3rem 1.25rem;
}

@media (min-width: 640px) {
    .work-section {
        padding: 4rem 1.5rem;
    }
}

@media (min-width: 1024px) {
    .work-section {
        padding: 5rem 2rem;
    }
}

.work-container {
    max-width: 1600px;
    margin: 0 auto;
}

.work-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

@media (min-width: 640px) {
    .work-header {
        margin-bottom: 3rem;
    }
}

.work-title {
    font-size: 2rem;
    font-weight: 700;
    color: #094471;
    margin-bottom: 0.5rem;
    line-height: 1.2;
    text-transform: capitalize;
}

@media (min-width: 640px) {
    .work-title {
        font-size: 2.5rem;
        margin-bottom: 0.75rem;
    }
}

@media (min-width: 1024px) {
    .work-title {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .work-title {
        font-size: 1.5rem;
    }
}

.work-title-underline {
    width: 80px;
    height: 4px;
    background: #48b2e5;
    margin: 0 auto;
    border-radius: 2px;
}

@media (min-width: 640px) {
    .work-title-underline {
        width: 100px;
        height: 5px;
    }
}

.work-filters {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    padding: 0 0.5rem;
}

@media (min-width: 640px) {
    .work-filters {
        gap: 1rem;
        margin-bottom: 2.5rem;
    }
}

@media (max-width: 640px) {
    .work-filters {
        display: none;
    }
}

.mobile-filter-dropdown {
    display: none;
    margin-bottom: 2rem;
    padding: 0 1rem;
    text-align: right;
}

@media (max-width: 640px) {
    .mobile-filter-dropdown {
        display: block;
    }
}

.mobile-filter-select {
    width: auto;
    max-width: 200px;
    padding: 0.5rem 2rem 0.5rem 0.75rem;
    border-radius: 1.5rem;
    border: 2px solid #48b2e5;
    background: white;
    color: #094471;
    font-weight: 600;
    font-size: 0.75rem;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 12 12'%3E%3Cpath fill='%23094471' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.65rem center;
}

@media (max-width: 480px) {
    .mobile-filter-select {
        font-size: 0.7rem;
        padding: 0.45rem 1.75rem 0.45rem 0.65rem;
        max-width: 160px;
    }
}

.mobile-filter-select:focus {
    outline: none;
    border-color: #3a9acc;
    box-shadow: 0 0 0 3px rgba(72, 178, 229, 0.1);
}

.filter-btn {
    padding: 0.6rem 1.5rem;
    border-radius: 2rem;
    border: 2px solid #48b2e5;
    background: white;
    color: #094471;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

@media (max-width: 640px) {
    .filter-btn {
        padding: 0.5rem 1.2rem;
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .filter-btn {
        padding: 0.45rem 1rem;
        font-size: 0.7rem;
    }
}

.filter-btn:hover {
    background: #48b2e5;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(72, 178, 229, 0.3);
}

.filter-btn.active {
    background: #48b2e5;
    color: white;
    box-shadow: 0 4px 12px rgba(72, 178, 229, 0.3);
}

.work-cards-wrapper {
    position: relative;
    width: 100%;
    padding: 1rem 0;
}

.work-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

@media (max-width: 1200px) {
    .work-cards-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
    }
}

@media (max-width: 900px) {
    .work-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 640px) {
    .work-cards-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

.work-card {
    width: 100%;
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

@media (max-width: 640px) {
    .work-card {
        border-radius: 0.75rem;
    }
}

.work-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(72, 178, 229, 0.25);
}

.work-card.hidden {
    display: none;
}

@media (max-width: 640px) {
    .work-card.mobile-hidden {
        display: none;
    }
}

@media (min-width: 641px) and (max-width: 900px) {
    .work-card.tablet-hidden {
        display: none;
    }
}

.work-card-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
    background: #f3f4f6;
}

@media (max-width: 640px) {
    .work-card-image {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .work-card-image {
        height: 180px;
    }
}

.work-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.work-card-content {
    padding: 1.25rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

@media (max-width: 640px) {
    .work-card-content {
        padding: 1rem;
    }
}

.work-card-category {
    display: inline-block;
    padding: 0.35rem 0.85rem;
    background: #e0f2fe;
    color: #094471;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 1rem;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    width: fit-content;
}

@media (max-width: 640px) {
    .work-card-category {
        font-size: 0.65rem;
        padding: 0.3rem 0.7rem;
    }
}

@media (max-width: 480px) {
    .work-card-category {
        font-size: 0.6rem;
        padding: 0.25rem 0.6rem;
    }
}

.work-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.75rem;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (max-width: 640px) {
    .work-card-title {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 480px) {
    .work-card-title {
        font-size: 0.95rem;
    }
}

.work-card-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #6b7280;
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}

@media (max-width: 640px) {
    .work-card-meta {
        font-size: 0.75rem;
        gap: 0.75rem;
    }
}

@media (max-width: 480px) {
    .work-card-meta {
        font-size: 0.7rem;
        gap: 0.5rem;
    }
}

.work-card-meta i {
    color: #48b2e5;
    font-size: 0.9rem;
}

@media (max-width: 640px) {
    .work-card-meta i {
        font-size: 0.8rem;
    }
}

.work-card-live-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: #48b2e5;
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.85rem;
    border: none;
    transition: all 0.3s ease;
    margin-top: auto;
    width: fit-content;
}

@media (max-width: 640px) {
    .work-card-live-btn {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .work-card-live-btn {
        padding: 0.45rem 0.9rem;
        font-size: 0.7rem;
    }
}

.work-card-live-btn:hover {
    background: #3a9acc;
    transform: scale(1.05);
}

.work-card-live-btn i {
    font-size: 0.75rem;
}

.view-all-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: #48b2e5;
    color: white;
    padding: 0.9rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0 auto;
    text-decoration: none;
    width: 15%;
}

@media (max-width: 640px) {
    .view-all-btn {
        padding: 0.75rem 1.75rem;
        font-size: 0.9rem;
        width: 50%;
    }
}

@media (max-width: 480px) {
    .view-all-btn {
        padding: 0.65rem 1.5rem;
        font-size: 0.85rem;
        width: 50%;
    }
}

.view-all-btn:hover {
    background: #3a9acc;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(72, 178, 229, 0.3);
}

.view-all-btn i {
    transition: transform 0.3s ease;
}

.view-all-btn:hover i {
    transform: translateX(4px);
}

.quote-section {
    width: 100%;
    max-width: 100%;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 4rem 1.25rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: -1px;
    margin-bottom: -1px;
}

@media (min-width: 640px) {
    .quote-section {
        padding: 5rem 1.5rem;
    }
}

@media (min-width: 1024px) {
    .quote-section {
        padding: 6rem 2rem;
    }
}

.wave-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.wave-top svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}

.wave-top .shape-fill {
    fill: #f9fafb;
}

@media (max-width: 768px) {
    .wave-top svg {
        height: 40px;
    }
}

@media (max-width: 480px) {
    .wave-top svg {
        height: 30px;
    }
}

.wave-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.wave-bottom svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
    transform: rotate(180deg);
}

.wave-bottom .shape-fill {
    fill: #ffffff;
}

@media (max-width: 768px) {
    .wave-bottom svg {
        height: 40px;
    }
}

@media (max-width: 480px) {
    .wave-bottom svg {
        height: 30px;
    }
}

.quote-section .floating-circle-1 {
    display: none;
}

.quote-section .floating-circle-2 {
    display: none;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(30px, 30px) scale(1.1);
    }
}

@media (min-width: 640px) {
    .quote-section .floating-circle-1 {
        width: 300px;
        height: 300px;
    }

    .quote-section .floating-circle-2 {
        width: 350px;
        height: 350px;
    }
}

@media (min-width: 1024px) {
    .quote-section .floating-circle-1 {
        width: 400px;
        height: 400px;
    }

    .quote-section .floating-circle-2 {
        width: 450px;
        height: 450px;
    }
}

.quote-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    padding: 2rem 1.5rem;
    border-radius: 1.5rem;
    border: 1px solid rgba(72, 178, 229, 0.2);
    box-shadow: 0 8px 32px rgba(72, 178, 229, 0.15);
}

@media (min-width: 640px) {
    .quote-container {
        padding: 2.5rem 2rem;
        border-radius: 2rem;
    }
}

@media (min-width: 1024px) {
    .quote-container {
        padding: 3rem 3rem;
    }
}

@media (max-width: 480px) {
    .quote-container {
        padding: 1.5rem 1rem;
        border-radius: 1rem;
    }
}

.quote-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #6b21a8;
    font-weight: 500;
    font-style: italic;
}

@media (min-width: 640px) {
    .quote-text {
        font-size: 1.25rem;
        line-height: 1.8;
    }
}

@media (min-width: 1024px) {
    .quote-text {
        font-size: 1.4rem;
        line-height: 1.8;
    }
}

@media (max-width: 480px) {
    .quote-text {
        font-size: 0.95rem;
        line-height: 1.6;
    }
}

.quote-text .quote-highlight {
    color: #094471;
    font-weight: 600;
}

.quote-container .quote-mark-left,
.quote-container .quote-mark-right {
    font-family: Georgia, serif;
    font-size: 4rem;
    color: rgba(72, 178, 229, 0.2);
    position: absolute;
    line-height: 1;
    z-index: 1;
}

.quote-container .quote-mark-left {
    top: 0.5rem;
    left: 1rem;
}

.quote-container .quote-mark-right {
    bottom: 0.5rem;
    right: 1rem;
}

@media (max-width: 640px) {
    .quote-container .quote-mark-left {
        font-size: 2.5rem;
        top: 0.25rem;
        left: 0.5rem;
    }

    .quote-container .quote-mark-right {
        font-size: 2.5rem;
        bottom: 0.25rem;
        right: 0.5rem;
    }
}

.founder-section {
    width: 100%;
    max-width: 100%;
    background: #ffffff;
    padding: 3rem 1.25rem;
    position: relative;
    overflow: hidden;
}

@media (min-width: 640px) {
    .founder-section {
        padding: 4rem 1.5rem;
    }
}

@media (min-width: 1024px) {
    .founder-section {
        padding: 5rem 2rem;
    }
}

.founder-wave-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.founder-wave-bottom svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
    transform: rotate(180deg);
}

.founder-wave-bottom .shape-fill {
    fill: #ffffff;
}

@media (max-width: 768px) {
    .founder-wave-bottom svg {
        height: 40px;
    }
}

@media (max-width: 480px) {
    .founder-wave-bottom svg {
        height: 30px;
    }
}

.founder-container {
    max-width: 1400px;
    margin: 0 auto;
    background: white;
    border-radius: 2rem;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
}

@media (min-width: 640px) {
    .founder-container {
        padding: 3rem;
    }
}

@media (min-width: 1024px) {
    .founder-container {
        padding: 4rem;
    }
}

@media (max-width: 480px) {
    .founder-container {
        padding: 1.5rem;
    }
}

.founder-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 768px) {
    .founder-content {
        grid-template-columns: auto 1fr;
        gap: 3rem;
    }
}

@media (min-width: 1024px) {
    .founder-content {
        gap: 4rem;
    }
}

.founder-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .founder-image-wrapper {
        margin: 0;
    }
}

.founder-decorative-circles {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.founder-circle {
    position: absolute;
    border-radius: 50%;
    background: #48b2e5;
}

.founder-circle:nth-child(1) {
    width: 60px;
    height: 60px;
    top: -30px;
    right: -30px;
    opacity: 0.6;
}

.founder-circle:nth-child(2) {
    width: 40px;
    height: 40px;
    top: 10px;
    right: 20px;
    opacity: 0.4;
}

.founder-circle:nth-child(3) {
    width: 50px;
    height: 50px;
    bottom: -25px;
    left: -25px;
    opacity: 0.5;
}

.founder-circle:nth-child(4) {
    width: 35px;
    height: 35px;
    bottom: 15px;
    left: 15px;
    opacity: 0.3;
}

@media (max-width: 768px) {
    .founder-circle:nth-child(1) {
        width: 40px;
        height: 40px;
        top: -20px;
        right: -20px;
    }
    .founder-circle:nth-child(2) {
        width: 30px;
        height: 30px;
        top: 5px;
        right: 10px;
    }
    .founder-circle:nth-child(3) {
        width: 35px;
        height: 35px;
        bottom: -18px;
        left: -18px;
    }
    .founder-circle:nth-child(4) {
        width: 25px;
        height: 25px;
        bottom: 8px;
        left: 8px;
    }
}

.founder-image {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    object-fit: cover;
    object-position: top center;
    border: 8px solid #e0f2fe;
    box-shadow: 0 10px 40px rgba(72, 178, 229, 0.3);
    position: relative;
    z-index: 2;
    display: block;
}

@media (min-width: 640px) {
    .founder-image {
        width: 320px;
        height: 320px;
    }
}

@media (max-width: 480px) {
    .founder-image {
        width: 180px;
        height: 180px;
        border: 5px solid #e0f2fe;
    }
}

.founder-info {
    text-align: center;
}

@media (min-width: 768px) {
    .founder-info {
        text-align: left;
    }
}

.founder-name {
    font-size: 1.75rem;
    font-weight: 700;
    color: #094471;
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

@media (min-width: 640px) {
    .founder-name {
        font-size: 2.25rem;
    }
}

@media (min-width: 1024px) {
    .founder-name {
        font-size: 2.75rem;
    }
}

@media (max-width: 480px) {
    .founder-name {
        font-size: 1.35rem;
    }
}

.founder-badge {
    display: inline-block;
    background: #48b2e5;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

@media (max-width: 480px) {
    .founder-badge {
        font-size: 0.75rem;
        padding: 0.35rem 1rem;
    }
}

.founder-social {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    justify-content: center;
}

@media (min-width: 768px) {
    .founder-social {
        justify-content: flex-start;
    }
}

@media (max-width: 480px) {
    .founder-social {
        gap: 0.5rem;
        margin-bottom: 1rem;
    }
}

.founder-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f3f4f6;
    color: #48b2e5;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.founder-social a:hover {
    background: #48b2e5;
    color: white;
    transform: translateY(-3px);
}

@media (max-width: 480px) {
    .founder-social a {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }
}

.founder-quote {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4b5563;
    font-style: italic;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .founder-quote {
        font-size: 1.15rem;
        line-height: 1.8;
    }
}

@media (max-width: 480px) {
    .founder-quote {
        font-size: 0.85rem;
        line-height: 1.5;
        margin-bottom: 1rem;
    }
}

.founder-signature {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    width: 200px;
    height: auto;
    opacity: 0.7;
}

@media (min-width: 1024px) {
    .founder-signature {
        width: 230px;
    }
}

@media (max-width: 768px) {
    .founder-signature {
        position: relative;
        bottom: auto;
        right: auto;
        margin: 2rem 0 0 auto;
        display: block;
        width: 150px;
    }
}

@media (max-width: 480px) {
    .founder-signature {
        width: 120px;
        margin-top: 1.5rem;
    }
}

.contact-section {
    width: 100%;
    max-width: 100%;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 4rem 1.25rem;
    position: relative;
    overflow: hidden;
}

@media (min-width: 640px) {
    .contact-section {
        padding: 5rem 1.5rem;
    }
}

@media (min-width: 1024px) {
    .contact-section {
        padding: 6rem 2rem;
    }
}

.contact-container {
    max-width: 700px;
    margin: 0 auto;
}

.contact-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

@media (min-width: 640px) {
    .contact-header {
        margin-bottom: 3rem;
    }
}

@media (min-width: 1024px) {
    .contact-header {
        margin-bottom: 3.5rem;
    }
}

.contact-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #094471;
    margin-bottom: 0.75rem;
    line-height: 1.2;
    text-transform: capitalize;
}

@media (min-width: 640px) {
    .contact-title {
        font-size: 2.75rem;
        margin-bottom: 1rem;
    }
}

@media (min-width: 1024px) {
    .contact-title {
        font-size: 3.25rem;
    }
}

@media (max-width: 480px) {
    .contact-title {
        font-size: 1.75rem;
    }
}

.contact-subtitle {
    font-size: 1.05rem;
    color: #6b7280;
    margin-bottom: 1rem;
    line-height: 1.6;
}

@media (min-width: 640px) {
    .contact-subtitle {
        font-size: 1.15rem;
    }
}

@media (max-width: 480px) {
    .contact-subtitle {
        font-size: 0.9rem;
    }
}

.contact-title-underline {
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, #48b2e5 0%, #094471 100%);
    margin: 0 auto;
    border-radius: 3px;
}

@media (min-width: 640px) {
    .contact-title-underline {
        width: 120px;
        height: 6px;
    }
}

@media (max-width: 480px) {
    .contact-title-underline {
        width: 80px;
        height: 4px;
    }
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 1.25rem;
    box-shadow: 0 20px 60px rgba(9, 68, 113, 0.12);
    border: 1px solid rgba(72, 178, 229, 0.1);
}

@media (min-width: 640px) {
    .contact-form {
        padding: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .contact-form {
        padding: 2.75rem;
    }
}

@media (max-width: 480px) {
    .contact-form {
        padding: 1.5rem;
        border-radius: 1rem;
    }
}

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

@media (max-width: 480px) {
    .form-group {
        margin-bottom: 1.25rem;
    }
}

.form-label {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: #094471;
    margin-bottom: 0.65rem;
}

@media (max-width: 480px) {
    .form-label {
        font-size: 0.875rem;
        margin-bottom: 0.5rem;
    }
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 0.875rem 1.125rem 0.875rem 3rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.625rem;
    font-size: 0.95rem;
    color: #1f2937;
    transition: all 0.3s ease;
    font-family: inherit;
    background: white;
}

@media (max-width: 480px) {
    .form-input,
    .form-textarea,
    .form-select {
        padding: 0.75rem 1rem 0.75rem 2.75rem;
        font-size: 0.875rem;
    }
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: #48b2e5;
    box-shadow: 0 0 0 4px rgba(72, 178, 229, 0.12);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #9ca3af;
}

.form-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23094471' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.6;
    padding: 0.875rem 1.125rem;
}

@media (max-width: 480px) {
    .form-textarea {
        min-height: 100px;
        padding: 0.75rem 1rem;
    }
}

.form-submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #48b2e5 0%, #094471 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 0.625rem;
    font-weight: 600;
    font-size: 1.05rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    box-shadow: 0 4px 15px rgba(72, 178, 229, 0.3);
}

@media (max-width: 480px) {
    .form-submit-btn {
        padding: 0.875rem 1.75rem;
        font-size: 0.95rem;
    }
}

.form-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(72, 178, 229, 0.45);
}

.form-submit-btn:active {
    transform: translateY(-1px);
}

.form-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.form-submit-btn i {
    font-size: 1rem;
}

.form-message {
    margin-top: 1.25rem;
    padding: 1rem 1.25rem;
    border-radius: 0.625rem;
    font-size: 0.95rem;
    font-weight: 500;
    display: none;
    text-align: center;
}

@media (max-width: 480px) {
    .form-message {
        font-size: 0.85rem;
        padding: 0.875rem 1rem;
    }
}

.form-message.success {
    background: #d1fae5;
    color: #065f46;
    border: 2px solid #6ee7b7;
}

.form-message.error {
    background: #fee2e2;
    color: #991b1b;
    border: 2px solid #fca5a5;
}

.form-group.has-icon .form-input,
.form-group.has-icon .form-select {
    padding-left: 3rem;
}

@media (max-width: 480px) {
    .form-group.has-icon .form-input,
    .form-group.has-icon .form-select {
        padding-left: 2.75rem;
    }
}

.form-group-icon {
    position: absolute;
    left: 1.125rem;
    top: 50%;
    transform: translateY(-50%);
    color: #48b2e5;
    font-size: 1rem;
    pointer-events: none;
    margin-top: 0.9rem;
}

@media (max-width: 480px) {
    .form-group-icon {
        left: 1rem;
        font-size: 0.9rem;
        margin-top: 0.85rem;
    }
}

/* Services Section Styles */
.services-section {
    width: 100%;
    background: #f9fafb;
    padding: 3rem 1.25rem;
}

@media (min-width: 640px) {
    .services-section {
        padding: 4rem 1.5rem;
    }
}

@media (min-width: 1024px) {
    .services-section {
        padding: 5rem 2rem;
    }
}

.services-container-main {
    max-width: 1600px;
    margin: 0 auto;
}

.services-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

@media (min-width: 640px) {
    .services-header {
        margin-bottom: 3rem;
    }
}

.services-subtitle {
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    color: #48b2e5;
    font-weight: 700;
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.5rem;
}

@media (max-width: 480px) {
    .services-subtitle {
        font-size: 0.7rem;
    }
}

.services-title {
    font-size: 2rem;
    font-weight: 700;
    color: #094471;
    margin-bottom: 1rem;
    line-height: 1.2;
}

@media (min-width: 640px) {
    .services-title {
        font-size: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .services-title {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .services-title {
        font-size: 1.5rem;
    }
}

.services-description {
    color: #64748b;
    margin: 1rem auto;
    max-width: 850px;
    font-size: 1rem;
    line-height: 1.7;
    font-weight: 500;
    padding: 0 1rem;
}

@media (max-width: 640px) {
    .services-description {
        font-size: 0.9rem;
        padding: 0 0.5rem;
    }
}

@media (max-width: 480px) {
    .services-description {
        font-size: 0.85rem;
    }
}

.services-title-underline {
    width: 80px;
    height: 4px;
    background: #48b2e5;
    margin: 1.5rem auto 0 auto;
    border-radius: 2px;
    opacity: 0.5;
}

@media (min-width: 640px) {
    .services-title-underline {
        width: 100px;
        height: 5px;
    }
}

.services-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

@media (max-width: 1024px) {
    .services-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
}

@media (max-width: 640px) {
    .services-cards-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

.service-card-item {
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 1.5rem;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

@media (max-width: 640px) {
    .service-card-item {
        border-radius: 1rem;
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .service-card-item {
        padding: 1.25rem;
    }
}

.service-card-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px -12px rgba(72, 178, 229, 0.25);
    border-color: #48b2e5;
}

.service-card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #48b2e5, #094471);
    border-radius: 1.125rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: white;
    flex-shrink: 0;
}

@media (max-width: 640px) {
    .service-card-icon {
        width: 60px;
        height: 60px;
        font-size: 1.75rem;
        margin-bottom: 1.25rem;
    }
}

@media (max-width: 480px) {
    .service-card-icon {
        width: 55px;
        height: 55px;
        font-size: 1.5rem;
    }
}

.service-card-name {
    color: #094471;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.3;
}

@media (max-width: 640px) {
    .service-card-name {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }
}

@media (max-width: 480px) {
    .service-card-name {
        font-size: 1.1rem;
    }
}

.service-card-description {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

@media (max-width: 640px) {
    .service-card-description {
        font-size: 0.875rem;
        line-height: 1.6;
        margin-bottom: 1.25rem;
    }
}

@media (max-width: 480px) {
    .service-card-description {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }
}

.service-feature-list {
    list-style: none;
    margin: 0;
    padding: 0;
    margin-bottom: 1.5rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

@media (max-width: 767px) {
    .service-feature-list {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
}

.service-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.88rem;
    line-height: 1.5;
    color: #4b5563;
}

@media (max-width: 480px) {
    .service-feature-item {
        font-size: 0.8rem;
        gap: 0.5rem;
    }
}

.service-feature-item i {
    color: #48b2e5;
    font-size: 0.9rem;
    margin-top: 3px;
    flex-shrink: 0;
}

@media (max-width: 480px) {
    .service-feature-item i {
        font-size: 0.8rem;
    }
}

.service-learn-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #48b2e5;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: gap 0.3s ease;
    margin-top: auto;
}

@media (max-width: 480px) {
    .service-learn-more {
        font-size: 0.85rem;
    }
}

.service-learn-more:hover {
    gap: 0.75rem;
}

.service-learn-more i {
    transition: transform 0.3s ease;
}

.service-learn-more:hover i {
    transform: translateX(3px);
}

.view-all-services-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: #48b2e5;
    color: white;
    padding: 0.9rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 2rem auto 0 auto;
    text-decoration: none;
    width: fit-content;
    min-width: 200px;
}

@media (max-width: 640px) {
    .view-all-services-btn {
        padding: 0.75rem 1.75rem;
        font-size: 0.9rem;
        width: auto;
        min-width: 180px;
    }
}

@media (max-width: 480px) {
    .view-all-services-btn {
        padding: 0.65rem 1.5rem;
        font-size: 0.85rem;
        min-width: 160px;
    }
}

.view-all-services-btn:hover {
    background: #3a9acc;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(72, 178, 229, 0.3);
}

.view-all-services-btn i {
    transition: transform 0.3s ease;
}

.view-all-services-btn:hover i {
    transform: translateX(4px);
}