.logo-img{
  width:100px;
}
.hero-content{
    padding-top:60px;
}
.txt-white{
    color:white;
}
/* Key Dates Section Styles */
.key-dates-section {
    margin-top: 50px;
    text-align: center;
}

.key-dates-section .section-title {
    color: #007bff;
    font-size: 2rem;
    margin-bottom: 30px;
    font-weight: bold;
}

.key-dates-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.key-date-item {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    padding: 20px;
    width: 250px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
    gap: 15px;
}

.key-date-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.key-date-item i {
    font-size: 2rem;
    color: #007bff;
}

.key-date-item div {
    text-align: left;
}

.key-date-item strong {
    display: block;
    color: #333;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.key-date-item div:last-child {
    font-size: 0.9rem;
    color: #666;
}

    
        /* Prize Distribution Section */
        .prize-distribution-section {
           margin-bottom:50px;
            background-color: #ffffff;
        }
        
        .prize-distribution-container {
            margin: 0 auto;
            padding: 0 2rem;
        }
        
        .prize-section-header {
            text-align: left;
            margin-bottom: 4rem;
        }
        
        .prize-title {
    font-size: clamp(1.75rem, 4vw, 2.4rem);
    font-weight: 700;
    color: #3b3939;
    margin-bottom: 1rem;
    line-height: 1.2;
        }
        
        .prize-description {
            font-size: clamp(0.95rem, 1.5vw, 1rem);
            color: #666666;
            line-height: 1.8;
        }
        
        .prize-cards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            row-gap: 2rem;
            column-gap: 1.5rem;justify-content: center;
            align-items: center;
            padding: 10px;
        }
        
        .prize-card {
            background-color: #c9daeebd;
            border-radius: 8px;
            padding: 2rem 1rem;
            text-align: center;
            transition: transform 0.2s, box-shadow 0.2s;
            border: 1px solid #efefef;
            box-shadow: 0 8px 20px rgba(193, 45, 45, 0.1);
        }
        
        .prize-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        }
        
        .prize-amount {            
    font-size: 20px;
    font-weight: 700;
    color: #002abc;
    margin-bottom: 1.5rem;
}
        .fs-15{font-size: 15px;color:#454545;font-weight: 500;}
        .prize-position {text-align:center;
            font-size: 16px;
            font-weight: 600;
            color: #000;text-transform: capitalize;
            margin-bottom: 1rem;
        }
        
        .prize-includes {
            font-size: clamp(0.9rem, 1.5vw, 1rem);
            color: #666666;
            line-height: 1.6;
        }
        
        /* Prize Distribution Responsive */
        @media (max-width: 991.98px) {
            .prize-distribution-section {
                padding: 4rem 0;
            }
            
            .prize-distribution-container {
                padding: 0 1.5rem;
            }
            
            .prize-section-header {
                margin-bottom: 3rem;
            }
            
            .prize-cards-grid {
                gap: 1.5rem;
                padding: 0;
            }
        }
        
        @media (max-width: 575.98px) {
            .prize-distribution-section {
                padding: 2rem 0;
            }
            
            .prize-distribution-container {
                padding: 0 1rem;
            }
            
            .prize-section-header {
                margin-bottom: 2rem;
            }
            
            .prize-cards-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
                padding: 0;
            }
            
            .prize-card {
                padding: 2rem 1.25rem;
            }
        }
        
         /* Participant Benefits Section */
        .participant-benefits-section {
            padding: 6rem 0;
            background-color:#ffece3;
        }
        
        .benefits-section-header {
            text-align: left;
            margin-bottom: 4rem;
        }
        
        .benefits-title {
            font-size: 34px;
            font-weight: 700;
            color:var(--header);
            margin-bottom: 1rem;
            line-height: 1.2;
        }
        
        .benefits-description {
            font-size: clamp(0.95rem, 1.5vw, 1rem);
            color: #030523;
            line-height: 1.8;
        }
        
        .benefits-cards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
            gap: 3rem;
            padding: 0 1rem;
        }
        
        .benefit-card {
            display: flex;
            flex-direction: row;
            gap: 1.5rem;
            text-align: left;
            align-items: flex-start;
        }
        
        .benefit-icon {
            font-size: 3rem;
            color: #ea5e20;
            display: flex;
            align-items: center;
            justify-content: flex-start;
            flex-shrink: 0;
            min-width: 3rem;
            line-height: 1;
        }
        
        .benefit-content {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }
        
        .benefit-title {
            font-size: clamp(1.1rem, 2vw, 1.25rem);
            font-weight: 600;
            color:var(--header);text-transform: none;
        }
        
        .benefit-text {
            font-size: clamp(0.9rem, 1.5vw, 1rem);
            color: #666666;
            line-height: 1.6;
        }
        
        /* Participant Benefits Responsive */
        @media (max-width: 991.98px) {
            .participant-benefits-section {
                padding: 4rem 0;
            }
            
            .benefits-section-header {
                margin-bottom: 3rem;
            }
            
            .benefits-cards-grid {
                gap: 2rem;
                padding: 0;
            }
        }
        
        @media (max-width: 575.98px) {
            .participant-benefits-section {
                padding: 2rem 0;
            }
            
            .benefits-section-header {
                margin-bottom: 2rem;
            }
            
            .benefits-cards-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
                padding: 0;
            }
            
            .benefit-card {
                gap: 1rem;
            }
            
            .benefit-icon {
                font-size: 2.5rem;
            }
        }
        
        /* Tournament Rules & Format Section */
        .tournament-rules-section {
            padding: 6rem 0;
            background-color: #ffffff;
        }
        
        .rules-section-header {
            text-align: left;
            margin-bottom: 4rem;
        }
        
        .rules-title {
            font-size: 34px;
            font-weight: 600;
            color: var(--header);
            margin-bottom: 1rem;
            line-height: 1.2;
        }
        
        .rules-description {
            font-size: clamp(0.95rem, 1.5vw, 1rem);
            color: var(--header);
            line-height: 1.8;
        }
        
        .rules-cards-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 3rem;
            padding: 0 1rem;
        }
        
        .rule-card {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            padding-bottom: 2rem;
            border-bottom: 1px solid #efefef;
        }
        
        .rule-number {
            font-size: clamp(0.9rem, 1.5vw, 1rem);
            font-weight: 600;
            color: #3b3939;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            padding-bottom: 1.5rem;
            border-bottom: 1px solid #ea5e20;
            width: 100%;
        }
        
        .rule-card-title {
            font-size: clamp(1.1rem, 2vw, 1.25rem);
            font-weight: 600;
            color:var(--header);
        }
        
        .rule-card-text {
            font-size: clamp(0.9rem, 1.5vw, 1rem);
            color: #666666;
            line-height: 1.6;
        }
        
        /* Tournament Rules Responsive */
        @media (max-width: 991.98px) {
            .tournament-rules-section {
                padding: 4rem 0;
            }
            
            .rules-section-header {
                margin-bottom: 3rem;
            }
            
            .rules-cards-grid {
                gap: 2rem;
                padding: 0;
            }
        }
        
        @media (max-width: 575.98px) {
            .tournament-rules-section {
                padding: 2rem 0;
            }
            
            .rules-section-header {
                margin-bottom: 2rem;
            }
            
            .rules-cards-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
                padding: 0;
            }
            
            .rule-card {
                gap: 0.75rem;
                padding-bottom: 1.5rem;
            }
        }
        
        /* Registration Process Section */
        .registration-process-section {
            padding: 6rem 0;
            background: linear-gradient(rgba(245, 245, 245, 0.92), rgba(255, 255, 255, 0.92)), url('../img/bg.png');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            position: relative;
        }
        
        .registration-title {
            font-size: 34px;
            font-weight: 600;
            color:var(--header);
            margin-bottom: 3rem;
            line-height: 1.2;
        }
        
        .registration-steps {
            display: flex;
            justify-content: space-between;
            margin-bottom: 3rem;
            gap: 2rem;
            position: relative;
        }
        
        .registration-step {
            flex: 1;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            position: relative;
        }
        
        .step-banner {
            background:linear-gradient(135deg, #e8e8f0 0%, #6194cd8f 100%);
            padding: 1.5rem 1rem;
            margin-bottom: 1.5rem;
            width: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 80px;
            position: relative;
            clip-path: polygon(20px 0, calc(100% - 20px) 0, 100% 50%, calc(100% - 20px) 100%, 20px 100%, 0 50%);
        }
        
        .step-icon {
            font-size: 2.5rem;
            color: #4a4a4a;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .step-title {
            font-size: clamp(1rem, 2vw, 1.15rem);
            font-weight: 600;
            color: var(--header);
            margin-bottom: 0.75rem;
        }
        
        .step-description {
            font-size: clamp(0.9rem, 1.5vw, 1rem);
            color: #666666;
            line-height: 1.6;
        }
        
        .registration-step::after {
            content: '';
            position: absolute;
            top: 110px;
            left: 100%;
            width: 50px;
            height: 2px;
            background-color: #cccccc;
            display: none;
        }
        
        .registration-step:last-child::after {
            display: none !important;
        }
        
        .important-note {
            background-color: #e8e8f0;
            border-radius: 8px;
            padding: 1.5rem;
            display: flex;
            gap: 1.5rem;
            align-items: flex-start;
        }
        
        .note-icon {
            font-size: 1.5rem;
            color: #4a4a4a;
            flex-shrink: 0;
            margin-top: 0.25rem;
        }
        
        .note-content {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }
        
        .note-label {
            font-weight: 600;
            color: #4a4a4a;
            font-size: clamp(0.95rem, 1.5vw, 1.05rem);
        }
        
        .note-text {
            color: #666666;
            font-size: clamp(0.9rem, 1.5vw, 1rem);
            line-height: 1.6;
        }
        
        /* Registration Process Responsive */
        @media (max-width: 991.98px) {
            .registration-process-section {
                padding: 4rem 0;
            }
            
            .registration-title {
                margin-bottom: 2.5rem;
            }
            
            .registration-steps {
                flex-direction: column;
                gap: 1.5rem;
            }
            
            .registration-step::after {
                display: none !important;
            }
        }
        
        @media (max-width: 575.98px) {
            .registration-process-section {
                padding: 2rem 0;
            }
            
            .registration-title {
                margin-bottom: 2rem;
            }
            
            .step-banner {
                min-height: 70px;
                padding: 1rem;
            }
            
            .step-icon {
                font-size: 2rem;
            }
            
            .important-note {
                padding: 1.25rem;
                gap: 1rem;
            }
            
            .note-icon {
                font-size: 1.25rem;
            }
        }
        
        /* Contact Information Section */
        .contact-information-section {
            padding: 6rem 0;
            background-color: #104989;color:white;
        }
        .text-decoration-none{
            text-decoration: none !important;
            color:#3b3939!important;
        }
        .contact-title {
            font-size: 34px;
            font-weight: 600;
            color:white;
            margin-bottom: 1rem;
            line-height: 1.2;
        }
        
        .contact-description {
            font-size: clamp(0.95rem, 1.5vw, 1rem);
            color: white;
            line-height: 1.8;
            margin-bottom: 3rem;
        }
        
        .contact-content {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 4rem;
        }
        
        .contact-column {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        
        .contact-column-title {
            font-size: clamp(1.1rem, 2vw, 1.25rem);
            font-weight: 600;
            color: white;
        }
        
        .phone-list {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }
        
        .phone-list li {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            font-size: clamp(0.9rem, 1.5vw, .9rem);
            color:white;
        }
        
        .phone-list i {
            font-size: 1.1rem;
            color: #4a4a4a;
            flex-shrink: 0;
        }
        .txt-white{
            color:white!important;
        }
        .resources-text {
            font-size: clamp(0.9rem, 1.5vw, .9rem);
            color: white;
            line-height: 1.6;
            margin-bottom: 1rem;
        }
        
        .resources-link {
            color: #fff;text-transform: none;
            text-decoration: underline;
            font-weight: 500;
            transition: color 0.2s;
        }
        
        .resources-link:hover {
            color:#ea5e20;
        }
        
        /* Join the Championship Section */
        .join-championship-section {
            background-color: #ffffff;
            padding: 0;
        }

        .join-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0;
            align-items: stretch;
            min-height: 100vh;
        }

        .join-image-wrapper {
            width: 100%;
            height: 100%;
            overflow: hidden;
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
        }

        .join-image-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            display: block;
        }

        .join-content-wrapper {
            padding: 3rem;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: var(--bg);
        }

        .join-content {
            width: 100%;
        }

        .join-title {
            font-size: clamp(1.8rem, 4vw, 2.5rem);
            font-weight: 700;
            color: #4a4a4a;
            margin-bottom: 1.5rem;
            line-height: 1.3;
        }

        .join-description {
            font-size: clamp(0.95rem, 1.5vw, 1.05rem);
            color: #666666;
            margin-bottom: 2.5rem;
            line-height: 1.7;
        }

        .join-benefits-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
            margin-bottom: 2.5rem;
        }

        .join-benefit-card {
            background:linear-gradient(135deg, #e8e8f0 0%, #6194cd42 100%);
            border-radius: 12px;
            padding: 1.5rem;
            display: flex;
            flex-direction: column;
            gap: 1rem;
            transition: transform 0.3s ease;
        }

        .join-benefit-card:nth-child(3) {
            grid-column: 1 / -1;
        }

        .join-benefit-card:hover {
            transform: translateY(-5px);
        }

        .join-benefit-icon {
            width: 3rem;
            height: 3rem;
            background-color: #d0d0dd;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #666666;
            font-size: 1.5rem;
        }

        .join-benefit-title {
            font-size: clamp(1rem, 1.5vw, 1.15rem);
            font-weight: 600;
            color: var(--header);text-transform: none;
        }

        .join-benefit-text {
            font-size: clamp(0.9rem, 1.2vw, 0.95rem);
            color: #403d3d;
            line-height: 1.5;
        }

        .join-cta-button {
            background-color: #8b8ba6;
            color: #ffffff;
            border: none;
            padding: 0.9rem 2rem;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.3s ease;
            align-self: flex-start;
        }

        .join-cta-button:hover {
            background-color: #7a7a93;
        }
        
        /* Join the Championship Responsive */
        @media (max-width: 1024px) {
            .join-container {
                grid-template-columns: 1fr;
                min-height: auto;
            }

            .join-content-wrapper {
                padding: 3rem 2rem;
            }

            .join-image-wrapper {
                min-height: 350px;
            }
        }

        @media (max-width: 991.98px) {
            .join-benefits-grid {
                gap: 1.2rem;
                margin-bottom: 2rem;
            }

            .join-content-wrapper {
                padding: 2.5rem 1.5rem;
            }

            .join-title {
                margin-bottom: 1rem;
            }

            .join-description {
                margin-bottom: 2rem;
            }
        }

        @media (max-width: 575.98px) {
            .join-benefits-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            .join-benefit-card:nth-child(3) {
                grid-column: auto;
            }

            .join-content-wrapper {
                padding: 2rem 1.5rem;
            }

            .join-title {
                margin-bottom: 0.8rem;
            }

            .join-description {
                margin-bottom: 1.5rem;
                font-size: 0.95rem;
            }

            .join-benefits-grid {
                margin-bottom: 1.5rem;
            }

            .join-image-wrapper {
                min-height: 280px;
            }

            .join-benefit-card {
                padding: 1rem;
            }

            .join-cta-button {
                padding: 0.75rem 1.5rem;
                font-size: 0.95rem;
            }
        }
        
        /* Contact Information Responsive */
        @media (max-width: 991.98px) {
            .contact-information-section {
                padding: 4rem 0;
            }
            
            .contact-description {
                margin-bottom: 2.5rem;
            }
            
            .contact-content {
                gap: 3rem;
            }
        }
        
        @media (max-width: 575.98px) {
            .contact-information-section {
                padding: 2rem 0;
            }
            
            .contact-description {
                margin-bottom: 2rem;
            }
            
            .contact-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            .contact-column {
                gap: 1rem;
            }
            
            .phone-list {
                gap: 0.5rem;
            }
        }
        
        /* Join the Championship Section */
        .join-championship-section {
            padding: 0;
            background-color: #ffffff;
        }
        
        .join-image-wrapper {
            width: 100%;
            height: 100%;
            min-height: 100vh;
            overflow: hidden;
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
        }
        
        .join-image-wrapper img {
            width: 100%;
            height: 100%;
            min-height: 100vh;
            object-fit: cover;
            object-position: center;
            display: block;
        }
        
        .join-title {
            font-size: clamp(2rem, 4vw, 2.75rem);
            font-weight: 700;
            color: #4a4a4a;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }
        
        .join-description {
            font-size: clamp(0.95rem, 1.5vw, 1.125rem);
            color: #666666;
            line-height: 1.8;
            margin-bottom: 2.5rem;
        }
        
        .join-benefits-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
            margin-bottom: 2.5rem;
        }
        
        .benefit-card-join {
            background-color: #e8e8f0;
            border-radius: 12px;
            padding: 2rem;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        
        .benefit-card-join:nth-child(3) {
            grid-column: 1 / -1;
        }
        
        .benefit-card-icon {
            font-size: 2.5rem;
            color: #4a4a4a;
            width: 50px;
            height: 50px;
            background-color: #d8d8e0;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .benefit-card-title {
            font-size: clamp(1.05rem, 2vw, 1.2rem);
            font-weight: 600;
            color: #4a4a4a;
        }
        
        .benefit-card-text {
            font-size: clamp(0.9rem, 1.5vw, 1rem);
            color: #666666;
            line-height: 1.6;
        }
        
        .join-cta-button {
            background: #4a4a4a;
            color: #ffffff;
            padding: 1rem 2.5rem;
            border: none;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.2s, transform 0.2s;
            width: fit-content;
        }
        
        .join-cta-button:hover {
            background-color: #2c2c2c;
            transform: translateY(-2px);
        }
        
        /* Join the Championship Responsive */
        @media (max-width: 991.98px) {
            .join-image-col {
                height: 400px;
            }
            
            .join-content-col {
                padding: 3rem 2rem;
                height: auto;
                min-height: auto;
            }
        }
        
        @media (max-width: 575.98px) {
            .join-image-col {
                height: 300px;
            }
            
            .join-content-col {
                padding: 2rem 1rem;
            }
            
            .join-benefits-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
            }
            
            .benefit-card-join {
                padding: 1.5rem;
            }
            
            .benefit-card-join:nth-child(3) {
                grid-column: 1;
            }
            
            .join-cta-button {
                width: 100%;
                text-align: center;
            }
        }
        
        .join-championship-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            min-height: 100vh;
            gap: 0;
        }
        
        .join-image-column {
            position: relative;
            overflow: hidden;
        }
        
        .join-image-wrapper {
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .join-image-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }
        
        .join-content-column {
            padding: 4rem;
            height: 100vh;
            display: flex;
            align-items: center;
        }
        
        .join-title {
            font-size: 34px;
            font-weight: 600;
            color: var(--header);
            text-transform: none    ;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }
        
        .join-description {
            font-size: clamp(0.95rem, 1.5vw, 1rem);
            color: #666666;
            line-height: 1.8;
            margin-bottom: 2.5rem;
        }
        
        .join-benefits-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
            margin-bottom: 2.5rem;
        }
        
        .benefit-card-join {
            background-color: #e8e8f0;
            border-radius: 12px;
            padding: 2rem;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        
        .benefit-card-join:nth-child(3) {
            grid-column: 1 / -1;
        }
        
        .benefit-card-icon {
            font-size: 2.5rem;
            color: #4a4a4a;
            width: 50px;
            height: 50px;
            background-color: #d8d8e0;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .benefit-card-title {
            font-size: clamp(1.05rem, 2vw, 1.2rem);
            font-weight: 600;
            color: #4a4a4a;
        }
        
        .benefit-card-text {
            font-size: clamp(0.9rem, 1.5vw, 1rem);
            color: #666666;
            line-height: 1.6;
        }
        .text-center{
            text-align: center;
            }
        .join-cta-button {
            background: #ea5e20;
            color: #ffffff;
            padding: 1rem 2.5rem;
            border: none;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.2s, transform 0.2s;
            width: fit-content;
        }
        
        .join-cta-button:hover {
            background-color: #2c2c2c;
            transform: translateY(-2px);
        }
        
        /* Join the Championship Responsive */
        @media (max-width: 991.98px) {
            .join-championship-row {
                grid-template-columns: 1fr;
                min-height: auto;
            }
            
            .join-image-column {
                min-height: 400px;
            }
            
            .join-content-column {
                padding: 3rem 2rem;
            }
            
            .join-benefits-grid {
                gap: 1.25rem;
            }
        }
        
        @media (max-width: 575.98px) {
            .join-content-column {
                padding: 2rem 1rem;
            }
            
            .join-image-column {
                min-height: 300px;
            }
            
            .join-benefits-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
            }
            
            .benefit-card-join {
                padding: 1.5rem;
            }
            
            .benefit-card-join:nth-child(3) {
                grid-column: 1;
            }
            
        }
        .form-label{
            text-transform:capitalize;
        }
          /* Directors Messages Section */
