  :root {
            --primary-color: #1C4297;
            --secondary-color: #f0f3fb;
            --text-color: #333333;
            --light-text: #666666;
            --white: #ffffff;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Quicksand', sans-serif;
            line-height: 1.6;
            color: var(--text-color);
            background-color: var(--white);
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

       .text-orange{
            color: #1C4297 !important;
        }
        .bg-orange{
            background-color: #1C4297 !important;

        }
        .bgorange{
            background-color: #f0f3fb !important;
        }

        
            .hero {
            padding: 120px 0 80px;
            background: linear-gradient(135deg, #f0f3fb 0%, #f0f3fb 100%);
            position: relative;
            overflow: hidden;
            }

            .hero-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            position: relative;
            z-index: 1;
            }

            .hero-content {
            animation: fadeInUp 0.8s ease-out;
            }

            .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: #1C4297;
            color: white;
            padding: 8px 16px;
            border-radius: 25px;
            font-size: 0.875rem;
            font-weight: 500;
            margin-bottom: 20px;
            }

            .hero-title {
            font-size: 3rem;
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 20px;
            background: linear-gradient(135deg, #2d3748 0%, #1C4297 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            }

            .hero-subtitle {
            font-size: 1.25rem;
            color: #4a5568;
            margin-bottom: 30px;
            line-height: 1.6;
            }

            .hero-meta {
            display: flex;
            gap: 30px;
            margin-bottom: 30px;
            }

            .meta-item {
            display: flex;
            align-items: center;
            gap: 8px;
            color: #4a5568;
            font-size: 0.95rem;
            }

            .meta-item i {
            color: #1C4297;
            }

            .hero-cta {
            display: flex;
            gap: 15px;
            }

            .btn {
            padding: 12px 24px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            }

            .bg-orange {
            background: #1C4297;
            }

            .text-white {
            color: white;
            }

            .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            }

            .hero-visual {
            animation: fadeInRight 0.8s ease-out;
            }


            

            .visual-card {
            position: relative;
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
            transform: rotate(5deg);
            transition: transform 0.3s ease;
            }

            .visual-card:hover {
            transform: rotate(0deg) scale(1.02);
            }

            .hero-image {
            width: 100%;
            height: 400px;
           object-fit: cover;
            object-position: top center;
            }

            .visual-overlay {
            position: absolute;
            top: 20px;
            right: 20px;
            background: #1C4297;
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            }


            /* Mobile Responsive Design */
@media (max-width: 768px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
    padding: 0 16px;
  }

  .hero-content {
    order: 2;
  }

  .hero-visual {
    order: 1;
  }

  .hero-title {
    font-size: 2.25rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-meta {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-image {
    height: auto;
    max-height: 300px;
    object-fit: contain;
  }

  .visual-card {
    transform: none;
    border-radius: 16px;
  }

  .visual-card:hover {
    transform: scale(1.02);
  }

  .visual-overlay {
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
  }
}

        
        .book-intro {
            background-color: var(--secondary-color);
            padding: 4rem 0;
        }
        
        .book-intro-content {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 2rem;
        }
        
        .book-image {
            flex: 1;
            min-width: 300px;
            text-align: center;
        }
        
        .book-image img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        }
        
        .book-description {
            flex: 2;
            min-width: 300px;
        }
        
        .book-description h2 {
            color: var(--primary-color);
            font-size: 1.8rem;
            margin-bottom: 1rem;
            font-family: 'Montserrat', sans-serif;
        }
        
        .book-description p {
            margin-bottom: 1rem;
            font-size: 1.05rem;
        }
        
        .character-design {
            padding: 4rem 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 2rem;
            color: var(--primary-color);
            font-family: 'Montserrat', sans-serif;
            font-size: 2rem;
        }
        
        .character-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }
        
        .character-card {
            text-align: center;
        }
        
        .character-card img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            margin-bottom: 1rem;
            transition: transform 0.3s ease;
        }
        
        .character-card img:hover {
            transform: scale(1.02);
        }
        
        .character-card h3 {
            color: var(--primary-color);
            margin-bottom: 0.5rem;
            font-family: 'Montserrat', sans-serif;
        }
        
        .book-pages {
            background-color: var(--secondary-color);
            padding: 4rem 0;
        }
        
        .page-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }
        
        .page-card {
            text-align: center;
        }
        
        .page-card img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }
        
        .page-card img:hover {
            transform: scale(1.05);
            cursor: pointer;
        }
        
        
        .cta-button {
            display: inline-block;
            background-color: var(--primary-color);
            color: white !important;
            padding: 0.8rem 1.5rem;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            margin-top: 1.5rem;
            transition: all 0.3s ease;
        }
        
        .cta-button:hover {
            background-color: #1C4297;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(28, 66, 151, 0.4);
            color:white !important;
        }
        
        @media (max-width: 768px) {
            .header-content h1 {
                font-size: 2rem;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .book-intro-content {
                flex-direction: column;
            }
            
            .book-image {
                order: -1;
            }
        }