/* ================= HERO SECTION ================= */

.hero-section {
    background-color: #FFF5EE;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

/* Soft ambient background blobs */
.hero-section::before,
.hero-section::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    z-index: 0;
    filter: blur(4px);
    animation: blobFloat 14s ease-in-out infinite;
}

.hero-section::before {
    width: 300px;
    height: 300px;
    background: rgba(126, 41, 34, 0.08);
    top: -120px;
    left: -120px;
}

.hero-section::after {
    width: 220px;
    height: 220px;
    background: rgba(189, 144, 96, 0.08);
    bottom: -90px;
    right: -90px;
    animation-delay: 3s;
}

@keyframes blobFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(25px) scale(1.05); }
}

/* ================= TEXT ================= */

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1.25;
    margin-bottom: 20px;
    opacity: 0;
    animation: titleReveal 0.9s ease forwards;
}

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

/* Highlighted words */
.hero-title strong {
    color: var(--accent-color);
    font-size: 4rem;
    position: relative;
    display: inline-block;
}

/* Underline animation (clean & premium) */
.hero-title strong::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 6px;
    width: 0;
    height: 6px;
    background: rgba(189, 144, 96, 0.25);
    border-radius: 4px;
    animation: underlineGrow 0.8s ease forwards;
    animation-delay: 0.6s;
    z-index: -1;
}

@keyframes underlineGrow {
    to { width: 100%; }
}

/* Description */
.hero-description {
    font-size: 1.25rem;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 30px;
    opacity: 0;
    animation: fadeUp 1.2s ease forwards;
    animation-delay: 0.4s;
}

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

/* CTA button */
.hero-section .btn-primary-custom {
    animation: ctaSoftPulse 3s ease-in-out infinite;
}

@keyframes ctaSoftPulse {
    0%, 100% { box-shadow: 0 0 0 rgba(126,41,34,0.35); }
    50% { box-shadow: 0 0 22px rgba(126,41,34,0.45); }
}

/* ================= IMAGE ================= */

.hero-imagee-container {
    position: relative;
    z-index: 2;
}

.hero-imagee {
    border-radius: 14px;
    overflow: hidden;
    height: 500px;
    max-width: 90%;
    position: relative;
    box-shadow: 0 30px 70px rgba(0,0,0,0.18);
    animation: imageFloat 7s ease-in-out infinite;
}

@keyframes imageFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hero-imagee img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Logo badge */
.thumbnail-badge {
    position: absolute;
    bottom: 18px;
    right: 18px;
    width: 90px;
    height: 90px;
    border-radius: 12px;
    overflow: hidden;
    border: 3px solid #fff;
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
    animation: badgeFloat 4s ease-in-out infinite;
}

@keyframes badgeFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

/* Price badge */
.price-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    background: #fff;
    color: var(--primary-color);
    border-radius: 50%;
    width: 78px;
    height: 78px;
    font-weight: 800;
    font-size: 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--accent-color);
    animation: priceTilt 6s ease-in-out infinite;
}

@keyframes priceTilt {
    0%, 100% { transform: rotate(10deg); }
    50% { transform: rotate(-10deg); }
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
    .hero-title { font-size: 2.6rem; }
    .hero-title strong { font-size: 3.1rem; }
}

@media (max-width: 768px) {
    .hero-section { padding: 40px 0; }
    .hero-title { font-size: 2.1rem; }
    .hero-title strong { font-size: 2.5rem; }
    .hero-imagee { height: 380px; margin: auto; }
}

@media (max-width: 576px) {
    .hero-title { font-size: 1.8rem; }
    .hero-title strong { font-size: 2.1rem; }
}


              /* Scrolling Banner Styles */
        .scrolling-banner {
            background-color: var(--primary-color);
            padding: 15px 0;
            overflow: hidden;
            white-space: nowrap;
        }

        .banner-content {
            display: inline-block;
            animation: scroll 30s linear infinite;
        }

        @keyframes scroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        .banner-item {
            display: inline-block;
            padding: 0 30px;
            color: white;
            font-weight: 600;
            font-size: 18px;
            text-transform: uppercase;
            position: relative;
        }

        .banner-item::after {
            content: '•';
            margin-left: 30px;
            opacity: 0.7;
        }

.section-padding {
    padding: 80px 0;
}

