/* Root variables */
:root {
    --primary: #ff6f45;       /* Warm accent */
    --primary-dark: #e65c30;
    --bg-dark: rgba(17,17,17,0.6);  /* Semi-transparent header */
    --text-light: #fff;
    --transition: 0.3s ease;
    --shadow: 0 4px 20px rgba(0,0,0,0.2);
  }
  
  /* Reset */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Segoe UI', sans-serif;
    background: #f9f9f9;
    color: #333;
  }
  
  /* ===== Header ===== */
  header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: var(--bg-dark);
    color: var(--text-light);
    z-index: 1000;
    box-shadow: var(--shadow);
    backdrop-filter: blur(6px);
    animation: fadeIn 1s ease;
    height: 4.5rem;
   
  }
  
  header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: auto;
   
   
  }
  
  /* .logo {
    font-size: 1.8rem;
    font-weight: bold;
    cursor: pointer;
    color: var(--text-light);
    transition: var(--transition);
  } */
  .logo img {
    height: 40px;
    width: auto;
  }
  
  
  .logo:hover {
    color: var(--primary);
  }
  
  /* Navigation links */
  .nav-links {
    display: flex;
    gap: 1.8rem;
    align-items: center;
  }
  
  .nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: var(--transition);
    margin-left: 10px;
  }
  
  .nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -3px;
    left: 0;
    background-color: var(--primary);
    transition: 0.3s;
  }
  
  .nav-links a:hover::after {
    width: 100%;
  }
  
  .nav-links .cta {
    padding: 0.5rem 1.2rem;
    background: linear-gradient(45deg, #ff6f45, #ff4d4d);
    border-radius: 6px;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(255,111,69,0.5);
    margin-left: 10px;
  }
  
  .nav-links .cta:hover {
    background: linear-gradient(45deg, #e65c30, #ff3b1f);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(255,111,69,0.7);
  }
  
  /* Hamburger menu */
  .hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    z-index: 1100;
  }
  
  .hamburger span {
    height: 3px;
    width: 25px;
    background: var(--text-light);
    border-radius: 2px;
    transition: 0.4s;
  }
  
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  
  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
  
  /* Mobile Menu */
  .mobile-menu {
    display: none;
    flex-direction: column;
    background: var(--bg-dark);
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 1rem 2rem;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.5s ease;
  }
  
  .mobile-menu.show {
    display: flex;
    opacity: 1;
    transform: translateY(0);
  }
  
  .mobile-menu a {
    color: var(--text-light);
    text-decoration: none;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    transition: var(--transition);
  }
  
  .mobile-menu a:hover {
    color: var(--primary);
  }
  
  .mobile-menu a.cta {
    margin-top: 0.5rem;
    border: none;
    text-align: center;
    background: var(--primary);
    border-radius: 6px;
    color: var(--text-light);
  }
  
  .mobile-menu a.cta:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
  }
  
  /* Responsive */
  @media (max-width: 900px) {
    .nav-links {
      display: none;
    }
  
    .hamburger {
      display: flex;
    }
  }










  
  
  
  /* ===== Hero Section ===== */
  
  /* ================= Hero Section ================= */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1c1a27, #591c1c, #2b0f0f);
    color: var(--text-light);
    padding: 60px 20px;
    position: relative;
  }
  
  .hero-container {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 40px;
    max-width: 1200px;
    width: 100%;
    align-items: center;
  }
  
  
  
  /* ---------- Left Side Text ---------- */
  .rating {
    font-size: 1.3rem;
    color: #ffd700;
    margin-bottom: 30px;
  }
  
  .hero-text h1 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 40px;
  }
  
  .highlight {
    color: var(--primary);
  }
  
  .subheading {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #ddd;
  }
  
  .points {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
  }
  
  .points li {
    font-size: 1.1rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .points i {
    color: var(--primary);
    font-size: 1.1rem;
  }
  
  /* ---------- Buttons ---------- */
  .buttons {
    display: flex;
    gap: 20px;
  }
  
  .btn {
    padding: 12px 26px;
    font-size: 1rem;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow);
  }
  
  .btn-primary {
    background: var(--primary);
    color: #fff;
  }
  
  .btn-primary:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
  }
  
  .btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
  }
  
  .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.05);
  }
  
  /* ---------- Right Side Image ---------- */
  .hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    margin-top: 70px;
  }
  
  .hero-image img {
    height: 400px;
    width: 600px;
    margin-right: -80px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
  }
  
  /* ---------- Stats Box ---------- */
  .stats {
    display: flex;
    justify-content: space-around;
    background: rgba(0, 0, 0, 0.65);
    color: #fff;
    padding: 12px 20px;
    border-radius: 12px;
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 85%;
    font-size: 0.95rem;
    z-index: 2;
  }
  
  .stats strong {
    font-size: 1.3rem;
    color: var(--primary);
  }
  
  /* ================= Responsive ================= */
  @media  (min-width:700px) and (max-width:900px){
    .rating{
        margin-top: 2rem;
    }

    .points{
        margin-left: 7.3rem;
    }
    .buttons{
        margin-left: 16rem;
    }
   
  }

  
  /* Tablet & Mobile (≤900px) */
  @media screen and (max-width: 900px) {
    .points{
        display: none;
    }
    .rating{
        font-size: 1rem;
        margin-top: 1rem;
    }
    .hero-container {
      grid-template-columns: 1fr;
      text-align: center;
      gap: 25px;
    }
    .hero-text h1 {
      font-size: 2.8rem;
      margin-bottom: 20px;
     
    }
    .subheading {
      font-size: 1.1rem;
      margin-bottom: 20px;
    }
  
    /* Image & stats overlay */
    .hero-image {
      position: relative;
      display: flex;
      justify-content: center;
      margin-top: 20px;
    }
  
    .hero-image img {
      max-width: 90%;
      height: auto;
      margin: 0 auto;
    }
    
  
    .stats {
      position: absolute; /* Overlay on image */
      bottom: 10px;
      left: 50%;
      transform: translateX(-50%);
      background: rgba(0, 0, 0, 0.6);
      padding: 10px 15px;
      border-radius: 12px;
      width: 85%;
      font-size: 0.85rem;
      display: flex;
      justify-content: space-around;
      flex-wrap: wrap;
      text-align: center;
    }
  
    .stats strong {
      font-size: 1rem;
    }
   
  }
  
  /* Small Phones (≤400px) */
  @media screen and (max-width: 400px) {
    .rating{
        margin-top: 1rem;
    }
    .hero-text h1 {
      font-size: 1.6rem;
    }
    .subheading {
      font-size: 0.9rem;
    }
  
    .hero-image {
      position: relative;
      display: flex;
      justify-content: center;
      margin-top: 15px;
    }
  
    .hero-image img {
      max-width: 95%;
      height: auto;
      margin: 0 auto;
    }
  
    .stats {
      bottom: 5px;
      width: 90%;
      font-size: 0.8rem;
      padding: 8px 10px;
    }
  
    .stats strong {
      font-size: 0.9rem;
    }
   
  }
  
  
  
  
  
  
  











 /* Service checklist (unique classes to avoid conflicts) */
 .services {
    padding: 80px 20px;
    text-align: center;
    background: #fff;
  }
  
  .services h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
  }
  
  .services h2 .highlight {
    color: var(--primary);
  }
  
  .services .subheading {
    font-size: 1rem;
    margin-bottom: 50px;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
  }
  
  .services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 1rem;
  }
  
  .service-card {
    background: #fff;
    border-radius: 12px;
    padding: 25px 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
  }
  
  .service-card img {
    max-width: 80px;
    margin-bottom: 15px;
    transition: var(--transition);
  }
  
  .service-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #222;
    text-align: center;
  }
  
  /* Hover effect */
  .service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.25);
  }
  
  .service-card:hover img {
    transform: scale(1.1);
  }
  
  /* Responsive */
  @media screen and (max-width: 900px) {
    .services-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
    }
    .services h2 {
      font-size: 1.8rem;
    }
    .services .subheading {
      font-size: 0.95rem;
    }
  }
  
  @media screen and (max-width: 600px) {
    .services-grid {
      grid-template-columns: 1fr;
      gap: 15px;
    }
    .services h2 {
      font-size: 1.5rem;
    }
    .services .subheading {
      font-size: 0.9rem;
    }
  }
  
  











