html, body {
    margin: 0;
    padding: 0;
}
.sticky-header {
    margin-top: 0;
    padding-top: 0;
}

.hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px;
    width: 100%;
    margin: 0;
    overflow: hidden;
    border-radius: 0px;
}
.hero-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('https://manufactory.axiomthemes.com/wp-content/uploads/2021/11/bg-1-copyright.jpg') center/cover no-repeat;
    z-index: 1;
    transition: opacity 0.6s cubic-bezier(0.4,0,0.2,1);
    opacity: 1;
}
.hero-bg.fade {
    opacity: 0;
    pointer-events: none;
}
.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(180deg, rgba(11,21,54,0.45) 0%, rgba(11,21,54,0.25) 100%);
    z-index: 2;
}
.hero-content-wrapper {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 600px;
    padding: 0;
}
.hero-content {
    text-align: center;
    color: #fff;
    max-width: 700px;
    margin: 0 auto;
    z-index: 2;
}
.hero-label {
    font-size: 1.1rem;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 1.2rem;
    color: #fff;
    text-transform: uppercase;
}
.hero-content h1 {
    font-size: 3.2rem;
    font-weight: 900;
    margin-bottom: 2.2rem;
    line-height: 1.1;
    letter-spacing: -1px;
}
.hero-btn {
    background: #2056e3;
    color: #fff;
    padding: 1.1rem 2.7rem;
    border-radius: 4px;
    font-size: 1.13rem;
    font-weight: 700;
    text-decoration: none;
    border: none;
    box-shadow: 0 2px 8px rgba(30,40,60,0.10);
    transition: background 0.2s;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.hero-btn:hover {
    background: #4ea1f7;
}
.hero-slider-nav {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    z-index: 10;
    gap: 1.5rem;
}
.slider-num {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
    min-width: 40px;
    text-align: right;
    user-select: none;
}
.slider-num.active, .slider-num:hover {
    color: #ffffff;
    font-weight: 700;
    transform: scale(1.1);
}
.slider-num.active::before {
    content: '';
    position: absolute;
    left: -25px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 2px;
    background: #ffffff;
    border-radius: 1px;
    transition: all 0.3s ease;
}
.slider-num:hover::before {
    content: '';
    position: absolute;
    left: -25px;
    top: 50%;
    transform: translateY(-50%);
    width: 15px;
    height: 2px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 1px;
}
#dropdown-panel {
    position: absolute;
    z-index: 30;
    width: auto;
    min-width: 220px;
    background: #0b1536;
    color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 24px rgba(30,40,60,0.18);
    padding: 1.2rem 1.5rem;
    display: none;
    transition: opacity 0.2s;
    opacity: 1;
    box-sizing: border-box;
}
#dropdown-panel ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
#dropdown-panel li {
    padding: 0.7rem 0 0.7rem 0.5rem;
    font-size: 1.13rem;
    color: #b0b8c1;
    font-weight: 500;
    border-left: 4px solid transparent;
    border-radius: 4px;
    margin-bottom: 2px;
    transition: background 0.2s, color 0.2s, font-weight 0.2s, border 0.2s;
    cursor: pointer;
}
#dropdown-panel li.active, #dropdown-panel li:hover {
    color: #fff;
    font-weight: 700;
    background: #10182a;
    border-left: 4px solid #2056e3;
}
#dropdown-panel .dropdown-panel-content { display: none; }
#dropdown-panel .dropdown-panel-content[style*='display: block'] { display: block; }
@media (max-width: 1100px) {
    .hero-content-wrapper {
        flex-direction: column;
        align-items: stretch;
        padding: 2rem 0;
    }
    .hero-sidebar, .hero-slider-nav {
        margin: 0 0 1.5rem 0;
        align-self: center;
    }
    .hero-content {
        min-width: 0;
        margin: 0 0 2rem 0;
    }
}
@media (max-width: 700px) {
    .container.nav-container {
        padding: 0 1rem;
    }
    .main-nav ul {
        gap: 1rem;
    }
    .hero-content-wrapper {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 1.5rem 0;
    }
    .hero-sidebar, .hero-slider-nav {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        margin: 1rem 0;
        flex-direction: row;
        gap: 2rem;
    }
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .hero-btn,
    .hero-content .btn {
        width: 100%;
        box-sizing: border-box;
        font-size: 1.1rem;
        padding: 1rem;
        margin-bottom: 1rem;
    }
    .hero-content .btn:last-child {
        margin-bottom: 0;
    }
}
@media (max-width: 900px) {
    .nav-container, .stats-container, .principle-list, .process-list, .team-list, .testimonial-list, .news-list, .footer-container {
        flex-direction: column;
        align-items: stretch;
    }
    nav ul {
        flex-direction: column;
        gap: 0.5rem;
    }
    .partners-logos {
        background: #fff;
        border-bottom: 1px solid #e5e8ef;
        padding: 2.5rem 0 2.2rem 0;
    }
    .logos-row {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 3.5rem;
        flex-wrap: wrap;
    }
    .logos-row img {
        height: 48px;
        max-width: 120px;
        filter: grayscale(1) brightness(0.7);
        opacity: 0.7;
        transition: opacity 0.2s, filter 0.2s;
    }
    .logos-row img:hover {
        opacity: 1;
        filter: grayscale(0) brightness(1);
    }
    .principles-section {
        background: #fff;
        padding: 4rem 0 2rem 0;
        margin: 0;
    }
    .principles-flex {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 3rem;
        flex-wrap: wrap;
    }
    .principles-left {
        flex: 0 0 480px;
        max-width: 480px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    .principles-tall-image {
        flex: 1 1 0;
        display: flex;
        align-items: flex-start;
        justify-content: flex-end;
    }
    .principles-square-image {
        width: 320px;
        height: 320px;
        margin-top: 2.5rem;
    }
    .principles-square-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 8px;
    }
    .principles-tall-image img {
        width: 100%;
        max-width: 520px;
        height: 540px;
        object-fit: cover;
        border-radius: 8px;
    }
    .principles-text {
        flex: 1 1 350px;
    }
    .principles-subtitle {
        font-size: 1rem;
        font-weight: 700;
        color: #222a3a;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        margin-bottom: 1.2rem;
    }
    .principles-text h2 {
        font-size: 2.8rem;
        font-weight: 900;
        color: #1a2536;
        margin: 0 0 0.5rem 0;
        line-height: 1.1;
    }
    .principles-image {
        flex: 1 1 320px;
        display: flex;
        justify-content: flex-end;
    }
    .principles-image img {
        width: 100%;
        max-width: 420px;
        border-radius: 8px;
        object-fit: cover;
    }
    .principles-flex {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }
    .principles-image {
        justify-content: center;
        width: 100%;
    }
    .principles-image img {
        max-width: 100%;
    }
    .principles-text h2 {
        font-size: 2rem;
    }
    .logos-row {
        gap: 2rem;
    }
    @media (max-width: 900px) {
        .principles-flex {
            flex-direction: column;
            align-items: flex-start;
            gap: 2rem;
        }
        .principles-tall-image {
            justify-content: center;
            width: 100%;
        }
        .principles-tall-image img {
            max-width: 100%;
            height: 320px;
        }
        .principles-square-image {
            width: 100%;
            max-width: 320px;
            height: 320px;
            margin-left: 0;
        }
        .principles-left {
            max-width: 100%;
        }
    }
    .hamburger {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 40px;
        height: 40px;
        background: none;
        border: none;
        cursor: pointer;
        z-index: 1002;
        position: relative;
        margin-right: 1rem;
    }
    .hamburger span {
        display: block;
        width: 28px;
        height: 3px;
        background: #2056e3;
        margin: 4px 0;
        border-radius: 2px;
        transition: all 0.3s cubic-bezier(.4,2,.6,1);
    }
    .hamburger.open span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    .hamburger.open span:nth-child(2) {
        opacity: 0;
    }
    .hamburger.open span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
    .mobile-nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background: #0b1536;
        height: 0;
        overflow: hidden;
        transition: height 0.3s cubic-bezier(.4,2,.6,1);
        z-index: 1001;
        box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    }
    .mobile-nav.open {
        height: 100vh;
        overflow-y: auto;
    }
    .main-nav {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        padding: 2.5rem 0 0 0;
        margin: 0;
        width: 100%;
    }
    .main-nav li {
        width: 100%;
        text-align: center;
    }
    .main-nav a {
        color: #fff;
        font-size: 1.3rem;
        font-weight: 600;
        display: block;
        padding: 1rem 0;
        width: 100%;
        transition: background 0.2s, color 0.2s;
    }
    .main-nav a:hover, .main-nav a.active {
        background: #2056e3;
        color: #fff;
    }
    /* Hide nav by default on mobile */
    .mobile-nav {
        display: block;
    }
    .main-nav {
        display: none;
    }
    .mobile-nav.open .main-nav {
        display: flex;
    }
    /* Hide hamburger on desktop */
    .hamburger {
        display: flex;
    }
    .nav-icons {
        display: none !important;
    }
}
@media (min-width: 901px) {
    .nav-icons {
        display: flex !important;
    }
}
.principles-grid {
    display: flex;
    flex-direction: row;
    gap: 4rem;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
}
.principles-col {
    flex: 1 1 0;
    min-width: 320px;
    max-width: 420px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
@media (max-width: 900px) {
    .principles-grid {
        flex-direction: column;
        gap: 2rem;
    }
    .principles-col {
        max-width: 100%;
        min-width: 0;
    }
    .principles-section .container {
        max-width: 100%;
        padding-left: 1rem;
        padding-right: 1rem;
    }
}
.principles-col-left {
    max-width: 400px;
}
.principles-col-right {
    max-width: 400px;
}
.principles-img-square {
    width: 100%;
    aspect-ratio: 1/1;
    margin-top: 2.5rem;
}
.principles-img-square img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}
.principles-desc {
    margin-top: 2.5rem;
    color: #444;
    font-size: 1rem;
    line-height: 1.6;
    text-align: left;
}
@media (max-width: 900px) {
    .principles-grid {
        flex-direction: column;
        gap: 2rem;
    }
    .principles-col {
        max-width: 100%;
    }
    .principles-img-square {
        width: 100%;
        max-width: 100%;
        height: auto;
        margin-top: 1.5rem;
    }
    .principles-img-square img {
        width: 100%;
        max-width: 100%;
        height: auto;
        object-fit: cover;
        border-radius: 8px;
    }
    .principles-desc {
        margin-top: 1.2rem;
    }
}
.partners-carousel {
    background: #fff;
    border-bottom: 1px solid #e5e8ef;
    height: 90px;
    overflow: hidden;
    display: flex;
    align-items: center;
    position: relative;
}
.carousel-track {
    display: flex;
    align-items: center;
    gap: 3.5rem;
    animation: scroll-logos 22s linear infinite;
    will-change: transform;
}
.carousel-track img {
    height: 48px;
    max-width: 120px;
    margin: 0 1.5rem;
    filter: grayscale(1) brightness(0.7);
    opacity: 0.7;
    transition: opacity 0.2s, filter 0.2s;
}
.carousel-track img:hover {
    opacity: 1;
    filter: grayscale(0) brightness(1);
}
@keyframes scroll-logos {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
@media (max-width: 900px) {
    .carousel-track {
        gap: 1.5rem;
    }
    .carousel-track img {
        height: 32px;
        margin: 0 0.7rem;
    }
    .partners-carousel {
        height: 60px;
    }
}
.stats-section {
    background: #fff;
    padding: 4rem 0 2rem 0;
}
.stats-grid {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}
.stat-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 180px;
}
.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: #2056e3;
    margin-bottom: 0.5rem;
    transition: color 0.2s;
}
.stat-label {
    font-size: 1.1rem;
    color: #222;
    font-weight: 500;
    text-align: center;
}
@media (max-width: 900px) {
    .stats-grid {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }
    .stat-block {
        min-width: 120px;
    }
    .stat-number {
        font-size: 2.2rem;
    }
} 
.video-section {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.video-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/cta.png') center/cover no-repeat;
    z-index: 1;
}
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2;
}
.video-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #fff;
}
.video-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.video-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}
.play-btn {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid #fff;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    margin: 0 auto;
}
.play-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}
.play-btn svg {
    margin-left: 4px;
}
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}
.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 800px;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
}
.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    z-index: 1001;
    background: rgba(0, 0, 0, 0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}
