/* body {
            font-family: Arial, sans-serif;
            color: #333;
            line-height: 1.6;
            margin: 0;
            padding: 0;
        } */

        /* Hero Section */
        .hero-section {
            background: linear-gradient(135deg,  #E91E63 0%, #FF9800 100%);
            color: white;
            padding: 4rem 0;
            margin-bottom: 3rem;
        }

        .hero-section h1 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .hero-section p {
            font-size: 1.25rem;
            opacity: 0.95;
            max-width: 800px;
            margin: 0 auto;
        }

        /* Breadcrumb */
        /* .breadcrumb {
            background: transparent;
            padding: 1rem 0;
            font-size: 0.9rem;
        }

        .breadcrumb a {
            color: #E91E63 ;
            text-decoration: none;
        } */

        /* Section Titles */
        .section-title {
            font-size: 2.25rem;
            font-weight: 700;
            color: #E91E63 ;
            margin-bottom: 1.5rem;
            text-align: center;
        }

        .section-subtitle {
            font-size: 1.1rem;
            color: #666;
            text-align: center;
            max-width: 800px;
            margin: 0 auto 3rem;
        }

        /* Story Section */
        .story-section {
            padding: 4rem 0;
            background: #ffffff;
        }

        .story-content {
            display: flex;
            align-items: center;
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .story-image {
            flex: 1;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 20px  8px rgb(0 0 0);
        }

        .story-image img {
            width: 100%;
            height: 400px;
            object-fit: cover;
        }

        .story-text {
            flex: 1;
        }

        .story-text h3 {
            color: #E91E63 ;
            font-size: 1.75rem;
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .story-text p {
            color: #333;
            font-size: 1.05rem;
            margin-bottom: 1rem;
        }

        /* Values Section */
        .values-section {
            padding: 4rem 0;
            background: #f8f9fa;
        }

        .value-card {
            background: white;
            padding: 2.5rem;
            border-radius: 12px;
            text-align: center;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
            transition: transform 0.3s, box-shadow 0.3s;
            height: 100%;
        }

        .value-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        }

        .value-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg,  #E91E63 0%, #FF9800 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            color: white;
            font-size: 2rem;
        }

        .value-card h3 {
            color: #E91E63 ;
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .value-card p {
            color: #666;
            font-size: 1rem;
        }

        /* Stats Section */
        .stats-section {
            padding: 4rem 0;
            background: linear-gradient(135deg, #cc5500 0%, #aa4500 100%);
            color: white;
        }

        .stat-box {
            text-align: center;
            padding: 2rem;
        }

        .stat-number {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            display: block;
        }

        .stat-label {
            font-size: 1.1rem;
            opacity: 0.95;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Team Section */
        .team-section {
            padding: 4rem 0;
            background: #ffffff;
        }

        .team-member {
            text-align: center;
            margin-bottom: 2rem;
        }

        .team-photo {
            width: 180px;
            height: 180px;
            border-radius: 50%;
            margin: 0 auto 1.5rem;
            overflow: hidden;
            border: 5px solid #E91E63 ;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }

        .team-photo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .team-member h4 {
            color: #E91E63 ;
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .team-role {
            color: #cc5500;
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .team-bio {
            color: #666;
            font-size: 0.95rem;
            max-width: 300px;
            margin: 0 auto;
        }

        /* Mission Section */
        .mission-section {
            padding: 4rem 0;
            background: linear-gradient(135deg, rgba(0, 102, 178, 0.05) 0%, rgba(0, 102, 178, 0.1) 100%);
        }

        .mission-box {
            background: white;
            padding: 3rem;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            border-left: 5px solid #E91E63 ;
        }

        .mission-box h3 {
            color: #E91E63 ;
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
        }

        .mission-box p {
            color: #000000;
            font-size: 20px;
            margin-bottom: 1rem;
            text-align: justify;
        }

        /* CTA Section */
        .cta-section {
            padding: 4rem 0;
            background: #E91E63 ;
            color: white;
            text-align: center;
        }

        .cta-section h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
        }

        .cta-section p {
            font-size: 1.25rem;
            margin-bottom: 2rem;
            opacity: 0.95;
        }

        .cta-button {
            background: #cc5500;
            color: white;
            padding: 1rem 3rem;
            font-size: 1.2rem;
            font-weight: 700;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
        }

        .cta-button:hover {
            background: #aa4500;
            transform: scale(1.05);
            color: white;
        }

        /* Timeline */
        .timeline-section {
            padding: 1rem  0;
            background: #ffffff;
        }

        .timeline {
            position: relative;
            max-width: 900px;
            margin: 0 auto;
            /* padding: 2rem 0; */
        }

        .timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 3px;
            background: #E91E63 ;
            transform: translateX(-50%);
        }

        .timeline-item {
            position: relative;
            margin-bottom: 3rem;
            display: flex;
            align-items: center;
        }

        .timeline-item:nth-child(odd) {
            flex-direction: row;
        }

        .timeline-item:nth-child(even) {
            flex-direction: row-reverse;
        }

        .timeline-content {
            flex: 1;
            padding: 2rem;
            background: white;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            margin: 0 2rem;
            text-align: center;
        }

        .timeline-year {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            background: #E91E63 ;
            color: white;
            padding: 0.5rem 1.5rem;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.2rem;
            z-index: 2;
                margin-top: -138px;
        }

        .timeline-content h4 {
            color: #E91E63 ;
            font-size: 1.5rem;
            margin-bottom: 0.75rem;
            font-weight: 700;
        }

        .timeline-content p {
            color: #666;
            font-size: 1rem;
        }

        /* Why Choose Us Section */
        .why-choose-section {
            padding: 4rem 0;
            background: #fff;
        }
        .why-choose-card {
            background: #f8f9fa;
            border-radius: 12px;
            padding: 2.2rem 1.5rem;
            text-align: center;
            box-shadow: 0 4px 15px rgba(0,0,0,0.07);
            transition: transform 0.3s, box-shadow 0.3s;
            height: 100%;
        }
        .why-choose-card:hover {
            transform: translateY(-5px) scale(1.03);
            box-shadow: 0 8px 25px rgba(233,30,99,0.12);
        }
        .why-choose-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #FF9800 0%, #E91E63 100%);
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin: 0 auto 1.2rem;
        }
        .why-choose-card h4 {
            color: #E91E63;
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 0.7rem;
        }
        .why-choose-card p {
            color: #555;
            font-size: 1rem;
            margin-bottom: 0;
        }

        /* Our Tech Partner Section */
        .tech-partner-section {
            padding: 4rem 0;
            background: #f8f9fa;
        }
        .tech-partner-card {
            background: #fff;
            border-radius: 16px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            padding: 2.5rem 2rem;
            max-width: 420px;
            margin-top: 2rem;
            margin-bottom: 2rem;
        }
        .tech-partner-logo {
            width: 120px;
            height: auto;
            margin-bottom: 1.2rem;
        }
        .tech-partner-card h4 {
            color: #E91E63;
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 0.7rem;
        }
        .tech-partner-desc {
            color: #555;
            font-size: 1rem;
            margin-bottom: 1.2rem;
        }
        .tech-partner-link {
            display: inline-block;
            background: linear-gradient(135deg, #FF9800 0%, #E91E63 100%);
            color: #fff;
            padding: 0.7rem 2rem;
            border-radius: 30px;
            font-weight: 600;
            text-decoration: none;
            transition: background 0.3s, transform 0.3s;
        }
        .tech-partner-link:hover {
            background: linear-gradient(135deg, #E91E63 0%, #FF9800 100%);
            transform: scale(1.05);
            color: #fff;
        }

        /* Modern Tech Partner Section */
        .tech-partner-section-modern {
            padding: 0rem 0;
            /* background: linear-gradient(135deg, #FF9800 0%, #E91E63 100%); */
            display: flex;
            align-items: center;
            justify-content: center;
            padding-bottom: 50px;

        }
        .tech-partner-modern-card {
            background: #e7e7e738;
            border-radius: 24px;
            box-shadow: 0 8px 40px rgb(70 70 70 / 76%), 0 2px 8px rgba(255, 152, 0, 0.08);
            padding: 2.8rem 2.2rem 2.2rem 2.2rem;
            /* max-width: 500px; */
            margin: 0 auto;
            position: relative;
            overflow: hidden;
            transition: box-shadow 0.3s;
            
        }
        .tech-partner-modern-card:hover {
            box-shadow: 0 16px 48px rgba(233,30,99,0.18), 0 4px 16px rgba(255,152,0,0.12);
        }
        .tech-partner-modern-logo-bg {
            /* background: linear-gradient(135deg, #E91E63 0%, #FF9800 100%); */
            /* width: 100px;
            height: 100px;
            border-radius: 50%;
            margin: -70px auto 1.2rem auto;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 24px rgba(233,30,99,0.18);
            position: relative;
            z-index: 2; */
        }
        .tech-partner-modern-header.text-center {
            display: flex;
            justify-content: space-between;
        }
        .tech-partner-modern-logo {
            width: 256px;
            height: 160px;
            object-fit: contain;
            filter: drop-shadow(0 2px 8px rgba(255,152,0,0.10));
        }
        .tech-partner-modern-content {
            margin-top: 0.5rem;
        }
        .tech-partner-modern-title {
            font-size: 47px;
            font-weight: 800;
            margin-bottom: 0.5rem;
            letter-spacing: 1px;
            margin-top: 26px;
            font-family: auto;
        }
        .tech-partner-modern-name {
            font-size: 1.25rem;
            font-weight: 700;
            color: #E91E63;
            margin-bottom: 1rem;
        }
        .tech-partner-modern-desc {
            color: #444;
            font-size: 20;
            margin-bottom: 1.5rem;
            line-height: 1.7;
        }
        .tech-partner-modern-link {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: linear-gradient(135deg, #FF9800 0%, #E91E63 100%);
            color: #fff;
            padding: 0.85rem 2.2rem;
            border-radius: 30px;
            font-weight: 600;
            font-size: 1.08rem;
            text-decoration: none;
            box-shadow: 0 2px 12px rgba(255,152,0,0.10);
            transition: background 0.3s, transform 0.3s;
        }
        .tech-partner-modern-link:hover {
            background: linear-gradient(135deg, #E91E63 0%, #FF9800 100%);
            transform: translateY(-2px) scale(1.04);
            color: #fff;
        }
        .tech-partner-modern-link i {
            font-size: 1.1rem;
            margin-left: 0.2rem;
        }
        .story-text p {
            font-size: 17px;
            text-align: justify;
        }

        .story-image img {
            height: 530px;

        }
        span.highlight1 {
            font-size: 47px;
        }
        .tech-partner-modern-card.mx-auto {
            background-repeat: no-repeat !important;
            background-size: cover !important;
        }
        li.socialmedialinks {
            display: flex;
        }
        li.socialmedialinks p {
            margin-top: 16px;
            padding-right: 7px;
        }
        @media (max-width: 768px) {
            .container {
                padding-left: 10px;
                padding-right: 10px;
                width: 100%;
            }
            li.socialmedialinks {
                display: block;
            }
            li.socialmedialinks p {
                /* margin-top: 31px; */
                padding-right: 7px;
                text-align: center;
            }
            footer.footer-links {
                padding-bottom: 0;
            }
            .hero-section {
                padding: 2rem 0;
                margin-bottom: 2rem;
            }
            .hero-section h1 {
                font-size: 2rem;
            }
            .hero-section p {
                font-size: 1rem;
                padding: 0 5px;
            }
            .section-title {
                font-size: 1.5rem;
                margin-bottom: 1rem;
            }
            .tech-partner-modern-card.mx-auto {
                background-repeat: repeat;
                background-size: contain !important;
            }
            span.highlight1 {
                font-size: 44px;
            }
            .section-subtitle {
                font-size: 1rem;
                margin-bottom: 2rem;
                padding: 0 5px;
            }
            .story-section, .values-section, .stats-section, .mission-section, .timeline-section, .team-section, .cta-section {
                padding: 0rem 0;
            }
            section.values-section {
                margin-top: 28px;
            }
            .story-content {
                flex-direction: column !important;
                gap: 1.5rem;
            }
            .story-image img {
                height: 276px;
            }
            .story-text h3 {
                font-size: 34px;
                margin-bottom: 0.5rem;
            }
            
            .story-text p {
                font-size: 0.95rem;
            }
            .row.g-4 > [class*="col-"] {
                margin-bottom: 1.5rem;
            }
            .value-card {
                padding: 1.2rem;
                margin-bottom: 1rem;
            }
            .value-icon {
                width: 54px;
                height: 54px;
                font-size: 1.3rem;
                margin-bottom: 1rem;
            }
            .value-card h3 {
                font-size: 1.1rem;
                margin-bottom: 0.5rem;
            }
            .value-card p {
                font-size: 0.95rem;
            }
            .stats-section {
                padding: 2rem 0;
            }
            .stat-box {
                padding: 1rem;
            }
            .stat-number {
                font-size: 2rem;
            }
            .stat-label {
                font-size: 0.95rem;
            }
            .mission-box {
                padding: 1.2rem;
                border-left: 3px solid #E91E63 ;
            }
            .mission-box h3 {
                font-size: 1.2rem;
                margin-bottom: 1rem;
            }
            .mission-box p {
                font-size: 1rem;
            }
            .timeline {
                padding: 1rem 0;
                max-width: 100%;
            }
            .timeline::before {
                left: 20px;
            }
            .timeline-item {
                flex-direction: column !important;
                align-items: flex-start;
                margin-bottom: 2rem;
            }
            .timeline-year {
                position: relative;
                left: 20px;
                transform: none;
                margin-top: -0;
                margin-bottom: 1rem;
                font-size: 1rem;
                padding: 0.3rem 1rem;
            }
            .timeline-content {
                margin: 0 0 0 60px;
                padding: 1rem;
            }
            .timeline-content h4 {
                font-size: 1.1rem;
                margin-bottom: 0.5rem;
            }
            .timeline-content p {
                font-size: 0.95rem;
            }
            .team-section {
                padding: 2rem 0;
            }
            .team-member {
                margin-bottom: 1.2rem;
            }
            .team-photo {
                width: 100px;
                height: 100px;
                margin-bottom: 1rem;
                border-width: 3px;
            }
            .team-member h4 {
                font-size: 1.1rem;
                margin-bottom: 0.3rem;
            }
            .team-role {
                font-size: 0.95rem;
                margin-bottom: 0.7rem;
            }
            .team-bio {
                font-size: 0.9rem;
                max-width: 100%;
            }
            .cta-section {
                padding: 2rem 0;
            }
            .cta-section h2 {
                font-size: 1.3rem;
                margin-bottom: 1rem;
            }
            .cta-section p {
                font-size: 1rem;
                margin-bottom: 1rem;
            }
            .cta-button {
                padding: 0.7rem 1.5rem;
                font-size: 1rem;
            }
            .why-choose-section {
                padding: 2rem 0;
            }
            .why-choose-card {
                padding: 1.2rem 0.7rem;
                margin-bottom: 1rem;
            }
            .why-choose-icon {
                width: 48px;
                height: 48px;
                font-size: 1.1rem;
                margin-bottom: 0.7rem;
            }
            .why-choose-card h4 {
                font-size: 1rem;
                margin-bottom: 0.4rem;
            }
            .why-choose-card p {
                font-size: 0.93rem;
            }
            .tech-partner-section {
                padding: 2rem 0;
            }
            .tech-partner-card {
                padding: 1.2rem 0.7rem;
                max-width: 100%;
            }
            .tech-partner-logo {
                width: 80px;
                margin-bottom: 0.7rem;
            }
            .tech-partner-card h4 {
                font-size: 1.1rem;
                margin-bottom: 0.4rem;
            }
            .tech-partner-desc {
                font-size: 0.93rem;
            }
            .tech-partner-link {
                padding: 0.5rem 1.2rem;
                font-size: 0.95rem;
            }
            .tech-partner-section-modern {
                padding: 2rem 0;
            }
            .tech-partner-modern-card {
                padding: 1.2rem 0.7rem 1.5rem 0.7rem;
                max-width: 100%;
            }
            .tech-partner-modern-logo-bg {
                width: 146px;
                height: 81px;
                margin-top: 0;
                margin-bottom: 0.7rem;
            }
            .tech-partner-modern-logo {
                width: 150px;
                height: 95px;
            }
            .tech-partner-modern-title {
                font-size: 13px;
            }
            .tech-partner-modern-name {
                font-size: 1rem;
            }
            .tech-partner-modern-desc {
                font-size: 0.93rem;
            }
            .tech-partner-modern-link {
                padding: 0.5rem 1.2rem;
                font-size: 0.95rem;
            }
        }


        /* Founder's Message */
        .founder-message {
            margin-top: 92px;
        }

        .mission-box.vision-box {
            border-left: none;
            border-right: 5px solid #e91e63;
            margin-top: 26px;
        }

        .vision-box h3 {
                text-align: end;
            }