          
     :root {
    --primary-blue: #0A69D2;
    --secondary-orange: #F58634;
    --dark-blue: #00457A;
    --white-text: #E5EBF2;
    --light-grey-color: #f7f7f7;
    --text-grey: #6c757d;
}
      body {
    font-family: 'Inter', sans-serif;
    color: var(--dark-blue); /* Fixed variable name */
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}
  .hero-section {
    background:url('images/b1.png'); /* Direct color for faster paint */
    color: var(--white-text);
    padding-bottom: 50px;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex; /* Helps align content faster */
    align-items: center;
}

        .hero-container {
            max-width: 1200px;
            margin: auto;
      
        }

        /* --- Header Styling --- */
        .top-bar {
            background-color: var(--dark-blue);
            color: var(--white-text);
            padding: 8px 0;
            font-size: 0.9rem;
    
        }
        .top-bar a {
            color: var(--white-text);
            text-decoration: none;
            margin-left: 10px;
            
        }
        .social-icons a {
            font-size: 1.1rem;
            margin-right: 15px;
            color: var(--white-text);
        }
        .contact-info {
            font-size: 0.9rem;
        }
        .contact-info i {
            margin-right: 5px;
            color: var(--secondary-orange);
        }
        
        .navbar {
    padding: 1.2rem 2rem;
    z-index: 1050;
}
        .navbar-brand img {
    max-width: 64px;
  
}
        .nav-link {
            font-weight: 500;
            color: var(--white-text) !important;
            margin: 0 10px;
            border-bottom: 2px solid transparent;
            transition: border-bottom 0.3s ease;
        }
        .nav-link:hover {
            border-bottom: 2px solid var(--secondary-orange);
        }
        .btn-contact {
            background-color: var(--secondary-orange);
            color: var(--white-text);
            font-weight: 600;
            padding: 8px 25px;
            border-radius: 50px;
            transition: background-color 0.3s ease;
        }
        .btn-contact:hover {
            background-color: #e47225;
            color: var(--white-text);
        }

        /* Dropdown menu styling for Services */
        .dropdown-menu {
            background-color: var(--dark-blue);
            border: none;
            border-radius: 0.5rem;
        }
        .dropdown-item {
            color: var(--white-text) !important;
            font-weight: 500;
            transition: background-color 0.3s ease;
        }
        .dropdown-item:hover {
            background-color: rgba(255, 255, 255, 0.1);
            color: var(--secondary-orange) !important;
        }
  /* Scroll effect */
   .navbar.scrolled {
      background: var(--dark-blue) !important;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
      padding: 4px 0 !important;
      margin-top: 0 !important;
        transform: translateY(0);

    }
    .navbar.scrolled .nav-link {
      color: #fff !important;
    }
    .navbar.scrolled .btn-contact {
      background: var(--secondary-orange);
      color: #fff;
      border: 2px solid var(--secondary-orange);
    }
    .navbar.scrolled .navbar-brand img {
      max-width: 50px; /* logo shrink */
    }
    @media (max-width: 991.98px) {
    .navbar-collapse {
    display: flex;
    justify-content: center; /* horizontally center */
    align-items: center;     /* vertically center */
    flex-basis: 100%;
    flex-grow: 1;
    background-color: #235fa0;
}

.navbar-nav {
    display: flex;
    justify-content: center;
    width: 100%;            
}
}
    
    
        /* --- Main Content Styling --- */
        .hero-content {
            padding-top: 50px;
            z-index: 10;
            position: relative;
        }
       .hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem); /* Fluid typography */
    font-weight: 700;
    line-height: 1.2;
  
}
        .hero-title .amazon {
    color: var(--secondary-orange);
    font-size: clamp(2.8rem, 6vw, 4rem);
}
        .hero-description {
            font-size: 1.1rem;
            max-width: 500px;
            line-height: 1.6;
            margin-top: 20px;
        }
        .feature-list {
            list-style: none;
            padding: 0;
            margin-top: 30px;
        }
        .feature-item {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            font-size: 1.1rem;
            font-weight: 500;
        }
        .feature-item i {
            color: var(--secondary-orange);
            margin-right: 15px;
            font-size: 1.2rem;
        }
        .hero-buttons {
            margin-top: 40px;
        }
        .btn-quote, .btn-chat {
            font-weight: 600;
            border-radius: 50px;
            padding: 12px 30px;
            transition: all 0.3s ease;
            margin-right: 15px;
        }
        .btn-quote {
            background-color: var(--secondary-orange);
            color: var(--white-text);
            border: none;
        }
        .btn-quote:hover {
            background-color: #e47225;
            color: var(--white-text);
        }
        .btn-chat {
            background-color: transparent;
            color: var(--white-text);
            border: 2px solid var(--white-text);
        }
        .btn-chat:hover {
            background-color: var(--white-text);
            color: var(--primary-blue);
        }

        /* --- Book Images and Background Shapes --- */
        .book-images-container {
            display: flex;
            justify-content: center;
            align-items: center;
            padding-top: 20px;
        }