.close-btn:hover {
    background: rgba(0, 0, 0, 0.8);
}
.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
}
.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
@media (max-width: 900px) {
    .video-section {
        min-height: 400px;
    }
    .video-content h2 {
        font-size: 2rem;
    }
    .video-content p {
        font-size: 1rem;
    }
    .play-btn {
        width: 60px;
        height: 60px;
    }
    .video-modal-content {
        width: 95%;
    }
} 
.who-we-are {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 4rem 0;
    position: relative;
}
.who-we-are::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255, 255, 255, 0.1) 10px,
        rgba(255, 255, 255, 0.1) 20px
    );
    pointer-events: none;
}
.who-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.who-subtitle {
    font-size: 1rem;
    font-weight: 700;
    color: #1a2536;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}
.who-content h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1a2536;
    margin-bottom: 2rem;
    line-height: 1.2;
}
.ceo-info {
    margin-top: 2rem;
}
.ceo-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a2536;
    margin-bottom: 0.3rem;
}
.ceo-title {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
}
.process-carousel {
    background: #fff;
    padding: 4rem 0;
}
.carousel-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
}
.process-carousel .carousel-track {
    display: flex;
    gap: 2rem;
    transition: transform 0.3s ease;
    animation: none !important;
}
.process-card {
    /* Styles moved to premium-verticals section */
}
.card-header {
    /* Styles moved to premium-verticals section */
}
.card-subtitle {
    /* Styles moved to premium-verticals section */
}
.card-header h3 {
    /* Styles moved to premium-verticals section */
}
/* Removed conflicting styles - now handled by premium-verticals section */
.card-action {
    /* Styles moved to premium-verticals section */
}
.action-line {
    /* Styles moved to premium-verticals section */
}
.read-more {
    /* Styles moved to premium-verticals section */
}
.read-more:hover {
    /* Styles moved to premium-verticals section */
}
.carousel-dots {
    /* Styles moved to premium-verticals section */
}
.dot {
    /* Styles moved to premium-verticals section */
}
.dot.active {
    /* Styles moved to premium-verticals section */
}
.dot:hover {
    /* Styles moved to premium-verticals section */
}
@media (max-width: 900px) {
    .carousel-wrapper {
        /* Styles moved to premium-verticals section */
    }
    .process-card {
        /* Styles moved to premium-verticals section */
    }
    /* Card image styles moved to premium-verticals section */
    .card-header {
        /* Styles moved to premium-verticals section */
    }
    .card-action {
        /* Styles moved to premium-verticals section */
    }
} 
.team-section {
    background: #fff;
    padding: 4rem 0;
    position: relative;
}
.team-grid {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
    max-width: 1000px;
    margin: 0 auto;
}
.team-content {
    flex: 1;
    max-width: 500px;
}
.team-subtitle {
    font-size: 0.9rem;
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}
.team-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a2536;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}
.team-content p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
}
.team-actions {
    display: flex;
    align-items: center;
    gap: 2rem;
}
.team-btn {
    background: #e53e3e;
    color: #fff;
    padding: 0.8rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background 0.2s;
}
.team-btn:hover {
    background: #c53030;
}
.video-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
    transition: opacity 0.2s;
}
.video-link:hover {
    opacity: 0.8;
}
.play-icon {
    width: 40px;
    height: 40px;
    border: 2px solid #1a2536;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}
.video-link:hover .play-icon {
    background: #1a2536;
}
.video-link:hover .play-icon svg {
    stroke: #fff;
}
.video-link span {
    color: #1a2536;
    font-weight: 500;
}
.team-members {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 400px;
}
.team-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s, box-shadow 0.2s;
}
.team-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}
.member-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
}
.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.member-info {
    padding: 1.5rem;
    background: #fff;
}
.member-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a2536;
    margin-bottom: 0.5rem;
}
.member-title {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
}
.team-sidebar {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: #e53e3e;
    padding: 1rem 0.8rem;
    border-radius: 8px 0 0 8px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 50;
}
.sidebar-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: opacity 0.2s;
}
.sidebar-icon:hover {
    opacity: 0.8;
}
@media (max-width: 900px) {
    .team-grid {
        flex-direction: column;
        gap: 3rem;
        padding: 0 1rem;
    }
    .team-content {
        max-width: 100%;
        text-align: center;
    }
    .team-content h2 {
        font-size: 2rem;
    }
    .team-actions {
        justify-content: center;
        flex-wrap: wrap;
    }
    .team-members {
        flex-direction: column;
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }
    .team-card {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }
    .member-image {
        height: 220px;
    }
    .team-sidebar {
        display: none;
    }
}
@media (max-width: 600px) {
    .team-members {
        flex-direction: column;
    }
    .team-actions {
        flex-direction: column;
        gap: 1rem;
    }
} 
.feedback-section {
    background: #f8fafc;
    padding: 4rem 0;
}
.feedback-header {
    text-align: center;
    margin-bottom: 3rem;
}
.feedback-subtitle {
    font-size: 0.9rem;
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}
.feedback-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a2536;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}
.feedback-icon {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}
.testimonial-card {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s, box-shadow 0.2s, opacity 0.3s ease, max-height 0.3s ease;
    opacity: 1;
    max-height: 500px;
    overflow: hidden;
}
.testimonial-card.hidden {
    opacity: 0;
    max-height: 0;
    padding: 0 2rem;
    margin: 0;
    transform: translateY(-20px);
    pointer-events: none;
}
.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}
.testimonial-card.hidden:hover {
    transform: translateY(-20px);
}
.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.profile-pic {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}
.profile-pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.profile-info {
    flex: 1;
}
.profile-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a2536;
    margin-bottom: 0.3rem;
}
.profile-location {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}
.testimonial-text {
    margin-bottom: 1.5rem;
}
.testimonial-text p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}
.testimonial-date {
    font-size: 0.85rem;
    color: #999;
    font-weight: 500;
}
.feedback-actions {
    text-align: center;
    margin-top: 3rem;
}
.see-more-btn {
    background: #2056e3;
    color: #fff;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}
.see-more-btn:hover {
    background: #1a4bc7;
    transform: translateY(-2px);
}
@media (max-width: 1200px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 0 1rem;
    }
}
@media (max-width: 768px) {
    .feedback-header h2 {
        font-size: 2rem;
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .testimonial-card {
        padding: 1.5rem;
    }
} 
.news-section {
    background: #0b1536;
    padding: 4rem 0;
    color: #fff;
}
.news-header {
    margin-bottom: 3rem;
}
.news-subtitle {
    font-size: 0.9rem;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}
.news-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
}
.news-grid {
    display: flex;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}
