/*About page*/
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }

        body {
            color: #1e293b;
            background: #ffffff;
            line-height: 1.6;
        }

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

        p {
            max-width: 100%;
            width: 100%;
            font-size: 1.1rem;
            line-height: 1.8;
        }

        /* ===== BUTTONS ===== */
        .btn-primary {
            background: linear-gradient(45deg, #105bbf, #0d4a9e);
            color: white;
            padding: 14px 35px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            display: inline-block;
            transition: all 0.4s ease;
            font-size: 1rem;
            box-shadow: 0 10px 25px rgba(16,91,191,0.3);
        }

        .btn-primary:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 35px rgba(16,91,191,0.4);
        }

        .btn-white {
            background: white;
            color: #105bbf;
            padding: 16px 45px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            display: inline-block;
            font-size: 1.2rem;
            box-shadow: 0 10px 25px rgba(0,0,0,0.2);
        }

        .btn-white:hover {
            background: #f0f0f0;
            transform: translateY(-5px);
        }

        /* ===== PAGE HEADER ===== */
        .page-header {
            padding: 60px 0 40px;
            background: linear-gradient(135deg, #667eea, #764ba2);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .page-header h1 {
            font-size: 3.2rem;
            color: white;
            margin-bottom: 15px;
            font-weight: 800;
        }

        .page-header h1 span {
            color: #ffd966;
        }

        .page-header p {
            color: rgba(255,255,255,0.95);
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto;
        }

        /* ===== STORY SECTION ===== */
        .story-section {
            padding: 50px 0;
        }

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

        .story-content h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: #0b1e33;
        }

        .story-content p {
            color: #64748b;
            margin-bottom: 20px;
        }

        .story-image {
            background: url('https://images.pexels.com/photos/3184291/pexels-photo-3184291.jpeg?auto=compress&cs=tinysrgb&w=600') center/cover;
            border-radius: 30px;
            height: 400px;
        }

        /* ===== MISSION SECTION ===== */
        .mission-section {
            padding: 50px 0;
            background: #f8fafc;
        }

        .mission-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .mission-card {
            background: white;
            border-radius: 20px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            border: 1px solid #e2e8f0;
        }

        .mission-icon {
            width: 80px;
            height: 80px;
            background: #e8f0fe;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
        }

        .mission-icon i {
            font-size: 2.5rem;
            color: #105bbf;
        }

        .mission-card h3 {
            font-size: 1.6rem;
            margin-bottom: 15px;
        }

        .mission-card p {
            color: #64748b;
        }

        /* ===== STATS SECTION ===== */
        .stats-section {
            padding: 40px 0;
            background: linear-gradient(135deg, #105bbf, #0d4a9e);
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            text-align: center;
            color: white;
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 800;
            color: #ffd966;
        }

        .stat-label {
            font-size: 1rem;
        }

        /* ===== VALUES SECTION ===== */
        .values-section {
            padding: 50px 0;
        }

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

        .section-header h2 {
            font-size: 2.5rem;
            color: #0b1e33;
        }

        .section-header h2 span {
            color: #105bbf;
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
        }

        .value-item {
            text-align: center;
            padding: 30px 20px;
            border: 1px solid #e2e8f0;
            border-radius: 20px;
        }

        .value-item i {
            font-size: 2.5rem;
            color: #105bbf;
            margin-bottom: 15px;
        }

        .value-item h4 {
            font-size: 1.2rem;
            margin-bottom: 10px;
        }

        .value-item p {
            color: #64748b;
            font-size: 0.95rem;
        }

        /* ===== CTA SECTION ===== */
        .cta-section {
            padding: 60px 0;
            background: linear-gradient(135deg, #105bbf, #0d4a9e);
            text-align: center;
        }

        .cta-section h2 {
            font-size: 2.8rem;
            color: white;
            margin-bottom: 15px;
        }

        .cta-section p {
            font-size: 1.3rem;
            color: rgba(255,255,255,0.95);
            margin-bottom: 30px;
        }

        /* ===== MOBILE RESPONSIVE ===== */
        @media (max-width: 992px) {
            .story-grid,
            .mission-grid,
            .values-grid,
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .story-grid,
            .mission-grid,
            .values-grid,
            .stats-grid {
                grid-template-columns: 1fr;
            }
            
            .story-image {
                height: 300px;
            }
            
            .page-header h1,
            .story-content h2,
            .section-header h2,
            .cta-section h2 {
                font-size: 2rem;
            }
        }
        
/*Contact page        */

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }

        body {
            color: #1e293b;
            background: #ffffff;
            line-height: 1.6;
        }

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

        p {
            max-width: 100%;
            width: 100%;
            font-size: 1.1rem;
            line-height: 1.8;
        }

        /* ===== PAGE HEADER ===== */
        .page-header {
            padding: 60px 0 40px;
            background: linear-gradient(135deg, #667eea, #764ba2);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .page-header h1 {
            font-size: 3.2rem;
            color: white;
            margin-bottom: 15px;
            font-weight: 800;
        }

        .page-header h1 span {
            color: #ffd966;
        }

        .page-header p {
            color: rgba(255,255,255,0.95);
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 20px;
        }

        .breadcrumb {
            color: rgba(255,255,255,0.8);
            font-size: 1rem;
        }

        .breadcrumb a {
            color: white;
            text-decoration: none;
        }

        .breadcrumb a:hover {
            color: #ffd966;
        }

        .breadcrumb span {
            color: rgba(255,255,255,0.6);
            margin: 0 5px;
        }

        .contact-info-section {
            padding: 50px 0;
        }

        .info-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .info-card {
            background: white;
            border-radius: 20px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            border: 1px solid #e2e8f0;
        }

        .info-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #e8f0fe, #d9e6ff);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
        }

        .info-icon i {
            font-size: 2.5rem;
            color: #105bbf;
        }

        .info-card h3 {
            font-size: 1.6rem;
            margin-bottom: 10px;
            font-weight: 700;
        }

        .info-card p {
            color: #64748b;
            margin-bottom: 5px;
        }

        .info-card a {
            color: #105bbf;
            text-decoration: none;
            font-weight: 600;
        }

        .info-card a:hover {
            text-decoration: underline;
        }

        .contact-form-section {
            padding: 50px 0;
            background: linear-gradient(135deg, #f8fafc, #ffffff);
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 40px;
        }

        .form-container {
            background: white;
            border-radius: 30px;
            padding: 40px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.05);
            border: 1px solid #e2e8f0;
        }

        .form-container h2 {
            font-size: 2.2rem;
            margin-bottom: 10px;
            color: #0b1e33;
        }

        .form-container p {
            color: #64748b;
            margin-bottom: 30px;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 20px;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 14px 18px;
            border: 2px solid #e2e8f0;
            border-radius: 15px;
            font-size: 1rem;
            transition: all 0.3s ease;
            background: #f8fafc;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #105bbf;
            box-shadow: 0 0 0 4px rgba(16,91,191,0.1);
        }

        .form-btn {
            background: linear-gradient(45deg, #105bbf, #0d4a9e);
            color: white;
            padding: 16px 35px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            display: inline-block;
            border: none;
            cursor: pointer;
            font-size: 1.1rem;
            box-shadow: 0 10px 25px rgba(16,91,191,0.3);
            transition: all 0.4s ease;
        }

        .form-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 35px rgba(16,91,191,0.4);
        }

        .form-btn i {
            margin-left: 8px;
        }

        .map-container {
            background: white;
            border-radius: 30px;
            padding: 40px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.05);
            border: 1px solid #e2e8f0;
        }

        .map-container h2 {
            font-size: 2rem;
            margin-bottom: 20px;
            color: #0b1e33;
        }

        .map-placeholder {
            background: linear-gradient(135deg, #667eea, #764ba2);
            height: 200px;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
            margin-bottom: 30px;
        }

        .map-placeholder i {
            margin-right: 10px;
            color: #ffd966;
        }

        .business-hours {
            border-top: 1px solid #e2e8f0;
            padding-top: 30px;
        }

        .business-hours h4 {
            font-size: 1.3rem;
            margin-bottom: 20px;
            color: #0b1e33;
        }

        .hours-row {
            display: flex;
            justify-content: space-between;
            padding: 10px 0;
            border-bottom: 1px solid #e2e8f0;
        }

        .hours-row:last-child {
            border-bottom: none;
        }

        .hours-row span:first-child {
            font-weight: 600;
        }

        .hours-row span:last-child {
            color: #64748b;
        }

        .cta-section {
            padding: 60px 0;
            background: linear-gradient(135deg, #105bbf, #0d4a9e);
            text-align: center;
        }

        .cta-section h2 {
            font-size: 2.8rem;
            color: white;
            margin-bottom: 15px;
        }

        .cta-section p {
            font-size: 1.3rem;
            color: rgba(255,255,255,0.95);
            margin-bottom: 30px;
        }

        .btn-white {
            background: white;
            color: #105bbf;
            padding: 16px 45px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            display: inline-block;
            font-size: 1.2rem;
            box-shadow: 0 10px 25px rgba(0,0,0,0.2);
            transition: all 0.4s ease;
        }

        .btn-white:hover {
            background: #f0f0f0;
            transform: translateY(-5px);
            box-shadow: 0 20px 35px rgba(0,0,0,0.3);
        }
        @media (max-width: 992px) {
            .info-grid,
            .contact-grid {
                grid-template-columns: 1fr;
            }
            
            .form-row {
                grid-template-columns: 1fr;
            }
            
            .page-header h1 {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 768px) {
            .page-header,
            .contact-info-section,
            .contact-form-section,
            .cta-section {
                padding: 40px 0;
            }
            
            .page-header h1 {
                font-size: 2rem;
            }
            
            .form-container,
            .map-container {
                padding: 30px 20px;
            }
            
            .cta-section h2 {
                font-size: 2rem;
            }
            
            .cta-section p {
                font-size: 1.1rem;
            }
        }
    
