@charset "utf-8";

  

    .fran-body {
        font-size: 16px;
    }

    .fran-p {
        font-size: 15px; 
    }
    
    .fran-* {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: 'Bai Jamjuree', Tahoma, Geneva, Verdana, sans-serif;
    }
    
    .fran-body {
        font-family: 'Bai Jamjuree', sans-serif;
        line-height: 1.6;
        color: #333;
        background: linear-gradient(135deg, #f5f7fa 0%, #e4e7eb 100%);
    }
    
    .fran-container {
        width: 90%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 15px;
    }
    
    /* Header Styles */
    .fran-header {
        background: linear-gradient(90deg, #1a2a6c 0%, #2a4b8c 100%);
        color: white;
        padding: 20px 0;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        position: sticky;
        top: 0;
        z-index: 1000;
    }
    
    .fran-header-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .fran-logo {
        display: flex;
        align-items: center;
    }
    
    .fran-logo img {
        height: 50px;
        margin-right: 15px;
    }
    
    .fran-logo h1 {
        font-family: 'Montserrat', sans-serif;
        font-size: 28px;
        font-weight: 700;
    }
    
    .fran-nav ul {
        display: flex;
        list-style: none;
    }
    
    .fran-nav ul li {
        margin-left: 30px;
    }
    
    .fran-nav ul li a {
        color: white;
        text-decoration: none;
        font-weight: 500;
        font-size: 18px;
        transition: all 0.3s ease;
        padding: 8px 12px;
        border-radius: 4px;
    }
    
    .fran-nav ul li a:hover {
        background: rgba(255, 255, 255, 0.15);
    }
    
    /* Hero Section */
    .fran-hero {
        background: linear-gradient(rgba(245, 245, 245, 0.9), rgba(230, 230, 230, 0.8)), url(/uploadfile/202507/banner_thin.webp);
        height: 50vh;
        display: flex;
        align-items: center;
        text-align: center;
        color: #111111;
    }
    
    .fran-hero-content {
        max-width: 800px;
        margin: 0 auto;
        padding: 20px;
    }
    
    .fran-hero h2 {
        font-family: 'Montserrat', sans-serif;
        font-size: 25px;
        font-weight: 800;
        margin-bottom: 20px;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
        color:#111111;
    }
    
    .fran-hero p {
        font-size: 15px;
        margin-bottom: 30px;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
        color: #666666;
    }
    
    .fran-btn {
        display: inline-block;
        background: linear-gradient(60deg, #00c9ff 0%, #0058c6 100%);
        color: white;
        padding: 15px 20px;
        border-radius: 5px;
        text-decoration: none;
        font-weight: 600;
        font-size: 17px;
        text-transform: uppercase;
        letter-spacing: 1px;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(0, 114, 255, 0.4);
    }
    
    .fran-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(0, 114, 255, 0.6);
    }
    
    /* Features Section */
    .fran-features {
        padding: 80px 0;
        background: #ffffff;
    }
    
    .fran-section-title {
        text-align: center;
        margin-bottom: 60px;
    }
    
    .fran-section-title h2 {
        font-family: 'Montserrat', sans-serif;
        font-size: 25px;
        color: #111111;
        margin-bottom: 15px;
        position: relative;
        display: inline-block;
    }
    
    .fran-section-title h2::after {
        content: '';
        position: absolute;
        width: 70%;
        height: 4px;
        background: linear-gradient(90deg, #00c9ff 0%, #0072ff 100%);
        bottom: -10px;
        left: 15%;
        border-radius: 2px;
    }
    
    .fran-section-title p {
        font-size: 15px;
        color: #666;
        max-width: 700px;
        margin: 0 auto;
    }
    
    .fran-features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
    }
    
    .fran-feature-card {
        background: white;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .fran-feature-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    }
    
    .fran-feature-img {
        height: 200px;
        overflow: hidden;
    }
    
    .fran-feature-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }
    
    .fran-feature-card:hover .fran-feature-img img {
        transform: scale(1.1);
    }
    
    .fran-feature-content {
        padding: 25px;
    }
    
    .fran-feature-content h3 {
        font-family: 'Montserrat', sans-serif;
        font-size: 18px;
        margin-bottom: 15px;
        color: #333333;
    }
    
    /* Benefits Section */
    .fran-benefits {
        padding: 80px 0;
        background: #f5f7fa;
        color: #111111;
    }
    
    .fran-benefits-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
    }
    
    .fran-benefit-card {
        background: white;
        border-radius: 10px;
        padding: 30px;
        text-align: center;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
    }
    
    .fran-benefit-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }
    
    .fran-benefit-icon {
        font-size: 3rem;
        margin-bottom: 20px;
        color: #0058c6;
    }
    
    .fran-benefit-card h3 {
        font-family: 'Montserrat', sans-serif;
        font-size: 18px;
        margin-bottom: 15px;
        color: #333333;
    }
    
    /* Industries Section */
    .fran-industries {
        padding: 80px 0;
        background: #ffffff;
    }
    
    .fran-industries-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
    }
    
    .fran-industry-card {
        position: relative;
        height: 300px;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    .fran-industry-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }
    
    .fran-industry-card:hover .fran-industry-img {
        transform: scale(1.1);
    }
    
    .fran-industry-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(to top, rgba(26, 42, 108, 0.9), transparent);
        padding: 30px 20px 20px;
        color: white;
    }
    
    .fran-industry-overlay h3 {
        font-family: 'Montserrat', sans-serif;
        font-size: 18px;
        margin-bottom: 10px;
    }
    
    /* CTA Section */
    .fran-cta {
        padding: 100px 0;
        background: #ffffff;
        color: #111111;
        text-align: center;
    }
    
    .fran-cta h2 {
        font-family: 'Montserrat', sans-serif;
        font-size: 25px;
        margin-bottom: 20px;
        color: #111111;
    }
    
    .fran-cta p {
        font-size: 15px;
        max-width: 700px;
        margin: 0 auto 40px;
    }
    
    /* Footer */
    .fran-footer {
        background: #0d1b3e;
        color: white;
        padding: 60px 0 20px;
    }
    
    .fran-footer-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 40px;
        margin-bottom: 40px;
    }
    
    .fran-footer-col h3 {
        font-family: 'Montserrat', sans-serif;
        font-size: 18px;
        margin-bottom: 25px;
        position: relative;
        padding-bottom: 10px;
        color: #ffffff;
    }
    
    .fran-footer-col h3::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 50px;
        height: 3px;
        background: #00c9ff;
    }
    
    .fran-footer-col ul {
        list-style: none;
    }
    
    .fran-footer-col ul li {
        margin-bottom: 15px;
    }
    
    .fran-footer-col ul li a {
        color: #aaa;
        text-decoration: none;
        transition: color 0.3s ease;
        font-size: 15px;
    }
    
    .fran-footer-col ul li a:hover {
        color: #ffffff;
    }
    
    .fran-footer-bottom {
        text-align: center;
        padding-top: 30px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        font-size: 15px;
        color: #aaa;
    }
    
    /* Responsive Design */
    @media (max-width: 992px) {
        .fran-hero h2 {
            font-size: 25px;
        }
        
        .fran-hero p {
            font-size: 15px;
        }
    }
    
    @media (max-width: 768px) {
        .fran-header-container {
            flex-direction: column;
        }
        
        .fran-nav ul {
            margin-top: 20px;
        }
        
        .fran-nav ul li {
            margin-left: 15px;
            margin-right: 15px;
        }
        
        .fran-hero {
            height: 60vh;
        }
        
        .fran-hero h2 {
            font-size: 25px;
        }
        
        .fran-hero p {
            font-size: 15px;
        }
    }
    
    @media (max-width: 576px) {
        .fran-hero {
            height: 60vh;
        }
        
        .fran-btn {
            padding: 12px 25px;
            font-size: 16px;
        }
    }
    
    /* Additional Styles */
    .fran-specs-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        margin-top: 40px;
    }
    
    .fran-specs-card {
        background: #f8f9fa;
        border-radius: 10px;
        padding: 25px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }
    
    .fran-specs-card h3 {
        font-family: 'Montserrat', sans-serif;
        color: #333333;
        margin-bottom: 20px;
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 18px;
    }
    
    .fran-specs-card ul {
        list-style: none;
        padding-left: 0;
    }
    
    .fran-specs-card ul li {
        padding: 8px 0;
        border-bottom: 1px solid #e9ecef;
        position: relative;
        padding-left: 25px;
        font-size: 15px;
    }
    
    .fran-specs-card ul li:before {
        content: "•";
        color: #0072ff;
        position: absolute;
        left: 0;
        font-size: 20px;
    }
    
    .fran-process-flow {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
        margin-top: 40px;
    }
    
    .fran-process-step {
        background: #ffffff;
        border-radius: 10px;
        padding: 25px 15px;
        text-align: center;
        position: relative;
        z-index: 1;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }
    
    .fran-step-number {
        width: 40px;
        height: 40px;
        background: #0058c6;
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: bold;
        font-size: 20px;
        margin: 0 auto 15px;
    }
    
    .fran-process-step h3 {
        font-family: 'Montserrat', sans-serif;
        font-size: 18px;
        margin-bottom: 10px;
        color: #333333;
    }
    
    .fran-testimonials {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
        gap: 40px;
        margin-top: 40px;
    }
    
    .fran-testimonial {
        background: white;
        border-radius: 10px;
        padding: 30px;
        position: relative;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }
    
    .fran-testimonial:before {
        content: '"';
        position: absolute;
        top: 20px;
        left: 20px;
        font-size: 60px;
        color: rgba(0, 88, 198, 0.1);
        font-family: serif;
        line-height: 1;
    }
    
    .fran-testimonial p {
        font-style: italic;
        margin-bottom: 25px;
        position: relative;
        z-index: 1;
        font-size: 15px;
    }
    
    .fran-client {
        position: relative;
        z-index: 1;
    }
    
    .fran-client h4 {
        font-family: 'Montserrat', sans-serif;
        margin-bottom: 5px;
        color: #333333;
        font-size: 18px;
    }
    
    .fran-client p {
        font-size: 15px;
        color: #666;
    }
    
    .fran-contact-form {
        max-width: 800px;
        margin: 40px auto 0;
        background: #f5f7fa;
        padding: 40px;
        border-radius: 10px;
    }
    
    .fran-btn-wrapper {
        background-color: #0058c6;
        padding: 30px 40px;
        border-radius: 10px;
        border: 1px solid #d9e2ec;
        display: inline-block;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
        text-align: center;
        max-width: 320px;
        margin: 0 auto;
    }