.featured-article {
    flex: 2;
}
.article-image {
    position: relative;
    margin-bottom: 2rem;
    border-radius: 12px;
    overflow: hidden;
}
.article-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}
.article-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: #2056e3;
    color: #fff;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}
.article-content {
    display: flex;
    gap: 2rem;
}
.article-date {
    flex-shrink: 0;
    text-align: center;
    min-width: 80px;
}
.date-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}
.date-month {
    font-size: 1rem;
    font-weight: 600;
    color: #ccc;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.article-details {
    flex: 1;
}
.article-details h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.3;
}
.article-details p {
    font-size: 1rem;
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}
.article-engagement {
    display: flex;
    gap: 1.5rem;
    font-size: 0.9rem;
    color: #999;
}
.article-engagement span {
    cursor: pointer;
    transition: color 0.2s;
}
.article-engagement span:hover {
    color: #fff;
}
.news-sidebar {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.sidebar-article {
    display: flex;
    gap: 1rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #1a2536;
}
.sidebar-article:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.sidebar-image {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
}
.sidebar-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.sidebar-content {
    flex: 1;
}
.sidebar-badge-date {
    font-size: 0.8rem;
    color: #ccc;
    margin-bottom: 0.5rem;
    font-weight: 500;
}
.sidebar-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.4;
    margin: 0;
    cursor: pointer;
    transition: color 0.2s;
}
.sidebar-content h4:hover {
    color: #2056e3;
}
@media (max-width: 1000px) {
    .news-grid {
        flex-direction: column;
        gap: 2rem;
        padding: 0 1rem;
    }
    .article-content {
        flex-direction: column;
        gap: 1rem;
    }
    .article-date {
        display: flex;
        align-items: center;
        gap: 1rem;
        min-width: auto;
    }
    .date-number {
        font-size: 2rem;
    }
    .article-details h3 {
        font-size: 1.5rem;
    }
}
@media (max-width: 768px) {
    .news-header h2 {
        font-size: 2rem;
    }
    .article-image img {
        height: 200px;
    }
    .article-details h3 {
        font-size: 1.3rem;
    }
    .sidebar-article {
        flex-direction: column;
        gap: 1rem;
    }
    .sidebar-image {
        width: 100%;
        height: 120px;
    }
} 
.footer {
    background: #0b1536;
    color: #fff;
    padding: 4rem 0 2rem 0;
}
.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.footer-logo .logo-text {
    font-size: 1.5rem;
    font-weight: 700;
}
.footer-description {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 2rem;
}
.social-links {
    display: flex;
    gap: 1rem;
}
.social-link {
    width: 40px;
    height: 40px;
    background: #1a2536;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
}
.social-link:hover {
    background: #2056e3;
    transform: translateY(-2px);
}
.footer-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
}
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li {
    margin-bottom: 0.8rem;
}
.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.2s;
}
.footer-links a:hover {
    color: #2056e3;
}
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.5;
}
.contact-item svg {
    flex-shrink: 0;
    margin-top: 0.2rem;
    color: #2056e3;
}
.footer-bottom {
    border-top: 1px solid #1a2536;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-copyright p {
    color: #999;
    margin: 0;
    font-size: 0.9rem;
}
.footer-legal {
    display: flex;
    gap: 2rem;
}
.footer-legal a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}
.footer-legal a:hover {
    color: #2056e3;
}
@media (max-width: 1000px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    .footer-legal {
        justify-content: center;
    }
}
@media (max-width: 768px) {
    .footer {
        padding: 3rem 0 2rem 0;
    }
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    .social-links {
        justify-content: center;
    }
    .footer-legal {
        flex-direction: column;
        gap: 1rem;
    }
} 

/* About Page Styles */
.about-hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    overflow: hidden;
}
.about-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1581091226825-a6a2a5aee158?auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
    z-index: 1;
}
.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(11, 21, 54, 0.7);
    z-index: 2;
}
.about-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 800px;
    padding: 0 2rem;
}
.about-hero-subtitle {
    font-size: 0.9rem;
    color: #ccc;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}
.about-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}
.about-hero-content p {
    font-size: 1.2rem;
    color: #ccc;
    line-height: 1.6;
}

.company-story {
    padding: 5rem 0;
    background: #fff;
}
.story-grid {
    display: flex;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}
.story-content {
    flex: 1;
}
.story-subtitle {
    font-size: 0.9rem;
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}
.story-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a2536;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}
.story-content p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}
.story-stats {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
}
.story-stat {
    text-align: center;
}
.story-stat .stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: #2056e3;
    margin-bottom: 0.5rem;
}
.story-stat .stat-label {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
}
.story-image {
    flex: 1;
    max-width: 500px;
}
.story-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
}

.mission-vision {
    padding: 5rem 0;
    background: #f8fafc;
}
.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}
.mv-card {
    background: #fff;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}
.mv-icon {
    margin-bottom: 2rem;
}
.mv-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a2536;
    margin-bottom: 1.5rem;
}
.mv-card p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}

.values-section {
    padding: 5rem 0;
    background: #fff;
}
.values-header {
    text-align: center;
    margin-bottom: 4rem;
}
.values-subtitle {
    font-size: 0.9rem;
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}
.values-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a2536;
    margin-bottom: 1rem;
}
.values-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}
.value-card {
    text-align: center;
    padding: 2rem;
}
.value-icon {
    margin-bottom: 1.5rem;
}
.value-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a2536;
    margin-bottom: 1rem;
}
.value-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

/* Services Page Styles */
.services-hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    overflow: hidden;
}
.services-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1504328345606-18bbc8c9d7d1?auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
    z-index: 1;
}
.services-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(11, 21, 54, 0.7);
    z-index: 2;
}
.services-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 800px;
    padding: 0 2rem;
}
.services-hero-subtitle {
    font-size: 0.9rem;
    color: #ccc;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}
.services-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}
.services-hero-content p {
    font-size: 1.2rem;
    color: #ccc;
    line-height: 1.6;
}

