:root{
  --bg: #fafafa;
  --card: #ffffff;
  --muted: #596075;
  --accent: #f24b22; /* ORANGE THEME */
  --accent-dark: #f24b22;
  --blue: #2563eb;
  --radius: 12px;
  --maxw: 1200px;
}

*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  font-family:Inter,system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue",Arial;
  background:var(--bg);
  color:#0f172a;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}
html, body {
    overflow-x:;
}

* {
    box-sizing: border-box;
}
/* Layout helpers */
.container{width:90%;max-width:var(--maxw);margin:0 auto}
.section-padding{padding:48px 0}
.section-padding-sm{padding:20px 0}
.center{text-align:center}
.section{width:100% }

/* NAVBAR */
.navbar{background:var(--card);box-shadow:0 2px 10px rgba(2,6,23,0.06);position:sticky;top:0;z-index:60}
.nav-row{display:flex;align-items:center;justify-content:space-between;padding:14px 0}
.logo{font-weight:800;color:var(--accent);text-decoration:none;font-size:1.25rem}
.navlinks{display:flex;align-items:center;gap:1rem}
.navlinks ul{display:flex;list-style:none;gap:1rem;align-items:center;margin-right:1rem}
.navlinks a{color:#222;text-decoration:none;font-weight:600;padding:8px 6px;border-radius:8px}
.navlinks a:hover, .navlinks a.active{background:linear-gradient(90deg, rgba(251,127,45,0.12), rgba(37,99,235,0.02));color:var(--accent-dark)}
.nav-actions{display:flex;gap:10px;align-items:center}
/* Dropdown container */
/* Dropdown container */
.dropdown {
  position: relative;
}

/* Submenu */
.submenu {
  position: absolute;
  top: calc(100% + 6px); /* snug under Services */
  left: 50%;
  transform: translateX(-50%);
  display: none;
  flex-direction: column;
  background: var(--card);
  padding: 10px 0;
  min-width: 200px;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(2,6,23,0.18);
  z-index: 9999;
}/* Dropdown container */
.dropdown {
  position: relative;
}

/* Arrow */
.arrow {
  font-size: 0.7em;
  margin-left: 4px;
  transition: transform 0.2s ease;
}

/* Submenu */
.submenu {
  position: absolute;
  top: calc(100% + 15px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--card);
  min-width: 150px;
  padding: 10px 0;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(2,6,23,0.18);
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
  z-index: 9999;
}

/* Links */
.submenu li a {
  padding: 3px 20px;
  display: block;
  font-weight: 500;
}

/* Desktop hover */
@media (hover: hover) {
  .dropdown:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
  }

  .dropdown:hover .arrow {
    transform: rotate(180deg);
  }
}

/* Mobile open state */
.dropdown.open .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown.open .arrow {
  transform: rotate(180deg);
}





.btn-outline{padding:8px 12px;border-radius:10px;border:1.5px solid var(--accent);background:transparent;color:var(--accent);cursor:pointer}
.btn-filled{padding:8px 12px;border-radius:10px;border:none;background:var(--accent);color:white;text-decoration:none;display:inline-block}
.mobile-only{display:none}
.desktop-only{display:flex}

/* Hamburger */
.hamburger{display:none;background:none;border:0;padding:8px;border-radius:8px;cursor:pointer}
.hamburger span{display:block;width:22px;height:3px;background:#0f172a;border-radius:3px;margin:4px 0;transition:all .25s ease}
.hamburger.active span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.hamburger.active span:nth-child(2){opacity:0}
.hamburger.active span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}