#single-book {
    max-width: 450px;
    width: 100%; /* Ensures it fits mobile */
    height: auto;
    border-radius: 10px;
    /* Reduced animation complexity for better LCP */
    animation: zoom-loop 4s infinite alternate; 
}
        .animated-shape {
            position: absolute;
            background-color: rgba(255, 255, 255, 0.05);
            border-radius: 50%;
            pointer-events: none;
        }
        #shape1 {
            width: 150px;
            height: 150px;
            bottom: 10%;
            left: -5%;
            z-index: 0;
            animation: moveShape1 20s infinite linear;
        }
        #shape2 {
            width: 300px;
            height: 300px;
            top: 20%;
            right: -10%;
            border: 5px solid rgba(255, 255, 255, 0.1);
            background: none;
            z-index: 0;
            animation: moveShape2 30s infinite linear;
        }

        @keyframes moveShape1 {
            0% { transform: translate(0, 0); }
            50% { transform: translate(20px, 30px); }
            100% { transform: translate(0, 0); }
        }
        @keyframes moveShape2 {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        @keyframes zoom-loop {
    from { transform: scale(1); }
    to { transform: scale(1.03); }
}
      

        /* --- Responsiveness --- */
        @media (max-width: 991.98px) {
            .hero-section {
                padding-bottom: 20px;
            }
           .hero-content {
        text-align: center;
        padding-top: 20px;
    }
            .hero-title {
                font-size: 2.5rem;
            }
            .hero-title .amazon {
                font-size: 2.8rem;
            }
            .hero-description {
                margin: 20px auto;
            }
            .feature-list {
                justify-content: center;
                margin-top: 20px;
            }
            .book-images-container {
                min-height: 400px;
            }
            #single-book {
                max-height: 400px;
            }
        }
      .btn-custom, .btn-orange {
    background: #F39D17;
    color: #fff !important;
    font-weight: 600;
    padding: 12px 25px;
    border-radius: 50px !important;
    border: none;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
}
.btn-orange:hover, .btn-custom:hover {
  background: #000;
  color: #fff !important;
}
/* Wiggle animation for Live Chat and Phone buttons */
@keyframes wiggle {
  0%, 7% { transform: rotateZ(0); }
  15% { transform: rotateZ(-5deg); }
  20% { transform: rotateZ(4deg); }
  25% { transform: rotateZ(-4deg); }
  30% { transform: rotateZ(3deg); }
  35% { transform: rotateZ(-2deg); }
  40%, 100% { transform: rotateZ(0); }
}
.wiggle-animation {
  animation: wiggle 2s linear infinite;
  display: inline-block;
}
.navbar {
  z-index: 1050 !important;  /* Bootstrap ke modal aur banner se bhi upar */
}
.dropdown-menu {
  z-index: 2000 !important;  /* dropdown khulte hi sabse upar */
}
       
        
        /* About Page */
        .btn-orange1 {
      background: #F39D17;
      color: #fff !important;
      font-weight: 600;
      padding: 8px 18px;
      border-radius: 6px;
      border: 1px solid #F39D17;
      transition: 0.3s;
      font-size: 16px;
    }
    .btn-orange1:hover {
      background: #000;
      color: #fff !important;
    }

    .btn-green {
      background: #ffffff;
      color: #F39D17 !important;
      font-weight: 600;
      padding: 8px 18px;
      border-radius: 6px;
      border: 1px solid #F39D17;
      transition: 0.3s;
      font-size: 16px;
    }
    .btn-green:hover {
      background: #000;
      color: #fff !important;
    }




        /* General Section Styling */
        .section-container {
            padding: 80px 0;
            overflow: hidden;
        }
        
        /* Section 1: Services */
        .section1-bg {
  background-image: url('images/b1.png') ;
            background-size: cover;
            color: white;
            position: relative;
        }

        .section1-bg h2 {
            font-size: 2.5rem;
            font-weight: 800;
        }

        .section1-bg h2 span {
            color: var(--orange-color);
        }

        .service-card {
            background-color: white;
            color: #00457A;
            border-radius: 15px;
            padding: 30px;
            text-align: center;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            margin-top: 20px;
            transition: transform 0.3s ease;
        }

        .service-card:hover {
            transform: translateY(-5px);
        }
        
        .service-card .icon {
            font-size: 3rem;
            color: var(--orange-color);
         
            background-color: var(--light-grey-color);
          
            border-radius: 10px;
        }

        /* Section 2 & 2A: Explore & Services In Action */
        .section2-content h2 {
            font-size: 3rem;
            font-weight: 800;
        }

        .section2-content p {
            color: var(--text-grey);
            line-height: 1.6;
            margin-bottom: 25px;
        }

        .section-image-block {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    width: 100%;
    height: auto; /* Fixed: Changed from 350px to prevent stretching */
    aspect-ratio: 16 / 9; /* Reserves space to stop layout shifts */
}

        /* Section 3: Commitment & Campaigns */
        .section3-card {
            display: flex;
            align-items: flex-start;
            gap: 25px;
        }

        .section3-card .content {
            flex-grow: 1;
        }

        .section3-card h2 {
            font-size: 2.5rem;
            font-weight: 700;
        }

        .section3-card h2 span {
            color: var(--orange-color);
        }

        .section3-card p {
            color: var(--text-grey);
        }
        
        .section3-card .number {
            font-size: 5rem;
            font-weight: 800;
            color: #e9ecef;
        }
        
        /* Section 4: Why Opt For Us */
        .section4-bg {
            
  background-image: url('images/h_s12_bg (2).png') ;

        }

        .section4-card {
            background-color: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.05);
            margin-bottom: 20px;
        }

        .section4-card h4 {
            font-weight: 600;
            color: var(--blue-color);
        }
        
        .section4-card p {
            font-size: 0.9rem;
            color: var(--text-grey);
        }

        .section4-card .icon-small {
            color: var(--orange-color);
            background-color: #fff3e0;
            padding: 15px;
            border-radius: 10px;
            font-size: 1rem;
            margin-bottom: 15px;
        }

        /* Section 5: Affiliate Marketing */
        .section5-bg {
            background-color: #fff;
        }

        .section5-images {
            position: relative;
        }

        .image-right-section5 {
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            z-index: 1;
        }

        /* Updated Quote Bubble Style for consistency and responsiveness */
        .quote-bubble {
            background-color: white;
            border-radius: 20px;
            padding: 20px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            position: absolute;
            bottom: 20px;
            left: -50px;
            display: flex;
            align-items: center;
            gap: 15px;
            z-index: 2;
        }
        .quote-bubble .icon-small {
            color: var(--orange-color);
            background-color: #fff3e0;
            padding: 15px;
            border-radius: 10px;
            font-size: 1.2rem;
        }

      
        .section6-bg {
            background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/f6747ec16e6fcd8d4abca5c53191b445.slider.jpg') no-repeat center center;
            background-size: cover;
            color: white;
        }
        
        .section6-content h2 {
            font-size: 2.5rem;
            font-weight: 800;
        }

        .section6-content p {
            font-size: 1.1rem;
            max-width: 800px;
            margin: 0 auto 30px;
        }

        .section6-list {
            list-style: none;
            padding: 0;
        }

        .section6-list li {
            font-size: 1.1rem;
            margin-bottom: 10px;
        }

        .section6-list .fa-check-circle {
            color: var(--orange-color);
            background-color: white;
            padding: 5px;
            border-radius: 50%;
            margin-right: 10px;
        }
        
        .section6-image-container {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .section6-image {
            width: 100%;
            max-width: 600px;
            height: auto;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }
        
        
        /* Section 7: Steps */
        
        .header-text {
            color: #000000 !important;
            text-align:center;
            margin-top: 60px;

        }
        .sub-text {
            color: #666;
            margin-top: 20px;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
            text-align:center;

        }
        .how-it-works-img {
            margin-top: -10px;
            max-width: 100%;
            height: auto;
        }


        /* Section 7: FAQ */
        .section7-bg {
            background: linear-gradient(to right, #ffffff, #fff3e0);
        }

        .accordion-item {
            border-radius: 10px !important;
            margin-bottom: 15px;
            border: 1px solid #e9ecef;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }

        .accordion-button {
            font-weight: 600;
            color: var(--blue-color);
            padding: 20px;
            border-radius: 10px !important;
        }

        .accordion-button:not(.collapsed) {
            background-color: var(--light-grey-color);
            color: var(--orange-color);
        }

        .accordion-body {
            color: var(--text-grey);
        }

        .main-heading {
            font-size: 2.5rem;
            font-weight: 800;
        }

        .main-heading span {
            color: var(--orange-color);
        }

        @media (max-width: 992px) {
            .section-image-block {
                margin-bottom: 30px;
                margin-bottom:30px;
            }
        }

        @media (max-width: 768px) {
            /* Adjusted quote bubble for mobile view */
            .quote-bubble {
        position: relative; /* Fixed: No longer pushes off-screen */
        left: 0;
        bottom: 0;
        margin: 20px auto;
        width: 90%;
    }
            .section3-card {
                flex-direction: column;
            }
            .section3-card .number {
                align-self: flex-start;
            }
            .section6-image-container {
                margin-bottom: 30px;
            }
        }
        
           .service-section {
      padding: 60px 0;
    }
    .service-section h2 {
      font-size: 2.5rem;
      font-weight: bold;
    }
    .service-section h2 span {
      color: #f7941d; /* Orange highlight */
    }
    .service-section p {
      color: #555;
      line-height: 1.6;
      margin-bottom: 20px;
    }
    .check-list {
      list-style: none;
      padding: 0;
    }
    .check-list li {
      margin-bottom: 12px;
      font-size: 16px;
      position: relative;
      padding-left: 30px;
    }
    .check-list li::before {
      content: "☑";
      position: absolute;
      left: 0;
      top: 0;
      color: #f7941d;
      font-weight: bold;
    }
  

    .service-section-image {
      position: relative;
    }
    .service-section-image img {
      border-radius: 12px;
      width: 100%;
    }
        
        .publish-section {
      background-color: #fff;
      padding: 60px 0;
    }
    .publish-section h2 {
      font-size: 2rem;
      font-weight: bold;
      margin-bottom: 20px;
      color:#000;
    }
    .publish-section p {
      font-size: 1rem;
      margin-bottom: 25px;
        color:#000;
    }
    .book-stack img {
     
     width:350px;
      height: auto;
      margin: 10px;
      transition: transform 0.3s ease;
    }
    .book-stack img:hover {
      transform: translateY(-5px);
    }
        
        /* Custom CSS for the large number and header text colors */
        .header-text {
            color: #ff914d;
        }

       .large-number {
        font-size: 5rem !important; /* Prevents overflow */
        opacity: 0.2;
    }
        /* Custom positioning for the large number */
        .number-01 {
            top: -2.5rem;
            right: 0.5rem;
        }
        .number-02 {
            top: -2.5rem;
            left: 0.5rem;
        }


    /* Form Card Styling */
        /* Custom styling for the file upload box */
.custom-file-input {
    border: 2px dashed #dee2e6;
    padding: 10px;
    background-color: #f8f9fa;
    transition: all 0.3s ease;
}

.custom-file-input:hover {
    border-color: #0d6efd;
    background-color: #fff;
    cursor: pointer;
}

.custom-file-input::file-selector-button {
    background-color: #0d6efd;
    color: white;
    border: none;
    padding: 5px 15px;
    border-radius: 4px;
    margin-right: 15px;
    cursor: pointer;
    transition: background 0.3s;
}

.custom-file-input::file-selector-button:hover {
    background-color: #0b5ed7;
}
        .form-card {
            background-color: white;
            padding: 30px;
            border-radius: 1rem;
            box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
            border: 1px solid #e2e8f0;
            max-width: 450px;
            width: 100%;
        }
        
        /* Keyframe for the entrance animation of the header */
        @keyframes slideInHeader {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .form-card-header {
            background-color: var(--bs-primary);
            color: white;
            padding: 15px;
            margin: -30px -30px 20px -30px;
            border-top-left-radius: 1rem;
            border-top-right-radius: 1rem;
            text-align: center;
            font-size: 1.5rem;
            font-weight: 700;
            box-shadow: 0 5px 15px rgba(30, 64, 175, 0.5);
            /* Apply Animation */
            animation: slideInHeader 0.5s ease-out 0.2s forwards;
            opacity: 0; /* Start hidden */
        }
        .form-label {
            font-size: 0.875rem;
            font-weight: 500;
            color: var(--bs-gray-700);
        }
        .form-control:focus {
            border-color: var(--bs-primary);
            box-shadow: 0 0 0 0.25rem rgba(30, 64, 175, 0.25);
        }
        .btn-submit {
            width: 100%;
            background-color:#F39D17;
            border-color: var(--bs-success);
            color: white;
            padding: 12px;
            border-radius: 0.5rem;
            font-weight: 700;
            transition: background-color 0.3s ease;
        }
        .btn-submit:hover {
            background-color: #047857;
            border-color: #047857;
        }
        
        /* Responsive Adjustments for Mobile */
        @media (max-width: 992px) {
            .hero-title {
                font-size: 2.5rem;
            }
            .col-lg-6 {
                margin-bottom: 40px;
                margin-top:30px;
                margin-top:70px;
            }
            /* Use Bootstrap d-flex and justify-content-center for mobile alignment */
            .hero-buttons {
                display: flex;
                justify-content: center;
                flex-wrap: wrap; /* Allows buttons to stack if necessary */
                gap: 10px;
                margin-top: 20px;
            }
            .btn-chat {
                margin-left: 0 !important; /* Override inline style or margin-left */
            }
            .feature-list {
                display: flex;
                flex-direction: column;
                align-items: center;
            }
        }
          /* Hero Section Styling */
      
        .hero-title {
            font-size: 3rem;
            font-weight: 800;
            line-height: 1.2;
            color: #1a202c;
            margin-bottom: 20px;
        }
        .Amz {
            color: white;
            position: relative;
            display: inline-block;
        }
        .hero-description {
            font-size: 1.15rem;
            color:white;
            margin-bottom: 30px;
        }
        .feature-list {
            list-style: none;
            padding: 0;
            margin-bottom: 30px;
        }
        .feature-item {
            display: flex;
            align-items: center;
            font-size: 1rem;
            color:white;
            margin-bottom: 10px;
            font-weight: 500;
        }
        .feature-item i {
            color: orange;
            margin-right: 10px;
            font-size: 1.2rem;
        }
.publish-section {
        background: #F39D17;

      padding: 60px 0;
    }
    .publish-section h2 {
      font-size: 2rem;
      font-weight: bold;
      margin-bottom: 20px;
      color:#000;
    }
    .publish-section p {
      font-size: 1rem;
      margin-bottom: 25px;
        color:#000;
    }
    .book-stack img {
      width: 350px;
      height: auto;
      margin: 10px;
      transition: transform 0.3s ease;
    }
    .book-stack img:hover {
      transform: translateY(-5px);
    }
    
    .contact-section {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 40px;
    }
    .contact-image img {
      width: 100%;
      border-radius: 10px;
      object-fit: cover;
    }
    .contact-form {
      background: #e8f0f9;
      padding: 30px;
      border-radius: 10px;
    }
    .contact-form h3 {
      font-weight: bold;
    }
    .contact-form h3 span {
      color: #f7941d;
    }
    .contact-form .form-control {
      margin-bottom: 15px;
      border-radius: 5px;
      box-shadow: none;
    }