.services-grid-section {
    padding: 5rem 0;
    background: #fff;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}
.service-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f1f5f9;
    transition: transform 0.2s, box-shadow 0.2s;
}
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}
.service-icon {
    margin-bottom: 1.5rem;
}
.service-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a2536;
    margin-bottom: 1rem;
}
.service-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}
.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}
.service-features li {
    padding: 0.5rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
}
.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2056e3;
    font-weight: bold;
}
.service-btn {
    background: #2056e3;
    color: #fff;
    padding: 0.8rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: background 0.2s;
}
.service-btn:hover {
    background: #1a4bc7;
}

.process-section {
    padding: 5rem 0;
    background: #f8fafc;
}
.process-header {
    text-align: center;
    margin-bottom: 4rem;
}
.process-subtitle {
    font-size: 0.9rem;
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}
.process-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a2536;
    margin-bottom: 1rem;
}
.process-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}
.process-steps {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}
.process-step {
    text-align: center;
    padding: 2rem 1rem;
}
.step-number {
    width: 60px;
    height: 60px;
    background: #2056e3;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}
.process-step h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a2536;
    margin-bottom: 1rem;
}
.process-step p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
}

.cta-section {
    padding: 5rem 0;
    background: #0b1536;
    color: #fff;
    text-align: center;
}
.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}
.cta-content p {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}
.cta-btn-primary {
    background: #2056e3;
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.2s;
}
.cta-btn-primary:hover {
    background: #1a4bc7;
}
.cta-btn-secondary {
    background: transparent;
    color: #fff;
    padding: 1rem 2rem;
    border: 2px solid #fff;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
}
.cta-btn-secondary:hover {
    background: #fff;
    color: #0b1536;
}

/* Contact Page Styles */
.contact-hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    overflow: hidden;
}
.contact-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
    z-index: 1;
}
.contact-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(11, 21, 54, 0.7);
    z-index: 2;
}
.contact-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 800px;
    padding: 0 2rem;
}
.contact-hero-subtitle {
    font-size: 0.9rem;
    color: #ccc;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}
.contact-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}
.contact-hero-content p {
    font-size: 1.2rem;
    color: #ccc;
    line-height: 1.6;
}

.contact-form-section {
    padding: 5rem 0;
    background: #fff;
}
.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}
.contact-form h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a2536;
    margin-bottom: 2rem;
}
.contact-form-element {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}
.form-group {
    display: flex;
    flex-direction: column;
}
.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1a2536;
    margin-bottom: 0.5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.8rem;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2056e3;
}
.submit-btn {
    background: #2056e3;
    color: #fff;
    padding: 1rem 2rem;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}
.submit-btn:hover {
    background: #1a4bc7;
}

.contact-info-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.contact-info-card {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
}
.contact-info-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a2536;
    margin-bottom: 1.5rem;
}
.contact-info-card .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.contact-info-card .contact-item:last-child {
    margin-bottom: 0;
}
.contact-info-card .contact-item h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1a2536;
    margin-bottom: 0.5rem;
}
.contact-info-card .contact-item p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
}
.business-hours {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
}
.business-hours h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a2536;
    margin-bottom: 1.5rem;
}
.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px solid #e2e8f0;
}
.hours-item:last-child {
    border-bottom: none;
}
.hours-item span {
    font-size: 0.95rem;
    color: #666;
}

.locations-section {
    padding: 5rem 0;
    background: #f8fafc;
}
.locations-header {
    text-align: center;
    margin-bottom: 4rem;
}
.locations-subtitle {
    font-size: 0.9rem;
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}
.locations-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a2536;
    margin-bottom: 1rem;
}
.locations-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}
.locations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}
.location-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s, box-shadow 0.2s;
}
.location-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}
.location-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}
.location-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.location-content {
    padding: 2rem;
}
.location-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a2536;
    margin-bottom: 1rem;
}
.location-content p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}
.location-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.location-details span {
    font-size: 0.9rem;
    color: #666;
}

/* Responsive Design for New Pages */
@media (max-width: 1000px) {
    .story-grid {
        flex-direction: column;
        gap: 3rem;
        padding: 0 1rem;
    }
    .mv-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 0 1rem;
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 0 1rem;
    }
    .process-steps {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
        padding: 0 1rem;
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 0 1rem;
    }
    .locations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 0 1rem;
    }
}

@media (max-width: 768px) {
    .about-hero-content h1,
    .services-hero-content h1,
    .contact-hero-content h1 {
        font-size: 2.5rem;
    }
    .story-content h2,
    .values-header h2,
    .process-header h2,
    .locations-header h2 {
        font-size: 2rem;
    }
    .story-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    .values-grid {
        grid-template-columns: 1fr;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .locations-grid {
        grid-template-columns: 1fr;
    }
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 600px) {
    .process-steps {
        grid-template-columns: 1fr;
    }
    .about-hero-content,
    .services-hero-content,
    .contact-hero-content {
        padding: 0 1rem;
    }
} 

/* Projects Page Styles */
.projects-hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    overflow: hidden;
}
.projects-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1504328345606-18bbc8c9d7d1?auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
    z-index: 1;
}
.projects-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(11, 21, 54, 0.7);
    z-index: 2;
}
.projects-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 800px;
    padding: 0 2rem;
}
.projects-hero-subtitle {
    font-size: 0.9rem;
    color: #ccc;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}
.projects-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}
.projects-hero-content p {
    font-size: 1.2rem;
    color: #ccc;
    line-height: 1.6;
}

.project-categories {
    padding: 4rem 0 2rem 0;
    background: #fff;
}
.categories-header {
    text-align: center;
    margin-bottom: 2rem;
}
.categories-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a2536;
    margin-bottom: 0.5rem;
}
.categories-header p {
    color: #666;
    font-size: 1rem;
}
.categories-grid {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}
.category-card {
    background: #f8fafc;
    border-radius: 10px;
    padding: 1.5rem 2rem;
    text-align: center;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border 0.2s, background 0.2s;
    min-width: 160px;
}
.category-card.active, .category-card:hover {
    border: 2px solid #2056e3;
    background: #e6edfa;
}
.category-icon {
    margin-bottom: 0.7rem;
}
.category-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a2536;
}

.projects-grid-section {
    padding: 4rem 0;
    background: #fff;
}
.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}
.project-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
}
.project-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}
.project-image {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}
.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.project-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(32,86,227,0.7);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s;
}
.project-card:hover .project-overlay {
    opacity: 1;
}
.project-link {
    color: #fff;
    background: #2056e3;
    padding: 0.7rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: background 0.2s;
}
.project-link:hover {
    background: #1a4bc7;
}
.project-content {
    padding: 2rem 1.5rem 1.5rem 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.project-category {
    color: #2056e3;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}
.project-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a2536;
    margin-bottom: 1rem;
}
.project-content p {
    color: #666;
    font-size: 1rem;
    margin-bottom: 1.2rem;
    flex: 1;
}
.project-stats {
    display: flex;
    gap: 1.5rem;
    font-size: 0.95rem;
    color: #888;
    margin-top: 1rem;
}

.project-stats-section {
    background: #f8fafc;
    padding: 3rem 0;
}
.stats-grid {
    display: flex;
    gap: 3rem;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
}
.stat-item {
    text-align: center;
}
.stat-number {
    font-size: 2.2rem;
    font-weight: 900;
    color: #2056e3;
    margin-bottom: 0.5rem;
}
.stat-label {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
}

/* Team Page Styles */
.team-hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    overflow: hidden;
}
.team-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1517841905240-472988babdf9?auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
    z-index: 1;
}
.team-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(11, 21, 54, 0.7);
    z-index: 2;
}
.team-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 800px;
    padding: 0 2rem;
}
.team-hero-subtitle {
    font-size: 0.9rem;
    color: #ccc;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}
.team-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}
.team-hero-content p {
    font-size: 1.2rem;
    color: #ccc;
    line-height: 1.6;
}