.directors-messages-section {
    padding: 6rem 0;
    background-color: #ffffff;
}

.directors-messages-section .section-title-area {
    margin-bottom: 4rem;
}

.bg-orange{    
    background: #f0bfa93b;
    padding: 30px;
    border: 1px solid #49494940;
    border-radius: 4px;
    margin-bottom: 50px;
}
.director-message-item {
    margin-bottom: 4rem;
    padding: 3rem;
    background-color: #f9f9f9;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0e0e0;
    border-radius: 8px;
}

.director-message-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.director-photo {
    margin-bottom: 2rem;
}

.director-photo img {
    width: 90%;
}

.director-name {
    font-size: clamp(1.5rem, 2vw, 1.5rem);
    font-weight: 700;
    color: var(--header);
    margin-bottom: 0.5rem;
    text-transform: none;
}

.director-position {
    font-size:clamp(1rem, 2vw, 1rem);
    font-weight: 600;
    color: #ea5e20;
    margin-bottom: 1.5rem;
    text-transform: capitalize;
    letter-spacing: 0.5px;
}

.director-message {
    font-size: clamp(0.95rem, 1.5vw, 1rem);
    line-height: 30px;
    font-weight:500;
    color: #666666;
}

.director-message p {
    margin-bottom: 1.5rem;
}