/* why choose us */

  
:root {
    --primary: #ff6f45;       /* Warm accent */
    --primary-dark: #e65c30;
    --text-light: #fff;
    --transition: 0.3s ease;
    --shadow: 0 4px 20px rgba(0,0,0,0.2);
  }
  
  /* Section wrapper */
  .why-choose-us {
    padding: 60px 20px;
    background: #f9f9f9;
  }
  
  /* Main layout wrapper */
  .choose-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
  }
  
  /* Left side image */
  .image-wrapper {
    position: relative;
    flex: 1 1 450px;
    text-align: center;
  }
  
  .image-wrapper img {
    width: 100%;
    border-radius: 16px;
    box-shadow: var(--shadow);
    display: block;
  }
  
  .rating-badge {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: #fff;
    padding: 6px 12px;
    border-radius: 10px;
    font-weight: bold;
    font-size: 0.9rem;
    box-shadow: var(--shadow);
  }
  
  /* Right side content */
  .content {
    flex: 1 1 450px;
  }
  
  .content h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    font-weight: bold;
    color: #111;
  }
  
  .content h2 span {
    color: var(--primary-dark);
  }
  
  /* Features list */
  .features {
    display: flex;
    flex-direction: column;
    gap: 25px;
  }
  
  /* Feature card */
  .feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: #fff;
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
  }
  
  .feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  }
  
  .feature .icon {
    background: var(--primary);
    color: var(--text-light);
    font-size: 1.5rem;
    padding: 12px;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .feature h3 {
    font-size: 1.1rem;
    margin: 0 0 6px;
    font-weight: 600;
    color: var(--primary-dark);
  }
  
  .feature p {
    margin: 0;
    font-size: 0.9rem;
    color: #444;
    line-height: 1.5;
  }
  
  /* Tablet adjustments */
  @media (max-width: 900px) {
    .choose-wrapper {
      flex-direction: column;
      text-align: center;
    }
  
    .image-wrapper img {
      max-width: 90%;
      margin: 0 auto 25px;
    }
  
    .content {
      text-align: center;
    }
  
    .features {
      align-items: center;
    }
  
    .feature {
      flex-direction: row;
      align-items: center;
      text-align: left;
      width: 100%;
      max-width: 420px;
    }
  }
  
  /* Phone adjustments */
  @media (max-width: 500px) {
    .why-choose-us {
      padding: 40px 15px;
    }
  
    .image-wrapper img {
      max-width: 100%;
      border-radius: 12px;
      margin-bottom: 20px;
    }
  
    .content h2 {
      font-size: 1.4rem;
      margin-bottom: 20px;
      line-height: 1.4;
      text-align: center;
    }
  
    .features {
      gap: 20px;
    }
  
    .feature {
      flex-direction: column;
      align-items: center;
      text-align: center;
      max-width: 100%;
    }
  
    .feature .icon {
      font-size: 1.6rem;
      padding: 14px;
    }
  
    .feature h3 {
      font-size: 1.05rem;
    }
  
    .feature p {
      font-size: 0.9rem;
      line-height: 1.5;
      max-width: 320px;
      margin: 0 auto;
    }
  
    .rating-badge {
      display: none; /* hide badge on very small screens */
    }
  }
  
  






















  .pricing {
    margin-top: 70px;
    padding: 70px 20px;
    background: #f9f9f9;
    text-align: center;
  }
  
  .pricing-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .pricing h2 {
    font-size: 2.2rem;
    margin-bottom: 10px;
    font-weight: bold;
    color: #111;
  }
  
  .pricing h2 span {
    color: var(--primary-dark);
  }
  
  .pricing-subtitle {
    font-size: 1rem;
    color: #666;
    margin-bottom: 40px;
  }
  
  /* Grid layout */
  .pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
  
  /* Card styles */
  .pricing-card {
    background: #fff;
    border-radius: 14px;
    padding: 30px 20px;
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
    position: relative;
  }
  
  .pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
  }
  
  .pricing-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #111;
  }
  
  .price {
    font-size: 2rem;
    font-weight: bold;
    margin: 20px 0;
    color: var(--primary-dark);
  }
  
  .price span {
    font-size: 1rem;
    color: #666;
  }
  
  .pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    text-align: left;
  }
  
  .pricing-card ul li {
    margin: 8px 0;
    font-size: 0.95rem;
    color: #444;
  }
  
  .btn-book {
    background: var(--primary);
    color: var(--text-light);
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: background var(--transition), transform var(--transition);
  }
  
  .btn-book:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
  }
  
  /* Highlighted card */
  .popular {
    border: 2px solid var(--primary);
    transform: scale(1.05);
  }
  
  .badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--primary);
    color: #fff;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: bold;
  }
  
  /* Responsive */
  @media (max-width: 900px) {
    .pricing-grid {
      grid-template-columns: 1fr 1fr;
    }
  }
  
  @media (max-width: 600px) {
    .pricing-grid {
      grid-template-columns: 1fr;
    }
  
    .popular {
      transform: none;
    }
}
.pricing-card {
    opacity: 0;
    transform: translateY(30px);
  }
  
  .pricing-card.visible {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s ease;
  }

  






  .faq {
    padding: 70px 20px;
    background: #fff;
  }
  
  .faq-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
  }
  
  .faq h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    font-weight: bold;
    color: #111;
  }
  
  .faq h2 span {
    color: var(--primary-dark);
  }
  
  .faq-subtitle {
    font-size: 1rem;
    color: #666;
    margin-bottom: 40px;
  }
  
  /* FAQ list */
  .faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  
  .faq-item {
    border: 1px solid #eee;
    border-radius: 10px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: box-shadow var(--transition);
  }
  
  .faq-item:hover {
    box-shadow: 0 6px 25px rgba(0,0,0,0.15);
  }
  
  /* Question */
  .faq-question {
    width: 100%;
    text-align: left;
    background: #f9f9f9;
    border: none;
    padding: 15px 20px;
    font-size: 1rem;
    font-weight: 600;
    color: #111;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background var(--transition);
  }
  
  .faq-question:hover {
    background: #f1f1f1;
  }
  
  .faq-question .icon {
    font-size: 1.2rem;
    font-weight: bold;
    transition: transform var(--transition);
  }
  
  /* Answer */
  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 20px;
  }
  
  .faq-answer p {
    font-size: 0.95rem;
    color: #444;
    line-height: 1.5;
    padding: 10px 0;
    margin: 0;
  }
  
  /* Open state */
  .faq-item.active .faq-answer {
    max-height: 300px;
    padding: 10px 20px;
  }
  
  .faq-item.active .faq-question .icon {
    transform: rotate(45deg);
    color: var(--primary);
  }
  
  /* Responsive */
  @media (max-width: 600px) {
    .faq h2 {
      font-size: 1.6rem;
    }
    .faq-subtitle {
      font-size: 0.9rem;
    }
    .faq-question {
      font-size: 0.95rem;
      padding: 12px 15px;
    }
    .faq-answer p {
      font-size: 0.85rem;
    }
  }






  /* Section wrapper */
  .trusted-brands {
    margin-top: 40px;
    padding: 60px 16px;
    background: #f9f9f9;
    text-align: center;
    overflow: hidden;
  }
  
  .brands-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .trusted-brands h2 {
    font-size: 1.9rem;
    margin-bottom: 6px;
    color: #111;
  }
  
  .trusted-brands h2 span {
    color: var(--primary-dark);
  }
  
  .brands-subtitle {
    color: #666;
    margin-bottom: 50px;
    font-size: 0.98rem;
    
  }
  
  /* Slider container */
  .brands-slider {
    overflow: hidden;
    width: 100%;
    position: relative;
  }
  
  /* Track for scrolling logos */
  .brands-track {
    display: flex;
    gap: 22px;
    animation: scrollBrands 20s linear infinite;
    will-change: transform;
  }
  
  /* Each logo card */
  .brand-card {
    flex: 0 0 auto;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #fff;
    display: grid;
    place-items: center;
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
  }
  
  /* Logos inside the card */
  .brand-card img {
    width: 70%;
    height: 70%;
    object-fit: contain;
    display: block;
  }
  
  /* Hover effect */
  .brand-card:hover {
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
  }
  
  /* Keyframes for infinite scrolling */
  @keyframes scrollBrands {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
  }
  
  /* Tablet adjustments */
  @media (max-width: 900px) {
    .brand-card {
      width: 90px;
      height: 90px;
    }
    .brands-track {
      gap: 18px;
      animation-duration: 16s;
    }
  }
  
  /* Phone adjustments */
  @media (max-width: 500px) {
    .trusted-brands {
      padding: 40px 12px;
    }
    .brand-card {
      width: 72px;
      height: 72px;
    }
    .brands-track {
      gap: 14px;
      animation-duration: 14s;
    }
  }









  /* Section */