.leadership-section {
    padding: 5rem 0 3rem 0;
    background: #fff;
}
.leadership-header {
    text-align: center;
    margin-bottom: 3rem;
}
.leadership-subtitle {
    font-size: 0.9rem;
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}
.leadership-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a2536;
    margin-bottom: 1rem;
}
.leadership-header p {
    color: #666;
    font-size: 1rem;
}
.leadership-grid {
    display: flex;
    gap: 2.5rem;
    justify-content: center;
    flex-wrap: wrap;
}
.leader-card {
    background: #f8fafc;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    padding: 2rem 1.5rem;
    text-align: center;
    width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.leader-image {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 1.2rem;
    border: 3px solid #2056e3;
}
.leader-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.leader-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a2536;
    margin-bottom: 0.3rem;
}
.leader-title {
    color: #2056e3;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.7rem;
}
.leader-content p {
    color: #666;
    font-size: 0.98rem;
    margin-bottom: 1rem;
}
.leader-social {
    display: flex;
    gap: 0.7rem;
    justify-content: center;
}

.departments-section {
    padding: 3rem 0 3rem 0;
    background: #f8fafc;
}
.departments-header {
    text-align: center;
    margin-bottom: 3rem;
}
.departments-subtitle {
    font-size: 0.9rem;
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}
.departments-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a2536;
    margin-bottom: 1rem;
}
.departments-header p {
    color: #666;
    font-size: 1rem;
}
.departments-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}
.department-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    padding: 2rem 1.5rem;
    text-align: center;
}
.department-icon {
    margin-bottom: 1rem;
}
.department-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a2536;
    margin-bottom: 0.3rem;
}
.department-head {
    color: #2056e3;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.7rem;
}
.department-content p {
    color: #666;
    font-size: 0.98rem;
}

.team-stats-section {
    background: #fff;
    padding: 3rem 0;
}
.team-stats-grid {
    display: flex;
    gap: 3rem;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
}
.team-stat {
    text-align: center;
}
.team-stat .stat-number {
    font-size: 2.2rem;
    font-weight: 900;
    color: #2056e3;
    margin-bottom: 0.5rem;
}
.team-stat .stat-label {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
}

.join-team-section {
    background: #0b1536;
    color: #fff;
    padding: 5rem 0;
    text-align: center;
}
.join-team-content h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}
.join-team-content p {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.join-team-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}
.join-btn-primary {
    background: #2056e3;
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.2s;
}
.join-btn-primary:hover {
    background: #1a4bc7;
}
.join-btn-secondary {
    background: transparent;
    color: #fff;
    padding: 1rem 2rem;
    border: 2px solid #fff;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
}
.join-btn-secondary:hover {
    background: #fff;
    color: #0b1536;
}

@media (max-width: 1000px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 0 1rem;
    }
    .departments-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 0 1rem;
    }
    .team-stats-grid, .stats-grid {
        gap: 1.5rem;
    }
}
@media (max-width: 768px) {
    .projects-hero-content h1,
    .team-hero-content h1 {
        font-size: 2.5rem;
    }
    .projects-grid {
        grid-template-columns: 1fr;
    }
    .departments-grid {
        grid-template-columns: 1fr;
    }
    .team-stats-grid, .stats-grid {
        flex-direction: column;
        gap: 1.5rem;
    }
}

@media (max-width: 600px) {
    /* General container and padding adjustments */
    .container {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
    header, .footer {
        padding-left: 0;
        padding-right: 0;
    }
    /* Navigation */
    .main-nav {
        flex-direction: column;
        gap: 0.5rem;
        font-size: 1.1rem;
    }
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }
    .nav-section {
        width: 100%;
        justify-content: center;
        align-items: center;
    }
    .logo {
        justify-content: center;
    }
    /* Hero sections */
    .about-hero-content h1,
    .services-hero-content h1,
    .contact-hero-content h1,
    .projects-hero-content h1,
    .team-hero-content h1 {
        font-size: 1.5rem;
    }
    .about-hero-content,
    .services-hero-content,
    .contact-hero-content,
    .projects-hero-content,
    .team-hero-content {
        padding: 0 0.5rem;
    }
    /* Grids and cards */
    .story-grid,
    .stats-grid,
    .team-stats-grid {
        flex-direction: column;
        gap: 1rem;
        padding: 0;
    }
    .values-grid,
    .services-grid,
    .projects-grid,
    .departments-grid,
    .locations-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0;
    }
    .leadership-grid {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    .project-card,
    .service-card,
    .leader-card,
    .department-card,
    .location-card {
        width: 100%;
        min-width: 0;
        max-width: 100%;
        margin: 0 auto;
    }
    .project-image,
    .location-image {
        height: 160px;
    }
    /* Forms and buttons */
    .contact-form-element,
    .form-row {
        flex-direction: column;
        gap: 1rem;
    }
    .btn,
    .cta-btn-primary,
    .cta-btn-secondary,
    .join-btn-primary,
    .join-btn-secondary,
    .submit-btn {
        width: 100%;
        box-sizing: border-box;
        font-size: 1.1rem;
        padding: 1rem;
    }
    .cta-buttons,
    .join-team-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 0.5rem;
    }
    .footer-logo {
        justify-content: center;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    .footer-legal {
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
    }
    /* Miscellaneous */
    .social-links {
        justify-content: center;
    }
    .project-overlay {
        font-size: 0.95rem;
    }
    .stat-number, .team-stat .stat-number {
        font-size: 1.3rem;
    }
    .stat-label, .team-stat .stat-label {
        font-size: 0.95rem;
    }
    .leader-image {
        width: 80px;
        height: 80px;
    }
    .department-icon {
        margin-bottom: 0.5rem;
    }
    .location-content, .project-content, .service-card, .leader-card, .department-card {
        padding: 1rem;
    }
}

.nav-mobile-row {
    display: flex;
    align-items: center;
    gap: 1rem;
}
@media (max-width: 900px) {
    .nav-mobile-row {
        width: 100%;
        justify-content: flex-start;
        padding: 0.5rem 0;
    }
    .logo {
        margin-left: 0;
    }
}

/* Sticky header */
.sticky-header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: #0b1536;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}

/* Navbar visual improvements */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 64px;
    width: 100%;
    gap: 2.5rem;
}
.navbar-left, .navbar-center, .navbar-right {
    display: flex;
    align-items: center;
}
.navbar-left {
    flex: 1 1 auto;
    min-width: 0;
}
.navbar-center {
    flex: 2 1 0;
    justify-content: center;
    min-width: 0;
}
.navbar-right {
    flex: 1 1 auto;
    justify-content: flex-end;
    min-width: 0;
}
.logo {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    padding: 0.5rem 1.2rem 0.5rem 0;
}
.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}
.nav-links li {
    display: flex;
}
.nav-links a {
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: background 0.2s, color 0.2s;
}
.nav-links a:hover, .nav-links a.active {
    background: #2056e3;
    color: #fff;
}
.nav-icons {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}
.icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    color: #fff;
    position: relative;
    transition: background 0.2s;
    padding: 0;
}
.icon:hover {
    background: rgba(32,86,227,0.12);
}
.cart-count {
    position: absolute;
    top: 2px;
    right: 2px;
    background: #e53935;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 50%;
    padding: 0.1rem 0.4rem;
}

/* Hamburger */
.navbar-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 200;
    margin-left: 0.5rem;
}
.navbar-hamburger span {
    display: block;
    width: 28px;
    height: 3px;
    background: #fff;
    margin: 4px 0;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(.4,2,.6,1);
}
.navbar-hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.navbar-hamburger.open span:nth-child(2) {
    opacity: 0;
}
.navbar-hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu overlay */
.mobile-menu-overlay {
    display: none;
}
.mobile-menu-overlay.open {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #0b1536;
    z-index: 1500;
    animation: fadeInMenu 0.3s;
}
@keyframes fadeInMenu {
    from { opacity: 0; }
    to { opacity: 1; }
}
.mobile-nav-links {
    list-style: none;
    margin: 0;
    padding: 4rem 0 0 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}
.mobile-nav-links li {
    width: 100%;
    text-align: center;
}
.mobile-nav-links a {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    padding: 1rem 0;
    display: block;
    width: 100vw;
    transition: background 0.2s, color 0.2s;
}
.mobile-nav-links a:hover, .mobile-nav-links a.active {
    background: #2056e3;
    color: #fff;
}