.btn-primary-custom {
    background-color: var(--primary-color);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    border: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

/* .btn-primary-custom:hover {
    background-color: #6d231d;
    color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(126, 41, 34, 0.3);
} */

.section-title {
    color: var(--primary-color);
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
}

.section-title strong {
    color: var(--secondary-color);
}

.section-divider {
    width: 120px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    margin: 25px auto 35px;
    border-radius: 2px;
}

/* Responsive Design for main content */
@media (max-width: 992px) {
    .section-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 30px;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 26px;
    }
}

    /* Skills Section Styles */
    #skills-section {
        background: linear-gradient(135deg, #f8f4ef 0%, #fff 100%);
        position: relative;
        overflow: hidden;
    }

    #skills-section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url('/api/placeholder/1600/900');
        background-size: cover;
        opacity: 0.04;
        z-index: 0;
    }

    #skills-section .container {
        position: relative;
        z-index: 1;
    }

    /* Skills Tabs */
    .skills-tabs .tab-btn {
        padding: 10px 20px;
        background-color: #f0f0f0;
        color: #333;
        border: none;
        border-radius: 30px;
        font-weight: 600;
        font-size: 14px;
        cursor: pointer;
        transition: all 0.3s ease;
        margin: 0 5px 10px;
    }

    .skills-tabs .tab-btn:hover, 
    .skills-tabs .tab-btn.active {
        background-color: var(--primary-color);
        color: white;
        box-shadow: 0 5px 15px rgba(122, 35, 28, 0.2);
    }

    /* Category Header */
    .category-header {
        display: flex;
        align-items: center;
        margin: 30px 0 15px;
        position: relative;
        width: 100%;
    }

    .category-header::after {
        content: "";
        flex-grow: 1;
        height: 1px;
        background: linear-gradient(to right, var(--secondary-color) 0%, rgba(203, 166, 123, 0.1) 100%);
        margin-left: 15px;
    }

    .category-header h3 {
        font-size: 24px;
        color: var(--primary-color);
        font-weight: 700;
        display: flex;
        align-items: center;
        gap: 12px;
        margin: 0;
    }

    .category-header h3 i {
        color: var(--secondary-color);
        font-size: 22px;
    }

    .category-count {
        background-color: var(--secondary-color);
        color: white;
        padding: 3px 10px;
        border-radius: 20px;
        font-size: 13px;
        font-weight: 600;
        margin-left: 12px;
    }

    /* Skill Card */
    .skill-card {
        position: relative;
        height: 250px;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        perspective: 1000px;
        background: white;
    }

    .skill-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }

    .skill-inner {
        position: relative;
        width: 100%;
        height: 100%;
        text-align: center;
        transition: transform 0.8s;
        transform-style: preserve-3d;
    }

    .skill-card:hover .skill-inner {
        transform: rotateY(180deg);
    }

    .skill-front, 
    .skill-back {
        position: absolute;
        width: 100%;
        height: 100%;
        backface-visibility: hidden;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 20px;
    }

    .skill-front {
        background: linear-gradient(135deg, #fff 0%, #f8f4ef 100%);
        border-top: 4px solid var(--secondary-color);
    }

    .skill-back {
        background: linear-gradient(135deg, var(--primary-color) 0%, #9a3c35 100%);
        color: white;
        transform: rotateY(180deg);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
    
    .skill-icon {
        width: 60px;
        height: 60px;
        background-color: rgba(203, 166, 123, 0.15);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 15px;
        color: var(--primary-color);
        font-size: 26px;
        transition: all 0.3s ease;
    }

    .skill-front h4 {
        font-size: 16px;
        color: #333;
        margin-bottom: 5px;
        font-weight: 600;
    }

    .skill-abbr {
        font-size: 13px;
        color: var(--secondary-color);
        font-weight: 700;
        letter-spacing: 1px;
    }

    .skill-back h4 {
        font-size: 16px;
        margin-bottom: 10px;
        font-weight: 600;
        line-height: 1.2;
        color: #CBA67B;
    }

    .skill-back p {
        font-size: 13px;
        line-height: 1.4;
        opacity: 0.9;
        margin-bottom: 10px;
    }

    .skill-back .skill-abbr {
        color: rgba(255, 255, 255, 0.7);
        margin-top: 5px;
    }

    .learn-more {
        margin-top: 8px;
        padding: 5px 15px;
        background-color: rgba(255, 255, 255, 0.2);
        border-radius: 20px;
        font-size: 12px;
        transition: all 0.3s ease;
        cursor: pointer;
    }

    .learn-more:hover {
        background-color: rgba(255, 255, 255, 0.3);
    }

    /* CTA Section */
    .skills-cta {
        text-align: center;
        margin-top: 60px;
        padding-top: 40px;
        position: relative;
    }

    .skills-cta::before {
        content: "";
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 200px;
        height: 1px;
        background: linear-gradient(to right, rgba(203, 166, 123, 0.1), var(--secondary-color), rgba(203, 166, 123, 0.1));
    }

    .explore-btn {
        padding: 12px 35px;
        font-size: 16px;
        font-weight: 600;
    }

    .skills-count {
        margin-top: 20px;
        color: #666;
        font-size: 14px;
    }
    
    .skills-count strong {
        color: var(--primary-color);
        font-weight: 700;
    }

    /* Responsive Design */
    @media (max-width: 992px) {
        .category-header h3 {
            font-size: 20px;
        }
        
        .skill-card {
            height: 220px;
        }
    }

    @media (max-width: 768px) {
        .category-header h3 {
            font-size: 18px;
        }
        
        .skill-card {
            height: 200px;
        }
        
        .skill-front h4,
        .skill-back h4 {
            font-size: 14px;
        }
        
        .skill-back p {
            font-size: 12px;
        }
        
        .skills-tabs .tab-btn {
            font-size: 13px;
            padding: 8px 15px;
            margin: 0 3px 8px;
        }
    }

    @media (max-width: 576px) {
        .category-header h3 {
            font-size: 16px;
        }
        
        .category-count {
            font-size: 11px;
            padding: 2px 8px;
        }
        
        .skill-card {
            height: 180px;
        }
        
        .skill-icon {
            width: 50px;
            height: 50px;
            font-size: 22px;
            margin-bottom: 10px;
        }
        
        .explore-btn {
            padding: 10px 25px;
            font-size: 14px;
        }
    }

    /* About Certification Section Styles */
.about-certification-section {
    background: linear-gradient(135deg, #fff 0%, #f9f5f0 100%);
    position: relative;
    overflow: hidden;
}

.about-certification-section::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(126, 41, 34, 0.05);
    top: -150px;
    right: -150px;
    z-index: 0;
}

.about-certification-section::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(203, 166, 123, 0.03);
    bottom: -100px;
    left: -100px;
    z-index: 0;
}

.about-certification-section .container {
    position: relative;
    z-index: 1;
}

/* Divider */
.divider {
    width: 80px;
    height: 2px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    margin-bottom: 20px;
}

/* Section Title */
.about-certification-section .section-title {
    font-size: 32px;
    color: var(--primary-color);
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 20px;
}

/* Text Content */
.about-certification-section p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

.about-certification-section strong {
    color: var(--primary-color);
    font-weight: 700;
}

/* Features List */
.features-list {
    margin: 30px 0;
}

.feature-item {
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateX(5px);
}

.feature-icon img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    transition: transform 0.3s ease;
    filter: brightness(0) saturate(100%);
    mix-blend-mode: multiply;
}

.feature-item:hover .feature-icon img {
    transform: scale(1.15);
    filter: brightness(0) saturate(100%);
}

.feature-content {
    flex: 1;
}

.feature-title {
    font-size: 18px;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 8px;
}

.feature-description {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* Certification Images */
.certification-image {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.certification-image:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.certification-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

/* Image Overlay Effect */
.certification-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(126, 41, 34, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.certification-image:hover::after {
    opacity: 1;
}

/* Button */
.about-certification-section .btn-primary-custom {
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 992px) {
    .about-certification-section .section-title {
        font-size: 28px;
    }
    
    .certification-image {
        margin-bottom: 30px;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
    }
    
    .feature-icon img {
        width: 40px;
        height: 40px;
    }
    
    .feature-title {
        font-size: 16px;
    }
    
    .feature-description {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .about-certification-section {
        padding: 60px 0;
    }
    
    .about-certification-section .section-title {
        font-size: 24px;
    }
    
    .about-certification-section p {
        font-size: 15px;
    }
    
    .certification-image {
        border-radius: 8px;
    }
}

@media (max-width: 576px) {
    .about-certification-section .section-title {
        font-size: 22px;
    }
    
    .features-list {
        margin: 20px 0;
    }
    
    .feature-item {
        margin-bottom: 20px;
    }
    
    .feature-icon {
        width: 45px;
        height: 45px;
    }
    
    .feature-icon img {
        width: 35px;
        height: 35px;
    }
}

/* Full Width CSDM Section */
.csdm-full-section {
    width: 100%;
    overflow: hidden;
}

.csdm-full-section .row {
    margin: 0;
    min-height: 500px;
}

/* Full Height Image Column */
.csdm-full-image {
    height: 100%;
    width: 100%;
    overflow: hidden;
}

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

/* Full Height Content Column with Image Background */
.csdm-full-content {
    background-image: url('../images/csdm-group.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100%;
    padding: 60px 50px;
    position: relative;
    display: flex;
    align-items: center;
}

/* Gradient Overlay on top of Image */
.content-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: transparent;
    background-image: linear-gradient(260deg, #CBA67B 0%, #7E2922 100%);
    opacity: 0.92;
    z-index: 1;
}

.csdm-content-inner {
    color: white;
    max-width: 90%;
    position: relative;
    z-index: 2;
}

.csdm-title {
    color: black;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.csdm-description {
    color: #f8f8f8;
    font-size: 1.2rem;
    font-weight: 501;
    line-height: 1.6;
    margin-bottom: 30px;
}

.csdm-btn {
    background-color: whitesmoke;
    color: black;
    padding: 12px 35px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-block;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.csdm-btn:hover {
    background-color: rgba(255, 255, 255, 0.3);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .csdm-full-content {
        padding: 50px 40px;
    }
    
    .csdm-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 992px) {
    .csdm-full-section .row {
        min-height: 400px;
    }
    
    .csdm-full-content {
        padding: 40px 35px;
    }
    
    .csdm-title {
        font-size: 2rem;
    }
    
    .csdm-description {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .csdm-full-section .row {
        min-height: auto;
    }
    
    .csdm-full-image,
    .csdm-full-content {
        height: 400px;
    }
    
    .csdm-full-content {
        padding: 35px 30px;
    }
    
    .csdm-title {
        font-size: 1.8rem;
    }
    
    .csdm-description {
        font-size: 1rem;
    }
    
    .csdm-btn {
        padding: 10px 28px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .csdm-full-image,
    .csdm-full-content {
        height: 350px;
    }
    
    .csdm-full-content {
        padding: 30px 25px;
    }
    
    .csdm-title {
        font-size: 1.6rem;
    }
    
    .csdm-description {
        font-size: 0.95rem;
    }
    
    .csdm-btn {
        padding: 8px 24px;
        font-size: 0.95rem;
    }
}

/* Why Choose The 100 Skills Section Styles */
.why-choose-section {
    background-color: #f9f9f9;
    padding: 80px 0;
}

.section-header {
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.7rem;
    font-weight: 700;
    color: #2c3e50;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
    letter-spacing: -0.5px;
}

/* .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #CBA67B, #7E2922);
    border-radius: 2px;
} */

/* Feature Cards */
.feature-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.feature-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.feature-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 70%, rgba(0,0,0,0.1));
    pointer-events: none;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.feature-card:hover .feature-image img {
    transform: scale(1.1);
}

.feature-content {
    padding: 28px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    background: white;
}

.feature-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    line-height: 1.3;
    transition: color 0.3s ease;
    position: relative;
    padding-left: 0;
}

.feature-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 20px;
    background: linear-gradient(to right, #CBA67B, #7E2922);
    border-radius: 3px;
    transition: width 0.3s ease;
}

.feature-card:hover .feature-title::before {
    width: 4px;
}

.feature-description {
    color: #555;
    line-height: 1.7;
    margin-bottom: 0;
    flex-grow: 1;
    font-size: 0.98rem;
}

/* Card Hover Effects */
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #CBA67B, #7E2922);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: 2;
}

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

/* Responsive Design */
@media (max-width: 1200px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .feature-image {
        height: 200px;
    }
    
    .feature-content {
        padding: 24px;
    }
}

@media (max-width: 992px) {
    .section-title {
        font-size: 2.2rem;
    }
    
    .feature-image {
        height: 180px;
    }
    
    .feature-content {
        padding: 22px;
    }
    
    .feature-title {
        font-size: 1.3rem;
    }
    
    .feature-description {
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .why-choose-section {
        padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-title {
        font-size: 2rem;
        padding-bottom: 12px;
    }
    
    .feature-image {
        height: 200px;
    }
    
    .feature-card {
        margin-bottom: 25px;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .feature-image {
        height: 180px;
    }
    
    .feature-content {
        padding: 20px;
    }
    
    .feature-title {
        font-size: 1.2rem;
    }
    
    .feature-description {
        font-size: 0.92rem;
    }
}

/* Membership Section - Updated with 400px height */
.membership-section {
    width: 100%;
    padding: 40px 0;
    background-color: transparent;
    background-image: linear-gradient(180deg, #CFAA82 0%, #98453F 100%);
    position: relative;
    overflow: visible;
    height: auto;
    min-height: 440px;
    display: flex;
    align-items: center;
}

.membership-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
    opacity: 0.3;
}

.membership-container {
    max-width: 1200px;
    height: 400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
}

.membership-content {
    display: flex;
    align-items: center;
    gap: 60px;
    width: 100%;
    height: 100%;
}

/* Left Column Styles */
.membership-left {
    flex: 1;
    color: white;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 30px 0;
    opacity: 1;
    visibility: visible;
    position: relative;
    z-index: 10;
}

.membership-title {
    font-size: 29px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #ffffff;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    opacity: 1;
    visibility: visible;
}

.membership-title br {
    display: block;
    margin-top: 8px;
}

.membership-description {
    margin-bottom: 25px;
    max-height: 120px;
    overflow: visible;
    opacity: 1;
    visibility: visible;
}

.membership-description p {
    font-size: 18px;
    line-height: 1.6;
    color: #fff8f0;
    margin: 0;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
    display: block;
    opacity: 1;
    visibility: visible;
}

/* Features List */
.membership-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    opacity: 1;
    visibility: visible;
}

.feature-item {
    display: flex;
    align-items: center;
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 0;
    opacity: 1;
    visibility: visible;
}

.feature-icon {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-weight: bold;
    font-size: 14px;
    flex-shrink: 0;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    opacity: 1;
    visibility: visible;
}

.feature-text {
    color: #ffffff;
    font-weight: 600;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    font-size: 16px;
    opacity: 1;
    visibility: visible;
}

/* Button Styles - Updated for button element */
.membership-btn {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.15);
    color: white;
    padding: 14px 35px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    margin-top: auto;
    align-self: flex-start;
    opacity: 1;
    visibility: visible;
    font-family: inherit; /* Inherit font from body */
    line-height: normal; /* Reset line height */
    text-align: center; /* Center text */
    outline: none; /* Remove default outline */
    padding-top:10px;
    padding-bottom:28px;
}

.membership-btn:hover {
    background-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    color: white;
    border-color: rgba(255, 255, 255, 0.5);
}

.membership-btn:focus {
    outline: 2px solid rgba(255, 255, 255, 0.5);
    outline-offset: 2px;
}

.membership-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Ripple effect for button */
.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transform: scale(0);
    animation: ripple-animation 0.6s linear;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Right Column Styles */
.membership-right {
    flex: 1;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.membership-image-wrapper {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 320px;
    width: 100%;
    max-width: 500px;
    opacity: 1;
    visibility: visible;
}

.membership-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(207, 170, 130, 0.1), rgba(152, 69, 63, 0.1));
    z-index: 1;
    pointer-events: none;
}

.membership-img {
    width: 100%;
    height: 100%;
    display: block;
    transition: transform 0.6s ease;
    position: relative;
    z-index: 0;
    object-fit: cover;
    opacity: 1;
    visibility: visible;
}

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

/* Responsive Design */
@media (max-width: 1200px) {
    .membership-container {
        padding: 0 30px;
        height: 380px;
    }
    
    .membership-content {
        gap: 50px;
    }
    
    .membership-title {
        font-size: 32px;
    }
    
    .membership-description p {
        font-size: 17px;
    }
    
    .membership-image-wrapper {
        height: 300px;
        max-width: 450px;
    }
}

@media (max-width: 992px) {
    .membership-container {
        height: auto;
        min-height: 400px;
    }
    
    .membership-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        height: auto;
        padding: 30px 0;
    }
    
    .membership-left {
        height: auto;
        padding: 0;
    }
    
    .membership-title {
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .membership-description {
        max-height: none;
        margin-bottom: 20px;
    }
    
    .membership-description p {
        font-size: 16px;
    }
    
    .membership-features {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
        margin-bottom: 25px;
    }
    
    .feature-item {
        font-size: 15px;
    }
    
    .feature-icon {
        width: 24px;
        height: 24px;
        font-size: 13px;
        margin-right: 10px;
    }
    
    .feature-text {
        font-size: 15px;
    }
    
    .membership-btn {
        padding: 12px 30px;
        font-size: 15px;
        margin: 0 auto;
        display: block;
    }
    
    .membership-right {
        height: auto;
        width: 100%;
    }
    
    .membership-image-wrapper {
        height: 250px;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .membership-section {
        padding: 30px 0;
        min-height: auto;
    }
    
    .membership-container {
        padding: 0 20px;
        height: auto;
    }
    
    .membership-title {
        font-size: 24px;
    }
    
    .membership-description p {
        font-size: 15px;
    }
    
    .membership-features {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        margin-left: 20px;
    }
    
    .feature-item {
        font-size: 14px;
        justify-content: flex-start;
    }
    
    .feature-icon {
        width: 22px;
        height: 22px;
        font-size: 12px;
        margin-right: 10px;
    }
    
    .feature-text {
        font-size: 14px;
    }
    
    .membership-btn {
        padding: 10px 25px;
        font-size: 14px;
    }
    
    .membership-image-wrapper {
        height: 200px;
        max-width: 350px;
    }
}

@media (max-width: 576px) {
    .membership-section {
        padding: 25px 0;
    }
    
    .membership-container {
        padding: 0 15px;
    }
    
    .membership-content {
        gap: 25px;
    }
    
    .membership-title {
        font-size: 22px;
    }
    
    .membership-description {
        margin-bottom: 15px;
    }
    
    .membership-description p {
        font-size: 14px;
        line-height: 1.5;
    }
    
    .membership-features {
        margin-left: 0;
        align-items: center;
        gap: 8px;
        margin-bottom: 20px;
    }
    
    .feature-item {
        font-size: 13px;
        justify-content: center;
    }
    
    .feature-icon {
        width: 20px;
        height: 20px;
        font-size: 11px;
        margin-right: 8px;
    }
    
    .membership-btn {
        padding: 8px 20px;
        font-size: 13px;
    }
    
    .membership-image-wrapper {
        height: 180px;
        max-width: 300px;
    }
}

.certification-steps {
    padding: 80px 0;
    background: #f8f9fa;
    position: relative;
}

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

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.divider-line {
    width: 60px;
    height: 2px;
    background: #6E231D;
    margin: 0 auto 20px;
}

.section-header h2 {
    font-size: 36px;
    color: #2c3e50;
    margin: 0;
    font-weight: 700;
}

.steps-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

/* Base step card styles */
.step-card {
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    border-radius: 10px 10px 10px 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    text-align: center;
    padding: 40px 40px 40px 40px;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

/* Step 1 specific styles */
.step-1 {
    background-color: #BD9060;
}

/* Step 2 specific styles */
.step-2 {
    background-color: #6E231D;
}

/* Step 3 specific styles */
.step-3 {
    background-color: #BD9060;
}

/* Updated image styling as requested */
.step-image {
    background: rgba(255, 255, 255, 0.10);
    border-radius: 10px;
    width: 118px;
    height: 118px;
    margin: 0 auto;
    display: inline-grid;
    align-items: center;
    /* margin-top: 55px; */
    position: relative;
    padding: 30px;
}

.step-image img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 0;
}

.step-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 30px;
}

.step-title {
    font-size: 22px;
    color: white;
    margin: 0 0 25px 0;
    font-weight: 600;
    line-height: 1.3;
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-button {
    display: inline-block;
    padding: 12px 35px;
    background: rgba(0, 0, 0, 0.10);
    color: white !important;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 16px;
}

/* Step 1 button styles */
.step-1 .step-button {
    color: #BD9060;
}

.step-1 .step-button:hover {
    background: transparent;
    color: white;
    border-color: white;
}

/* Step 2 button styles */
.step-2 .step-button {
    color: #6E231D;
}

.step-2 .step-button:hover {
    background: transparent;
    color: white;
    border-color: white;
}

/* Step 3 button styles */
.step-3 .step-button {
    color: #BD9060;
}

.step-3 .step-button:hover {
    background: transparent;
    color: white;
    border-color: white;
}

/* Responsive design */
@media (max-width: 1100px) {
    .steps-wrapper {
        gap: 20px;
    }
    
    .step-card {
        min-width: 280px;
    }
}

@media (max-width: 992px) {
    .steps-wrapper {
        gap: 25px;
    }
    
    .step-card {
        min-width: 250px;
        padding: 30px 30px 30px 30px;
    }
    
    .step-title {
        font-size: 20px;
        min-height: 48px;
    }
    
    .step-image {
        margin-top: 40px;
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 768px) {
    .steps-wrapper {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    
    .step-card {
        max-width: 100%;
        width: 100%;
        min-width: auto;
        padding: 40px 30px 40px 30px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .certification-steps {
        padding: 60px 0;
    }
    
    .step-image {
        margin-top: 30px;
        width: 118px;
        height: 118px;
    }
}

@media (max-width: 480px) {
    .step-card {
        padding: 30px 20px 30px 20px;
    }
    
    .step-title {
        font-size: 20px;
        min-height: auto;
        margin-bottom: 20px;
    }
    
    .section-header h2 {
        font-size: 24px;
    }
    
    .divider-line {
        width: 40px;
        height: 2px;
        margin: 0 auto 15px;
    }
    
    .step-image {
        margin-top: 25px;
        width: 100px;
        height: 100px;
        padding: 12px;
    }
}
/* FAQ Section Styles */
.faq-section {
    padding: 80px 0;
    background: #fff;
}

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

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 36px;
    color: #2c3e50;
    margin: 0;
    font-weight: 700;
}

.faq-columns {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.faq-column {
    flex: 1;
    min-width: 300px;
}

.faq-item {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #fff;
}

.faq-item:hover {
    border-color: #BD9060; /* Brown color */
    box-shadow: 0 4px 12px rgba(189, 144, 96, 0.1);
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #f9f5f1; /* Light brown background on hover */
}

.faq-question h3 {
    font-size: 18px;
    color: #2c3e50;
    margin: 0;
    font-weight: 600;
    line-height: 1.4;
    flex: 1;
    padding-right: 20px;
}

.faq-icon {
    font-size: 24px;
    color: #BD9060; /* Brown color */
    transition: transform 0.3s ease;
    font-weight: 300;
    min-width: 24px;
    text-align: center;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: #6E231D; /* Dark red-brown color */
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: #f9f5f1; /* Light brown background */
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 1000px;
}

.faq-answer p {
    margin: 0;
    color: #555;
    line-height: 1.6;
    font-size: 16px;
}

.faq-item.active .faq-question {
    background: #f9f5f1; /* Light brown background when active */
}

.faq-item.active .faq-question h3 {
    color: #6E231D; /* Dark red-brown color */
}

/* Remove active state from first item */
.faq-item.active {
    border-color: #BD9060;
    box-shadow: 0 4px 12px rgba(189, 144, 96, 0.15);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .faq-columns {
        gap: 30px;
    }
    
    .faq-question h3 {
        font-size: 17px;
    }
}

@media (max-width: 768px) {
    .faq-columns {
        flex-direction: column;
        gap: 0;
    }
    
    .faq-column {
        width: 100%;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .faq-section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .faq-question {
        padding: 16px;
    }
    
    .faq-question h3 {
        font-size: 16px;
        padding-right: 15px;
    }
    
    .faq-icon {
        font-size: 20px;
    }
    
    .faq-item.active .faq-answer {
        padding: 16px;
    }
    
    .section-header h2 {
        font-size: 24px;
    }
}
/* Expertise Section Styles */
.expertise-section {
    position: relative;
    width: 100%;
    min-height: 600px;
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Background Styles */
.section-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
    background-image: radial-gradient(at center center, #000000 0%, #000000 100%);
    opacity: 0.3;
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}

/* Section Container */
.section-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

/* Left Column - Heading */
.left-column {
    flex: 1;
    min-width: 300px;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.heading-container {
    max-width: 500px;
}

.heading-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out;
}

/* Right Column - Form */
.right-column {
    flex: 1;
    min-width: 300px;
    padding: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.form-container {
    max-width: 400px;
    width: 100%;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

/* Two height states */
.form-container.normal-state {
    height: 600px; /* Initial height */
}

.form-container.error-state {
    height: 650px; /* Height when showing errors */
}

.form-container.success-state {
    height: 650px; /* Height when showing success message */
}

.form-heading-wrap {
    text-align: center;
    margin-bottom: 25px;
    flex-shrink: 0;
}

.form-sub-heading {
    font-size: 0.9rem;
    color: #666;
    margin: 0 0 5px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.form-main-heading {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a2a6c;
    margin: 0;
}

/* Form Styles - FIXED: No scroll, dynamic height */
.contact-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    height: 100%; /* Take full height of container */
}

.form-row {
    width: 100%;
    display: flex;
    flex-direction: column;
    flex: 1; /* Take available space */
    justify-content: space-between; /* Distribute space between fields */
}

.form-col {
    width: 100%;
    margin-bottom: 15px; /* Reduced margin for tighter layout */
    flex-shrink: 0;
}

.form-col:last-child {
    margin-bottom: 0;
}

.form-control-wrap {
    display: block;
    width: 100%;
}

.form-input, .form-textarea {
    width: 100%;
    padding: 14px 16px; /* Slightly reduced padding */
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 0.95rem;
    color: #333;
    background-color: #fff;
    transition: all 0.3s ease;
    font-family: inherit;
    box-sizing: border-box;
}

.form-input:focus, .form-textarea:focus {
    outline: none;
    border-color: #1a2a6c;
    box-shadow: 0 0 0 2px rgba(26, 42, 108, 0.1);
}

.form-input::placeholder, .form-textarea::placeholder {
    color: #888;
    font-size: 0.95rem;
}

.form-textarea {
    height: 120px; /* Fixed height */
    resize: none; /* Disable resize */
    line-height: 1.5;
}

.form-submit-wrap {
    flex-shrink: 0;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

/* Submit Button */
.submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 15px;
    background-color: #7a231c;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    gap: 10px;
}

.submit-btn:hover {
    background-color: #4c1612;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.submit-btn:active {
    transform: translateY(0);
}

.btn-spinner {
    font-size: 1rem;
}

/* Form Messages - Inside form container */
.form-response-output {
    margin: 15px 0 5px 0;
    padding: 12px 15px;
    border-radius: 5px;
    text-align: center;
    font-weight: 600;
    font-size: 0.9rem;
    animation: slideIn 0.3s ease;
    flex-shrink: 0;
}

.form-response-output.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-response-output.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.form-notice {
    margin-top: 10px;
    text-align: center;
    font-size: 0.85rem;
    color: #666;
    flex-shrink: 0;
}

.error-message {
    color: #dc3545;
    font-size: 0.85rem;
    margin-top: 5px;
    display: block;
    min-height: 20px;
    line-height: 1.4;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Responsive Styles */
@media (max-width: 1100px) {
    .section-container {
        max-width: 900px;
    }
    
    .heading-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 992px) {
    .section-container {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }
    
    .left-column, .right-column {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
        padding: 30px;
    }
    
    .left-column {
        margin-bottom: 30px;
    }
    
    .heading-title {
        font-size: 2rem;
        margin-bottom: 20px;
    }
    
    .form-container.normal-state,
    .form-container.error-state,
    .form-container.success-state {
        height: auto;
        min-height: 600px;
    }
}

@media (max-width: 768px) {
    .section-container {
        padding: 20px 15px;
    }
    
    .left-column, .right-column {
        padding: 20px 15px;
    }
    
    .form-container {
        padding: 25px 20px;
        max-width: 100%;
    }
    
    .heading-title {
        font-size: 1.8rem;
    }
    
    .form-main-heading {
        font-size: 1.6rem;
    }
    
    .form-container.normal-state,
    .form-container.error-state,
    .form-container.success-state {
        height: auto;
        min-height: 580px;
    }
}

@media (max-width: 480px) {
    .expertise-section {
        min-height: 500px;
    }
    
    .heading-title {
        font-size: 1.6rem;
    }
    
    .form-container {
        padding: 20px 15px;
    }
    
    .form-input, .form-textarea {
        padding: 12px 14px;
        font-size: 0.9rem;
    }
    
    .submit-btn {
        padding: 14px;
        font-size: 0.95rem;
    }
    
    .form-main-heading {
        font-size: 1.5rem;
    }
    
    .form-container.normal-state,
    .form-container.error-state,
    .form-container.success-state {
        height: auto;
        min-height: 550px;
    }
}

@media (max-height: 700px) and (min-width: 769px) {
    .expertise-section {
        min-height: 500px;
    }
    
    .form-container.normal-state {
        height: 550px;
    }
    
    .form-container.error-state,
    .form-container.success-state {
        height: 600px;
    }
    
    .form-textarea {
        height: 100px;
    }
}

/* For very small screens */
@media (max-width: 360px) {
    .form-container {
        padding: 15px;
    }
    
    .form-input, .form-textarea {
        padding: 10px 12px;
        font-size: 0.85rem;
    }
    
    .form-container.normal-state,
    .form-container.error-state,
    .form-container.success-state {
        height: auto;
        min-height: 520px;
    }
}
/* Skills Features Section */
.skills-features-section {
    position: relative;
    width: 100%;
    padding: 80px 0;
}

/* Background - SAME GRADIENT */
.skills-features-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
    background-image: linear-gradient(250deg, #EC5B5B 0%, #78275B 100%);
    z-index: 1;
}

/* Container */
.skills-features-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Row */
.skills-features-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

/* Column */
.skills-feature-col {
    flex: 0 0 33.333%;
    max-width: 33.333%;
    padding: 0 15px;
}

/* Icon Box - SAME STYLE */
.skills-icon-box {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    /* background: linear-gradient(135deg, #EC5B5B 0%, #78275B 100%); */
    /* border-radius: 12px; */
    display: flex;
    align-items: center;
    justify-content: center;
    /* box-shadow: 0 4px 15px rgba(236, 91, 91, 0.25); */
}

.skills-icon-box img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

/* Content Box */
.skills-content-box {
    text-align: left;
}

/* Title - SAME STYLE */
.skills-title {
    margin: 0 0 15px 0;
    padding: 0;
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
    letter-spacing: 0.5px;
}

.skills-title strong {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 5px;
}

/* Description - SAME STYLE */
.skills-desc {
    margin: 0;
}

.skills-desc p {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
}

/* Responsive - SAME BREAKPOINTS */
@media (max-width: 992px) {
    .skills-feature-col {
        flex: 0 0 50%;
        max-width: 50%;
        margin-bottom: 30px;
    }
    
    .skills-feature-col:last-child {
        flex: 0 0 100%;
        max-width: 100%;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .skills-features-section {
        padding: 60px 0;
    }
    
    .skills-feature-col {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 25px;
        padding: 0 10px;
    }
    
    .skills-features-container {
        padding: 0 15px;
    }
    
    .skills-icon-box {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }
    
    .skills-icon-box img {
        width: 32px;
        height: 32px;
    }
    
    .skills-title {
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .skills-desc p {
        font-size: 15px;
        line-height: 1.5;
    }
}

@media (max-width: 480px) {
    .skills-features-section {
        padding: 50px 0;
    }
    
    .skills-title {
        font-size: 17px;
    }
    
    .skills-desc p {
        font-size: 14px;
    }
}
/* Testimonials Section Styles */
.simple-testimonials {
    background-color: #29303B;
    opacity: 0.95;
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
    background-image: url('../images/BL411.jpg');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    padding: 80px 20px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}

.simple-testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(41, 48, 59, 0.85);
    z-index: 1;
}

.testimonial-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    width: 100%;
}

.testimonial-heading {
    text-align: center;
    color: white;
    font-size: 2.8rem;
    margin-bottom: 60px;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.carousel-wrapper {
    position: relative;
    width: 100%;
}

.testimonial-items-container {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.testimonial-item {
    display: none;
    animation: fadeIn 0.8s ease;
}

.testimonial-item.active {
    display: block;
}

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

.testimonial-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    display: flex;
    min-height: 450px;
    max-width: 1000px;
    margin: 0 auto;
    transition: transform 0.3s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-img {
    flex: 0 0 33.333%;
    width: 33.333%;
}

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

.testimonial-text {
    flex: 0 0 66.667%;
    width: 66.667%;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.quote-icon {
    font-size: 5rem;
    color: rgb(243, 48, 81);
    line-height: 1;
    margin-bottom: 20px;
    font-family: Georgia, serif;
}

.quote {
    font-size: 1.4rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 30px;
    font-style: italic;
}

.author h4 {
    font-size: 1.6rem;
    color: #2d3748;
    margin-bottom: 5px;
    font-weight: 700;
}

.author p {
    font-size: 1.1rem;
    color: #718096;
    font-weight: 500;
}

/* Card Arrows - Hidden by default, shown on card hover */
.card-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%) scale(0.8);
    background: white;
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: #29303B;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    z-index: 10;
    opacity: 0;
    visibility: hidden;
}

.left-arrow {
    left: 20px;
}

.right-arrow {
    right: 20px;
}

/* Show arrows when card is hovered */
.testimonial-card:hover .card-arrow {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) scale(1);
}

/* Hover effect for arrows */
.card-arrow:hover {
    background: brown;
    color: white;
    transform: translateY(-50%) scale(1.1) !important;
    box-shadow: 0 8px 25px rgba(58, 134, 255, 0.4);
}

.card-arrow svg {
    width: 24px;
    height: 24px;
}

/* Dots Navigation */
.dots-container {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.dots {
    display: flex;
    gap: 15px;
}

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

.dot.active {
    background: white;
    transform: scale(1.2);
}

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

/* Responsive Design */
@media (max-width: 1100px) {
    .card-arrow {
        width: 50px;
        height: 50px;
    }
    
    .left-arrow {
        left: 15px;
    }
    
    .right-arrow {
        right: 15px;
    }
}

@media (max-width: 992px) {
    .testimonial-card {
        flex-direction: column;
        min-height: auto;
        max-width: 600px;
    }
    
    .testimonial-img, .testimonial-text {
        flex: 0 0 100%;
        width: 100%;
    }
    
    .testimonial-img {
        height: 300px;
    }
    
    .testimonial-text {
        padding: 40px 30px;
    }
    
    .card-arrow {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 768px) {
    .testimonial-heading {
        font-size: 2.2rem;
        margin-bottom: 40px;
    }
    
    .testimonial-img {
        height: 250px;
    }
    
    .testimonial-text {
        padding: 30px 25px;
    }
    
    .quote {
        font-size: 1.2rem;
    }
    
    .card-arrow {
        width: 40px;
        height: 40px;
    }
    
    .left-arrow {
        left: 10px;
    }
    
    .right-arrow {
        right: 10px;
    }
    
    .card-arrow svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 576px) {
    .simple-testimonials {
        padding: 60px 15px;
    }
    
    .testimonial-heading {
        font-size: 1.8rem;
    }
    
    .testimonial-img {
        height: 200px;
    }
    
    .quote-icon {
        font-size: 4rem;
    }
    
    .author h4 {
        font-size: 1.4rem;
    }
    
    .card-arrow {
        width: 35px;
        height: 35px;
    }
    
    .card-arrow svg {
        width: 18px;
        height: 18px;
    }
}

/* Touch device support - show arrows on touch */
@media (hover: none) and (pointer: coarse) {
    .card-arrow {
        opacity: 0.7;
        visibility: visible;
        transform: translateY(-50%) scale(0.9);
    }
    
    .testimonial-card:hover .card-arrow {
        opacity: 0.7;
        transform: translateY(-50%) scale(0.9);
    }
}

/* ABOUT US */


/* Container styling */
.about-image-container {
    position: relative;
    overflow: hidden;
    min-height: 300px;
    /* margin-bottom: 50px; */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Image styling */
.styled-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

/* Dark overlay for better text readability */
.about-image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
}

/* Text overlay container */
.image-overlay {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Main title styling */
.page-title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1b2336;
    letter-spacing: 1px;
}

/* Breadcrumb styling */
.breadcrumb {
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.breadcrumb a {
    color: black;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: brown;
    text-decoration: underline;
}

.separator {
    color: black;
    margin: 0 5px;
}

.current-page {
    color: black;
    font-weight: 500;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-title {
        font-size: 36px;
    }
    
    .breadcrumb {
        font-size: 16px;
        flex-wrap: wrap;
    }
    
    .about-image-container {
        min-height: 250px;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 28px;
    }
    
    .breadcrumb {
        font-size: 14px;
    }
    
    .about-image-container {
        min-height: 200px;
    }
}
/* skills-section.css */

/* Reset and Base Styles */
#skills-section-4601 * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Section Container - Isolated with specific ID */
#skills-section-4601 {
  padding: 60px 0;
  background: #F5ECE5;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  position: relative;
}

#skills-section-4601::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('/api/placeholder/1600/900');
  background-size: cover;
  opacity: 0.05;
  z-index: 0;
}

/* Section Container */
#skills-section-4601 .skills-container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  width: 100%;
}

/* Section Header */
#skills-section-4601 .skills-header {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

#skills-section-4601 .skills-header h2 {
  font-size: 38px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 15px;
  letter-spacing: -0.3px;
}

#skills-section-4601 .skills-header h2 strong {
  color: #B6906C;
}

#skills-section-4601 .skills-header p {
  font-size: 16px;
  color: black;
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.5;
}

#skills-section-4601 .section-divider {
  width: 100px;
  height: 3px;
  background: linear-gradient(to right, #e74c3c, #c0392b);
  margin: 20px auto 30px;
  border-radius: 1.5px;
}

/* Skills Grid */
#skills-section-4601 .skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

/* Skill Card */
#skills-section-4601 .skill-card {
  position: relative;
  height: 220px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  perspective: 800px;
  background: white;
  cursor: pointer;
}

#skills-section-4601 .skill-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

#skills-section-4601 .skill-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}

#skills-section-4601 .skill-card:hover .skill-inner {
  transform: rotateY(180deg);
}

#skills-section-4601 .skill-front, 
#skills-section-4601 .skill-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 15px;
  border-radius: 8px;
}

#skills-section-4601 .skill-front {
  background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);
  border-top: 3px solid #e74c3c;
}

#skills-section-4601 .skill-back {
  background: #B6906C;
  color: white;
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

#skills-section-4601 .skill-icon {
  width: 50px;
  height: 50px;
  background-color: rgba(231, 76, 60, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  color: #B6906C;
  font-size: 24px;
  transition: all 0.3s ease;
}

#skills-section-4601 .skill-front h4 {
  font-size: 15px;
  color: #2c3e50;
  margin-bottom: 5px;
  font-weight: 600;
  line-height: 1.3;
}

#skills-section-4601 .skill-abbr {
  font-size: 12px;
  color: #893E2F;
  font-weight: 700;
  letter-spacing: 0.8px;
}

#skills-section-4601 .skill-back h4 {
  font-size: 15px;
  margin-bottom: 8px;
  font-weight: 600;
  line-height: 1.3;
  color: #ffffff;
}

#skills-section-4601 .skill-back p {
  font-size: 12px;
  line-height: 1.4;
  opacity: 0.95;
  margin-bottom: 8px;
}

#skills-section-4601 .skill-back .skill-abbr {
  color: rgba(255, 255, 255, 0.8);
  margin-top: 5px;
}

#skills-section-4601 .learn-more {
  margin-top: 6px;
  padding: 4px 12px;
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 15px;
  font-size: 11px;
  transition: all 0.3s ease;
  cursor: pointer;
}

#skills-section-4601 .learn-more:hover {
  background-color: rgba(255, 255, 255, 0.25);
}

/* CTA Section */
#skills-section-4601 .skills-cta {
  text-align: center;
  margin-top: 50px;
  padding-top: 30px;
  position: relative;
}