.premium-service {
    padding: 70px 20px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--text-light);
    text-align: center ;
    border-radius: 1rem;
    margin-top: 50px;
  }
  
  .premium-container {
    max-width: 1100px;
    margin: 0 auto;
  }
  
  /* Heading */
  .premium-service h2 {
    font-size: 2rem;
    margin-bottom: 12px;
  }
  
  .premium-subtitle {
    font-size: 1.05rem;
    margin-bottom: 28px;
    opacity: 0.9;
  }
  
  /* Main button */
  .premium-actions {
    margin-bottom: 40px;
  }
  
  .premium-btn {
    display: inline-block;
    padding: 14px 32px;
    background: #fff;
    color: var(--primary-dark);
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: var(--shadow);
    transition: transform var(--transition), background var(--transition), color var(--transition);
  }
  
  .premium-btn:hover {
    transform: scale(1.05);
    background: var(--primary-dark);
    color: var(--text-light);
  }
  
  /* Features grid */
  .premium-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 22px;
  }
  
  .feature-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 22px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: transform var(--transition), background var(--transition);
    opacity: 0;
    transform: translateY(40px);
  }
  
  .feature-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.2);
  }
  
  .feature-card .icon {
    font-size: 2rem;
    margin-bottom: 10px;
    display: block;
  }
  
  .feature-card h3 {
    font-size: 1rem;
    font-weight: 600;
  }
  
  /* Animation active */
  .feature-card.animate {
    opacity: 1;
    transform: translateY(0);
  }
  
  /* Responsive */
  @media (max-width: 600px) {
    .premium-service h2 {
      font-size: 1.6rem;
    }
    .premium-btn {
      padding: 12px 24px;
      font-size: 0.95rem;
    }
  }


















 
  /* Section */
  .feedback {
    padding: 70px 20px;
    background: #f9f9f9;
    text-align: center;
  }
  
  .feedback-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .feedback h2 {
    font-size: 2rem;
    margin-bottom: 12px;
    color: #111;
  }
  
  .feedback h2 span {
    color: var(--primary-dark);
  }
  
  .feedback-subtitle {
    font-size: 1rem;
    color: #555;
    margin-bottom: 40px;
  }
  
  /* Grid */
  .feedback-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
  }
  
  /* Card */
  .feedback-card {
    background: #fff;
    padding: 24px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: left;
    transition: transform var(--transition), box-shadow var(--transition);
  }
  
  .feedback-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.25);
  }
  
  .stars {
    color: gold;
    margin-bottom: 10px;
    font-size: 1.2rem;
  }
  
  .feedback-card p {
    font-size: 0.95rem;
    color: #444;
    line-height: 1.6;
    margin-bottom: 18px;
  }
  
  /* Reviewer */
  .reviewer {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  
  .avatar {
    background: var(--primary);
    color: #fff;
    font-weight: 600;
    border-radius: 50%;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .reviewer h4 {
    font-size: 1rem;
    margin: 0;
  }
  
  .reviewer small {
    font-size: 0.85rem;
    color: #666;
  }
  
  /* Responsive */
  @media (max-width: 600px) {
    .feedback h2 {
      font-size: 1.6rem;
    }
    .feedback-subtitle {
      font-size: 0.95rem;
    }
    .feedback-card {
      padding: 20px;
    }
  }
  
  .feedback-card {
    opacity: 0;
    transform: translateY(30px);
  }
  
  .feedback-card.animate {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s ease;
  }
  











  /* Footer Styles */
.footer {
  background: var(--bg-dark);
  backdrop-filter: blur(6px);
  color: var(--text-light);
  padding: 80px 0 20px;
  position: relative;
  overflow: hidden;
  margin-top: 60px;
  border-radius: 5px;
}

.footer-wave {
  position: absolute;
  top: -2px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.footer-wave svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 35px;
}

.footer-wave .shape-fill {
  fill: var(--bg-dark);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  position: relative;
  z-index: 2;
}

.footer-section h3 {
  color: var(--primary);
  font-size: 1.8rem;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.footer-section h3 span {
  color: var(--text-light);
}

.footer-section h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 40px;
  height: 3px;
  background: var(--primary);
}

.footer-section h4 {
  color: var(--text-light);
  font-size: 1.2rem;
  margin-bottom: 25px;
  position: relative;
  display: inline-block;
  font-weight: 600;
}

.footer-section h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 30px;
  height: 2px;
  background: var(--primary);
}

.footer-section p {
  line-height: 1.6;
  margin-bottom: 20px;
  color: #ccc;
}

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

.footer-section ul li {
  margin-bottom: 12px;
}

.footer-section ul li a {
  color: #ccc;
  text-decoration: none;
  transition: var(--transition);
  display: flex;
  align-items: center;
  position: relative;
}

.footer-section ul li a i {
  margin-right: 10px;
  color: var(--primary);
  font-size: 0.8rem;
  transition: var(--transition);
}

.footer-section ul li a:hover {
  color: var(--primary);
  transform: translateX(5px);
}

.footer-section ul li a:hover i {
  transform: rotate(90deg);
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 25px;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--text-light);
  text-decoration: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.social-icons a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary);
  border-radius: 50%;
  transform: scale(0);
  transition: var(--transition);
  z-index: -1;
}

