:root {
    --deep-navy: #0C133E;
    --teal: #69BCA8;
    --light-teal: #A6D9CF;
    --ice: #F5FBF9;
    --white: #FFFFFF;
    --black: #000000;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--deep-navy);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--white);
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Modern Typography */
h1, h2, h3, h4 {
    font-weight: 800;
    line-height: 1.2;
}

/* Floating Glass Morphism Section */
.specialization-branded {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(135deg, var(--ice) 0%, rgba(245,251,249,0.8) 100%);
    overflow: hidden;
}

.specialization-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    align-items: flex-start;
    position: relative;
    z-index: 2;
}

.specialization-image {
    flex: 1 1 45%;
    min-width: 300px;
    border-radius: 24px;
    overflow: hidden;
    transform-style: preserve-3d;
    perspective: 1000px;
    box-shadow: 0 25px 50px -12px rgba(12, 19, 62, 0.15);
}

.specialization-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.specialization-image:hover img {
    transform: scale(1.05);
}

.image-overlay-brand {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(12, 19, 62, 0.1) 0%, rgba(105, 188, 168, 0.05) 100%);
}

.specialization-text {
    flex: 1 1 50%;
    min-width: 300px;
}

.subtitle-brand {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: var(--teal);
    position: relative;
}

.subtitle-brand::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--teal);
    transition: width 0.3s ease;
}

.subtitle-brand:hover::after {
    width: 60px;
}

.main-title-brand {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 25px;
    color: var(--deep-navy);
    line-height: 1.3;
}

.content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.highlight-paragraph-brand {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 10px;
    color: var(--deep-navy);
    font-weight: 500;
}

.brand-text {
    color: var(--deep-navy);
    line-height: 1.7;
    margin-bottom: 0;
    opacity: 0.9;
}

.philosophy-box-brand {
    background-color: var(--white);
    border-left: 4px solid var(--teal);
    padding: 25px;
    margin: 15px 0;
    border-radius: 0 12px 12px 0;
    box-shadow: 0 10px 20px rgba(12, 19, 62, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.philosophy-box-brand:hover {
    transform: translateX(5px);
    box-shadow: 0 15px 30px rgba(12, 19, 62, 0.1);
}

.benefits-section-brand {
    background-color: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(12, 19, 62, 0.08);
    margin: 20px 0;
    border: 1px solid var(--light-teal);
    transition: transform 0.3s ease;
}

.benefits-section-brand h4 {
    margin-bottom: 20px;
}

.benefits-section-brand:hover {
    transform: translateY(-5px);
}

.custom-list-brand {
    list-style-type: none;
    padding-left: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.custom-list-brand li {
    padding-left: 30px;
    position: relative;
    line-height: 1.6;
    color: var(--deep-navy);
}

.custom-list-brand li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--teal);
    font-weight: bold;
    font-size: 18px;
    transition: transform 0.3s ease;
}

.custom-list-brand li:hover::before {
    transform: translateX(5px);
}

.cta-section-brand {
    margin-top: 40px;
    background: linear-gradient(135deg, var(--deep-navy) 0%, #1A2A6C 100%);
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(12, 19, 62, 0.15);
}

.cta-text-brand {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: var(--white);
    opacity: 0.9;
}

.cta-buttons-brand {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.primary-cta-brand {
    background-color: var(--teal);
    color: var(--deep-navy);
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    border: 2px solid var(--teal);
    min-width: 180px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(105, 188, 168, 0.3);
}

.primary-cta-brand:hover {
    background-color: var(--light-teal);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(105, 188, 168, 0.4);
}

.secondary-cta-brand {
    background-color: transparent;
    color: var(--white);
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--light-teal);
    min-width: 180px;
    text-align: center;
}

.secondary-cta-brand:hover {
    background-color: rgba(166, 217, 207, 0.2);
    transform: translateY(-3px);
}

/* Floating Background Elements */
.floating-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.1;
    z-index: 1;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: var(--teal);
    top: 10%;
    left: 5%;
    animation: float 15s infinite ease-in-out;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: var(--deep-navy);
    bottom: 10%;
    right: 5%;
    animation: float 20s infinite ease-in-out reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(-5%, -5%); }
    50% { transform: translate(5%, 5%); }
    75% { transform: translate(5%, -5%); }
}