#skills-section-4601 .skills-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 1px;
  background: linear-gradient(to right, rgba(231, 76, 60, 0.1), #e74c3c, rgba(231, 76, 60, 0.1));
}

#skills-section-4601 .explore-btn {
  display: inline-block;
  padding: 5px 30px;
  background-color: #893E2F;
  color: white;
  text-decoration: none;
  border: none;
  border-radius: 40px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(231, 76, 60, 0.3);
  position: relative;
  overflow: hidden;
  z-index: 1;
  cursor: pointer;
}

#skills-section-4601 .explore-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: 0.4s;
  z-index: -1;
}

#skills-section-4601 .explore-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(231, 76, 60, 0.35);
  background-color: #a34836;
}

#skills-section-4601 .explore-btn:hover::after {
  left: 100%;
}

/* Category-specific styles */
#skills-section-4601 .divine-card .skill-front {
  border-top-color: #e74c3c;
}

#skills-section-4601 .divine-card .skill-back {
  background: linear-gradient(135deg, #B6906C 0%, #9c7850 100%);
}

#skills-section-4601 .mystic-card .skill-front {
  border-top-color: #3498db;
}

#skills-section-4601 .mystic-card .skill-back {
  background: linear-gradient(135deg, #2c3e50 0%, #1a252f 100%);
}