.social-icons a:hover {
  color: var(--text-light);
  transform: translateY(-5px);
}

.social-icons a:hover::before {
  transform: scale(1);
}

.contact-info p {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.contact-info i {
  margin-right: 12px;
  color: var(--primary);
  width: 20px;
  font-size: 1.1rem;
}

.footer-bottom {
  margin-top: 60px;
  padding: 25px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 2;
}

.footer-bottom-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-links {
  display: flex;
  gap: 25px;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: var(--transition);
  font-size: 0.9rem;
  position: relative;
}

.footer-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--primary);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-links a:hover::after {
  width: 100%;
}

.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: var(--text-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
  box-shadow: var(--shadow);
}

.scroll-to-top.active {
  opacity: 1;
  visibility: visible;
}

.scroll-to-top:hover {
  background: var(--primary-dark);
  transform: translateY(-5px);
}

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

.footer-section {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.6s ease forwards;
}

.footer-section:nth-child(1) {
  animation-delay: 0.1s;
}

.footer-section:nth-child(2) {
  animation-delay: 0.2s;
}

.footer-section:nth-child(3) {
  animation-delay: 0.3s;
}

.footer-section:nth-child(4) {
  animation-delay: 0.4s;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 60px 0 20px;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  
  .footer-section h3::after,
  .footer-section h4::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-links {
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .social-icons {
    justify-content: center;
  }
  
  .contact-info p {
    justify-content: center;
  }
  
  .footer-section ul li a {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 50px 0 20px;
  }
  
  .footer-container {
    gap: 35px;
  }
  
  .scroll-to-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 15px;
  }
  
  .footer-section h3 {
    font-size: 1.6rem;
  }
  
  .footer-section h4 {
    font-size: 1.1rem;
  }
}
















/* Floating Button with Pulse */
.floating-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #e63939;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;   /* perfect circle */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.25);
    transition: transform 0.3s ease;
    z-index: 999;
    animation: pulse 1.5s infinite;
  }
  
  /* Hover effect */
  .floating-btn:hover {
    background: #c72e2e;
    transform: scale(1.1);
  }
  
  /* Pulse animation */
  @keyframes pulse {
    0% {
      transform: scale(1);
      box-shadow: 0 0 0 0 rgba(230, 57, 57, 0.6);
    }
    70% {
      transform: scale(1.05);
      box-shadow: 0 0 0 15px rgba(230, 57, 57, 0);
    }
    100% {
      transform: scale(1);
      box-shadow: 0 0 0 0 rgba(230, 57, 57, 0);
    }
  }
  
















