/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
  --primary-color: #facc15;
  --secondary-color: #f59e0b;
  --accent-gradient: linear-gradient(135deg, #facc15, #f59e0b);
  --text-dark: #1f2937;
  --text-light: #6b7280;
  --bg-white: #ffffff;
  --bg-light: #f9fafb;
  --border-color: #e5e7eb;
  --shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

body {
    font-family: 'Poppins', 'Inter', 'Roboto', 'DM Sans', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    color: var(--text-dark);
    background: var(text-light);
}

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


/* Header */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
  z-index: 1000;
  transition: var(--transition);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
}

/* Logo */
.logo-img {
height: 80px;
  width: auto;
  padding-left: 80px;
  display: flex;
}

.nav-menu {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.nav-link {
  text-decoration: none;
  padding: 0.5rem 1rem;
  font-weight: 500;
  color: var(--text-dark);
  border-radius: 12px;
  transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
  background: var(--accent-gradient);
   color: rgb(10, 0, 0);
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.header-avatar {
  width: 40px;
  height: 40px;
  background-image: url('assets/avatar/1.jpg');
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid #ffd700;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
      background: linear-gradient(135deg, #f9f506a9 0%, #f59f0bbe 100%);
     border-bottom: #1f2937;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
     border-bottom: #1f2937;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-search {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.search-btn {
    background: var(--bg-light);
    color: var(--text-dark);
     box-shadow: var(--primary-color);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.search-btn:hover {
  box-shadow: var(--shadow);
  background: var(--accent-gradient);
  color: rgb(10, 0, 0);
  transform: translateY(-5px)
}

.hero-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

/* Features Carousel */
.features-section {
    padding: 80px 0;
    background: var(--background-white);
}

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

.carousel-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.carousel {
    overflow: hidden;
    border-radius: 20px;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-slide {
    min-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-card {
    background: linear-gradient(135deg, #f9f506a9 0%, #f59f0bbe 100%);
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 2rem;
    padding: 2rem;
    min-height: 250px; /* ensures enough height */
    flex-wrap: wrap; /* stack on smaller screens */
    text-align: left; /* text aligned left beside image */
}

.feature-image {
    flex: 0 0 40%;
    max-width: 40%;
    height: auto;
    object-fit: contain;
}

.feature-content {
    flex: 1;
    min-width: 250px; /* prevents text from shrinking too much */
}

.feature-content h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.feature-content h3 {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 1rem;
}

/* Optional: Make it responsive for smaller screens */
@media (max-width: 768px) {
    .feature-card {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .feature-image {
        flex: 0 0 60%;
        max-width: 60%;
    }

    .feature-content {
        min-width: auto;
    }

    .feature-content h1 {
        font-size: 1.8rem;
    }

    .feature-content h3 {
        font-size: 0.95rem;
    }
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--bg-white);
    border: #140000;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 10;
}

.carousel-btn:hover {
    background: var(--bg-white);
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: -25px;
}

.next-btn {
    right: -25px;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: var(--border-color);
    cursor: pointer;
    transition: var(--transition);
}

.indicator.active {
    background: var(--primary-color);
}

/* USP Section */
.usp-section {
    padding: 80px 0;
    background: var(text-light);
}

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

.usp-card {
    background: var(--active-bg);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.usp-card:hover {
    transform: translateY(-5px);
     box-shadow: 0 0 20px rgba(255, 225, 0, 0.8), /* Stronger cyan glow */
              0 0 40px rgba(255, 234, 0, 0.779), /* Wider, slightly less intense glow */
              0 0 60px rgba(255, 234, 0, 0.4);
}

.usp-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.usp-icon svg {
    color: var(--text-dark);
}

.usp-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.usp-card p {
    color: var(text-light);
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background: var(--background-white);
}

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

.testimonial-card {
    background: linear-gradient(135deg, #f9f506a9 0%, #f59f0bbe 100%);
     backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-style: italic;
}

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

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

.author-info h4 {
    font-weight: 600;
    color: var(text-light);
}

.author-info p {
    color: var(text-light);
    font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    opacity: 0.8;
}

.cta-form {
    max-width: 500px;
    margin: 0 auto;
}

.form-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.email-input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    background-color: var(text-light);
    font-weight: 700;
    color: #000;
     box-shadow: var(--shadow);
    border-radius: 50px;
    font-size: 1rem;
    outline: none;
}

.cta-button {
    background: var(--text-dark);
    color: var(--bg-light);
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.cta-button:hover {
    background: #1f2937;
    transform: translateY(-2px);
}

.form-note {
    color: var(--text-dark);
    font-size: 0.9rem;
    opacity: 0.7;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: var(--background-white);
}

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

.faq-item {
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 1rem;
}

.faq-question {
    width: 100%;
    padding: 1.5rem 0;
    background: none;
    border-radius: 29px;
    border: none;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    background-color: var(--active-bg);
    color: var(text-light);
    transform: translateY(-3px);
}

.faq-icon {
    transition: var(--transition);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 0 1.5rem 0;
    color: var(--text-light);
    line-height: 1.6;
}
.footer {
    background: var(--text-dark);
    color: var(--background-white);
    padding: 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-brand h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: #9ca3af;
    line-height: 1.6;
}

.footer-social {
  text-align: right;
}

.footer-social h4 {
  color: var(--border-color);
  font-weight: 800;
  margin-bottom: 1rem;
}

.social-links {
  display: flex;
  gap: 1rem;
  justify-content: flex-end; /* align icons right */
  border-radius: 50%;
    min-height: 30px;
    min-width: 30px;
}

.social-link:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    border-radius: 50%;
    min-height: 30px;
    min-width: 30px;
}

.social-link svg {
    background-color: var(--primary-color);
    border-radius: 50%;
    min-height: 40px;
    min-width: 40px;
    color: var(--text-dark);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #374151;
    color: #9ca3af;
}

/* Default: hidden on desktop */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  display: block;
  height: 3px;
  width: 25px;
  background: #333;
  border-radius: 2px;
}

/* Show hamburger only on small screens */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }


    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #ffffff;
        border: #000 solid 1px;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        border-bottom: #1f2937;
    }

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

    .hero-search {
        flex-direction: column;
    }

    .carousel-btn {
        display: none;
    }

    .form-group {
        flex-direction: column;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

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

    .cta-title {
        font-size: 2rem;
    }

    .nav-container {
        padding: 1rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Animation classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