@media (max-width: 900px) {
    .navbar-center {
        display: none;
    }
    .nav-icons {
        display: none;
    }
    .navbar-hamburger {
        display: flex;
    }
    .mobile-menu-overlay {
        display: none;
    }
    .mobile-menu-overlay.open {
        display: flex;
    }
}
@media (min-width: 901px) {
    .navbar-hamburger {
        display: none !important;
    }
    .mobile-menu-overlay {
        display: none !important;
    }
    .navbar-center {
        display: flex !important;
    }
    .nav-icons {
        display: flex !important;
    }
}

/* Fix for OUR PRINCIPLES section two-column layout on desktop */
.principles-section .container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}
.principles-grid {
    display: flex;
    flex-direction: row;
    gap: 4rem;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
}
.principles-col {
    flex: 1 1 0;
    min-width: 320px;
    max-width: 420px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
@media (max-width: 900px) {
    .principles-grid {
        flex-direction: column;
        gap: 2rem;
    }
    .principles-col {
        max-width: 100%;
        min-width: 0;
    }
    .principles-section .container {
        max-width: 100%;
        padding-left: 1rem;
        padding-right: 1rem;
    }
}
@media (max-width: 900px) {
    .principles-col,
    .principles-col-left,
    .principles-col-right {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }
}

/* Our Approach Section Styles */
.approach-section {
    padding: 4rem 0 3rem 0;
    background: #f8f9fb;
}
.section-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 2.5rem;
    color: #1a2536;
    letter-spacing: -1px;
}
.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}
.approach-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 4px 24px rgba(30,40,60,0.08);
    padding: 2.2rem 1.5rem 1.7rem 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow 0.2s, transform 0.2s;
    min-height: 260px;
}
.approach-card:hover {
    box-shadow: 0 8px 32px rgba(30,40,60,0.13);
    transform: translateY(-4px) scale(1.03);
}
.approach-icon {
    font-size: 2.5rem;
    margin-bottom: 1.1rem;
    color: #2056e3;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #eaf1fd 0%, #f8f9fb 100%);
    box-shadow: 0 2px 8px rgba(30,40,60,0.07);
}
.approach-card h3 {
    font-size: 1.18rem;
    font-weight: 700;
    margin-bottom: 0.7rem;
    color: #1a2536;
}
.approach-card p {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.6;
    margin: 0;
}
@media (max-width: 700px) {
    .approach-section {
        padding: 2.5rem 0 2rem 0;
    }
    .approach-grid {
        gap: 1.2rem;
    }
    .approach-card {
        padding: 1.3rem 0.7rem 1.1rem 0.7rem;
        min-height: 180px;
    }
    .approach-icon {
        font-size: 2rem;
        width: 40px;
        height: 40px;
    }
    .section-title {
        font-size: 1.4rem;
    }
}

/* Process Carousel Responsive Styles */
.process-carousel .carousel-track {
    /* Styles moved to premium-verticals section */
}
.process-carousel .process-card {
    /* Styles moved to premium-verticals section */
}
@media (max-width: 900px) {
    .process-carousel .process-card {
        /* Styles moved to premium-verticals section */
    }
}
.process-carousel .carousel-dots {
    /* Styles moved to premium-verticals section */
}
.process-carousel .dot {
    /* Styles moved to premium-verticals section */
}
.process-carousel .dot.active {
    /* Styles moved to premium-verticals section */
}

/* Premium Hero Section Styles */
.premium-hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    overflow: hidden;
    background: #10182a;
}
.premium-hero .hero-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-size: cover;
    background-position: center;
    z-index: 1;
    filter: brightness(0.7) grayscale(0.1);
    transition: background-image 0.5s;
}
.premium-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(120deg, rgba(16,24,42,0.85) 60%, rgba(32,86,227,0.25) 100%);
    z-index: 2;
}
.premium-hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.hero-title {
    font-size: 2.8rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 1.2rem;
    letter-spacing: -1.5px;
    line-height: 1.1;
}
.hero-desc {
    color: #eaf1fd;
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 2.2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.hero-cta-row {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}
.premium-btn {
    background: linear-gradient(90deg, #2056e3 60%, #4ea1f7 100%);
    color: #fff;
    font-weight: 700;
    border-radius: 6px;
    padding: 1.1rem 2.7rem;
    font-size: 1.13rem;
    box-shadow: 0 2px 8px rgba(30,40,60,0.10);
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background 0.2s, transform 0.2s;
}
.premium-btn:hover {
    background: linear-gradient(90deg, #4ea1f7 60%, #2056e3 100%);
    transform: translateY(-2px) scale(1.04);
}
.secondary-btn {
    background: rgba(255,255,255,0.12);
    color: #fff;
    border: 1.5px solid #4ea1f7;
    font-weight: 700;
    border-radius: 6px;
    padding: 1.1rem 2.7rem;
    font-size: 1.13rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background 0.2s, color 0.2s, border 0.2s, transform 0.2s;
}
.secondary-btn:hover {
    background: #4ea1f7;
    color: #fff;
    border-color: #2056e3;
    transform: translateY(-2px) scale(1.04);
}
.scroll-indicator {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    height: 40px;
    margin-top: 1.5rem;
}
.scroll-indicator span {
    display: block;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2.5px solid #fff;
    border-top: none;
    border-left: none;
    margin: 0 auto;
    animation: scroll-bounce 1.3s infinite cubic-bezier(0.4,0,0.2,1);
    box-sizing: border-box;
    transform: rotate(-45deg);
    opacity: 0.7;
}
@keyframes scroll-bounce {
    0% { transform: translateY(0) rotate(-45deg); opacity: 0.7; }
    50% { transform: translateY(10px) rotate(-45deg); opacity: 1; }
    100% { transform: translateY(0) rotate(-45deg); opacity: 0.7; }
}
@media (max-width: 900px) {
    .premium-hero, .premium-hero-content {
        min-height: 400px;
    }
    .hero-title {
        font-size: 2rem;
    }
    .hero-desc {
        font-size: 1.05rem;
    }
    .hero-cta-row {
        flex-direction: column;
        gap: 0.7rem;
    }
}
@media (max-width: 600px) {
    .premium-hero, .premium-hero-content {
        min-height: 300px;
    }
    .hero-title {
        font-size: 1.3rem;
    }
    .hero-desc {
        font-size: 0.98rem;
    }
    .premium-btn, .secondary-btn {
        padding: 0.8rem 1.2rem;
        font-size: 0.98rem;
    }
}

/* Premium Our Verticals Section Styles - Modern Redesign */
.premium-verticals {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.premium-verticals::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e2e8f0" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.verticals-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.premium-verticals .section-title {
    font-size: 3rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.premium-verticals .section-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.verticals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.vertical-card {
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08), 0 8px 25px rgba(30, 64, 175, 0.06);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(30, 64, 175, 0.08);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.vertical-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6 0%, #8b5cf6 50%, #06b6d4 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    z-index: 3;
}

.vertical-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 30px 80px rgba(30, 64, 175, 0.15), 0 15px 40px rgba(30, 64, 175, 0.1);
    border-color: rgba(30, 64, 175, 0.2);
}

.vertical-card:hover::before {
    transform: scaleX(1);
}

/* Fixed Image Wrapper - Full Container Width */
.card-image-wrapper {
    width: 100%;
    height: 240px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
    background: #f1f5f9;
}

.card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: block;
}

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

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(32, 86, 227, 0.1) 0%, rgba(78, 161, 247, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.vertical-card:hover .card-overlay {
    opacity: 1;
}

.overlay-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 2;
}

.overlay-icon svg {
    width: 24px;
    height: 24px;
    color: #2056e3;
}

.vertical-card:hover .overlay-icon {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

.card-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
}

.card-badge {
    display: inline-block;
    background: linear-gradient(135deg, #2056e3 0%, #4ea1f7 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    align-self: flex-start;
}

.card-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 1rem 0;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.vertical-card:hover .card-content h3 {
    color: #2056e3;
}

.card-content p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.features-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.feature-item {
    background: #f1f5f9;
    color: #475569;
    padding: 0.5rem 1rem;
    border-radius: 16px;
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.vertical-card:hover .feature-item {
    background: #e0e7ff;
    color: #3730a3;
    transform: translateY(-2px);
}

.explore-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #2056e3 0%, #4ea1f7 100%);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    align-self: flex-start;
    position: relative;
    overflow: hidden;
}

.explore-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.explore-btn:hover::before {
    left: 100%;
}

.explore-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(32, 86, 227, 0.3);
}

.explore-btn svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.explore-btn:hover svg {
    transform: translateX(4px);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .verticals-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 900px) {
    .premium-verticals {
        padding: 4rem 0;
    }
    
    .premium-verticals .section-title {
        font-size: 2.5rem;
    }
    
    .premium-verticals .section-subtitle {
        font-size: 1.125rem;
    }
    
    .verticals-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
    }
    
    .card-image-wrapper {
        height: 200px;
    }
    
    .card-content {
        padding: 1.5rem;
    }
}