/* Responsive Design */
@media (max-width: 992px) {
  #skills-section-4601 .skills-header h2 {
    font-size: 32px;
  }
  
  #skills-section-4601 .skills-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
  }
}

@media (max-width: 768px) {
  #skills-section-4601 {
    padding: 50px 0;
  }
  
  #skills-section-4601 .skills-header h2 {
    font-size: 28px;
  }
  
  #skills-section-4601 .skills-grid {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  }
  
  #skills-section-4601 .skill-card {
    height: 200px;
  }
}

@media (max-width: 576px) {
  #skills-section-4601 .skills-header h2 {
    font-size: 24px;
  }
  
  #skills-section-4601 .skills-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 12px;
  }
  
  #skills-section-4601 .skill-card {
    height: 180px;
  }
  
  #skills-section-4601 .explore-btn {
    padding: 5px 25px;
    font-size: 14px;
  }
  
  #skills-section-4601 .skill-front h4,
  #skills-section-4601 .skill-back h4 {
    font-size: 14px;
  }
  
  #skills-section-4601 .skill-back p {
    font-size: 11px;
  }
}
/* hero-section.css */

/* Hero Section */
.heroo {
    position: relative;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 80px 0;
    overflow: hidden;
    min-height: 550px;
    display: flex;
    align-items: center;
}

.heroo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/photo-1580894894513-541e068a3e2b.jpeg') center/cover;
    z-index: 0;
}

.heroo .container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

/* Hero Title */
.heroo-title {
    color: #bd9060;
    position: relative;
    display: inline-block;
    cursor: pointer;
    transition: color 0.3s ease;
    font-size: 3.0rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.heroo-title:hover {
    color: #6E231D;
}

.heroo-title.shine-effect::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    transform: skewX(-20deg);
    pointer-events: none;
    z-index: 1;
    animation: shine 0.8s ease;
}

