       * {
    box-sizing: border-box;
}




: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);
    overflow-x: hidden; /* Stops horizontal scroll completely */
    margin: 0;
    padding: 0;
}
        /* Custom Button Style */
        .btn-custom {
            background-color: var(--orange-color);
            color: white;
            border: none;
            border-radius: 50px !important ;
            padding: 12px 25px; 
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .btn-custom:hover {
            background-color: var(--light-blue-color);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }

        .btn-custom .fa-arrow-right {
            margin-left: 10px;
            transition: transform 0.3s ease;
        }

        .btn-custom:hover .fa-arrow-right {
            transform: translateX(5px);
        }
        /*navbar*/
     /* =========================================
   1. CORE NAVBAR & ANIMATIONS
   ========================================= */
.navbar {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 1.2rem 2rem;
    background: transparent;
    width: 100%;
    z-index: 1050;
}

.navbar.scrolled {
    background: rgba(19, 20, 20, 0.85);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 40px;
    width: fit-content;
    margin: 15px auto;
    padding: 0.6rem 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* =========================================
   2. BRANDING (LOGO)
   ========================================= */
.navbar-brand img {
  height: 60px; /* Default height */
  width: auto;
  transition: height 0.3s ease;
}

.navbar.scrolled .navbar-brand img {
  height: 40px; /* Smaller height on scroll */
}

/* =========================================
   3. NAVIGATION LINKS
   ========================================= */
.nav-links .nav-link {
  color: #fff !important;
  font-weight: 500;
  margin: 0 10px;
  border-radius: 25px;
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.nav-links .nav-link:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.3);
}

/* =========================================
   4. DROPDOWN (GLASS STYLE)
   ========================================= */
.glass-dropdown {
  background: rgba(30, 30, 30, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 15px;
  margin-top: 5px;
  padding: 10px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  /* Animation setup */
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

/* Hover show for Desktop */
@media (min-width: 992px) {
  .hover-dropdown:hover .glass-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

.glass-dropdown .dropdown-item {
  color: #fff !important;
  font-weight: 500;
  padding: 10px 20px;
  border-radius: 8px;
  transition: background 0.2s;
}

.glass-dropdown .dropdown-item:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #ffa31a !important; /* Text turns gold on hover */
}

/* =========================================
   5. CTA BUTTON (GET QUOTE)
   ========================================= */
.quote-btn {
  background: #ffa31a;
  color: #000 !important;
  border-radius: 25px;
  font-weight: 700;
  padding: 10px 24px;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  white-space: nowrap;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(255, 163, 26, 0.3);
}

.quote-btn:hover {
  background: #ffb84d;
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(255, 163, 26, 0.4);
}

/* =========================================
   6. RESPONSIVE (MOBILE) FIXES
   ========================================= */
@media (max-width: 991px) {
  /* Fix the floating bar on mobile - keep it full width or simple */
  .navbar.scrolled {
    width: 95%;
    margin: 10px auto;
    border-radius: 15px;
  }
  .hero-buttons {
        display: flex;
        flex-direction: column; /* Stacks buttons vertically */
        gap: 15px;
        align-items: center;
    }
    
    .btn-quote, .btn-chat {
        margin-right: 0 !important;
        width: 100%;
        max-width: 300px; /* Makes them easy to tap but not too wide */
    }
  .navbar-collapse {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 20px;
    margin-top: 15px;
  }

  .nav-link {
    text-align: center;
    margin: 10px 0 !important;
  }

  .quote-btn {
    width: 100%;
    margin-top: 15px;
    padding: 14px;
  }

  .glass-dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: rgba(255, 255, 255, 0.05);
    box-shadow: none;
    text-align: center;
  }
}
        /*hero section */
          .hero-section {
            background-color:#00457A;
            color: var(--white-text);
            padding-bottom: 50px;
            position: relative;
            overflow: hidden;
            min-height: 100vh;
                    }

        .hero-container {
            max-width: 1200px;
            margin: auto;
      
        }

       
        /* --- Main Content Styling --- */
        .hero-content {
            padding-top: 50px;
            z-index: 10;
            position: relative;
        }
        .hero-title {
    font-size: clamp(2rem, 8vw, 3.5rem); /* Naturally shrinks on small screens */
    font-weight: 700;
    line-height: 1.2;
}
        .hero-title .amazon {
    color: var(--secondary-orange);
    font-size: clamp(2.2rem, 10vw, 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 {
    width: 100%;
    max-width: 400px; /* Limits size on desktop */
    height: auto;     /* Ensures it scales proportionally */
    display: block;
    margin: 0 auto;   /* Centers it on mobile */
    border-radius: 10px;
    animation: zoom-loop 3s 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 {
            0% { transform: scale(1); }
            100% { transform: scale(1.05); }
        }
      

        /* --- Responsiveness --- */
        @media (max-width: 991.98px) {
            .hero-section {
                padding-bottom: 20px;
            }
            .hero-content {
                text-align: center;
                padding-top: 30px;
            }
            .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;
            }
        }
        
        /* 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: var(--blue-color);
            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: 350px;
        }

        /* 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-color:linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6));

        }

        .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;
        }

   
        .quote-bubble {
    background-color: white;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 2;
    /* Responsive Fix below */
    position: relative; 
    left: 0;
    margin: 20px auto;
    width: 90%; /* Keeps it inside the screen on mobile */
}
        .quote-bubble .icon-small {
            color: var(--orange-color);
            background-color: #fff3e0;
            padding: 15px;
            border-radius: 10px;
            font-size: 1.2rem;
        }

        /* Section 6: Instantly Start Earning */
        .section6-bg {
            background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/b3.png') 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 */
     

        /* 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: static;
                margin-top: 20px;
                /* Re-align for small screens */
                justify-content: center;
                text-align: center;
            }
            .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 {
            color: #e5e7eb; /* Light gray color for the number */
            font-size: 10rem;
            font-weight: 700;
            opacity: 0.1;
        }

        /* Custom positioning for the large number */
        .number-01 {
            top: -2.5rem;
            right: 0.5rem;
        }
        .number-02 {
            top: -2.5rem;
            left: 0.5rem;
        }
        
        
        
        /* Buttons */
.btn-orange, .btn-custom {
  background: #F39D17;
  color: #fff !important;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 6px;
  border: none;
  transition: 0.3s;
  font-size: 20px;
  white-space: nowrap;
}
.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;
}

        
        
        
        
        
        
    