/* Modern Feature Area */
.feature-area {
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.feature-section-top {
    margin-bottom: 60px;
    text-align: center;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--deep-navy);
    line-height: 1.2;
}

.section-title.black {
  color: #69BCA8;
}

.feature-section-top .text {
    font-size: 1.125rem;
    color: var(--deep-navy);
    opacity: 0.8;
    max-width: 700px;
    margin: 0 auto;
}

.feature-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    perspective: 1000px;
}

.wcf_iconbox {
    background: var(--white);
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: 0 15px 40px rgba(12, 19, 62, 0.08);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    border: 1px solid rgba(166, 217, 207, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.wcf_iconbox::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(105, 188, 168, 0.05) 0%, rgba(12, 19, 62, 0.02) 100%);
    z-index: -1;
}

.wcf_iconbox:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(12, 19, 62, 0.12);
}

.cf_count h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--teal);
    margin-bottom: 15px;
    line-height: 1;
    opacity: 0.8;
}

.cf_title h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--deep-navy);
    margin-bottom: 15px;
}

.cf_text .text {
    color: var(--deep-navy);
    opacity: 0.8;
    line-height: 1.7;
    margin-bottom: 15px;
}

/* About Area - Modern Layout */
.about-area {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--deep-navy) 0%, #1A2A6C 100%);
    color: var(--white);
    position: relative;
}

.about-area-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    align-items: flex-start;
}

.area-shape-1 {
    flex: 1 1 45%;
    min-width: 300px;
    border-radius: 16px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    transition: transform 0.5s ease;
    overflow: hidden;
}

.area-shape-1:hover {
    transform: scale(1.02);
}

.area-shape-1 img {
    width: 100%;
    height: auto;
    display: block;
}

.section-content {
    flex: 1 1 45%;
    min-width: 300px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 25px;
    color: var(--white);
}

.thumb-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.thumb-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--teal);
    align-self: self-start;
    mix-blend-mode: unset !important;

}

.text-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100% !important;
    max-width: 100% !important;
}

.text-wrapper .text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    line-height: 1.7;
}

.list-check {
    list-style-type: none;
    padding-left: 0;
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.list-check li {
    padding-left: 30px;
    position: relative;
    color: rgba(255, 255, 255, 0.9);
}

.list-check li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--teal);
    font-weight: bold;
    font-size: 18px;
}

.btn-wrapper {
    margin-top: 40px;
}

.wc-btn-primary {
    display: inline-flex;
    align-items: center;
    background-color: var(--teal);
    color: var(--deep-navy);
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    border: 2px solid var(--teal);
    box-shadow: 0 5px 15px rgba(105, 188, 168, 0.3);
}

.wc-btn-primary:hover {
    background-color: var(--light-teal);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(105, 188, 168, 0.4);
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .feature-area, .about-area, .specialization-branded {
        padding: 100px 0;
    }
}

@media (max-width: 992px) {
    .specialization-grid, .about-area-inner {
        flex-direction: column;
    }
    
    .section-title, .main-title-brand {
        font-size: 2.25rem;
    }
    
    .wcf_iconbox {
        padding: 30px 25px;
    }
}

@media (max-width: 768px) {
    .feature-area, .about-area, .specialization-branded {
        padding: 80px 0;
    }
    
    .feature-wrapper {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons-brand {
        flex-direction: column;
        align-items: center;
    }
    
    .primary-cta-brand, .secondary-cta-brand {
        width: 100%;
        max-width: 250px;
    }
}

@media (max-width: 480px) {
    .feature-area, .about-area, .specialization-branded {
        padding: 60px 0;
    }
    
    .section-title, .main-title-brand {
        font-size: 2rem;
    }
    
    .benefits-section-brand, .cta-section-brand {
        padding: 25px 20px;
    }
    
    .cf_count h2 {
        font-size: 2.5rem;
    }
}