@keyframes shine {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* Hero Subtitle */
.heroo-subtitle {
    color: #000000;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 25px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

/* Hero Description */
.heroo-description {
    color: white;
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 40px;
    padding: 0 20px;
}

/* Hero Buttons */
.heroo-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-button {
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 200px;
    border: 2px solid transparent;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.primary-button {
    background: #e3c8a8;
    color: black;
}

.primary-button:hover {
    background: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(139, 44, 44, 0.3);
}

.secondary-button {
      background: #e3c8a8;
    color: black;
}

.secondary-button:hover {
     background: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(139, 44, 44, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .heroo {
        padding: 60px 0;
        min-height: 400px;
    }
    
    .heroo-title {
        font-size: 2.5rem;
    }
    
    .heroo-subtitle {
        font-size: 1.4rem;
    }
    
    .heroo-description {
        font-size: 1.1rem;
        padding: 0 10px;
    }
    
    .heroo-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .cta-button {
        width: 100%;
        max-width: 300px;
        padding: 12px 25px;
    }
}

@media (max-width: 480px) {
    .heroo {
        padding: 40px 0;
        min-height: 350px;
    }
    
    .heroo-title {
        font-size: 2rem;
    }
    
    .heroo-subtitle {
        font-size: 1.2rem;
    }
    
    .heroo-description {
        font-size: 1rem;
    }
}

/* mission-section.css */

/* Mission Section */
.mission-section {
    background-color: #f5ece5;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.mission-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(110, 35, 29, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(189, 144, 96, 0.05) 0%, transparent 50%);
    z-index: 0;
}

.mission-section .container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Mission Title */
.mission-title {
    font-size: 3rem;
    font-weight: 700;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 20px;
    justify-content: center;
  display: flex;
}

.mission-title:hover {
    color: #6E231D;
    transform: translateY(-3px);
}

.mission-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #6E231D, #BD9060);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mission-title:hover::after {
    width: 120px;
    background: linear-gradient(to right, #BD9060, #6E231D);
}

/* Mission Content */
.mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Mission Text */
.mission-text h3 {
    font-size: 1.7rem;
  color: #0B0B0B;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.3;
}

.mission-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 20px;
    position: relative;
    padding-left: 20px;
}



/* Mission Image */
.mission-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(110, 35, 29, 0.1);
    transition: all 0.5s ease;
}

.mission-image:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px rgba(110, 35, 29, 0.2);
}

.mission-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
    transition: transform 0.5s ease;
}

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

/* Decorative Elements */
.mission-image::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, #6E231D, #BD9060);
    border-radius: 20px;
    z-index: -1;
    opacity: 0.1;
    transition: opacity 0.3s ease;
}

.mission-image:hover::before {
    opacity: 0.2;
}


/* Responsive Design */
@media (max-width: 992px) {
    .mission-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .mission-title {
        font-size: 2.5rem;
    }
    
    .mission-text h3 {
        font-size: 1.8rem;
    }
    
    .mission-text::after {
        position: relative;
        top: 0;
        right: 0;
        display: inline-block;
        margin-top: 20px;
        transform: rotate(0);
    }
}

@media (max-width: 768px) {
    .mission-section {
        padding: 60px 0;
    }
    
    .mission-title {
        font-size: 2.2rem;
    }
    
    .mission-text h3 {
        font-size: 1.6rem;
    }
    
    .mission-text p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .mission-title {
        font-size: 1.8rem;
    }
    
    .mission-text h3 {
        font-size: 1.4rem;
    }
    
    .mission-text p {
        font-size: 0.95rem;
        padding-left: 15px;
    }
    
    .mission-text::after {
        font-size: 0.8rem;
        padding: 8px 16px;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Staggered Animation Delays */
.mission-title {
    animation-delay: 0.2s;
}

.mission-text {
    animation-delay: 0.4s;
}

.mission-image {
    animation-delay: 0.6s;
}


/*  */

.features {
  padding: 80px 0;
}
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}
.sections-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 50px;
  color: #000000;
  position: relative;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.features-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}
.features-card {
  background-color: #f5ece5;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}
.features-icon {
  font-size: 2.5rem;
  color: #000000;
  margin-bottom: 20px;
}
.features-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #000000;
}
.features-card p {
  font-size: 1rem;
  color: #000000;
}

/*  */
:root {
    --primary-color: #7E2922;
    --secondary-color: #CBA67B;

    /* Alias variables */
    --primary: var(--primary-color);
    --secondary: var(--secondary-color);
}
.global-impact {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  
  color: #000000;
  text-align: center;
}
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}
.global-impact p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #000000;
}
.counter-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin-top: 50px;
}
.counter-item {
  text-align: center;
  margin: 20px;
}
.counter {
  font-size: 3rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 10px;
}
.counter-label {
  font-size: 1.1rem;
  font-weight: 500;
  color: #000000;
}

/*  */
/* Success Testimonials Section */
.success-testimonials {
  padding: 80px 0;
  background-color: #f5ece5;
}

.success-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.success-section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 50px;
  color: #000000;
  position: relative;
}

.success-section-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #BB8E5E;
}

.success-slider {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

.success-card {
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  margin: 20px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
  position: relative;
}

.success-card::before {
  content: "\"";
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 4rem;
  color: #E0C5A5;
  opacity: 0.5;
  line-height: 1;
  font-family: serif;
  font-weight: bold;
}

.success-text {
  font-style: italic;
  margin-bottom: 20px;
  font-size: 1.1rem;
  position: relative;
  z-index: 1;
  color: #000000;
  padding-left: 20px;
}

.success-author {
  display: flex;
  align-items: center;
}

.success-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
  flex-shrink: 0;
}

.success-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.success-info h4 {
  margin: 0 0 5px 0;
  color: #000000;
  font-size: 1.1rem;
}

.success-info p {
  margin: 0;
  color: #666;
  font-size: 0.9rem;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
  .success-slider {
    max-width: 700px;
  }
}

@media screen and (max-width: 768px) {
  .success-testimonials {
    padding: 60px 0;
  }
  
  .success-section-title {
    font-size: 2rem;
    margin-bottom: 40px;
  }
  
  .success-card {
    padding: 25px;
    margin: 15px;
  }
  
  .success-card::before {
    font-size: 3.5rem;
    top: 15px;
    left: 15px;
  }
  
  .success-text {
    font-size: 1rem;
  }
}

@media screen and (max-width: 576px) {
  .success-testimonials {
    padding: 50px 0;
  }
  
  .success-section-title {
    font-size: 1.75rem;
    margin-bottom: 35px;
  }
  
  .success-slider {
    padding: 10px;
  }
  
  .success-card {
    padding: 20px 15px;
    margin: 10px 0;
  }
  
  .success-card::before {
    font-size: 3rem;
    top: 10px;
    left: 10px;
  }
  
  .success-text {
    padding-left: 15px;
    font-size: 0.95rem;
    margin-bottom: 15px;
  }
  
  .success-author {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .success-image {
    margin-right: 0;
    margin-bottom: 10px;
    width: 50px;
    height: 50px;
  }
  
  .success-info h4 {
    font-size: 1rem;
  }
  
  .success-info p {
    font-size: 0.85rem;
  }
}

@media screen and (max-width: 400px) {
  .success-section-title {
    font-size: 1.5rem;
  }
  
  .success-card {
    padding: 15px 12px;
  }
  
  .success-text {
    font-size: 0.9rem;
    padding-left: 10px;
  }
  
  .success-card::before {
    font-size: 2.5rem;
    top: 8px;
    left: 8px;
  }
}

/* certification process */

/* Certification Process Section - Work in Progress */
.cert-process-section {
  padding: 100px 0;
  background-color: #f9f9f9;
  min-height: 60vh;
  display: flex;
  align-items: center;
}

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

.cert-section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 60px;
  color: #000000;
  position: relative;
}

.cert-section-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #BB8E5E;
}

.work-in-progress {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  padding: 40px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.progress-icon {
  margin-bottom: 25px;
  animation: pulse 2s infinite;
}

.progress-icon svg {
  width: 64px;
  height: 64px;
}

.work-in-progress h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #BB8E5E;
}

.progress-message {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 15px;
  color: #333;
}

.progress-submessage {
  font-size: 1rem;
  color: #666;
  font-style: italic;
}

/* Animation for the icon */
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.8;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .cert-process-section {
    padding: 70px 0;
  }
  
  .cert-section-title {
    font-size: 2rem;
    margin-bottom: 50px;
  }
  
  .work-in-progress {
    padding: 30px 25px;
    margin: 0 15px;
  }
  
  .work-in-progress h3 {
    font-size: 1.6rem;
  }
  
  .progress-message {
    font-size: 1rem;
  }
}

@media screen and (max-width: 576px) {
  .cert-process-section {
    padding: 60px 0;
  }
  
  .cert-section-title {
    font-size: 1.75rem;
    margin-bottom: 40px;
  }
  
  .work-in-progress {
    padding: 25px 20px;
  }
  
  .progress-icon svg {
    width: 48px;
    height: 48px;
  }
  
  .work-in-progress h3 {
    font-size: 1.4rem;
  }
  
  .progress-message {
    font-size: 0.95rem;
  }
  
  .progress-submessage {
    font-size: 0.9rem;
  }
}

@media screen and (max-width: 400px) {
  .cert-process-section {
    padding: 50px 0;
  }
  
  .cert-section-title {
    font-size: 1.5rem;
  }
  
  .work-in-progress {
    padding: 20px 15px;
  }
  
  .work-in-progress h3 {
    font-size: 1.3rem;
  }
}

/* 100-skills-associations */

/* Section Styles */
.section {
  margin: 4rem 0;
  padding: 0 1rem;
}

.section h2 {
  font-size: 2.5rem;
  color: #2c3e50;
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
  padding-bottom: 1rem;
}

/* Optional: Add a decorative line under heading */
.section h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: #3498db;
}

/* Card Grid */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Card Styles */
.card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

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

.card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  color: #2c3e50;
  line-height: 1.3;
}

.card p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.5;
  margin-bottom: 1rem;
  flex-grow: 1;
}

/* Optional: Add a read more link inside card */
.card-link {
  display: inline-block;
  color: #3498db;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: auto;
  transition: color 0.3s ease;
}

.card-link:hover {
  color: #0488df;
}

/* CTA Container */
.cta-container {
  text-align: center;
  margin-top: 3rem;
}

/* CTA Button */
.cta {
  display: inline-block;
  padding: 1rem 2rem;
  background-color: #3498db;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 5px;
  transition: all 0.3s ease;
  border: 2px solid #3498db;
  font-size: 1rem;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.cta:hover {
  background-color: #0488df;
  border-color: #0488df;
  transform: translateY(-2px);
  box-shadow: 0 8px 15px rgba(4, 136, 223, 0.3);
}

.cta:active {
  transform: translateY(0);
  box-shadow: 0 4px 8px rgba(4, 136, 223, 0.2);
}

/* Optional: Add a subtle background effect on hover */
.cta::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  z-index: -1;
}

.cta:hover::after {
  transform: translateX(0);
}

/* Responsive Design */
@media screen and (max-width: 1200px) {
  .card-grid {
    max-width: 1000px;
    padding: 0 1rem;
  }
}

@media screen and (max-width: 992px) {
  .section h2 {
    font-size: 2.2rem;
  }
  
  .card-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.75rem;
  }
  
  .card-content {
    padding: 1.25rem;
  }
}

@media screen and (max-width: 768px) {
  .section {
    margin: 3rem 0;
  }
  
  .section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }
  
  .card-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
  }
  
  .card img {
    height: 180px;
  }
  
  .card h3 {
    font-size: 1.1rem;
  }
  
  .card p {
    font-size: 0.85rem;
  }
  
  .cta {
    padding: 0.875rem 1.75rem;
    font-size: 0.95rem;
  }
}

@media screen and (max-width: 576px) {
  .section {
    margin: 2.5rem 0;
  }
  
  .section h2 {
    font-size: 1.75rem;
    padding-bottom: 0.75rem;
  }
  
  .card-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
    gap: 1.25rem;
  }
  
  .card {
    max-width: 100%;
  }
  
  .card img {
    height: 160px;
  }
  
  .card-content {
    padding: 1rem;
  }
  
  .card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
  }
  
  .cta-container {
    margin-top: 2rem;
  }
  
  .cta {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }
}