/* HERO */
.hero{background:linear-gradient(180deg,#fff,#fff);background-image: url("assets/images/4872987.jpg") ;padding-top:28px;padding-bottom:;}
.hero-grid{display:grid;grid-template-columns:1fr 420px;gap:2rem;align-items:start}
.micro{color:var(--muted);margin-bottom:8px}
h1{font-size:3.5rem;color:#0f172a;margin-bottom:15px;line-height:1.04}
.lead{color:var(--muted);margin-bottom:5px;line-height:1.6;max-width: 550px;}
.stats-row{display:flex;gap:3rem;flex-wrap:wrap;margin-bottom:18px;padding-left: 0px; padding-right:40px;margin-top: 40px;}
.stat-card{background:var(--card);border: 1px solid #eee; border-radius:12px;padding:18px;box-shadow:0 8px 30px rgba(2,6,23,0.04);flex:1;min-width:160px;text-align:center}
.stat-big{font-size:2.9rem;color:var(--accent);margin-bottom:6px}
.stat-big.orange{color:var(--accent)}
.btn-primary{background:var(--accent);color:#fff;padding:20px 16px;border-radius:10px;border:0;text-decoration:none;display:inline-block;cursor:pointer;margin-top: 50px}
.btn-primary.full{width:60%;align-self: anchor-center; font-size: 1.2rem;}
/* hero right form */
.hero-right .form-card{background:var(--card);padding-right:28px;padding-bottom:60px;padding-top:40px;padding-left:28px;    border-radius:16px;box-shadow:0 12px 40px rgba(2,6,23,0.06);}
.hero-right .form-card:hover{
   transform: translateY(-8px);
  box-shadow: 0 4px 10px rgba(252, 61, 3, 0.08);
}
.form-card h3{margin-bottom:12px;text-align:center;font-size: 1.7rem}
.quote-form{display:flex;flex-direction:column;gap:10px}
.quote-form input{padding:12px;border-radius:10px;border:1px solid #E6EEF8;background:#fbfbfb}
.quote-form input:focus{outline:2px solid rgba(251,127,45,0.12);border-color:var(--accent)}

/* Trusted */
.trusted{background:transparent;padding-top:16px;padding-bottom:32px;justify-content: center}
.trusted-text{font-weight:600;color:var(--muted)}
.badges{display:flex;gap:12px;justify-content:center;margin-top:12px;flex-wrap:wrap}
.badge{background:var(--card);padding:8px 14px;border-radius:999px;box-shadow:0 6px 20px rgba(2,6,23,0.04);font-weight:600}

/* Writers */
.cards-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px;margin-top:18px}
.writer-card{display:flex;gap:12px;padding:14px;background:var(--card); border: 1px solid #eee;  border-radius:12px;box-shadow:0 8px 30px rgba(2,6,23,0.04);align-items:center}
.writer-card .avatar{width:64px;height:64px;border-radius:8px;object-fit:cover}
.writer-meta{display:flex;gap:12px;color:var(--muted);margin-top:8px}
.small{font-size:0.95rem;color:var(--muted)}

/* Testimonials */
/*.testimonials-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:16px;margin-top:18px}
.testimonial{background:var(--card);padding:18px;border-radius:12px;box-shadow:0 8px 30px rgba(2,6,23,0.04)}
.testimonial footer{margin-top:10px;color:var(--muted);font-weight:600}
.testimonial-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%;
}

.testimonial-card {
  min-width: 100%;
  box-sizing: border-box;
  padding: 20px;
}
*/
/* Pricing / aside */
.grid-2{display:grid;grid-template-columns:1fr 340px;gap:2rem;align-items:start}
.price-card{background:var(--card);padding:18px;border-radius:12px;text-align:center;box-shadow:0 8px 30px rgba(2,6,23,0.04)}
.price-card.featured{transform:translateY(-8px);border:2px solid rgba(251,127,45,0.08)}
.price-amt{font-size:1.75rem;font-weight:800;margin:12px 0;color:var(--accent)}

/* FAQ */
.faq-list details{background:var(--card);padding:12px;border-radius:10px;margin-bottom:10px;box-shadow:0 6px 20px rgba(2,6,23,0.02)}
.faq-list summary{cursor:pointer;font-weight:600}

/* Footer */
.footer{background:#0f172a;color:#fff;text-align:left;padding:18px;border-top-left-radius:12px;border-top-right-radius:12px}

/* Modal */
.modal{display:none;position:fixed;z-index:2000;left:0;top:0;width:100%;height:100%;background:rgba(2,6,23,0.5);justify-content:center;align-items:center}
.modal-content{background:var(--card);padding:20px;border-radius:10px;width:92%;max-width:420px;position:relative}
.modal-content .close{position:absolute;right:12px;top:10px;background:none;border:0;font-size:1.4rem;cursor:pointer;color: #111;}
.modal-form input{width:100%;padding:10px;margin:8px 0;border-radius:8px;border:1px solid #e6eef8}

/* Scroll animations base */
.scroll-reveal{opacity:0;transition:all .9s cubic-bezier(.2,.9,.2,1)}
/* fade-up */
.scroll-fade-up{transform:translateY(32px)}
.scroll-fade-up.visible{opacity:1;transform:none}
/* fade-left */
.scroll-fade-left{transform:translateX(-40px)}
.scroll-fade-left.visible{opacity:1;transform:none}
/* fade-right */
.scroll-fade-right{transform:translateX(40px)}
.scroll-fade-right.visible{opacity:1;transform:none}
/* zoom-in */
.scroll-zoom-in{transform:scale(.92)}
.scroll-zoom-in.visible{opacity:1;transform:scale(1)}

/* Responsive */
@media (max-width:1000px){
  .cards-grid{grid-template-columns:repeat(2,1fr)}
  .testimonials-grid{grid-template-columns:repeat(2,1fr)}
  .grid-2{grid-template-columns:1fr}
}
@media (max-width:700px){
  .navlinks{display:none}
  .hamburger{display:block}
  .mobile-only{display:flex}
  .desktop-only{display:none}
  .hero-grid{grid-template-columns:1fr;gap:1rem}
  .cards-grid{grid-template-columns:1fr}
  .testimonials-grid{grid-template-columns:1fr}
  .stat-card{text-align:center}
  .price-card{margin-top:12px}
  .navlinks.active{display:block;position:absolute;left:8px;top:64px;width:calc(100% - 16px);background:var(--card);padding:12px;border-radius:8px;box-shadow:0 8px 30px rgba(2,6,23,0.06)}
  .navlinks.active ul{flex-direction:column;gap:8px}
  .nav-actions.mobile-only{margin-top:12px}
}


.how-it-works {
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
    text-align: center;
}

.how-it-works h2 {
    font-size: 2.5em;
    margin-bottom: 40px;
}

.content-wrapper {
    display: flex;
    gap: 40px;
    text-align: left;
    margin-bottom: 40px;
}

/* --- Steps Section --- */
.steps-container {
    flex: 1; /* Takes up its share of space */
    min-width: 300px; /* Ensures it doesn't get too squished */
}

.step {
    border: 1px solid var(--light-gray);
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    transition: background-color 0.3s;
    cursor: pointer;
}

.step.active {
    border-color: var(--green-accent);
    background-color: var(--light-gray);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.step-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.step-number {
    font-size: 1.8em;
    font-weight: bold;
    color: var(--green-accent);
    margin-right: 10px;
}
.inactive-number {
    color: var(--inactive-step);
}


.step-title {
    flex-grow: 1;
    font-weight: bold;
    font-size: 1.2em;
    color: var(--text-color);
}

.step.active .step-title, 
.step.active .step-number {
    color: var(--text-color);
}

.icon {
    font-size: 1.2em;
    color: var(--green-accent);
}

.arrow {
    color: var(--inactive-step);
    font-weight: bold;
}

.step.active p {
    color: var(--text-color);
    line-height: 1.5;
    font-size: 0.95em;
}

.step:not(.active) p {
    display: none; /* Hide paragraph for inactive steps */
}

/* --- Mockup Section --- */
.mockup-container {
    flex: 2; /* Takes up more space than the steps */
    background-color: #f0f8ff; /* Light blue/white background for the whole container */
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    min-width: 400px;
}

.mockup-header {
    background-color: white;
    padding: 10px;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    text-align: left;
}

.dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 5px;
}
.red { background-color: #f24b22; }
.yellow { background-color: #ffbd44; }
.green { background-color: #00ca4e; }

.order-form {
    padding: 25px;
    background-color: white;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    position: relative;
    border: 1px solid #ddd;
}

.close-button {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.2em;
    color: var(--inactive-step);
    cursor: pointer;
}

.order-form h4 {
    margin: 0 0 20px 0;
    font-size: 1.4em;
    font-weight: normal;
}

.form-step-indicator {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    color: white;
    background-color: var(--green-accent);
    font-size: 0.8em;
    margin-right: 10px;
}

.form-step-text {
    font-weight: bold;
    color: var(--green-accent);
}

/* Mock Form Layout (Grid) */
.mock-form {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Two columns for desktop */
    gap: 15px 20px;
    margin-top: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    position: relative;
}

.form-group label {
    font-size: 0.8em;
    color: var(--inactive-step);
    margin-bottom: 5px;
}

.form-group input {
    padding: 8px 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: var(--light-gray);
    font-size: 0.9em;
}

.flag-icon {
    position: absolute;
    bottom: 8px;
    right: 10px;
    width: 20px;
    height: auto;
}

/* Full width for the last field */
.form-group.full-width {
    grid-column: 1 / -1;
}

.price-action {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 25px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.price-action p {
    font-weight: normal;
    font-size: 1.1em;
}

.price-action p strong {
    font-size: 1.2em;
    color: var(--text-color);
}

.next-step-button {
    background-color:#f24b22 ;
    color: #363535;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1em;
    transition: background-color 0.2s;
}

.next-step-button:hover {
    background-color: #6e6e6e;
}

/* Main Order Button */
.main-order-button {
    background-color: #f24b22;
    color: #f8f6f6;
    border: none;
    padding: 15px 40px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.1em;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(243, 190, 122, 0.4);
    transition: background-color 0.2s;
}

.main-order-button:hover {
    background-color: #555454;
}

/* --- Responsive Design (Mobile First) --- */

@media (max-width: 900px) {
    /* Stack the steps and the mockup on smaller screens */
    .content-wrapper {
        flex-direction: column;
        gap: 20px;
    }

    .steps-container, .mockup-container {
        min-width: auto;
    }

    .mockup-container {
        order: -1; /* Move mockup above steps for visual hierarchy */
    }

    /* Adjust form grid to be single column on mobile */
    .mock-form {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .form-group.full-width {
        grid-column: auto;
    }
    
    .price-action {
        flex-direction: column;
        gap: 10px;
    }
    
    .next-step-button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .how-it-works h2 {
        font-size: 2em;
    }
    
    .step {
        padding: 15px;
    }
    
    .step-number {
        font-size: 1.5em;
    }
    
    .step-title {
        font-size: 1.1em;
    }
}
/* Slider Container */
body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  background: #fff;
  color: #333;
}

.testimonials-section {
  text-align: center;
  padding: 80px 20px;
  background-color: #f8f9fc;
  overflow: hidden;
}

.testimonials-section h2 {
  font-size: 2rem;
  color: #1a1a40;
  margin-bottom: 10px;
}

.subtitle {
  color: #555;
  max-width: 600px;
  margin: 0 auto 50px;
  line-height: 1.6;
}

/* Slider Container */
.testimonial-slider {
  position: relative;
  overflow: hidden;
  max-width: 850px;
  max-height: 800px;
  margin: 0 auto;
}

.testimonial-track {
  display: flex;
  transition: transform 0.8s ease;

}
.testimonial-track * {
  display: block;
}

/* Testimonial Card */
.testimonial-card {
  flex: 0 0 100%;
  max-height: 100%;
  background-color: #eef0fa;
  border-radius: 20px;
  padding: 20px 30px;
  margin: 30px 0 10px 0;   /* FIXED — no left/right margin */
  position: relative;
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Quote Icon */
.quote-icon {
  position: absolute;
  top: -30px;
  left: 30px;
  background-color: #f24b22;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Text content */
.testimonial-content p {
  line-height: 1.7;
  font-size: 1rem;
  margin: 30px 100px;
  text-align: center;
}

/* Rating and order info */
.rating {
  color: #f24b22;
  font-size: 1.2rem;
  margin-bottom: 5px;
  text-align: center;
}

.order-info {
  color: #f24b22;
  font-size: 0.9rem;
}

/* Decorative stars */
.stars-decor {
  position: absolute;
  top: -20px;
  right: 30px;
}

.star {
  font-size: 24px;
  margin-left: 5px;
}

.star.orange {
  color: #f24b22;
}

.star.dark {
  color: #1a1a40;
}

/* Navigation Buttons */
.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #f24b22;
  border: none;
  color: #fff;
  font-size: 26px;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}

.nav-btn:hover {
  background-color: #f57c00;
  transform: translateY(-50%) scale(1.1);
}

.nav-btn.prev {
  left: 10px;
}

.nav-btn.next {
  right: 10px;
}

/* Dots */
.dots {
  margin-top: 40px;
}

.dot {
  height: 10px;
  width: 10px;
  margin: 0 4px;
  background-color: #ddd;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}

.dot.active,
.dot:hover {
  background-color: #f57c00;
  transform: scale(1.2);
}

/* Responsive */
@media (max-width: 768px) {
  .testimonial-card {
    padding: 30px 20px;
  }

  .quote-icon {
    width: 60px;
    height: 60px;
    font-size: 30px;
  }

  .nav-btn {
    width: 35px;
    height: 35px;
    font-size: 20px;
  }
}




/* why choose us */

.why-choose-section {
  text-align: center;
  padding: 80px 20px;
  background-color: #f9fafc;
}

.why-choose-section h2 {
  font-size: 2rem;
  margin-bottom: 50px;
  line-height: 1.4;
}

/* Grid layout */
.cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  justify-content: center;
  max-width: 100%;
  
}

/* Card styles */
.why-card {
  background: #fff;
  border-radius: 15px;
  padding: 25px 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  text-align: left;
  transition: all 0.4s ease;
  opacity: 1;
  transform: translateY(20px);
}

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

.why-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #333;
}

/* Hover effect */
.why-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Highlight borders */
.why-card:nth-child(1),
.why-card:nth-child(3),
.features-card {
  border: 2px solid #f24b22;
}

/* Features Card */
.features-card {
  text-align: left;
  background: #fff;
}

.features-card ul {
  list-style: none;
  padding: 0;
  margin: 15px 0;
}

.features-card li {
  font-size: 1rem;
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.features-card li span {
  color: #f24b22;
  font-weight: bold;
  margin-right: 10px;
}

.features-card strong {
  color: #f24b22;
}

/* Free text */
.free-text {
  font-size: 1rem;
  color: #1a1a40;
  margin: 20px 0;
  text-align: center;
}

/* Order button */
.order-btn {
  display: block;
  width: 100%;
  background: #f24b22;
  color: #fff;
  font-weight: 600;
  border: none;
  padding: 12px 0;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.order-btn:hover {
  background: #6a6b6d;
  transform: scale(1.05);
}

/* Fade-in animation *
:root {
  --primary: #f97316;
  --primary-hover: #ea580c;
  --gradient: linear-gradient(135deg, #f97316, #fb923c, #ea580c);
  --text-dark: #1f2937;
  --bg-light: #fffaf5;
  --border: #e5e7eb;
}

body {
  font-family: "Inter", sans-serif;
  background: var(--bg-light);
  color: var(--text-dark);
  margin: 0;
  padding: 0;
}

/* ======= PATTERN BACKGROUND ======= */
.popular-orders/*, .essay-section */{
  background-color: var(--bg-light);
  background-image: radial-gradient(rgba(249,115,22,0.05) 1px, transparent 1px);
  background-size: 20px 20px;
}

/* ======= TOP SECTION ======= */
.popular-orders {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem 1rem;
  
}

.popular-orders h2 {
  text-align: center;
  font-size: 1.9rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
  color: var(--text-dark);
}

.orders-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.price-card {
  border: 2px solid var(--primary);
  border-radius: 12px;
  padding: 2rem;
  background: #fff;
  text-align: center;
  width: 280px;
  box-shadow: 0 6px 16px rgba(249, 115, 22, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.price-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(249, 115, 22, 0.25);
}

.price-card p {
  margin: 0;
  font-weight: 500;
  color: #6b7280;
}

.price-card h3 {
  font-size: 2.2rem;
  color: var(--primary);
  margin: 0.6rem 0;
}

.price-card h3 span {
  font-size: 1rem;
  color: #64748b;
  font-weight: normal;
}

/* Animated Gradient Button */
.price-card button {
  background: var(--accent);
  background-size: 300% 300%;
  animation: gradientMove 5s ease infinite;
  color: #fff;
  border: none;
  padding: 0.7rem 1.5rem;
  border-radius: 25px;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.price-card button:hover {
  transform: scale(1.05);
}

@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ======= ORDER LIST ======= */
.orders-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  max-width: 600px;
}

.order-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: 0.8rem 1.6rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.order-item.active {
  color: #ff7b00;
  background: var(--gradient);
  background-size: 300% 300%;
  animation: gradientMove 6s ease infinite;
  border: none;
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}

.order-item:hover {
  transform: scale(1.05);
  border-color: var(--primary);
}

/* ======= ESSAY SECTION ======= */
/*.essay-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem 1rem;
}

.essay-section h2 {
  text-align: center;
  font-size: 1.9rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
  color: var(--text-dark);
}

.essay-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}

.essay-card {
  background: #fff;
  border: 1px solid var(--primary);
  border-radius: 10px;
  padding: 1.5rem;
  line-height: 1.6;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.essay-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(249, 115, 22, 0.2);
}

.essay-card h3 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
  border-left: 4px solid var(--primary);
  padding-left: 0.6rem;
}

/* ======= MODAL ======= */
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  width: 90%;
  max-width: 450px;
  position: relative;
  animation: slideUp 0.4s ease;
  box-shadow: 0 10px 25px rgba(249, 115, 22, 0.3);
}

@keyframes slideUp {
  from { transform: translateY(50px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.modal-content h2 {
  text-align: center;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.close-btn {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 1.5rem;
  color: var(--primary);
  cursor: pointer;
}

.modal-content form {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.modal-content input,
.modal-content select {
  padding: 0.7rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 1rem;
  transition: border 0.2s;
}

.modal-content input:focus,
.modal-content select:focus {
  outline: none;
  border-color: var(--primary);
}

.modal-content button {
  background: var(--accent);
  background-size: 300% 300%;
  animation: gradientMove 6s ease infinite;
  border: none;
  color: #fff;
  padding: 0.9rem;
  border-radius: 25px;
  font-size: 1rem;
  cursor: pointer;
  margin-top: 1rem;
  transition: transform 0.3s ease;
}

.modal-content button:hover {
  transform: scale(1.05);
}

/* ======= RESPONSIVE ======= */
@media (max-width: 600px) {
  .price-card {
    width: 100%;
  }
  .order-item {
    font-size: 0.95rem;
  }
}
:root {
  --primary: #f24b22;
  --primary-hover: #f24b22;
  --text: #1f2937;
  --muted: #6b7280;
  --bg: #fffaf5;
  --border: #e5e7eb;
  --radius: 10px;
  --shadow: 0 6px 20px rgba(249, 115, 22, 0.15);
}

body {
  font-family: "Inter", sans-serif;
  background: var(--bg);
  margin: 0;
  color: var(--text);
}

/* SECTION */
.reviews-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1rem;
}

.reviews-section h2 {
  text-align: center;
  font-size: 1.9rem;
  font-weight: 700;
}

.subtitle {
  text-align: center;
  color: var(--muted);
  margin-bottom: 2rem;
}

/* MAIN GRID */
.grades-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
}

.grades-table-container {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.5rem;
  overflow-x: auto;
}

/* HEADER */
.grades-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 1.2rem;
}

.grades-title {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.filter-group select {
  padding: 0.4rem 0.6rem;
  border: 1px solid var(--border);
  border-radius: 5px;
  font-size: 0.95rem;
}

.apply-btn {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 0.4rem 0.9rem;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
  transition: background 0.3s;
}

.apply-btn:hover {
  background: var(--primary-hover);
}

.print-btn {
  background: #fff;
  border: 1px solid var(--border);
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
  color: var(--text);
}

/* TABLE */
.grades-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.grades-table th {
  text-align: left;
  padding: 0.7rem;
  background: var(--bg);
  border-bottom: 2px solid var(--border);
  color: var(--text);
}

.grades-table td {
  padding: 0.7rem;
  border-bottom: 1px solid var(--border);
}

.grades-table tr:hover {
  background: rgba(249, 115, 22, 0.05);
}

.grades-table a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
}

.grades-table a:hover {
  text-decoration: underline;
}

/* PAGINATION */
.pagination {
  text-align: center;
  margin-top: 1rem;
}

.page-btn {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 50%;
  width: 38px;
  height: 38px;
  cursor: pointer;
  margin: 0 0.3rem;
  font-size: 1rem;
  color: var(--primary);
  transition: background 0.3s;
}

.page-btn:hover {
  background: var(--primary);
  color: #fff;
}

/* SIDEBAR */
.grades-sidebar {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.5rem;
  height: fit-content;
}

.details-btn {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 0.6rem 1rem;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
  margin-bottom: 1rem;
  width: 100%;
  transition: background 0.3s;
}

.details-btn:hover {
  background: var(--primary-hover);
}

.weights h4 {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.weights ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem 0;
}

.weights li {
  display: flex;
  justify-content: space-between;
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}

.weights li.total {
  font-weight: 700;
  color: var(--primary);
}

.checkbox {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.note {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.4;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .grades-container {
    grid-template-columns: 1fr;
  }

  .grades-sidebar {
    order: -1;
  }
}
/* --- Base Styles --- */
 /*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  color: #222;
  background: #fffaf6;
  line-height: 1.6;
}

/* --- Section Layout --- */
.pricing-section {
  padding: 80px 20px;
  text-align: center;
}

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

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1rem;
  color: #555;
  max-width: 750px;
  margin: 0 auto 3rem;
}

/* --- Pricing Cards --- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.pricing-card {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 15px rgba(255, 143, 36, 0.15);
  transition: all 0.3s ease;
  border-top: 4px solid transparent;
  opacity: 0;
  transform: translateY(40px);
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(255, 143, 36, 0.25);
}

.pricing-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.price {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

/* --- Card Color Themes --- */
.purple {
  background: #f3edff;
  border-top-color: #a987ff;
  color: #4a3eff;
}

.orange {
  background: #ffffff;
  border-top-color: #F24B22;
  color: #0D2338;
}

.green {
  background: #ebffed;
  border-top-color: #2fa84f;
  color: #1a7d34;
}

/* --- Responsive Design --- */
@media (max-width: 768px) {
  .section-title {
    font-size: 1.5rem;
  }

  .price {
    font-size: 1.5rem;
  }

  .pricing-card {
    padding: 1.5rem;
  }
}

/* --- Animation --- */
.fade-up {
  animation: fadeUp 0.8s ease forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
*/
body {
  font-family: "Poppins", sans-serif;
  background: #fffaf6;
  color: #222;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

/* Parallax Section */
.blog-section {
  position: relative;
  padding: 100px 20px;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(135deg, #f8f9fc 0%, #fff 100%);
  
}
.parallax-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255, 153, 51, 0.25), transparent 60%),
              radial-gradient(circle at 70% 80%, rgba(255, 102, 0, 0.3), transparent 70%);
  z-index: -1;
  transition: background-position 0.1s ease-out;
}
.blog-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255, 153, 51, 0.25), transparent 60%),
              radial-gradient(circle at 70% 80%, rgba(255, 102, 0, 0.3), transparent 70%);
  background-attachment: fixed;
  z-index: -1;
  transition: background-position 0.2s ease;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  background: linear-gradient(90deg, #0f172a, #222221, #0f172a, #272727);
  background-size: 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: glowText 5s ease-in-out infinite;
  text-shadow: 0 0 12px rgba(10, 10, 10, 0.3);
  margin-bottom: 2rem;
  margin-top: 4rem;
}

/* Title glow animation */
@keyframes glowText {
  0% { background-position: 0% 50%; text-shadow: 0 0 8px rgba(255, 136, 0, 0.25); }
  50% { background-position: 100% 50%; text-shadow: 0 0 14px rgba(255, 153, 51, 0.4); }
  100% { background-position: 0% 50%; text-shadow: 0 0 8px rgba(255, 136, 0, 0.25); }
}

/* Tabs */
.tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  border-bottom: 2px solid #ffd8b0;
}

.tab {
  background: #fff;
  border: none;
  padding: 12px 30px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #555;
  cursor: pointer;
  border-radius: 12px 12px 0 0;
  transition: all 0.3s ease;
  margin: 0 5px;
}

.tab.active {
  background: linear-gradient(135deg, #f24b22, #ff8307);
  color: #fff;
  box-shadow: 0 4px 12px rgba(255, 123, 0, 0.4);
}

/* Cards */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
  transition: all 0.5s ease;
}

.blog-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 15px rgba(255, 123, 0, 0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  transition: all 0.4s ease;
  border-left: 5px solid transparent;
  opacity: 0;
  transform: translateY(40px);
}

.blog-card.visible {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.8s ease;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(255, 123, 0, 0.25);
  border-left: 5px solid #ff7b00;
}

/* Text & image */
.blog-info {
  flex: 1;
  text-align: left;
  padding-right: 1rem;
}

.blog-info h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}

.blog-info p {
  font-size: 0.9rem;
  color: #555;
}

.blog-card img {
  width: 120px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
}

/* Button */
.view-more {
  margin-top: 2rem;
  padding: 12px 28px;
  font-size: 1rem;
  font-weight: 600;
  background: linear-gradient(135deg, #f24b22, #ff9f40);
  color: #fff;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(255, 123, 0, 0.3);
}

.view-more:hover {
  background: linear-gradient(135deg, #f24b22, #ff7b00);
  box-shadow: 0 6px 20px rgba(255, 123, 0, 0.4);
  transform: translateY(-2px);
}

.hidden {
  display: none;
}

/* Responsive */
@media (max-width: 768px) {
  .section-title { font-size: 1.6rem; }
  .blog-card { flex-direction: column; text-align: center; }
  .blog-info { padding-right: 0; margin-bottom: 1rem; }
  .blog-card img { width: 100%; height: auto; }
}

/* FOOTER SECTION */





.footer {
 
  /*background: linear-gradient(145deg, #8b7777, #91847f17, #afacac);*/
  color: #fff;
  padding: 50px 0 0px;
  position: relative;
  overflow: hidden;
  text-align: left;
  
}

.footer::before {
  content: "";
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 20% 30%, rgba(255,255,255,0.05), transparent 0%);
  /*transform: rotate(90deg);*/
   background-image: url(assets/images/FOO.jpg);
   opacity: 0.1;
  
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  max-width: 1200px;
  margin: auto;
  gap: 30px;
  position: relative;
  z-index: 1;
  
}

.footer-section h3 {
  color: #fff;
  margin-bottom: 15px;
  font-size: 20px;
  border-bottom: 2px solid #f24b22;
  display: inline-block;
  padding-bottom: 5px;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin: 8px 0;
}

.footer-section ul li a {
  color: #f1f1f1;
  text-decoration: none;
  transition: 0.3s;
}

.footer-section ul li a:hover {
  color: #ffd280;
  padding-left: 5px;
}

.footer-section.contact p {
  margin: 8px 0;
  color: #f1f1f1;
}

.footer-section.contact i {
  width: 40px;
  height: 40px;
  color: #fff;
  background: #f24b22;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 10px;
  font-size: 14px;
}

.social-icons {
  margin-top: 10px;
}

.social-icons a {
  color: #fff;
  margin: 0 8px;
  display: inline-block;
  font-size: 18px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  text-align: center;
  line-height: 40px;
  transition: 0.3s ease;
}

.social-icons a:hover {
  background: #f24b22;
  color: #fff;
  transform: scale(1.2) rotate(10deg);
  box-shadow: 0 0 10px #f24b22;
}

.footer-bottom {
  text-align: center;
  padding: 20px;
  border-top: 1px solid rgba(255,255,255,0.2);
  margin-top: 30px;
  font-size: 14px;
  color: #f5f5f5;
  background-color: #111b21;
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-section {
    width: 90%;
  }

  .social-icons {
    margin-top: 15px;
  }

  .social-icons a {
    margin: 5px;
  }
}

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

body {
  background: #fff;
  color: #111;
  line-height: 1.6;
}

.testimonials {
  max-width: 1100px;
  margin: 4rem auto;
  padding: 2rem;
  text-align: center;
}

.testimonials h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 4rem;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.testimonial-card {
  border: 1px solid #eee;
  border-radius: 16px;
  padding: 2rem;
  background: #fafafa;
  text-align: left;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.stars {
  color: #f24b22;
  margin-bottom: 1rem;
}

.testimonial-card p {
  color: #444;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.user {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.user img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
}

.user-info {
  display: flex;
  flex-direction: column;
}

.user-info h4 {
  font-size: 1rem;
  font-weight: 600;
}

.user-info span {
  font-size: 0.85rem;
  color: #777;
}

.partners {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  margin-top: 4rem;
  opacity: 0.8;
}

.partners img {
  height: 35px;
  object-fit: contain;
}

.contact {
  margin-top: 2rem;
  font-size: 1rem;
  color: #333;
}

.contact a {
  color: #f24b22;
  text-decoration: none;
}

.contact a:hover {
  text-decoration: underline;
}

@media (max-width: 600px) {
  .testimonial-card {
    padding: 1.5rem;
  }

  .testimonials h2 {
    font-size: 1.6rem;
  }
}
/* ===== RESET ===== */
/* ===== RESET ===== */


/* ===== SECTION ===== */
.faq-section {
  max-width: 100%;
  margin: 4rem auto;
  padding: 8rem;
  text-align: center;
  background-color: #f8f9fc;
}

.faq-section h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
  color: #1b1b1b; /* Orange accent */
}

/* ===== GRID ===== */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(520px, 1fr));
  gap: 1.5rem;
}

/* ===== FAQ ITEM ===== */
.faq-item {
  border: 2px solid #f24b22;
  border-radius: 10px;
  background: #fff;
  transition: all 0.3s ease;
  overflow: hidden;
}

.faq-item:hover {
  box-shadow: 0 4px 12px rgba(255, 102, 0, 0.15);
  transform: translateY(-3px);
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  text-align: left;
  padding: 1.2rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: #2c1a00;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: #f24b22;
}

.faq-question .arrow {
  font-size: 1.1rem;
  color: #f24b22;
  transition: transform 0.3s ease;
}

/* ===== ANSWER ===== */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  padding: 0 1.5rem;
  font-size: 0.95rem;
  color: #444;
  text-align: left;
  line-height: 1.5;
  background-color: #fffaf5;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0.8rem 1.5rem 1.2rem;
  border-top: 1px solid #ffcc99;
}

.faq-item.active .arrow {
  transform: rotate(90deg);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 600px) {
  .faq-section h2 {
    font-size: 1.6rem;
  }
  
  .faq-grid{
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
  .faq-question {
    font-size: 0.95rem;
  }
}
/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

/* ===== BASE ===== */
body {
  background-color: #fffaf5;
  color: #2c1a00;
  line-height: 1.6;
}

/* ===== SECTION ===== */
.class-service-section {
  max-width: 1100px;
  margin: 4rem auto;
  padding: 2rem;
  text-align: center;
}

.class-service-section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #242323;
  margin-bottom: 3rem;
}

/* ===== CONTAINER ===== */
.service-container {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* ===== LEFT SIDE ===== */
.features-left {
  flex: 1 1 60%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.feature-box {
  border: 1.5px solid #f24b22;
  border-radius: 10px;
  padding: 1.5rem;
  background-color: #fff;
  text-align: left;
  transition: all 0.3s ease;
}

.feature-box:hover {
  box-shadow: 0 4px 10px rgba(255, 102, 0, 0.15);
  transform: translateY(-3px);
}

.feature-box h3 {
  color: #f24b22;
  margin-bottom: 0.6rem;
  font-size: 1.1rem;
}

/* ===== RIGHT SIDE ===== */
.features-right {
  flex: 1 1 30%;
  border: 2px solid #f24b22;
  border-radius: 12px;
  background: #fff;
  padding: 2rem 1.5rem;
  text-align: left;
  align-self: start;
}

.features-right h3 {
  text-align: center;
  font-size: 1.2rem;
  color: #ff6600;
  margin-bottom: 1.2rem;
}

.free-features {
  list-style: none;
  margin-bottom: 1.5rem;
}

.free-features li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #ffe0cc;
  padding: 0.8rem 0;
  font-weight: 500;
  color: #2c1a00;
}

.free-features span.free {
  color: #f24b22;
  font-weight: 700;
}

.free-note {
  text-align: center;
  font-weight: 600;
  color: #2c1a00;
  margin-bottom: 1.5rem;
}

.free-note span {
  color: #f24b22;
}

.order-btn {
  display: block;
  width: 100%;
  background-color: #f24b22;
  color: #fff;
  border: none;
  padding: 0.9rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.order-btn:hover {
  background-color: #e65500;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .service-container {
    flex-direction: column;
    align-items: center;
  }

  .features-right {
    width: 100%;
    max-width: 500px;
  }

  .features-left {
    grid-template-columns: 1fr;
    width: 100%;
  }
}

@media (max-width: 600px) {
  .class-service-section h2 {
    font-size: 1.6rem;
  }

  .feature-box h3 {
    font-size: 1rem;
  }

  .order-btn {
    font-size: 0.95rem;
  }
}

/* --- Container Section --- */
/* Section and title remain unchanged */
.essay-section {
    padding: 60px 20px;
    max-width: 1100px;
    margin: auto;
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #001858;
}

/* Orange underline */
.title-underline {
    width: 80px;
    height: 4px;
    background: #ff8800; /* ORANGE */
    margin: 15px auto 40px;
    border-radius: 2px;
}

/* Outer Border Box */
.essay-box {
    border: 2px solid #f24b22; /* ORANGE */
    padding: 20px;
    border-radius: 6px;
    background: #fff;
}

/* Scrollable Area */
.essay-scroll {
    max-height: 350px;
    overflow-y: auto;
    padding-right: 10px;
    text-align: left;
}

/* Two Columns */
.two-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

/* Column Text */
.col h3 {
    color: #001858;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.col p {
    color: #333;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Scrollbar (orange) */
.essay-scroll::-webkit-scrollbar {
    width: 8px;
}

.essay-scroll::-webkit-scrollbar-thumb {
    background: #f24b22; /* ORANGE */
    border-radius: 10px;
}

.essay-scroll::-webkit-scrollbar-track {
    background: #ffe6cc; /* light orange background */
}

/* Responsive: Stacks to 1 Column */
@media (max-width: 768px) {
    .two-columns {
        grid-template-columns: 1fr;
    }

    .essay-scroll {
        max-height: 250px;
    }

    .section-title {
        font-size: 1.6rem;
    }
}

.trust-section {
    padding: 40px 20px;
    display: flex;
    justify-content: center;
    margin-top: -60px;
}

.trust-box {
    width: 100%;
    max-width: 1100px;
    background: white;
    border-radius: 40px;
    padding: 10px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    flex-wrap: wrap;
}

.trust-left p {
    font-size: 1rem;
    font-weight: 400;
    color: #001858;
    line-height: 1.4;
}

.trust-left strong {
    font-size: 1.1rem;
}

/* Right Section */
.trust-right {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.trust-item img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.trust-item h4 {
    font-size: .9rem;
    margin: 0;
    color: #001858;
}

/* Stars */
.stars {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
}

.star-group {
    color: #f24b22;  /* orange stars */
    font-size: 1rem;
    letter-spacing: 2px;
}

/* Responsive */
@media (max-width: 900px) {
    .trust-box {
        text-align: center;
        flex-direction: column;
        gap: 25px;
    }

    .trust-right {
        justify-content: center;
        gap: 25px;
    }
}
/* ------------------feature section----------------*/



.features-section {
    padding: 50px 20px;
    
}

.containerfeat {
    display: flex;
    justify-content: center;
    gap: 25px;
    /*flex-wrap: wrap;*/
    margin-bottom: 40px;
}

.card {
    background: white;
    width: 330px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(0,0,0,0.08);
    transition: transform .3s ease, box-shadow .3s ease;
    
    border: 1px solid #eee ;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 6px 25px rgba(0,0,0,0.12);
}

.card .icon {
    /*background: #e7e7e747;*/
    padding: 2px;
    text-align: center;
}

.card .icon img {
    /*width: 80px;*/
    width: 350px;
    opacity: 0.85;
}

.card h3 {
    font-size: 20px;
    padding: 5px 0px 0px 18px;
    color: #333;
    font-weight: 600;
}

.card p {
    padding: 0 18px 25px;
    color: #555;
    line-height: 1.5;
}

.btn-wrapper {
    text-align: center;
}

.cta-btn {
    background: #f24b22;
    color: white;
    border: none;
    padding: 14px 40px;
    font-size: 18px;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}

.cta-btn:hover {
    background: #d95d14;
}

/* Responsive */
@media (max-width: 768px) {
    .containerfeat {
        flex-direction: column;
        align-items: center;
    }
}




/* MAIN BANNER WRAPPER */
.banner-wrapper {
    /*background: #f5f5f5;*/
    display: flex;
    justify-content: center;
    padding: 30px;
    width: 100%;
    max-width: 100%;
    display: flex;
    padding: 30px;
    justify-content: center;
       /* Banner width requested */
}

/* BANNER BOX */
.banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(to right, #0b223a, #0d2336);
    border-radius: 18px;
    padding-left: 15%;
    padding-right: 15%;
    color: white;
    overflow: hidden;
}

/* LEFT TEXT SECTION */
.banner-text {
    max-width: 60%;
}

.banner-text h2 {
    font-size: 28px;
    line-height: 1.4;
    margin-bottom: 20px;
}

/* BUTTON */
.chat-btn {
    background: #f24b22;
    border: none;
    padding: 12px 28px;
    border-radius: 6px;
    color: white;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.chat-btn:hover {
    background: #d95e15;
}

/* RIGHT IMAGE SECTION */
.banner-img img {
    width: 270px;
    height: auto;
    object-fit: cover;
}

/* RESPONSIVE */
@media (max-width: 700px) {
    .banner {
        flex-direction: column;
        text-align: center;
    }

    .banner-text {
        max-width: 100%;
        margin-bottom: 20px;
    }

    .banner-img img {
        width: 200px;
    }
}
/*------------------place order new------------*/
/*------------------place order new------------*/
:root {
    --orange: #f24b22;
    --text-dark: #222;
    --text-light: #555;
    --bg-light: #f8f8f8;
    --white: #fff;
}

/* GENERAL */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    color: var(--text-dark);
    background: #ffffff;
}

.title {
    text-align: center;
    margin-top: 40px;
    font-size: 34px;
}

.subtitle {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 40px;
    color: var(--text-light);
    font-size: 17px;
}

/* TABS (MATCHES SCREENSHOT) */
.feature-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 35px;
}

.feature-tabs .tab {
    background: #f7f7f7;
    border: 1px solid #dcdcdc;
    padding: 10px 36px;
    border-radius: 10px 10px 10px;
    font-size: 15px;
    color: #f24b22;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0,0,0,0.08);
    transition: 0.25s;
    font-weight: 500;
}

.feature-tabs .tab:hover {
    background: #fff;
}

.feature-tabs .tab.active {
    background: #ffffff;
    border-color: #f24b22;
    font-weight: 600;
}

/* LAYOUT */
.section-layout {
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 40px 80px;
}

.section-left {
    flex: 1;
    display: flex;
    justify-content: center;
}

.section-left img:hover{
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(249, 115, 22, 0.25);
}
.section-left img {
    width: 100%;
    max-width: 460px;
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.12);
    background: white;
    border: 2px solid var(--primary);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.section-right {
    flex: 1;
}

.features-list {
    padding-left: 20px;
}

.features-list li {
    font-size: 17px;
    margin-bottom: 14px;
}

/* CTA BUTTON */
.cta-btn {
    background: var(--orange);
    color: #fff;
    padding: 12px 26px;
    margin-top: 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
}

.cta-btn:hover {
    background: #e56700;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .section-layout {
        flex-direction: column;
        text-align: center;
    }
}

/*====================service page design==============================================*/
/* -------------------- Base Reset -------------------- */


/* -------------------- Base Reset -------------------- */


/* -------------------- Banner -------------------- */
.banners {
    width: 100%;
    padding: 90px 20px;
    text-align: center;
    display: flex;
    justify-content: center;

    /* Fade-in animation for entire section */
    opacity: 0;
    animation: fadeIn 1.4s ease-out forwards;
}

.banners .container {
    max-width: 500px;
    animation: slideUp 1.3s ease-out forwards;
}

/* Title animation delay */
.banners h1 {
    font-size: 2.7rem;
    font-weight: 700;
    color: #ffffff00;
    line-height: 1.2;
    opacity: 0;
    animation: fadeUp 1s ease-out forwards;
    animation-delay: 0.3s;
    width: 300px;
}

.subtitles {
    color: #555;
    margin: 18px 0 30px;
    font-size: 1.1rem;
    opacity: 0;
    animation: fadeUp 1s ease-out forwards;
    animation-delay: 0.5s;
    text-align: center;
}

/* Button animation */
.order-btn {
    background: #f24b22;
    border: none;
    padding: 15px 50px;
    width: 300px;
    margin: auto;
    color: #fff;
    font-size: 1.1rem;
    border-radius: 10px;
    cursor: pointer;

    opacity: 0;
    animation: fadeUp 1s ease-out forwards;
    animation-delay: 0.7s;

    transition: transform 0.2s ease, background 0.2s ease;
}

.order-btn:hover {
    background: #d63f1e;
    transform: scale(1.05);
}

.info-text {
    margin-top: 18px;
    color: #777;
    font-size: 0.95rem;
    opacity: 0;
    animation: fadeUp 1s ease-out forwards;
    animation-delay: 0.9s;
    text-align: center;
}

/* Ratings animation */
.ratings {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 40px;

    opacity: 0;
    animation: fadeUp 1s ease-out forwards;
    animation-delay: 1.1s;
}

.rating-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.rating-item img {
    width: 24px;
    height: 24px;
}

.rate-text {
    font-size: 1rem;
    color: #222;
}

/* -------------------- Animations -------------------- */
@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    0% {
        transform: translateY(40px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* -------------------- Responsive -------------------- */
@media (max-width: 768px) {
    .banners h1 {
        font-size: 2rem;
    }

    .order-btn {
        width: 100%;
        font-size: 1rem;
        padding: 12px;
    }

    .ratings {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .banners {
        padding: 60px 15px;
    }

    .banners h1 {
        font-size: 1.6rem;
    }
}

/*====================grid service-===========*/
/* Basic Reset */


/* Basic Reset */
/* RESET */


/* SECTION */
.why-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 40px 20px 70px;
    background: #eef2fb00;
    border-radius: 25px;
}

.why-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: #1e1e1e;
}

/* GRID */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* CARD STYLE */
.why-card {
    background: #f8f8f8;
    padding: 36px 25px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0,0,0,0.05);

    opacity: 1;                      /* start hidden */
    transform: translateY(25px);    /* animation start point */
    transition: 0.7s ease;
}

.why-card.visible {
    opacity: 1;
    transform: translateY(0);
}

/* HOVER EFFECT (clean + minimal like modern websites) */
.why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.10);
}

/* ICON */
.icon-box {
    width: 60px;
    height: 60px;
    background: #ffece5;
    margin: 0 auto;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.icon-box img {
    width: 26px;
    opacity: 0.85;
}

/* TEXT */
.why-card h3 {
    font-size: 1.15rem;
    margin-top: 18px;
    font-weight: 600;
    color: #1e1e1e;
}

.why-card p {
    font-size: 0.95rem;
    color: #555;
    margin-top: 10px;
    line-height: 1.5;
}

/* CTA BUTTON */
.cta-btn {
    display: block;
    margin: 40px auto 0;
    background: #f24b22;
    color: white;
    padding: 14px 36px;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.25s ease;
}

.cta-btn:hover {
    transform: scale(1.05);
    background: #d83e1b;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
    .why-title {
        font-size: 1.6rem;
    }
}

/* pricing */

/*==================================================content2services=================*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
}

body {
    background: #fff7f0;
    color: #2b2b2b;
}

.content-section {
    display: flex;
    gap: 50px;
    padding: 60px 8%;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.chat-side {
    flex: 1 1 350px;
}

.chat-container {
    background: #ffffff;
    padding: 25px;
    border-radius: 18px;
    width: 100%;
    max-width: 420px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    animation: fadeIn 1.2s ease;
}

.bubble {
    padding: 14px 18px;
    border-radius: 14px;
    margin-bottom: 12px;
    animation: slideIn 0.7s ease;
}

.user-bubble {
    background: #ffb074;
    color: #4a2a00;
    align-self: flex-end;
}

.bot-bubble {
    background: #ffe1cc;
    color: #4a2a00;
}

.time {
    font-size: 12px;
    color: #777;
    margin: 8px 0 12px 4px;
}

.typing {
    display: flex;
    gap: 5px;
}

.typing span {
    width: 8px;
    height: 8px;
    background: #f24b22;
    border-radius: 50%;
    animation: typing 1s infinite;
}

.typing span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing span:nth-child(3) {
    animation-delay: 0.4s;
}

.text-side {
    flex: 1 1 450px;
}

.text-side h1 {
    font-size: 2.4rem;
    margin-bottom: 20px;
    color: #422200;
}

.text-side p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #4a2800;
}

.features {
    margin-bottom: 25px;
    list-style: none;
}

.features li {
    margin-bottom: 10px;
    font-size: 1.05rem;
    color: #F24B22;
}

.cta-btn {
    padding: 14px 32px;
    font-size: 1.1rem;
    border: none;
    border-radius: 30px;
    background: #f24b22;
    color: white;
    cursor: pointer;
    transition: 0.3s;
}

.cta-btn:hover {
    background: #F24B22;
}

/* Animations */
@keyframes slideIn {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes typing {
    0%, 100% { opacity: 0.3; transform: translateY(0); }
    50% { opacity: 1; transform: translateY(-3px); }
}

/* Responsive */
@media (max-width: 900px) {
    .content-section {
        text-align: center;
    }
    .features li {
        text-align: left;
    }
}

/*=========================services===================*/
body {
  font-family: Arial, sans-serif;
  background: #f6f6f6;
  margin: 0;
  padding: 0;
}

.blog-section {
  padding: 40px 0;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

.section-title {
  text-align: center;
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 30px;
}

/* ========== Tabs ========== */
.tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.tab {
  background: #eee;
  border: none;
  padding: 10px 25px;
  font-size: 16px;
  cursor: pointer;
  margin: 0 5px;
  border-radius: 5px;
}

.tab.active {
  background: #F24B22;
  color: #d1cac9;
}

/* ========== Blog Grid ========== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

.blog-card {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
  opacity: 0;
  transform: translateY(20px);
  transition: all .6s ease;
}

.blog-card.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

.blog-info h3 {
  margin: 0 0 10px 0;
  font-size: 17px;
  font-weight: bold;
}

.blog-info p {
  margin: 0;
  color: #555;
}

.blog-card img {
  width: 110px;
  border-radius: 8px;
}

/* View more button */
.view-more {
  display: block;
  margin: 0 auto 30px;
  padding: 10px 25px;
  background: #F24B22;
  border: none;
  color: #fff;
  border-radius: 20px;
  cursor: pointer;
  font-size: 16px;
}

.hidden {
  display: none;
}

/* Responsive */
@media only screen and (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

/*==================new containernnnnnn*==============/
/* CONTAINER */
.section {
  max-width: 1250px;
  margin: auto;
}

/* GRID */
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* CARD */
.cardss {
  background: #fff;
  border-radius: 18px;
  border: 1px solid var(--card-border);
  padding: 22px;
}

/* HEADER */
.header {
  display: flex;
  align-items: center;
  gap: 14px;
}

.avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.name {
  font-size: 17px;
  font-weight: 600;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 6px;
}

.verified {
  color: #10b981;
  font-size: 14px;
}

.stats {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* DIVIDER */
.divider {
  height: 1px;
  background: #f24b22;
  margin: 18px 0;
}

/* DOCUMENT */
.doc {
  display: flex;
  gap: 14px;
}

.doc-icon {
  width: 44px;
  height: 56px;
  /*background-image: url("/assets/images/337946.png");*/
  border-radius: 6px;
  
}

.doc-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-main);
  line-height: 1.3;
  text-align: left;
}

.doc a {
  display: flex;
  margin-top: 6px;
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: underline;
}

/* FOOTER */
.footerss {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
}

.profile {
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: none;
}

.btn {
  background: var(--orange);
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}

.btn:hover {
  background: #f24b22;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .grid {
    grid-template-columns: 1fr;
  }
}