/* Global Styles */
:root {
    --primary-color: #e86d20;
    --primary-dark: #1d4ed8;
    --secondary-color: #f59e0b;
    --dark-color: #1e293b;
    --light-color: #f8fafc;
    --gray-color: #64748b;
    --light-gray: #ef9156;
    --success-color: #10b981;
    --danger-color: #ef4444;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --radius: 8px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--dark-color);
    line-height: 1.6;
    background-color: #fff;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    color: var(--gray-color);
    margin-bottom: 1rem;
}

.subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    text-align: center;
}

img {
    max-width: 100%;
    height: auto;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--radius);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

section {
    padding: 80px 0;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: white;
    box-shadow: var(--shadow);
    z-index: 1000;
    padding: 20px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 60px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.auth-buttons {
    display: flex;
    gap: 15px;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding-top: 140px;
    background: linear-gradient(to bottom, white, white);
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 30px;
    max-width: 500px;
    text-align: justify;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.hero-image {
    flex: 1;
    position: relative;
}

.hero-image img {
    border-radius: var(--radius);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Trusted By Section */
.trusted-by {
    background-color: var(--light-gray);
    padding: 40px 0;
    text-align: center;
}

.trusted-by p {
    color: #fff;
    margin-bottom: 20px;
    font-weight: 500;
}

.logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.logos img {
    height: 30px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.logos img:hover {
    opacity: 1;
}

/* Features Section */
.features {
    text-align: center;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
    max-width: 1000px; /* Optional: cap width if needed */
    margin-left: auto;
    margin-right: auto;
}



@media (min-width: 768px) {
    .feature-grid {
        grid-template-columns: 1fr 1fr; /* exactly 2 columns on tablets & up */
    }
}

.feature-card {
    background-color: white;
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-card .icon {
    width: 60px;
    height: 60px;
    background-color: rgba(37, 99, 235, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary-color);
    font-size: 1.5rem;
}


/* Services Section */
.service {
    text-align: center;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 50px;
}


.service-card {
    background-color: white;
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card .icon {
    width: 60px;
    height: 60px;
    background-color: rgba(37, 99, 235, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary-color);
    font-size: 1.5rem;
}

/* Optional: Slight tweaks for very small phones */
@media (max-width: 400px) {
    .service-card {
        padding: 20px;
    }

    .service-card .icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

/* How-it-works */
.how-it-works h2{
    text-align: center;
}
.steps {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: stretch;
    gap: 0; /* no extra gap between items */
    width: 100%;
}

.step {
    flex: 0 0 15%;
    max-width: 15%;
    min-width: 150px;
    background: #fff;
    padding: 16px 12px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    text-align: center;
}

.step-number {
    background-color: #e86d20;
    color: #fff;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    margin: 0 auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
}

.step h3 {
    font-size: 15px;
    margin: 10px 0 5px;
}

.step p {
    font-size: 13px;
    color: #666;
}

.step-arrow {
    flex: 0 0 2%;
    max-width: 2%;
    text-align: center;
    align-self: center;
    font-size: 18px;
    color: #e86d20;
    margin: 0 4px; /* small margin between step and arrow */
}


/* Responsive styles */
@media (max-width: 768px) {
    .steps {
        flex-direction: column;
        align-items: center;
    }

    .step {
        flex: 1 1 100%;
        max-width: 100%;
        min-width: auto;
    }

    .step-arrow {
        display: none;
    }
}

.feature-grid1 h2{
     text-align: center;
}
 .feature-grid1 {
      display: flex;
      flex-direction: column;
      gap: 20px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .feature-item1 {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 40px;
      flex-wrap: wrap;
    }

    .feature-item1:nth-child(even) {
      flex-direction: row-reverse;
    }

    .feature-img1 {
      /*flex: 1 1 400px;*/
      max-width: 400px;
    }

    .feature-img1 img {
      width: 400px;
      border-radius: 8px;
      border: 2px solid #e3e3ff;
    }

    .feature-content1 {
      flex: 1 1 400px;
      max-width: 500px;
    }

    .feature-tag1 {
      font-size: 15px;
      font-weight: bold;
      color: #e86f23;
      margin-bottom: 6px;
    }

    .feature-title1 {
      font-size: 20px;
      font-weight: 700;
      margin-bottom: 10px;
    }


    .feature-desc1 {
      font-size: 14px;
      color: #555;
      margin-bottom: 10px;
      text-align: justify;
    }

    .feature-link1 {
      font-size: 15px;
      color: #e86f23;
      text-decoration: none;
      font-weight: bold;
    }

    @media (max-width: 768px) {
      .feature-item1 {
        flex-direction: column !important;
        text-align: center;
      }
    }



/* Pricing Section */
.pricing {
    text-align: center;
}

.pricing-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.pricing-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background-color: white;
    border-radius: var(--radius);
    padding: 40px 30px;
    box-shadow: var(--shadow);
    position: relative;
}

.pricing-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    margin: 20px 0;
    color: var(--dark-color);
}

.price span {
    font-size: 1rem;
    color: var(--gray-color);
    font-weight: 400;
}

.pricing-card ul {
    list-style: none;
    text-align: left;
    margin: 30px 0;
}

.pricing-card ul li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
}

.pricing-card ul li:before {
    content: "✓";
    color: var(--success-color);
    position: absolute;
    left: 0;
}

/* Testimonials Section */
.testimonials {
    background-color: #f8fafc;
    text-align: center;
}

.testimonial-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding: 20px 0;
    scroll-snap-type: x mandatory;
    margin-top: 50px;
}

.testimonial {
    min-width: 100%;
    scroll-snap-align: start;
    background-color: white;
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow);
}

.rating {
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.testimonial p {
    font-size: 1.25rem;
    font-style: italic;
    margin-bottom: 30px;
}

.author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author h4 {
    margin-bottom: 5px;
}

/* CTA Section */
.cta {
    text-align: center;
    background-color: var(--primary-color);
    color: white;
}

.cta h2 {
    color: white;
}

.cta p {
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto 30px;
}

.cta .btn {
    margin-bottom: 15px;
}

.cta .small {
    font-size: 0.875rem;
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: white;
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.125rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: var(--light-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: white;
}

.footer-logo {
    margin-bottom: 20px;
    height: 60px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: var(--light-gray);
    text-decoration: none;
    font-size: 0.875rem;
}

.footer-links a:hover {
    color: white;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero .container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        margin-bottom: 50px;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .step-arrow {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav-links, .auth-buttons {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    section {
        padding: 60px 0;
    }
}

@media (max-width: 576px) {
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn {
        width: 100%;
    }
    
    .pricing-card {
        min-width: 100%;
    }
    
    .feature-card {
        padding: 20px;
    }
}
/*Profile*/
 .profile-container {
      margin: 40px auto;
      border-radius: 12px;
      padding: 30px;
    }
    .profile-header {
      text-align: center;
      padding-bottom: 20px;
      border-bottom: 1px solid #ddd;
    }
    .profile-header h2 {
      margin: 0;
      color: #333;
    }
    .profile-info {
      padding: 20px 0;
    }
    .info-group {
      margin-bottom: 15px;
    }
    .info-group strong {
      display: inline-block;
      width: 160px;
      color: #666;
    }
    .info-group span {
      color: #333;
    }
    .media-gallery {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 20px;
    }
    .media-gallery img, .media-gallery video {
      width: 150px;
      height: 150px;
      object-fit: cover;
      border-radius: 8px;
    }