@media screen and (max-width: 400px) {
  .section h2 {
    font-size: 1.5rem;
  }
  
  .card img {
    height: 140px;
  }
  
  .card h3 {
    font-size: 1rem;
  }
  
  .card p {
    font-size: 0.8rem;
  }
  
  .cta {
    padding: 0.65rem 1.25rem;
    width: 100%;
    max-width: 280px;
  }
}

/* For very large screens */
@media screen and (min-width: 1600px) {
  .card-grid {
    max-width: 1400px;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  
  .card img {
    height: 220px;
  }
  
  .card-content {
    padding: 1.75rem;
  }
  
  .card h3 {
    font-size: 1.3rem;
  }
  
  .card p {
    font-size: 1rem;
  }
}

/* Membership-benefits */

:root {
  --cert-primary: #415ee7;
  --cert-accent: #4ac5ec;
  --cert-success: #10b981;
  --cert-radius: 12px;
  --cert-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* ================= CONTAINER ================= */

.cert-benefits-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  max-width: 1400px;
  margin: 80px auto;
  padding: 0 20px;
}

/* ================= CARD ================= */

.cert-benefit-card {
  background: #ffffff;
  border-radius: var(--cert-radius);
  padding: 40px 30px;
  box-shadow: var(--cert-shadow);
  position: relative;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  overflow: hidden;
}

.cert-benefit-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(to bottom, var(--cert-primary), var(--cert-accent));
}

.cert-benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* ================= ICON ================= */

.cert-card-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--cert-primary), var(--cert-accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #ffffff;
  margin-bottom: 25px;
  box-shadow: 0 6px 16px rgba(65, 94, 231, 0.3);
}

/* ================= IMAGE ================= */

.cert-card-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 25px;
  transition: transform 0.4s ease;
}

.cert-benefit-card:hover .cert-card-image {
  transform: scale(1.03);
}

/* ================= TITLE ================= */

.cert-benefit-title {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--cert-primary);
  margin-bottom: 20px;
  line-height: 1.3;
}

/* ================= TEXT ================= */

.cert-benefit-description {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.65;
  margin-bottom: 18px;
}

/* ================= HIGHLIGHT ================= */

.cert-highlight {
  font-weight: 700;
  color: var(--cert-primary);
  background: rgba(67, 97, 238, 0.1);
  padding: 2px 6px;
  border-radius: 4px;
}

/* ================= ASSOCIATIONS ================= */

.cert-associations {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 22px 0;
}

.cert-association-badge {
  padding: 10px 18px;
  font-size: 0.9rem;
  border-radius: 50px;
  background: rgba(67, 97, 238, 0.1);
  color: var(--cert-primary);
  border: 1px solid rgba(67, 97, 238, 0.2);
  transition: all 0.3s ease;
}

.cert-association-badge:hover {
  background: rgba(67, 97, 238, 0.15);
  transform: translateY(-2px);
}

/* ================= LIST ================= */

.cert-benefit-list {
  list-style: none;
  padding: 0;
  margin: 22px 0;
}

.cert-benefit-list li {
  position: relative;
  padding-left: 34px;
  margin-bottom: 14px;
  font-size: 1.05rem;
  color: #555;
  line-height: 1.6;
}

.cert-benefit-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 2px;
  width: 22px;
  height: 22px;
  background: rgba(16, 185, 129, 0.12);
  color: var(--cert-success);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

/* ================= RESPONSIVE ================= */

/* Tablets */
@media (max-width: 992px) {
  .cert-benefits-container {
    gap: 30px;
  }

  .cert-benefit-card {
    padding: 35px 25px;
  }

  .cert-benefit-title {
    font-size: 1.5rem;
  }

  .cert-card-image {
    height: 160px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .cert-benefits-container {
    grid-template-columns: 1fr;
    max-width: 600px;
  }

  .cert-benefit-card {
    padding: 30px 22px;
  }

  .cert-benefit-title {
    font-size: 1.4rem;
  }

  .cert-card-image {
    height: 150px;
  }

  .cert-benefit-description,
  .cert-benefit-list li {
    font-size: 1rem;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .cert-benefit-card {
    padding: 24px 18px;
  }

  .cert-card-icon {
    width: 50px;
    height: 50px;
    font-size: 1.4rem;
  }

  .cert-card-image {
    height: 135px;
  }

  .cert-benefit-title {
    font-size: 1.3rem;
  }

  .cert-benefit-description,
  .cert-benefit-list li {
    font-size: 0.95rem;
  }
}


/*  */
.featureee-section {
  padding: 0 20px;
  margin-bottom: 80px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.sectionnn-title {
  text-align: center;
  margin-bottom: 50px;
  color: #3f5de7;
  font-size: 2.2rem;
  position: relative;
  padding-bottom: 15px;
  line-height: 1.2;
  margin-top:50px;
}

.sectionnn-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, #3f5eec, #4ac5ec);
  border-radius: 2px;
}

.featureee-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 60px;
}

.featureee-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--border-radius);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.5s ease;
}

.featureee-image:hover {
  transform: scale(1.02);
}

.featureee-content h2 {
  color: #4361ee;
  font-size: 2rem;
  margin-bottom: 25px;
  line-height: 1.3;
}

.featureee-content p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  line-height: 1.6;
  color: #555;
}

.featureee-list {
  padding-left: 0;
  list-style: none;
  margin: 25px 0;
}

.featureee-list li {
  margin-bottom: 15px;
  position: relative;
  padding-left: 35px;
  color: #555;
  line-height: 1.6;
  font-size: 1.05rem;
}

.featureee-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--success, #10b981);
  font-weight: bold;
  font-size: 1.2rem;
  width: 24px;
  height: 24px;
  background-color: rgba(16, 185, 129, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-sectionn {
  text-align: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 100px 20px;
  position: relative;
  color: var(--white, #ffffff);
  border-radius: var(--border-radius, 12px);
  margin: 80px 20px;
  overflow: hidden;
}

.cta-sectionn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(67, 97, 238, 0.9), rgba(63, 55, 201, 0.9));
  z-index: 1;
}

.cta-contentt {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.cta-sectionn h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  line-height: 1.2;
}

.cta-sectionn p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  line-height: 1.8;
  color: white;
}

strong {
  font-weight: 700;
}