@media (max-width: 600px) {
    .premium-verticals {
        padding: 3rem 0;
    }
    
    .premium-verticals .section-title {
        font-size: 2rem;
    }
    
    .premium-verticals .section-subtitle {
        font-size: 1rem;
    }
    
    .verticals-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .card-image-wrapper {
        height: 180px;
    }
    
    .card-content {
        padding: 1.25rem;
    }
    
    .card-content h3 {
        font-size: 1.25rem;
    }
    
    .features-list {
        gap: 0.5rem;
    }
    
    .feature-item {
        font-size: 0.75rem;
        padding: 0.375rem 0.75rem;
    }
}

/* Premium Our Approach Section Styles */
.premium-approach {
    padding: 4rem 0 3rem 0;
    background: linear-gradient(120deg, #eaf1fd 60%, #f8f9fb 100%);
}
.premium-approach .section-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 0.7rem;
    color: #1a2536;
    letter-spacing: -1px;
}
.premium-approach .section-subtitle {
    text-align: center;
    font-size: 1.15rem;
    color: #4a5568;
    margin-bottom: 2.5rem;
    font-weight: 500;
}
.premium-approach .approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}
.premium-approach .approach-card {
    background: rgba(255,255,255,0.85);
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(30,40,60,0.13);
    padding: 2.2rem 1.5rem 1.7rem 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow 0.2s, transform 0.2s, background 0.2s;
    min-height: 260px;
    backdrop-filter: blur(8px);
}
.premium-approach .approach-card:hover {
    box-shadow: 0 16px 48px rgba(32,86,227,0.13);
    background: rgba(255,255,255,0.97);
    border-color: #4ea1f7;
    /* Remove transform: translateY(-6px) scale(1.03); */
}
.premium-approach .approach-icon {
    font-size: 2.5rem;
    margin-bottom: 1.1rem;
    color: #2056e3;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f8f9fb 0%, #eaf1fd 100%);
    box-shadow: 0 2px 8px rgba(30,40,60,0.07);
}
.premium-approach .approach-card h3 {
    font-size: 1.18rem;
    font-weight: 700;
    margin-bottom: 0.7rem;
    color: #1a2536;
}
.premium-approach .approach-card p {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.6;
    margin: 0;
}
@media (max-width: 700px) {
    .premium-approach {
        padding: 2.5rem 0 2rem 0;
    }
    .premium-approach .approach-grid {
        gap: 1.2rem;
    }
    .premium-approach .approach-card {
        padding: 1.3rem 0.7rem 1.1rem 0.7rem;
        min-height: 180px;
    }
    .premium-approach .approach-icon {
        font-size: 2rem;
        width: 40px;
        height: 40px;
    }
    .premium-approach .section-title {
        font-size: 1.4rem;
    }
}