.director-message p:last-child {
    margin-bottom: 0;
}

.bullet-item {
    display: flex;
    align-items: baseline;
    margin-bottom: 1rem;
}

.bullet-icon {
    flex-shrink: 0;
    margin-right: 0.5rem;
    color: #ea5e20;
}

.bullet-content {
    flex: 1;
    color: #666666;
    font-weight: 500;
    line-height: 1.5;
}

/* Directors Messages Responsive */
@media (max-width: 991.98px) {
    .directors-messages-section {
        padding: 4rem 0;
    }

    .director-message-item {
        margin-bottom: 3rem;
        padding: 2rem;
    }

    .director-photo img {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 575.98px) {
    .directors-messages-section {
        padding: 2rem 0;
    }

    .director-message-item {
        margin-bottom: 2rem;
        padding: 1.5rem;
    }

    .director-photo img {
        width: 120px;
        height: 120px;
    }

    .director-name {
        font-size: 1.5rem;
    }

    .director-position {
        font-size: 1rem;
    }
}


    /* Style the tab */
.tab {
  float: left;
  border: 1px solid #ccc;
  background-color: #f1f1f1;
  width: 30%;
  height: 300px;
}

/* Style the buttons inside the tab */
.tab button {
  display: block;
  background-color: inherit;
  color: black;
  padding: 22px 16px;
  width: 100%;
  border: none;
  outline: none;
  text-align: left;
  cursor: pointer;
  transition: 0.3s;
  font-size: 17px;
}

/* Change background color of buttons on hover */
.tab button:hover {
  background-color: #ddd;
}

/* Create an active/current "tab button" class */
.tab button.active {
  background-color: #ccc;
}

/* Style the tab content */
.tabcontent {
  float: left;
  padding: 0px 12px;
  border: 1px solid #ccc;
  width: 70%;
  border-left: none;
}
.serviceBox{
    color:var(--main-color);
    background: var(--main-color);
    padding: 40px 50px 40px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
    position: relative;
    z-index: 1;
}
.serviceBox:before{
    content: "";
    background: var(--white);
    width: 100%;
    height: 100%;
    border-radius: 0 100px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}   
.serviceBox .title{
    color: var(--main-color);
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
    margin: 0 0 7px;
}
.serviceBox .description{
    color: var(--header);
    font-weight:500;
    text-align:center;
    font-size: 15px;
    line-height: 25px;
    text-transform: none;
    margin: 0;
}
.serviceBox .service-icon{
    text-align: center;
    margin: 0 0 15px;
}
.serviceBox .service-icon i{ line-height:inherit; }
.serviceBox.yellow{ --main-color: #0f498a; }
.serviceBox.red{ --main-color:#ea5e20; }
.serviceBox.purple{ --main-color: #920C60; }
@media only screen and (max-width: 1199px){
    .serviceBox{ margin: 0 0 30px; }
}