/* ===================================
   Digicentric Static Site Styles
   =================================== */

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
}

body {
    font-family: 'Catamaran', Arial, Helvetica, sans-serif;
    color: #6d6e71;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* Header Styles */
header {
    background: transparent;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: none;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo img {
    height: 60px;
    width: auto;
    transition: height 0.3s ease;
}

/* Scrolled Header State */
header.scrolled {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

header.scrolled .header-inner {
    padding: 10px 0;
    transition: padding 0.3s ease;
}

header.scrolled .logo img {
    height: 40px;
}

/* Navigation */
nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
    align-items: center;
}

nav ul li a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

nav ul li a:hover {
    color: #50c9f3;
}

nav ul li a.active {
    color: #50c9f3;
}

header.scrolled nav ul li a {
    color: #515151;
    text-shadow: none;
}

header.scrolled nav ul li a:hover {
    color: #4b81a6;
}

header.scrolled nav ul li a.active {
    color: #4b81a6;
}


/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: all 0.3s ease;
    box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

header.scrolled .mobile-menu-toggle span {
    background: #515151;
    box-shadow: none;
}

/* Skip link visible when focused */
.skip-link {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.skip-link:focus {
    left: 20px;
    top: 20px;
    width: auto;
    height: auto;
    background: #4b81a6;
    color: #fff;
    padding: 8px 12px;
    z-index: 2000;
    border-radius: 4px;
}

/* Focus styles for interactive elements */
a:focus,
button:focus,
.mobile-menu-toggle:focus,
.swiper-button-prev:focus,
.swiper-button-next:focus {
    outline: 3px solid rgba(75,129,166,0.6);
    outline-offset: 2px;
}

/* Hero Carousel Section */
.hero {
    position: relative;
    height: 720px;
    overflow: hidden;
}

.hero-swiper {
    width: 100%;
    height: 100%;
}

.hero-slide {
    width: 100%;
    height: 720px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        repeating-linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.4),
            rgba(0, 0, 0, 0.4) 1px,
            transparent 1px,
            transparent 2px
        ),
        linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-family: 'Catamaran', Arial, Helvetica, sans-serif;
    font-size: 64px;
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: 0px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Swiper Navigation Arrows */
.hero-swiper .swiper-button-prev,
.hero-swiper .swiper-button-next {
    color: #ffffff;
    width: 50px;
    height: 50px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hero-swiper:hover .swiper-button-prev,
.hero-swiper:hover .swiper-button-next {
    opacity: 1;
}

.hero-swiper .swiper-button-prev:after,
.hero-swiper .swiper-button-next:after {
    font-size: 20px;
    font-weight: bold;
}

.hero-swiper .swiper-button-prev:hover,
.hero-swiper .swiper-button-next:hover {
    background: rgba(75, 129, 166, 0.8);
}

/* Swiper Pagination Dots */
.hero-swiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #ffffff;
    opacity: 0.5;
}

.hero-swiper .swiper-pagination-bullet-active {
    opacity: 1;
    background: #4b81a6;
}

/* Page Title Banner (About Us) */
.page-title-banner {
    background: #4b81a6;
    color: #ffffff;
    text-align: center;
    padding: 100px 20px;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.page-title-banner h1 {
    font-family: 'DID', serif;
    font-size: 60px;
    line-height: 60px;
    letter-spacing: 3px;
    margin-bottom: 20px;
    font-weight: 400;
}

.page-title-banner .subtitle {
    font-size: 26px;
    line-height: 26px;
    font-weight: 300;
}

/* About Hero Section */
.about-hero {
    height: 720px;
}

.about-hero .hero-slide {
    height: 720px;
}

.about-hero .hero-content h1 {
    font-family: 'Catamaran', Arial, Helvetica, sans-serif;
    font-size: 64px;
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: 0px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.about-hero .hero-content .subtitle {
    font-size: 26px;
    line-height: 1.3;
    font-weight: 300;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Team Experience Section */
.team-experience {
    background: #ffffff;
    padding: 60px 20px;
}

.team-experience h2 {
    font-size: 32px;
    font-weight: 600;
    color: #4b81a6;
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.3;
    letter-spacing: 0px;
}

.experience-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.logo-graphic {
    text-align: center;
}

.logo-graphic img {
    max-width: 100%;
    height: auto;
}

.experience-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #6d6e71;
}

/* Mission Quote Section */
.mission-quote {
    background: #f8f8f8;
    padding: 60px 20px;
}

.mission-quote blockquote {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
}

.mission-quote blockquote p {
    font-size: 20px;
    line-height: 1.8;
    color: #6d6e71;
    text-align: center;
    font-style: italic;
    position: relative;
}

.mission-quote blockquote p:before {
    content: "\201C";
    font-size: 80px;
    color: #4b81a6;
    position: absolute;
    left: -40px;
    top: -20px;
    font-family: Georgia, serif;
    line-height: 1;
}

/* Our People Section */
.our-people {
    background: #e8e8e8;
    padding: 60px 20px;
}

.our-people h2 {
    font-size: 32px;
    font-weight: 600;
    color: #4b81a6;
    text-align: center;
    margin-bottom: 40px;
    letter-spacing: 0px;
}

.people-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.people-item {
    text-align: center;
}

.icon-circle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: #4b81a6;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    position: relative;
}

.icon-circle i {
    font-size: 60px;
    color: #ffffff;
}

.people-item h3 {
    font-size: 16px;
    font-weight: 600;
    color: #515151;
    letter-spacing: 0px;
    line-height: 1.3;
}

/* Contact Information Section */
.contact-information {
    background: #ffffff;
    padding: 60px 20px;
}

.contact-information h2 {
    font-size: 32px;
    font-weight: 600;
    color: #515151;
    text-align: center;
    margin-bottom: 40px;
    border-top: 3px solid #4b81a6;
    padding-top: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.contact-details {
    max-width: 600px;
    margin: 0 auto;
}

.contact-details p {
    font-size: 16px;
    line-height: 2;
    color: #6d6e71;
    margin-bottom: 15px;
}

.contact-details a {
    color: #4b81a6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: #50c9f3;
    text-decoration: underline;
}

/* Service Boxes Section */
.services {
    background: #ffffff;
    padding: 60px 20px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-box {
    text-align: center;
    padding: 30px 20px;
}

.service-box .icon {
    font-size: 60px;
    color: #4b81a6;
    margin-bottom: 20px;
}

.service-box .icon i {
    display: inline-block;
}

.service-box h3 {
    font-size: 24px;
    font-weight: 600;
    color: #515151;
    margin-bottom: 15px;
    line-height: 1.3;
}

.service-box p {
    font-size: 16px;
    color: #6d6e71;
    line-height: 1.6;
}

/* Partners Section */
.partners {
    background: #f8f8f8;
    padding: 60px 20px;
}

.partners h2 {
    text-align: center;
    font-size: 32px;
    font-weight: 600;
    color: #515151;
    margin-bottom: 40px;
}

.partners-swiper {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    padding: 0 60px;
}

.partners-swiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.partner-logo {
    text-align: center;
    padding: 10px;
    background: #ffffff;
    border-radius: 5px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    height: auto;
    width: auto;
    object-fit: contain;
}

/* Partners Carousel Navigation */
.partners-swiper .swiper-button-prev,
.partners-swiper .swiper-button-next {
    color: #4b81a6;
    width: 40px;
    height: 40px;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.partners-swiper .swiper-button-prev:after,
.partners-swiper .swiper-button-next:after {
    font-size: 16px;
    font-weight: bold;
}

.partners-swiper .swiper-button-prev {
    left: 10px;
}

.partners-swiper .swiper-button-next {
    right: 10px;
}

.partners-swiper .swiper-button-prev:hover,
.partners-swiper .swiper-button-next:hover {
    background: #4b81a6;
    color: #ffffff;
}

/* Content Section (About Us) */
.content-section {
    padding: 80px 20px;
    background: #ffffff;
}

.content-section .container {
    max-width: 900px;
}

.content-section h2 {
    font-size: 32px;
    font-weight: 600;
    color: #515151;
    margin-bottom: 20px;
    border-top: 3px solid #4b81a6;
    padding-top: 20px;
}

.content-section h3 {
    font-size: 24px;
    font-weight: 600;
    color: #515151;
    margin-bottom: 15px;
    margin-top: 30px;
}

.content-section p {
    font-size: 16px;
    line-height: 1.8;
    color: #6d6e71;
    margin-bottom: 20px;
}

.content-section .logo-inline {
    max-width: 300px;
    height: auto;
    margin: 30px 0;
}

.content-section ul {
    list-style: none;
    margin: 20px 0;
}

.content-section ul li {
    font-size: 16px;
    line-height: 1.8;
    color: #6d6e71;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.content-section ul li:before {
    content: "•";
    color: #4b81a6;
    font-weight: bold;
    font-size: 20px;
    position: absolute;
    left: 0;
}

.content-section ul.contact-info li:before {
    content: "";
}

.content-section ul.contact-info li {
    padding-left: 0;
}

/* Footer */
footer {
    background: #515151;
    color: #ffffff;
    padding: 40px 20px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.footer-info h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-info p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 5px;
}

.footer-info a {
    color: #50c9f3;
    text-decoration: none;
}

.footer-info a:hover {
    text-decoration: underline;
}

.footer-nav h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-nav ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-nav ul li a:hover {
    color: #50c9f3;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #6d6e71;
    font-size: 12px;
    grid-column: 1 / -1;
    margin-top: 20px;
}

.footer-bottom a {
    color: #50c9f3;
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 768px) {
    /* Mobile Menu */
    .mobile-menu-toggle {
        display: flex;
    }

    nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #ffffff;
        flex-direction: column;
        gap: 0;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    nav ul.active {
        display: flex;
    }

    nav ul li {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid #f0f0f0;
    }

    nav ul li a {
        display: block;
        padding: 15px;
        color: #515151;
        text-shadow: none;
    }

    nav ul li a:hover,
    nav ul li a.active {
        color: #4b81a6;
    }

    /* Hero Carousel */
    .hero {
        height: 400px;
    }

    .hero-slide {
        height: 400px;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    /* Page Title Banner */
    .page-title-banner {
        padding: 60px 20px;
        height: 300px;
    }

    .page-title-banner h1 {
        font-size: 40px;
        line-height: 45px;
    }

    .page-title-banner .subtitle {
        font-size: 20px;
    }

    /* Services Grid */
    .services-grid {
        grid-template-columns: 1fr;
    }

    /* Partners Grid */
    .partners-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 20px;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-info,
    .footer-nav {
        text-align: center;
    }

    .footer-nav ul {
        align-items: center;
    }

    /* Content Section */
    .content-section {
        padding: 40px 20px;
    }

    .content-section h2 {
        font-size: 26px;
    }

    .content-section h3 {
        font-size: 20px;
    }

    /* About Hero Section */
    .about-hero {
        height: 400px;
    }

    .about-hero .hero-slide {
        height: 400px;
    }

    .about-hero .hero-content h1 {
        font-size: 28px;
    }

    .about-hero .hero-content .subtitle {
        font-size: 20px;
    }

    /* Team Experience Section */
    .team-experience h2 {
        font-size: 26px;
    }

    .experience-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* Mission Quote */
    .mission-quote blockquote {
        padding: 0 20px;
    }

    .mission-quote blockquote p {
        font-size: 18px;
    }

    .mission-quote blockquote p:before {
        font-size: 60px;
        left: -20px;
        top: -10px;
    }

    /* Our People Section */
    .people-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .icon-circle {
        width: 120px;
        height: 120px;
    }

    .icon-circle i {
        font-size: 50px;
    }

    .people-item h3 {
        font-size: 14px;
    }

    /* Contact Information */
    .contact-information h2 {
        font-size: 26px;
    }

    /* Logo Graphic */
    .logo-graphic img {
        max-width: 60%;
    }
}

@media (max-width: 480px) {
    .logo img {
        height: 45px;
    }

    .hero {
        height: 350px;
    }

    .hero-slide {
        height: 350px;
    }

    .hero-content h1 {
        font-size: 26px;
    }

    .page-title-banner h1 {
        font-size: 32px;
        line-height: 36px;
    }

    .page-title-banner .subtitle {
        font-size: 18px;
    }

    .service-box h3 {
        font-size: 20px;
    }

    .partners h2 {
        font-size: 26px;
    }

    .partners-grid {
        grid-template-columns: 1fr;
    }

    /* About Hero */
    .about-hero {
        height: 350px;
    }

    .about-hero .hero-slide {
        height: 350px;
    }

    .about-hero .hero-content h1 {
        font-size: 26px;
    }

    .about-hero .hero-content .subtitle {
        font-size: 18px;
    }

    /* Team Experience */
    .team-experience h2 {
        font-size: 22px;
    }

    /* Mission Quote */
    .mission-quote blockquote p {
        font-size: 16px;
    }

    /* Our People - 2x2 Grid Layout */
    .people-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .icon-circle {
        width: 100px;
        height: 100px;
    }

    .icon-circle i {
        font-size: 40px;
    }

    .people-item h3 {
        font-size: 13px;
    }

    /* Services - 2x2 Grid Layout */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .service-box {
        padding: 20px 15px;
    }

    .service-box .icon {
        font-size: 48px;
        margin-bottom: 15px;
    }

    .service-box p {
        font-size: 14px;
    }
}