/* Premium Leadership Section Styles */
.premium-leadership {
    padding: 4rem 0 3rem 0;
    background: linear-gradient(120deg, #f8f9fb 60%, #eaf1fd 100%);
}
.premium-leadership .section-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 0.7rem;
    color: #1a2536;
    letter-spacing: -1px;
}
.premium-leadership .section-subtitle {
    text-align: center;
    font-size: 1.15rem;
    color: #4a5568;
    margin-bottom: 2.5rem;
    font-weight: 500;
}
.leadership-carousel-wrapper {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.leadership-carousel-track {
    display: flex;
    transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
    will-change: transform;
    width: 100%;
}
.leader-card {
    flex: 0 0 100%;
    max-width: 100%;
    box-sizing: border-box;
    margin: 0 auto;
    padding: 0 1rem;
    background: rgba(255,255,255,0.85);
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(30,40,60,0.13);
    border: 2.5px solid #2056e3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 370px;
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.2s, transform 0.2s, background 0.2s, border 0.2s;
    backdrop-filter: blur(8px);
}
.leader-card:not(:first-child) {
    margin-left: 0;
}
.leader-card:hover {
    box-shadow: 0 16px 48px rgba(32,86,227,0.13);
    background: rgba(255,255,255,0.97);
    border-color: #4ea1f7;
    /* Remove transform: translateY(-6px) scale(1.03); */
}
@media (max-width: 900px) {
    .leader-card {
        min-height: 260px;
        padding: 0 0.5rem;
    }
}
@media (max-width: 600px) {
    .leader-card {
        min-height: 180px;
        padding: 0 0.5rem;
    }
}
.leader-image img {
    width: 110px;
    height: 110px;
    object-fit: cover;
    border-radius: 50%;
    margin-top: 2.2rem;
    margin-bottom: 1.2rem;
    box-shadow: 0 2px 8px rgba(30,40,60,0.08);
    border: 4px solid #eaf1fd;
}
.leader-content {
    text-align: center;
    padding: 0 0.5rem 1.2rem 0.5rem;
}
.leader-content h3 {
    font-size: 1.18rem;
    font-weight: 700;
    color: #1a2536;
    margin-bottom: 0.3rem;
}
.leader-title {
    font-size: 0.98rem;
    color: #2056e3;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}
.leader-content p {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.6;
    margin: 0;
    font-style: italic;
}
.leadership-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.7rem;
    margin-top: 2.2rem;
}
.leadership-carousel-dots .dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #b0b8c1;
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    box-shadow: 0 2px 8px rgba(30,40,60,0.07);
}
.leadership-carousel-dots .dot.active {
    background: linear-gradient(90deg, #2056e3 60%, #4ea1f7 100%);
    transform: scale(1.18);
}

/* Premium Leadership Two-Column Layout */
.leadership-grid {
    display: flex;
    align-items: center;
    gap: 5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2.5rem;
}
.leadership-info-col {
    flex: 1 1 45%;
    min-width: 340px;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-right: 2.5rem;
}
.leadership-info-col .section-title,
.leadership-info-col .section-subtitle,
.leadership-info-col .leadership-philosophy {
    text-align: left;
    align-items: flex-start;
}
.leadership-carousel-col {
    flex: 1 1 55%;
    min-width: 340px;
    max-width: 480px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-left: 2.5rem;
}
.leadership-carousel-wrapper {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.leader-card {
    margin-bottom: 1.5rem;
}
.leadership-carousel-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.7rem;
    margin-top: 0;
    margin-bottom: 0;
}
@media (max-width: 900px) {
    .leadership-carousel-col {
        padding-left: 0;
    }
    .leadership-carousel-wrapper {
        max-width: 100%;
    }
}

.leader-card.fade-in {
    animation: fadeInLeader 0.5s cubic-bezier(0.4,0,0.2,1);
}
@keyframes fadeInLeader {
    from { opacity: 0; transform: translateY(20px) scale(0.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.leader-image-square {
    width: 120px;
    height: 120px;
    margin: 2.2rem auto 1.2rem auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(30,40,60,0.10);
    border: 3px solid #eaf1fd;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.leader-image-square img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    display: block;
}
.leader-linkedin {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 1.1rem;
    color: #2056e3;
    background: #eaf1fd;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    box-shadow: 0 2px 8px rgba(30,40,60,0.08);
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    font-size: 1.2rem;
}
.leader-linkedin:hover {
    background: #2056e3;
    color: #fff;
    box-shadow: 0 4px 16px rgba(32,86,227,0.13);
}
@media (max-width: 900px) {
    .leader-image-square {
        width: 80px;
        height: 80px;
        margin: 1.2rem auto 1rem auto;
    }
}
@media (max-width: 600px) {
    .leader-image-square {
        width: 60px;
        height: 60px;
        margin: 1rem auto 0.7rem auto;
    }
}

/* Premium About/Who We Are Section Styles */
.premium-about {
    padding: 4rem 0 3rem 0;
    background: linear-gradient(120deg, #eaf1fd 60%, #f8f9fb 100%);
}
.about-grid {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2.5rem;
}
.about-info-col {
    flex: 1 1 50%;
    min-width: 320px;
    max-width: 540px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}
.about-text {
    font-size: 1.08rem;
    color: #4a5568;
    line-height: 1.7;
    font-weight: 500;
    margin-bottom: 1.5rem;
}
.about-values-list {
    margin: 1.2rem 0 0 0;
    padding: 0 0 0 1.2rem;
    color: #2056e3;
    font-size: 1.01rem;
    font-weight: 600;
    list-style: disc;
}
.about-stats {
    display: flex;
    gap: 2.2rem;
    margin-top: 2.2rem;
}
.about-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.about-stat .stat-number {
    font-size: 2.1rem;
    font-weight: 900;
    color: #2056e3;
    margin-bottom: 0.2rem;
    letter-spacing: -1px;
    transition: color 0.2s;
}
.about-stat .stat-label {
    font-size: 1rem;
    color: #4a5568;
    font-weight: 600;
    text-align: center;
}
.about-image-col {
    flex: 1 1 50%;
    min-width: 320px;
    max-width: 540px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-image {
    width: 100%;
    max-width: 420px;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(30,40,60,0.13);
    object-fit: cover;
    aspect-ratio: 4/3;
}
@media (max-width: 1100px) {
    .about-grid {
        gap: 2rem;
        padding: 0 1rem;
    }
    .about-info-col, .about-image-col {
        max-width: 100%;
        min-width: 0;
    }
}
@media (max-width: 900px) {
    .about-grid {
        flex-direction: column;
        gap: 2.2rem;
        padding: 0 0.5rem;
        align-items: stretch;
    }
    .about-info-col, .about-image-col {
        max-width: 100%;
        min-width: 0;
        align-items: center;
        text-align: center;
        padding: 0;
    }
    .about-image {
        max-width: 100%;
        aspect-ratio: 16/9;
    }
    .about-stats {
        justify-content: center;
        gap: 1.2rem;
    }
}

/* Premium Awards & Recognition Section Styles */
.premium-awards {
    padding: 3.5rem 0 2.5rem 0;
    background: #f0f4fa;
}
.awards-section .section-title {
    margin-bottom: 0.5rem;
}
.awards-section .section-subtitle {
    color: #2056e3;
    font-size: 1.08rem;
    margin-bottom: 2.2rem;
    font-weight: 600;
}
.awards-logos-scroll {
    display: flex;
    gap: 2.2rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    scrollbar-width: thin;
    scrollbar-color: #2056e3 #eaf1fd;
}
.award-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(30,40,60,0.07);
    padding: 1.2rem 1.5rem 1rem 1.5rem;
    min-width: 140px;
    transition: box-shadow 0.2s, transform 0.2s;
}
.award-badge:hover {
    box-shadow: 0 4px 24px rgba(30,40,60,0.13);
    transform: translateY(-4px) scale(1.04);
}
.award-badge img {
    width: 48px;
    height: 48px;
    margin-bottom: 0.7rem;
    filter: drop-shadow(0 2px 8px #2056e322);
}
.award-badge span {
    font-size: 1.01rem;
    color: #2056e3;
    font-weight: 700;
    text-align: center;
}
@media (max-width: 700px) {
    .awards-logos-scroll {
        gap: 1.1rem;
    }
    .award-badge {
        min-width: 120px;
        padding: 0.8rem 0.7rem 0.7rem 0.7rem;
    }
    .award-badge img {
        width: 38px;
        height: 38px;
    }
    .award-badge span {
        font-size: 0.97rem;
    }
}

/* Updated Testimonials Section - Working with Existing HTML */
.premium-testimonials {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.premium-testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="2" fill="%23e2e8f0"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.testimonials-section .section-title {
    font-size: 3rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.testimonials-section .section-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.testimonials-carousel {
    position: relative;
    z-index: 2;
    margin-bottom: 3rem;
}

.testimonials-track {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 1rem 0;
}

/* Enhanced Testimonial Cards - Working with Existing Structure */
.testimonial-card {
    flex: 0 0 400px;
    background: #ffffff;
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08), 0 8px 25px rgba(30, 64, 175, 0.06);
    border: 1px solid rgba(30, 64, 175, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 320px;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6 0%, #8b5cf6 50%, #06b6d4 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    z-index: 1;
}

.testimonial-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 30px 80px rgba(30, 64, 175, 0.15), 0 15px 40px rgba(30, 64, 175, 0.1);
    border-color: rgba(30, 64, 175, 0.2);
}

.testimonial-card:hover::before {
    transform: scaleX(1);
}

/* Enhanced Avatar Row */
.testimonial-avatar-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    position: relative;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #e2e8f0;
    transition: border-color 0.3s ease;
}

.testimonial-card:hover .testimonial-avatar {
    border-color: #3b82f6;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-company-logo {
    width: 80px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
    border-radius: 8px;
    padding: 0.5rem;
    transition: all 0.3s ease;
}

.testimonial-card:hover .testimonial-company-logo {
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.testimonial-company-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.testimonial-card:hover .testimonial-company-logo img {
    filter: grayscale(0%);
}

/* Enhanced Quote Mark */
.testimonial-quote-mark {
    font-size: 4rem;
    color: #e2e8f0;
    font-family: Georgia, serif;
    line-height: 1;
    margin: 1rem 0;
    text-align: center;
}

/* Enhanced Quote Content */
.testimonial-quote {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #475569;
    font-style: italic;
    margin: 0 0 1.5rem 0;
    flex: 1;
}

/* Enhanced Client Info */
.testimonial-client {
    margin-top: auto;
    text-align: center;
    font-weight: 600;
    color: #1e293b;
}

.testimonial-company {
    color: #64748b;
    font-weight: 500;
    margin-left: 0.5rem;
}

/* Testimonials Controls */
.testimonials-controls {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.testimonials-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(32, 86, 227, 0.2);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonials-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: #2056e3;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.testimonials-dot.active::before {
    width: 100%;
    height: 100%;
}

.testimonials-dot:hover {
    background: rgba(32, 86, 227, 0.4);
}

.testimonials-dot:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(32, 86, 227, 0.2);
}

/* Testimonials More Button */
.testimonials-more-wrap {
    text-align: center;
    position: relative;
    z-index: 2;
}

.testimonials-more {
    border: 2px solid #2056e3;
    color: #2056e3;
    background: #fff;
    border-radius: 28px;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 700;
    transition: all 0.3s ease;
    cursor: pointer;
    outline: none;
    box-shadow: 0 2px 8px rgba(32, 86, 227, 0.15);
    position: relative;
    z-index: 10;
}

.testimonials-more:hover {
    background: #2056e3;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(32, 86, 227, 0.3);
}

.testimonials-more:focus {
    box-shadow: 0 0 0 3px rgba(32, 86, 227, 0.2);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .testimonial-card {
        flex: 0 0 380px;
        padding: 2rem;
    }
}

@media (max-width: 900px) {
    .premium-testimonials {
        padding: 4rem 0;
    }
    
    .testimonials-section .section-title {
        font-size: 2.5rem;
    }
    
    .testimonials-section .section-subtitle {
        font-size: 1.125rem;
    }
    
    .testimonial-card {
        flex: 0 0 350px;
        padding: 1.75rem;
        min-height: 300px;
    }
    
    .testimonial-quote {
        font-size: 1rem;
    }
    
    .testimonials-track {
        gap: 1.5rem;
    }
}

@media (max-width: 600px) {
    .premium-testimonials {
        padding: 3rem 0;
    }
    
    .testimonials-section .section-title {
        font-size: 2rem;
    }
    
    .testimonials-section .section-subtitle {
        font-size: 1rem;
    }
    
    .testimonial-card {
        flex: 0 0 320px;
        padding: 1.5rem;
        min-height: 280px;
    }
    
    .testimonial-quote {
        font-size: 0.95rem;
    }
    
    .testimonials-track {
        gap: 1rem;
    }
    
    .testimonial-avatar {
        width: 40px;
        height: 40px;
    }
    
    .testimonial-company-logo {
        width: 70px;
        height: 35px;
    }
}