.cta-button {
  display: inline-block;
  background-color: white;
  color: #4361ee;
  font-size: 1.2rem;
  font-weight: 600;
  padding: 18px 38px;
  border-radius: 50px;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.cta-button:active {
  transform: translateY(-1px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.emoji {
  font-size: 1.5rem;
  margin-right: 10px;
  vertical-align: middle;
}

/* Responsive Design */

/* Large Desktops */
@media screen and (min-width: 1400px) {
  .featureee-section {
    padding: 0;
  }
  
  .cta-sectionn {
    margin: 80px 0;
  }
}

/* Laptops and Small Desktops */
@media screen and (max-width: 1200px) {
  .featureee-grid {
    gap: 30px;
  }
  
  .featureee-content h2 {
    font-size: 1.8rem;
  }
  
  .featureee-content p,
  .featureee-list li {
    font-size: 1.05rem;
  }
  
  .cta-sectionn h2 {
    font-size: 2.2rem;
  }
  
  .cta-sectionn p {
    font-size: 1.1rem;
  }
}

/* Tablets */
@media screen and (max-width: 992px) {
  .sectionnn-title {
    font-size: 2rem;
    margin-bottom: 40px;
  }
  
  .featureee-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .featureee-image {
    height: 350px;
    order: -1; /* Moves image to top on mobile */
  }
  
  .featureee-content h2 {
    font-size: 1.8rem;
    text-align: center;
  }
  
  .featureee-content p {
    text-align: center;
  }
  
  .featureee-list li {
    text-align: left;
  }
  
  .cta-sectionn {
    padding: 80px 20px;
    margin: 60px 20px;
  }
  
  .cta-sectionn h2 {
    font-size: 2rem;
  }
  
  .cta-sectionn p {
    font-size: 1.1rem;
    margin-bottom: 30px;
  }
  
  .cta-button {
    padding: 16px 32px;
    font-size: 1.1rem;
  }
}

/* Small Tablets */
@media screen and (max-width: 768px) {
  .featureee-section {
    padding: 0 15px;
    margin-bottom: 60px;
  }
  
  .sectionnn-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
    padding-bottom: 12px;
  }
  
  .sectionnn-title::after {
    width: 60px;
    height: 3px;
  }
  
  .featureee-grid {
    gap: 30px;
  }
  
  .featureee-image {
    height: 300px;
  }
  
  .featureee-content h2 {
    font-size: 1.6rem;
    margin-bottom: 20px;
  }
  
  .featureee-content p {
    font-size: 1rem;
    margin-bottom: 15px;
  }
  
  .featureee-list li {
    font-size: 1rem;
    padding-left: 30px;
    margin-bottom: 12px;
  }
  
  .featureee-list li::before {
    width: 22px;
    height: 22px;
    font-size: 1rem;
  }
  
  .cta-sectionn {
    padding: 60px 20px;
    margin: 50px 15px;
  }
  
  .cta-sectionn h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }
  
  .cta-sectionn p {
    font-size: 1rem;
    margin-bottom: 25px;
    line-height: 1.6;
  }
  
  .cta-button {
    padding: 14px 28px;
    font-size: 1rem;
  }
  
  .emoji {
    font-size: 1.3rem;
  }
}

/* Mobile Devices */
@media screen and (max-width: 576px) {
  .featureee-section {
    padding: 0 12px;
    margin-bottom: 50px;
  }
  
  .sectionnn-title {
    font-size: 1.6rem;
    padding: 0 10px 12px 10px;
  }
  
  .featureee-grid {
    gap: 25px;
  }
  
  .featureee-image {
    height: 250px;
  }
  
  .featureee-content h2 {
    font-size: 1.5rem;
  }
  
  .featureee-content p {
    font-size: 0.95rem;
  }
  
  .featureee-list {
    margin: 20px 0;
  }
  
  .featureee-list li {
    font-size: 0.95rem;
    padding-left: 28px;
  }
  
  .featureee-list li::before {
    width: 20px;
    height: 20px;
    font-size: 0.9rem;
  }
  
  .cta-sectionn {
    padding: 50px 20px;
    margin: 40px 10px;
  }
  
  .cta-sectionn h2 {
    font-size: 1.6rem;
  }
  
  .cta-sectionn p {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }
  
  .cta-button {
    padding: 12px 24px;
    font-size: 0.95rem;
    width: 100%;
    max-width: 300px;
  }
  
  .emoji {
    font-size: 1.2rem;
  }
}

/* Small Mobile Devices */
@media screen and (max-width: 400px) {
  .sectionnn-title {
    font-size: 1.4rem;
  }
  
  .featureee-image {
    height: 220px;
  }
  
  .featureee-content h2 {
    font-size: 1.4rem;
  }
  
  .featureee-content p {
    font-size: 0.9rem;
  }
  
  .featureee-list li {
    font-size: 0.9rem;
  }
  
  .cta-sectionn {
    padding: 40px 15px;
    margin: 30px 5px;
  }
  
  .cta-sectionn h2 {
    font-size: 1.4rem;
  }
  
  .cta-sectionn p {
    font-size: 0.9rem;
  }
  
  .cta-button {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
  
  .emoji {
    font-size: 1.1rem;
    margin-right: 8px;
  }
}

/* Landscape Mode for Mobile */
@media screen and (max-height: 500px) and (orientation: landscape) {
  .featureee-image {
    height: 250px;
  }
  
  .cta-sectionn {
    padding: 40px 20px;
  }
}

/* Print Styles */
@media print {
  .featureee-section {
    page-break-inside: avoid;
  }
  
  .featureee-image {
    box-shadow: none;
    border: 1px solid #ddd;
    max-height: 300px;
  }
  
  .cta-sectionn {
    background: none !important;
    color: #000 !important;
    border: 2px solid #4361ee;
  }
  
  .cta-sectionn::before {
    display: none;
  }
  
  .cta-sectionn h2,
  .cta-sectionn p {
    color: #000 !important;
  }
  
  .cta-button {
    display: none;
  }
}

/* FAQS */
/* FAQ Hero Section */
.faq-hero {
    background-image: url('https://the100skills.com/wp-content/uploads/2021/06/HLPP827.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center bottom;
    background-color: #f8f8fc;
    min-height: 300px;
    margin-bottom: 50px;
    padding: 40px 20px 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-hero-content {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-title {
    color: #1b2336;
    font-size: 40px;
    line-height: 48px;
    margin-bottom: 15px;
}

.breadcrumbs {
    color: #29303b;
    font-size: 14px;
    line-height: 24px;
}

.breadcrumbs a {
    color: #29303b;
    text-decoration: none;
}

.breadcrumbs a:hover {
    color: #415ee8;
}

.divider {
    margin: 0 8px;
}

.current {
    font-weight: 500;
}

/* FAQ Main Content */
.faq-main {
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-container {
    padding: 0 20px;
}

.faq-main-title {
    text-align: center;
    color: #1b2336;
    font-size: 2.2rem;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 15px;
}

.faq-main-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #3f5eec, #4ac5ec);
    border-radius: 2px;
}

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

.faq-column {
    width: 100%;
}

/* FAQ Accordion */
.faq-accordion {
    width: 100%;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    border: 1px solid #eaeaea;
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    background: white;
    border: none;
    text-align: left;
    font-size: 1.05rem;
    font-weight: 600;
    color: #1b2336;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background-color: #f8f9fa;
}

.faq-question.active {
    background-color: #f0f4ff;
    color: #415ee8;
}

.faq-icon {
    font-size: 1.2rem;
    font-weight: 300;
    transition: transform 0.3s ease;
    color: #415ee8;
}

.faq-question.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    background: white;
    transition: all 0.3s ease;
}

.faq-answer.active {
    padding: 25px;
    max-height: 1000px;
}

.faq-answer p {
    color: #555;
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
}

/* Responsive Design */
@media screen and (max-width: 992px) {
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 800px;
        margin: 0 auto;
    }
    
    .faq-main-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }
}

@media screen and (max-width: 768px) {
    .faq-hero {
        min-height: 250px;
        padding: 30px 20px 40px;
    }
    
    .faq-title {
        font-size: 32px;
        line-height: 40px;
    }
    
    .faq-main-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    .faq-question {
        padding: 18px 20px;
        font-size: 1rem;
    }
    
    .faq-answer.active {
        padding: 20px;
    }
}

@media screen and (max-width: 576px) {
    .faq-hero {
        min-height: 200px;
        padding: 20px 15px 30px;
    }
    
    .faq-title {
        font-size: 28px;
        line-height: 36px;
    }
    
    .breadcrumbs {
        font-size: 13px;
    }
    
    .faq-main {
        padding: 10px;
    }
    
    .faq-container {
        padding: 0 10px;
    }
    
    .faq-main-title {
        font-size: 1.6rem;
        padding-bottom: 12px;
    }
    
    .faq-main-title::after {
        width: 60px;
        height: 3px;
    }
    
    .faq-grid {
        gap: 20px;
    }
    
    .faq-question {
        padding: 16px 18px;
        font-size: 0.95rem;
    }
    
    .faq-answer.active {
        padding: 18px;
    }
    
    .faq-answer p {
        font-size: 0.95rem;
    }
}

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

.contact-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
}

/* Map Section Styles (First) */
.map-section {
    flex: 1;
    min-width: 300px;
}

.map-wrapper {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.map-wrapper iframe {
    width: 100%;
    height: 500px;
    border: none;
    display: block;
}

/* Contact Form Styles (Second) */
.contact-form-section {
    flex: 1;
    min-width: 300px;
}

.form-wrapper {
    background: #fff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.form-wrapper h1 {
    color: #333;
    font-size: 32px;
    margin-bottom: 30px;
    font-weight: 600;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}



.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    width: 100%;
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e1e5eb;
    border-radius: 6px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: #f8f9fa;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4a90e2;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Validation Styles */


.form-group input:valid,
.form-group textarea:valid {
    border-color: #51cf66;
}

.error-message {
    color: #ff6b6b;
    font-size: 14px;
    margin-top: 5px;
    display: none;
    animation: slideDown 0.3s ease;
}

.success-message {
    color: #51cf66;
    font-size: 16px;
    text-align: center;
    margin-top: 15px;
    padding: 10px;
    background: #ebfbee;
    border-radius: 6px;
    display: none;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Submit Button */
.submit-btn {
    background:  #7a231c;
    color: white;
    border: none;
    padding: 16px 30px;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 10px;
    position: relative;
    overflow: hidden;
}

.submit-btn:hover {
    background: #77140dff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(42, 157, 244, 0.3);
}

.submit-btn:active {
    transform: translateY(0);
}

.submit-btn:disabled {
    background: #95a5a6;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Placeholder styling */
::placeholder {
    color: #868e96;
    opacity: 0.8;
}

/* Loading animation for button */
.submit-btn.loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    margin: -10px 0 0 -10px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 992px) {
    .contact-container {
        flex-direction: column;
    }
    
    .map-section,
    .contact-form-section {
        width: 100%;
    }
    
    .form-wrapper {
        padding: 30px;
    }
    
    .form-wrapper h1 {
        font-size: 28px;
    }
    
    .map-wrapper iframe {
        height: 400px;
    }
}

@media (max-width: 576px) {
    .contact-page {
        padding: 20px 15px;
    }
    
    .form-wrapper {
        padding: 25px;
    }
    
    .form-wrapper h1 {
        font-size: 24px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 12px 14px;
        font-size: 15px;
    }
    
    .submit-btn {
        padding: 14px 25px;
        font-size: 15px;
    }
}
/*  */
/* Reset and Base Styles */


/* Support Section Styles */
.support-section {
    padding: 0px 330px 0px 330px;
    width: 100%;
}

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

.full-column {
    width: 100%;
}

.content-block {
    text-align: center;
    padding: 20px 0;
}

.main-heading {
    font-size: 26px;
    color: #1a365d;
    font-weight: 601;
    line-height: 1.3;
    margin: 0;
}

/* Contact Details Section */
.contact-details-section {
    padding: 60px 20px;
    background: #ffffff;
    width: 100%;
}

.details-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.detail-box {
    flex: 1;
    min-width: 280px;
    max-width: 380px;
    padding: 40px 30px;
    text-align: center;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.detail-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-color: #4dabf7;
}

/* Icon Styles */
.icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.phone-icon {
    background: linear-gradient(135deg, #40c057, #51cf66);
}

.email-icon {
    background: linear-gradient(135deg, #339af0, #4dabf7);
}

.location-icon {
    background: linear-gradient(135deg, #fa5252, #ff6b6b);
}

.detail-box:hover .icon-circle {
    transform: scale(1.1);
}

.icon-svg {
    width: 35px;
    height: 35px;
    fill: #ffffff;
}

.email-symbol {
    font-size: 36px;
    color: #ffffff;
    font-weight: 600;
    font-style: normal;
}

/* Content Styles */
.detail-title {
    font-size: 22px;
    color: #1a365d;
    font-weight: 600;
    margin: 0 0 15px 0;
}

.detail-content {
    margin-top: 10px;
}

.phone-link {
    font-size: 18px;
    color: #c54a28;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    display: inline-block;
    padding: 8px 15px;
    border-radius: 6px;
}

.phone-link:hover {
    color: #c54a28;
    text-decoration: none;
}

.email-link {
    font-size: 18px;
    color: #c54a28;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    display: inline-block;
    padding: 8px 15px;
    border-radius: 6px;
}

.email-link:hover {
    color: #c54a28;
    text-decoration: none;
}

.address-text {
    font-size: 16px;
    color: #495057;
    line-height: 1.6;
    padding: 15px;
    border-radius: 8px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .main-heading {
        font-size: 32px;
    }
    
    .details-grid {
        gap: 25px;
    }
    
    .detail-box {
        padding: 35px 25px;
    }
}

@media (max-width: 768px) {
    .support-section {
        padding: 40px 15px;
    }
    
    .contact-details-section {
        padding: 50px 15px;
    }
    
    .main-heading {
        font-size: 28px;
    }
    
    .detail-title {
        font-size: 20px;
    }
    
    .phone-link,
    .email-link {
        font-size: 16px;
    }
    
    .address-text {
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    .support-section {
        padding: 30px 10px;
    }
    
    .contact-details-section {
        padding: 40px 10px;
    }
    
    .main-heading {
        font-size: 24px;
    }
    
    .detail-box {
        min-width: 100%;
        padding: 30px 20px;
    }
    
    .icon-circle {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }
    
    .icon-svg {
        width: 30px;
        height: 30px;
    }
    
    .email-symbol {
        font-size: 30px;
    }
    
    .detail-title {
        font-size: 18px;
    }
    
    .phone-link,
    .email-link {
        font-size: 15px;
        padding: 6px 12px;
    }
    
    .address-text {
        font-size: 14px;
        padding: 12px;
    }
}

/* Animation for icons on load */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.detail-box {
    animation: fadeInUp 0.5s ease forwards;
}

.detail-box:nth-child(1) {
    animation-delay: 0.1s;
}

.detail-box:nth-child(2) {
    animation-delay: 0.2s;
}

.detail-box:nth-child(3) {
    animation-delay: 0.3s;
}

/*  */
.contentt-gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: transparent;
  background-image: linear-gradient(260deg, #EB5252 0%, #A13152 100%);
  opacity: 0.92;
  z-index: 1;
}

/*why certify with 100skills  */
/* Base styles */
.certification-container {
  margin-top: 50px;
  margin-bottom: 50px;
  padding: 0 15px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.certification-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 60px;
}

.header-content {
  flex: 0 0 50%;
  max-width: 50%;
  padding-right: 30px;
  box-sizing: border-box;
}

.header-graphic {
  flex: 0 0 50%;
  max-width: 50%;
}

.hero-image {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.header-content h2 {
  margin-top: 0;
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  
  /* Gradient text */
  background: linear-gradient(135deg, #3182ce 0%, #63b3ed 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.header-content p {
  font-size: 20px;
  color: #4a5568;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Benefits section */
.benefits-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* Main benefit cards */
.main-benefit {
  background: linear-gradient(135deg, #f8fafc 0%, #edf2f7 100%);
  border-radius: 12px;
  padding: 40px;
  border-left: 6px solid #3182ce;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.main-benefit:hover {
  transform: translateY(-3px);
}

.benefit-icon {
  font-size: 40px;
  margin-bottom: 20px;
}

.main-benefit h3 {
  color: #2d3748;
  font-size: 28px;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 15px;
  line-height: 1.3;
}

.main-benefit p {
  color: #4a5568;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Secondary benefit */
.secondary-benefit {
  background: white;
  border-radius: 10px;
  padding: 30px;
  border: 2px solid #e2e8f0;
  margin: 10px 0;
}

.secondary-benefit h4 {
  color: #3182ce;
  font-size: 22px;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 15px;
  line-height: 1.3;
}

.secondary-benefit p {
  color: #4a5568;
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Horizontal benefits container */
.benefit-horizontal-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 10px;
}

.horizontal-benefit {
  background: white;
  border-radius: 8px;
  padding: 25px;
  border-top: 3px solid #63b3ed;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border-left: none;
}

.horizontal-benefit h5 {
  color: #2d3748;
  font-size: 18px;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 12px;
  line-height: 1.3;
}

.horizontal-benefit p {
  color: #4a5568;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Tablet styles (768px to 1024px) */
@media (max-width: 1024px) {
  .certification-container {
    margin-top: 40px;
    margin-bottom: 40px;
  }
  
  .header-content h2 {
    font-size: 36px;
  }
  
  .header-content p {
    font-size: 18px;
  }
  
  .main-benefit {
    padding: 30px;
  }
  
  .main-benefit h3 {
    font-size: 24px;
  }
  
  .main-benefit p {
    font-size: 17px;
  }
}

/* Mobile styles (768px and below) */
@media (max-width: 768px) {
  .certification-container {
    margin-top: 30px;
    margin-bottom: 30px;
    padding: 0 12px;
  }
  
  .certification-header {
    flex-direction: column;
    margin-bottom: 40px;
  }
  
  .header-content {
    flex: 0 0 100%;
    max-width: 100%;
    padding-right: 0;
    margin-bottom: 30px;
    text-align: center;
  }
  
  .header-graphic {
    flex: 0 0 100%;
    max-width: 100%;
  }
  
  .header-content h2 {
    font-size: 32px;
    margin-bottom: 15px;
  }
  
  .header-content p {
    font-size: 18px;
  }
  
  .benefit-horizontal-container {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .main-benefit {
    padding: 25px;
  }
  
  .secondary-benefit {
    padding: 25px;
  }
  
  .horizontal-benefit {
    padding: 20px;
  }
  
  .benefit-icon {
    font-size: 32px;
    margin-bottom: 15px;
  }
}

/* Small mobile styles (480px and below) */
@media (max-width: 480px) {
  .certification-container {
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 0 10px;
  }
  
  .header-content h2 {
    font-size: 28px;
  }
  
  .header-content p {
    font-size: 16px;
  }
  
  .main-benefit {
    padding: 20px;
  }
  
  .main-benefit h3 {
    font-size: 22px;
  }
  
  .main-benefit p {
    font-size: 16px;
  }
  
  .secondary-benefit {
    padding: 20px;
  }
  
  .secondary-benefit h4 {
    font-size: 20px;
  }
  
  .secondary-benefit p {
    font-size: 16px;
  }
  
  .horizontal-benefit {
    padding: 18px;
  }
  
  .horizontal-benefit h5 {
    font-size: 16px;
  }
  
  .horizontal-benefit p {
    font-size: 14px;
  }
}

/* Large desktop styles (1200px and above) */
@media (min-width: 1200px) {
  .header-content h2 {
    font-size: 48px;
  }
  
  .header-content p {
    font-size: 22px;
  }
  
  .main-benefit h3 {
    font-size: 30px;
  }
  
  .main-benefit p {
    font-size: 19px;
  }
}

/* Container */
.cert-benefits-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Card */
.cert-benefit-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 28px 24px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  position: relative;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

/* Left blue border */
.cert-benefit-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 5px;
  background: #2f80ed;
  border-radius: 14px 0 0 14px;
}

/* Hover effect */
.cert-benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.1);
}

/* Icon wrapper */
.cert-benefit-image {
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: 50%;
  background: #eef4ff;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Icon image */
.cert-benefit-image img {
  width: 32px;
  height: 32px;
  object-fit: cover;
  border-radius: 50%;
}

/* Content */
.cert-benefit-content {
  flex: 1;
}

/* Title */
.cert-benefit-title {
  font-size: 17px;
  font-weight: 600;
  color: #3e79b7;
  margin-bottom: 8px;
  line-height: 1.4;
}

/* Description */
.cert-benefit-desc {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.8;
  margin: 0;
}

/* Tablet */
@media (max-width: 992px) {
  .cert-benefits-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 576px) {
  .cert-benefits-container {
    grid-template-columns: 1fr;
  }

  .cert-benefit-card {
    padding: 22px 20px;
  }
}

/* Section */
.cert-testimonials-section {
  padding: 60px 20px;
  background: #ffffff;
}

/* Heading */
.cert-testimonials-heading {
  text-align: center;
  font-size: 28px;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 50px;
}

/* Grid */
.cert-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

/* Card */
.cert-testimonial-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 32px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease;
}

.cert-testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

/* Quote text */
.cert-testimonial-text p {
  font-size: 16px;
  line-height: 1.7;
  color: #374151;
  margin: 0;
  position: relative;
  padding-left: 20px;
}

/* Quote mark */
.cert-quote {
  position: absolute;
  left: 0;
  top: -5px;
  font-size: 40px;
  color: #c7d2fe;
  font-weight: 700;
}

/* Author */
.cert-testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
}

/* Image */
.cert-author-img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
}

/* Name */
.cert-author-name {
  font-size: 15px;
  font-weight: 600;
  color: #111827;
  margin: 0;
}

/* Role */
.cert-author-role {
  font-size: 13px;
  color: #6b7280;
  margin: 2px 0 0;
}

/* Tablet */
@media (max-width: 992px) {
  .cert-testimonials-grid {
    grid-template-columns: 1fr;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .cert-testimonial-card {
    padding: 24px;
  }

  .cert-testimonials-heading {
    font-size: 24px;
  }
}

/* ================= STATS BAR ================= */

.cert-stats-bar {
  max-width: 1200px;
  margin: 40px auto 70px;
  padding: 36px 30px;
  background: linear-gradient(135deg, #2f80ed, #1c6fd5);
  border-radius: 14px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
  color: #ffffff;
}

.cert-stat-number {
  font-size: 32px;
  font-weight: 700;
  display: block;
  margin-bottom: 6px;
}

.cert-stat-text {
  font-size: 14px;
  opacity: 0.9;
}

/* ================= CTA SECTION ================= */

.cert-cta-section {
  max-width: 1200px;
  margin: 0 auto 80px;
  background: #f9fafb;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  overflow: hidden;
}

.cert-cta-content {
  padding: 50px 45px;
}

.cert-cta-content h3 {
  font-size: 26px;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 14px;
}

.cert-cta-content p {
  font-size: 15px;
  color: #4b5563;
  line-height: 1.6;
  margin-bottom: 22px;
}

.cert-cta-btn {
  display: inline-block;
  padding: 14px 32px;
  background: #2f80ed;
  color: #ffffff;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cert-cta-btn:hover {
  background: #1c6fd5;
  transform: translateY(-2px);
}

.cert-cta-note {
  margin-top: 16px;
  font-size: 13px;
  color: #6b7280;
}

/* Image */
.cert-cta-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
  .cert-stats-bar {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 24px;
  }

  .cert-cta-section {
    grid-template-columns: 1fr;
  }

  .cert-cta-image {
    height: 260px;
  }
}

@media (max-width: 576px) {
  .cert-stats-bar {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 30px 20px;
  }

  .cert-stat-number {
    font-size: 28px;
  }

  .cert-cta-content {
    padding: 36px 24px;
  }

  .cert-cta-content h3 {
    font-size: 22px;
  }
}


/* 100 links */
    :root {
        --primary: #7E2922;
        --secondary: #CBA67B;
        --accent: #BD9060;
        --bg-soft: #fdfaf7;
        --text-dark: #333;
    }

    .ippa-container {
        font-family: 'Inter', sans-serif;
        color: var(--text-dark);
        line-height: 1.8;
        background-color: var(--bg-soft);
        overflow-x: hidden;
    }

    /* Helper class for HTML Background Images */
    .html-bg-wrapper {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
        overflow: hidden;
    }

    .html-bg-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .overlay-dark {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.6);
        z-index: 2;
    }

    /* Hero Section */
    .ippa-hero {
        position: relative;
        height: 75vh;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        color: white;
        background-color: var(--primary);
    }

    .hero-content {
        position: relative;
        z-index: 3;
    }

    .hero-content h1 {
        font-family: 'Cinzel', serif;
        font-size: clamp(1.8rem, 6vw, 3.8rem);
        margin-bottom: 10px;
        text-shadow: 2px 2px 15px rgba(0, 0, 0, 0.4);
    }

    .hero-tagline {
        font-size: 1.2rem;
        letter-spacing: 5px;
        color: var(--secondary);
        text-transform: uppercase;
        font-weight: 600;
        display: block;
        margin-bottom: 20px;
    }

    /* About Section */
    .ippa-about {
        padding: 100px 8%;
        background: white;
    }

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

    .about-image {
        position: relative;
        border-radius: 15px;
        min-height: 500px;
    }

    .about-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 15px;
        box-shadow: 25px 25px 0 var(--secondary);
    }

    .section-title {
        font-family: 'Cinzel', serif;
        color: var(--primary);
        margin-bottom: 30px;
        font-size: 2.5rem;
        position: relative;
    }

    .section-title::after {
        content: '';
        display: block;
        width: 60px;
        height: 3px;
        background: var(--secondary);
        margin-top: 10px;
    }

    /* Who Fits In Grid */
    .who-fits {
        padding: 80px 8%;
        text-align: center;
        background: var(--bg-soft);
    }

    .fits-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 25px;
        margin-top: 50px;
    }

    .fit-card {
        padding: 40px 20px;
        background: white;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        transition: 0.3s ease;
        border-top: 4px solid var(--secondary);
    }

    .fit-card:hover {
        transform: translateY(-10px);
    }

    .fit-card i {
        font-size: 2.5rem;
        color: var(--primary);
        margin-bottom: 15px;
    }

    /* Mission & Vision Banner */
    .mv-banner {
        position: relative;
        color: white;
        display: grid;
        grid-template-columns: 1fr 1fr;
        background-color: var(--primary);
    }

    .mv-box {
        position: relative;
        z-index: 3;
        padding: 100px 10%;
    }

    .mv-box:first-child {
        border-right: 1px solid rgba(255, 255, 255, 0.1);
    }

    /* Benefits Section */
    .benefits-wrapper {
        padding: 100px 8%;
        background: white;
    }

    .benefit-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 40px;
        margin-top: 60px;
    }

    .benefit-card {
        padding: 45px;
        background: var(--bg-soft);
        border-radius: 20px;
        border: 1px solid #f0e6db;
        transition: 0.3s ease;
    }

    .benefit-card:hover {
        border-color: var(--secondary);
    }

    /* Process Section */
    .process-section {
        padding: 100px 8%;
        text-align: center;
    }

    .process-steps {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 50px;
        margin-top: 60px;
    }

    .step-icon {
        width: 80px;
        height: 80px;
        background: var(--primary);
        color: var(--secondary);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 25px;
        font-size: 1.8rem;
        font-weight: bold;
    }

    /* CTA Section */
    .cta-footer {
        position: relative;
        color: white;
        padding: 120px 8%;
        text-align: center;
        background-color: #000;
    }

    .cta-container {
        position: relative;
        z-index: 3;
    }

    .btn-gold {
        background: #7e2922;
        color: white;
        padding: 20px 30px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 700;
        display: inline-block;
        margin-top: 35px;
        text-transform: uppercase;
        letter-spacing: 1px;
        transition: 0.3s;
    }

    .btn-gold:hover {
        background: #CBA67B;
        color:#7e2922;
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    }

    @media (max-width: 992px) {

        .about-grid,
        .mv-banner {
            grid-template-columns: 1fr;
        }

        .mv-box:first-child {
            border-right: none;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
    }

    .hero-logo {
        margin-bottom: 30px;
        /* Space between logo and text */
    }

    .hero-logo img {
        width: 150px;
        /* Adjust this size to fit your logo design */
        height: auto;
        filter: drop-shadow(0px 4px 10px rgba(0, 0, 0, 0.3));
        /* Makes logo pop against background */
    }

    /* Responsive adjustment for mobile */
    @media (max-width: 768px) {
        .hero-logo img {
            width: 100px;
        }
    }
.fit-card {
    text-align: center;
}

.fit-icon-img {
    width: 50px;
    height: 50px;
    margin: 0 auto 12px;
    object-fit: contain;
    display: block;
    filter: invert(17%) sepia(41%) saturate(548%) hue-rotate(335deg) brightness(90%) contrast(90%);
}

.benefit-icon-img {
    width: 50px;
    height: 50px;
    margin: 0 auto 20px;
    object-fit: contain;
    display: block;
    filter: invert(17%) sepia(41%) saturate(548%) hue-rotate(335deg) brightness(90%) contrast(90%);
}



/* form css */

.program-form-container {
  max-width: 700px;
  margin: 80px auto;
  padding: 40px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.program-form-container h2 {
  text-align: center;
  margin-bottom: 30px;
  color: #7E2922;
}

.program-form-container label {
  display: block;
  margin-top: 15px;
  font-weight: 600;
}

.program-form-container input {
  width: 100%;
  padding: 10px;
  margin-top: 6px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.btn-goldd {
  margin-top: 25px;
  width: 100%;
  padding: 12px;
  background: linear-gradient(135deg, #CBA67B, #7E2922);
  color: #fff;
  border: none;
  border-radius: 30px;
  font-size: 16px;
  cursor: pointer;
}


  